/* --- ROOT VARIABLES & GENERAL SETUP --- */
:root {
    --primary-color: #6E0FF0;
    --secondary-color: #91F00F;
    --background-dark: #10081c;
    --text-primary: #F0F4F8;
    --text-secondary: #A8B2D1;
    --glass-bg: rgba(22, 12, 41, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- BLUR EFFECT FOR PAGE WRAPPER --- */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    transition: filter 0.4s ease, transform 0.4s ease;
}

.content-blurred {
    filter: blur(5px);
    transform: scale(0.98);
    pointer-events: none;
    user-select: none;
}

/* --- BACKGROUND BLURRY EFFECT --- */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    mix-blend-mode: screen;
    animation: move 25s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -50px;
    left: -100px;
    filter: blur(150px);
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    bottom: -150px;
    right: -100px;
    filter: blur(200px);
    animation-duration: 30s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #00c3ff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(120px);
    animation-duration: 20s;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, -100px) scale(1.2); }
}

/* --- GLASSMORPHISM CONTAINER --- */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* --- LAYOUT & TYPOGRAPHY --- */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), #8a3ffc);
    color: var(--text-primary);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 15, 240, 0.4);
}

/* --- HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    z-index: 1000;
    padding: 0.5rem 1rem;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.nav-active {
    color: var(--secondary-color);
}

.nav-cta {
    background: rgba(145, 240, 15, 0.1);
    color: var(--secondary-color);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--secondary-color);
}
.nav-cta:hover {
    background: var(--secondary-color);
    color: var(--background-dark) !important;
}

.mobile-nav-toggle { display: none; }

/* --- HERO SECTION (HOMEPAGE) --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.hero-content {
    max-width: 850px;
}

.main-heading {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.highlight-primary { color: var(--primary-color); }
.highlight-secondary { color: var(--secondary-color); }

.sub-heading {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

/* --- GENERIC SECTIONS --- */
section {
    padding: 6rem 0;
}

.sectors-grid, .services-grid {
    display: grid;
    gap: 1.5rem;
}

.sectors-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.sector-card, .service-card, .about-content, .contact-wrapper {
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.sector-card:hover, .service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.sector-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sector-card h3, .service-card h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}
.service-card ul li {
    padding-left: 1.5em;
    position: relative;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* --- ABOUT SECTION --- */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

/* --- SERVICES & SECTORS PAGE SPECIFIC STYLES --- */
.services-hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.service-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-detail-section {
    padding: 3rem;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.service-detail-section.layout-reversed .service-detail-grid {
    grid-template-columns: 1fr 2fr;
}

.service-detail-section.layout-reversed .service-text-content {
    order: 2;
}
.service-detail-section.layout-reversed .service-icon-content {
    order: 1;
}

.service-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-feature-list {
    list-style: none;
    padding-left: 0;
}
.service-feature-list li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 1rem;
}
.service-feature-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}
.service-feature-list li strong {
    color: var(--text-primary);
}

.service-icon-content {
    text-align: center;
}
.service-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
}
.service-icon-content h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}


/* --- CONTACT SECTION --- */
.contact-section {
    padding-bottom: 6rem;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.contact-wrapper p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
}

.form-group input {
    flex: 1;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.contact-form button {
    margin-top: 1rem;
    align-self: center;
}

/* --- FOOTER --- */
.footer-section {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
}

/* --- RESPONSIVE DESIGN & MOBILE NAVIGATION --- */

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay--active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: none; /* Hidden until media query */
}


@media (max-width: 992px) {
    .main-heading { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    
    .service-detail-grid,
    .service-detail-section.layout-reversed .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .service-detail-section.layout-reversed .service-text-content,
    .service-detail-section.layout-reversed .service-icon-content {
        order: 0; /* Reset order */
    }
    .service-icon-content {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .page-wrapper { padding: 0 1rem; }
    header { width: calc(100% - 2rem); }
    
    .desktop-nav { display: none; }

    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1003;
    }
    .mobile-nav-toggle span {
        width: 25px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        z-index: 1002;
        padding: 6rem 2rem 2rem;
        
        background: var(--glass-bg);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-left: 1px solid var(--glass-border);

        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .mobile-nav--open {
        transform: translateX(0);
    }
    .mobile-nav .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .mobile-nav .nav-links a {
        font-size: 1.2rem;
        color: var(--text-primary);
    }
    .mobile-nav .nav-cta {
        margin-top: 1rem;
        display: inline-block;
    }
    .close-nav-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: var(--text-primary);
        font-size: 2.5rem;
        cursor: pointer;
    }

    .main-heading { font-size: 2.5rem; }
    section { padding: 4rem 0; }
    .form-group { flex-direction: column; }
    .service-detail-section { padding: 2rem; }
    .service-title { font-size: 1.8rem; }
}

/* ================================================= */
/*           NEW: CONTACT US PAGE STYLES             */
/* ================================================= */

.contact-page-section {
    padding-top: 0;
    padding-bottom: 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: flex-start;
}

.contact-details {
    padding: 2.5rem;
}

.contact-details h3,
.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-details > p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    line-height: 1;
    margin-top: 5px;
}

.contact-info-list h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-info-list p,
.contact-info-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    padding: 2.5rem;
}

/* Re-use contact-form styles but add some spacing */
.contact-form-wrapper .contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form-wrapper .contact-form textarea {
    min-height: 120px;
}

/* --- Google Map Section --- */
.google-map-section {
    width: 100%;
    height: 450px; /* Default height */
}

.google-map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Optional: add a subtle filter to match the vibe */
    filter: grayscale(0.7) contrast(1.1);
}

/* --- Responsive adjustments for Contact Page --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-details,
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}



/* ================================================= */
/*          NEW: AJAX FORM STATUS STYLES             */
/* ================================================= */

#form-status {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none; /* Hidden by default */
}

#form-status.success {
    display: block;
    background-color: rgba(145, 240, 15, 0.15); /* --secondary-color */
    color: #91F00F;
    border: 1px solid rgba(145, 240, 15, 0.3);
}

#form-status.error {
    display: block;
    background-color: rgba(255, 82, 82, 0.15); /* Red */
    color: #ff5252;
    border: 1px solid rgba(255, 82, 82, 0.3);
}




/* =================================================================== */
/*           CORRECTED: MULTI-STEP QUOTE FORM STYLES (COMPLETE)        */
/* =================================================================== */

.quote-section {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 6rem;
}

.quote-form {
    flex: 3;
    padding: 2.5rem;
    overflow: hidden;
}

.total-container {
    flex: 1;
    position: sticky;
    top: 120px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}
.total-container h3 { font-size: 1.2rem; color: var(--text-secondary); font-weight: 500; margin-bottom: 0.5rem; }
.total-container p { font-size: 3rem; font-weight: 700; color: var(--secondary-color); line-height: 1.2; }

/* --- Progress Bar --- */
.progress-bar { display: flex; justify-content: space-between; margin-bottom: 3rem; position: relative; }
.progress-bar::before { content: ''; position: absolute; top: 17px; left: 0; height: 4px; width: 100%; background: var(--glass-border); z-index: 1; }
.progress-bar .step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; position: relative; z-index: 2; }
.progress-bar .step .bullet { height: 35px; width: 35px; border: 3px solid var(--glass-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; background: var(--background-dark); color: var(--text-secondary); transition: all 0.3s ease; }
.progress-bar .step p { font-size: 0.9rem; color: var(--text-secondary); margin-top: 0.5rem; font-weight: 500; }
.progress-bar .step.active .bullet { border-color: var(--secondary-color); color: var(--secondary-color); transform: scale(1.1); }
.progress-bar .step.active p { color: var(--text-primary); }

/* --- Form Steps --- */
.form-step { display: none; }
.form-step.form-step-active { display: block; animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.step-title { font-size: 1.8rem; margin-bottom: 2rem; color: var(--text-primary); text-align: center; }
.form-step h4 { color: var(--text-secondary); font-weight: 500; margin-top: 2.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--glass-border); padding-bottom: 0.5rem; }
.final-message { text-align: center; color: var(--text-secondary); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* --- FIX: Form Layouts & Inputs --- */
.form-group-columns {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creates a consistent 2-column layout */
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.form-group-checkbox,
.form-group-number,
.form-group-addon {
    display: flex;
    flex-direction: column;
    gap: 1.25rem; /* Consistent spacing between items in a group */
    margin-bottom: 2rem; /* Consistent spacing between groups */
}
.form-group-checkbox.small-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- FIX: Custom Checkbox Styling --- */
.form-group-checkbox label,
.form-group-addon label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px; /* Add some clickable area */
}
.form-group-checkbox label.disabled,
.form-group-addon label.disabled {
    cursor: default;
    opacity: 0.6;
}
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s, border-color 0.3s;
    flex-shrink: 0; /* Prevents checkbox from shrinking */
}
input[type="checkbox"]:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: var(--background-dark);
    font-weight: bold;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* --- FIX: Custom Radio Button Styling --- */
.form-group-radio { display: flex; flex-direction: column; gap: 1rem; }
.form-group-radio label { display: flex; align-items: center; background: rgba(0,0,0,0.2); padding: 1rem 1.25rem; border-radius: 8px; border: 1px solid var(--glass-border); cursor: pointer; transition: all 0.3s ease; }
.form-group-radio label:hover { border-color: var(--primary-color); background: rgba(0,0,0,0.3); }
.form-group-radio input[type="radio"] { display: none; }
.form-group-radio input[type="radio"] + span { color: var(--text-secondary); transition: color 0.3s ease; }
.form-group-radio input[type="radio"]:checked + span { color: var(--secondary-color); font-weight: 600; }
.form-group-radio input[type="radio"] + span::before { content: ''; display: inline-block; width: 18px; height: 18px; margin-right: 0.75rem; border-radius: 50%; border: 2px solid var(--glass-border); transition: all 0.3s ease; vertical-align: middle; }
.form-group-radio input[type="radio"]:checked + span::before { border-color: var(--secondary-color); background-color: var(--secondary-color); box-shadow: inset 0 0 0 3px var(--background-dark); }

/* --- Use the refined input styles for text, number, select --- */
.form-group label { display: block; margin-bottom: 0.75rem; font-weight: 500; font-size: 0.9rem; color: var(--text-secondary); }
.form-group .required { color: #ff5252; margin-left: 2px; }
.form-group select, .form-group input:not([type="checkbox"]):not([type="radio"]) { width: 100%; padding: 14px 16px; background: rgba(0, 0, 0, 0.25); border: 1px solid var(--glass-border); border-radius: 8px; color: var(--text-primary); font-size: 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-group select:focus, .form-group input:not([type="checkbox"]):not([type="radio"]):focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(110, 15, 240, 0.25); }
.form-group input::placeholder { color: var(--text-secondary); opacity: 0.7; }
.form-group input.input-error { border-color: #ff5252; box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.25); }

/* --- FIX: Proper organization for Number Inputs --- */
.form-group-number label {
    display: grid;
    grid-template-columns: 1fr auto auto; /* Label text takes up space, others fit content */
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}
.form-group-number input[type="number"] {
    padding: 8px 12px;
    text-align: center;
    width: 80px; /* Give it a fixed width */
}
.form-group-number span { font-size: 0.9rem; }

/* --- Navigation Buttons --- */
.btn-group { display: flex; justify-content: space-between; margin-top: 3rem; border-top: 1px solid var(--glass-border); padding-top: 1.5rem; }
.btn-prev, .btn-next { padding: 10px 25px; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.1); color: var(--text-primary); border-radius: 50px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; }
.btn-prev:hover, .btn-next:hover { background: var(--primary-color); border-color: var(--primary-color); transform: translateY(-2px); }
.btn-group .cta-button { padding: 10px 25px; }

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .quote-section { flex-direction: column; }
    .total-container { position: static; width: 100%; margin-top: 2rem; }
}
@media (max-width: 768px) {
    .form-group-columns,
    .form-group-checkbox.small-cols {
        grid-template-columns: 1fr; /* Stack everything in a single column on mobile */
    }
    .progress-bar .step p { display: none; }
    .quote-form { padding: 2rem 1.5rem; }
    .form-group-number label { grid-template-columns: 1fr 60px auto; gap: 0.5rem; }
    .form-group-number input[type="number"] { width: 60px; }
}









/* ================================================= */
/*          CORRECTED: WHATSAPP FUNNEL ANIMATION     */
/* ================================================= */

.funnel-section {
    padding-bottom: 6rem;
}

.funnel-container {
    max-width: 600px;
    margin: 0 auto;
}

/* --- SVG Element Styles (Color definitions have been removed) --- */
.funnel-text {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    opacity: 0.8;
}
.funnel-text.small {
    font-size: 8px;
}

.lead-icon,
.sales-person-icon {
    opacity: 0.7;
}

.sale-icon {
    font-size: 32px;
    font-weight: bold;
}

/* --- ANIMATIONS (Unchanged, but included for completeness) --- */

/* 1. Leads dropping into the funnel */
@keyframes drop-in {
    0% { transform: translateY(-30px); opacity: 0; }
    30%, 100% { transform: translateY(0); opacity: 0.7; }
}
.leads-group {
    animation: drop-in 5s ease-out infinite;
}
.lead-2 { animation-delay: 0.2s; }
.lead-3 { animation-delay: 0.4s; }
.lead-4 { animation-delay: 0.6s; }
.lead-5 { animation-delay: 0.8s; }


/* 2. WhatsApp bubbles moving down the funnel */
@keyframes move-down-funnel {
    0% { transform: translateY(0); opacity: 0; }
    20% { opacity: 1; }
    80% { transform: translateY(180px) scale(0.8); opacity: 1; }
    100% { transform: translateY(180px) scale(0.8); opacity: 0; }
}
.wa-bubble {
    opacity: 0;
    transform-origin: center;
    animation: move-down-funnel 4s ease-in-out infinite;
}
.bubble-1 { animation-delay: 1.5s; }
.bubble-2 { animation-delay: 2.5s; }
.bubble-3 { animation-delay: 3.5s; }


/* 3. Sales icons appearing at the bottom */
@keyframes sale-appear {
    0%, 80% { transform: scale(0); opacity: 0; }
    90% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
.sales-group {
    transform-origin: center;
    animation: sale-appear 5s ease-out infinite;
    animation-delay: 1s;
}