:root {
    --primary-blue: #164b7a;
    --secondary-blue: #184c7b;
    --cream: #f4ede3;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.85rem;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a:hover {
    color: var(--secondary-blue);
}

.social-icons {
    display: flex;
    gap: 0.875rem;
    align-items: center;
}

.social-icons a {
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--secondary-blue);
    transform: translateY(-2px);
}

.social-icons a.team-access:hover {
    color: var(--secondary-blue);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}



.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    z-index: 3;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.hero h1 strong {
    font-weight: 700;
}

.hero-hashtags {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    font-weight: 400;
}



/* Sections */
.section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--gray);
    margin-bottom: 4rem;
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Chi siamo */
.chi-siamo {
    background: var(--cream);
}

.chi-siamo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chi-siamo-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.chi-siamo-image {
    background: var(--primary-blue);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

/* Cosa facciamo */
.cosa-facciamo {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* I nostri clienti */
.clienti-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cliente-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 15px;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    min-height: 160px;
}

.cliente-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.cliente-logo img {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.4);
    transition: all 0.3s ease;
}

.cliente-logo:hover img {
    filter: grayscale(100%) opacity(1);
}

/* Come lavoriamo */
.come-lavoriamo {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0;
}

.come-lavoriamo .section-title {
    color: var(--white);
}

.cover-image {
    width: 100%;
    height: 0;
    padding-bottom: 42.86%;
    /* 21:9 aspect ratio */
    position: relative;
    overflow: hidden;
}

.cover-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-content {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    z-index: 3;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.cover-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.cover-content h1 strong {
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.step-number {
    background: var(--cream);
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Perché sceglierci */
.perche-sceglierci {
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: left;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* Contattaci */
.contattaci {
    background: var(--white);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-btn {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 75, 122, 0.3);
}

.contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
}

.contact-option:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(22, 75, 122, 0.3);
}

.contact-option i {
    color: var(--white);
}

.contact-option svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke-width: 1.5;
}

/* Non solo Turismo */
.non-turismo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.non-turismo-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.non-turismo-text p {
    margin-bottom: 1.5rem;
}

.non-turismo-video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio - più alto */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.non-turismo-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-controls {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.non-turismo-video:hover .video-controls,
.hero-video:hover .video-controls {
    opacity: 1;
}

.video-control-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
}

.footer-content a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 0.7rem;
}

.footer-content a:hover {
    opacity: 0.8;
}

.footer-separator {
    color: var(--white);
    opacity: 0.6;
    margin: 0 0.5rem;
    font-size: 0.7rem;
}

/* Modal Windows */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.show {
    display: flex;
}

.modal-container {
    background: var(--white);
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--white);
    border: none;
    padding: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-content {
    padding: 2rem;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
    line-height: 1.6;
}

.modal-content h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    border-left: 4px solid var(--primary-blue);
    padding-left: 1rem;
}

.modal-content h3 {
    color: var(--secondary-blue);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
}

.modal-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.modal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.modal-content li {
    margin-bottom: 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    color: var(--black);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.cookie-text p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #4b5563;
    /* Gray-600 */
}

.cookie-text strong {
    color: var(--black);
    font-weight: 600;
}

.cookie-text a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-text a:hover {
    color: var(--secondary-blue);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: #0044CC;
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.cookie-btn.accept:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    box-shadow: 0 4px 12px rgba(22, 75, 122, 0.2);
    transform: translateY(-1px);
}

.cookie-btn.necessary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid #e5e7eb;
}

.cookie-btn.necessary:hover {
    border-color: var(--primary-blue);
    background: #f3f4f6;
    transform: translateY(-1px);
}





/* Responsive */
@media (max-width: 768px) {

    /* Header Mobile */
    .header-container {
        padding: 0 1.5rem;
        gap: 1.5rem;
        justify-content: space-between;
        align-items: center;
        min-height: 70px;
    }

    .logo {
        height: 35px;
        width: auto;
        max-width: 120px;
        object-fit: contain;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem;
        text-align: center;
        border-radius: 15px;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.8rem;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
        background: rgba(37, 150, 190, 0.1);
    }

    .social-icons {
        gap: 1rem;
        flex-shrink: 0;
    }

    .social-icons a {
        font-size: 1.1rem;
        min-width: 44px;
        min-height: 44px;
    }

    .social-icons a.team-access {
        display: none;
    }

    /* Extra small screens (Android phones) */
    @media (max-width: 480px) {
        .header-container {
            padding: 0 1rem;
            gap: 1rem;
        }

        .logo {
            height: 30px;
            max-width: 100px;
        }

        .social-icons {
            gap: 0.5rem;
        }

        .social-icons a {
            font-size: 1rem;
            min-width: 40px;
            min-height: 40px;
            padding: 6px;
        }

        .mobile-menu-btn {
            font-size: 1.5rem;
            min-width: 40px;
            min-height: 40px;
            padding: 6px;
        }
    }

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
    }

    .hero-video video {
        object-fit: cover;
    }

    .hero-content {
        padding: 0 1rem;
        bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-hashtags {
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    /* Sections Mobile */
    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Chi siamo Mobile */
    .chi-siamo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chi-siamo-image {
        height: 250px;
    }

    .chi-siamo-text {
        font-size: 1rem;
    }

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    /* Clienti Grid Mobile */
    .clienti-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }

    .cliente-logo {
        padding: 1.5rem;
        min-height: 140px;
    }

    .cliente-logo img {
        max-width: 80%;
        max-height: 80%;
    }

    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    /* Non turismo Mobile */
    .non-turismo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .non-turismo-video {
        padding-bottom: 75%;
        /* 4:3 aspect ratio for mobile */
    }

    /* Contact Mobile */
    .contact-options {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .contact-option {
        width: 70px;
        height: 70px;
    }

    .contact-option svg {
        width: 2rem;
        height: 2rem;
    }

    /* Video Controls Mobile */
    .video-controls {
        bottom: 0.5rem;
        right: 0.5rem;
        gap: 0.3rem;
    }

    .video-control-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Come lavoriamo e Drone Piazza Mobile */
    .come-lavoriamo {
        padding: 0;
        position: relative;
    }

    .come-lavoriamo .cover-content {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    .come-lavoriamo .cover-image {
        padding-bottom: 100%;
        /* 1:1 aspect ratio for mobile */
        margin-top: 0;
    }

    .come-lavoriamo .cover-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .come-lavoriamo h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .come-lavoriamo .hero-hashtags {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    /* Footer Mobile */
    .footer-content {
        font-size: 11px;
        line-height: 1.4;
    }

    .footer-content a {
        font-size: 0.6rem;
    }

    .footer-separator {
        font-size: 0.6rem;
        margin: 0 0.3rem;
    }

    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    /* Modal Mobile */
    .modal-container {
        max-width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 1rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.5rem 0.6rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Social Proof Stats */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-container {
        gap: 2rem;
        padding: 1.5rem;
        margin: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Social Proof Statement */
.stats-statement {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--text-color);
}

.stats-statement p {
    margin: 0;
}

.stats-statement strong {
    color: var(--secondary-blue);
    font-weight: 700;
}

/* Stress Free Pre-Footer CTA */
.stress-free-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stress-free-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -1px;
}

.stress-free-cta h2 strong {
    color: var(--secondary-blue);
    position: relative;
    display: inline-block;
}

.stress-free-cta h2 strong::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 102, 204, 0.1);
    z-index: -1;
    border-radius: 4px;
}

.stress-free-cta p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-blue);
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.3);
    background: #0056b3;
}

@media (max-width: 768px) {
    .stress-free-cta h2 {
        font-size: 2rem;
    }

    .stress-free-cta p {
        font-size: 1.1rem;
    }
}

/* WhatsApp Floating Widget */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    margin-top: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}