/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1b9c85;
    --primary-dark: #147a69;
    --primary-light: #e8f7f4;
    --accent-color: #f5a623;
    --secondary-color: #1a3530;
    --dark-bg: #122420;
    --light-bg: #f2faf8;
    --text-dark: #1a3530;
    --text-light: #5a7570;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #1b9c85 0%, #147a69 100%);
    --shadow: 0 10px 30px rgba(27, 156, 133, 0.08);
    --shadow-lg: 0 20px 60px rgba(27, 156, 133, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
    background-color: var(--secondary-color);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo-img {
    height: 96px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.85;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item > a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-item > a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.cta-btn {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 11px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.35);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.45);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: var(--gradient);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.07)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero .container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.9s ease;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.badge i {
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.hero-image {
    animation: fadeInRight 0.9s ease;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3.5s ease-in-out infinite;
}

.floating-card i {
    font-size: 56px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.floating-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.floating-card p {
    font-size: 14px;
    opacity: 0.85;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== TRUST SIGNALS SECTION ==================== */
.trust {
    padding: 100px 0;
    background-color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.trust-card {
    background: var(--light-bg);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trust-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    width: 68px;
    height: 68px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-icon i {
    font-size: 28px;
    color: var(--white);
}

.trust-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: var(--gradient);
    border-radius: 20px;
    padding: 50px 40px;
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat h4 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.stat p {
    font-size: 16px;
    opacity: 0.9;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    padding: 38px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card.featured {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card > p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card.featured > p {
    color: rgba(255, 255, 255, 0.88);
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 7px 0;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: var(--primary-color);
    font-size: 12px;
    flex-shrink: 0;
}

.service-card.featured .service-features i {
    color: var(--accent-color);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-card.featured .service-link {
    color: var(--accent-color);
}

.service-link:hover {
    letter-spacing: 0.5px;
}

/* ==================== PROCESS SECTION ==================== */
.process {
    padding: 100px 0;
    background-color: var(--white);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    padding: 10px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(26, 110, 189, 0.3);
}

.step-content h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.process-connector {
    color: var(--primary-color);
    font-size: 22px;
    padding: 0 8px;
    flex-shrink: 0;
    margin-bottom: 30px;
}

.process-cta {
    text-align: center;
}

/* ==================== REFERENCES SECTION ==================== */
.reference {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.reference-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.reference-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.reference-stars {
    margin-bottom: 16px;
}

.reference-stars i {
    color: var(--accent-color);
    font-size: 16px;
}

.reference-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 24px;
}

.reference-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 20px;
    color: var(--white);
}

.author-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-info p {
    font-size: 13px;
    color: var(--text-light);
}

/* ==================== QUOTE / CTA SECTION ==================== */
.quote {
    padding: 100px 0;
    background: var(--gradient);
    color: var(--white);
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.quote-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.quote-benefits {
    list-style: none;
}

.quote-benefits li {
    padding: 11px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.quote-benefits i {
    color: var(--accent-color);
    font-size: 20px;
    flex-shrink: 0;
}

.quote-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 110, 189, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.contact-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--light-bg);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-card p,
.contact-card a {
    font-size: 15px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    opacity: 0.95;
}

.footer-section h4 {
    font-size: 17px;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-section > p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.75;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 7px 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 68px;
        left: -100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 16px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-actions {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .quote-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        transform: rotate(90deg);
        margin: 0;
        padding: 0;
    }

    .about-stats {
        padding: 36px 20px;
    }
}

@media (max-width: 768px) {
    .trust-grid,
    .services-grid,
    .reference-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .quote-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero,
    .trust,
    .services,
    .process,
    .reference,
    .quote,
    .contact {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .cta-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ==================== FORM FEEDBACK MESSAGES ==================== */
.form-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.form-message--success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message--error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}
