/* --- UNIVERSAL DESIGN ATTRIBUTES --- */
        :root {
            --primary-blue: #0056b3;
            --secondary-green: #25d366;
            --dark-grey: #ffffff;
            --light-bg: #f4f7f6;
            --white: #ffffff;
            --text-color: #333;
        }
        /* === SINGLE HEADER DEFINITION === */
header {
    background: var(--primary-blue);
    color: white;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    /* FIX: Standard Sticky Logic */
    position: fixed; /* Changed from sticky to fixed for better stability across pages */
    top: 0;
    left: 0;
    width: 100%;
    
    z-index: 999; /* Higher z-index to stay above everything */
    min-height: 70px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* Add this to prevent content from hiding under the fixed header */
body {
    padding-top: 75px; /* Matches header height */
}

/* Catalogue Filter Fix */

/* --- 1. GLOBAL & VIEWPORT FIXES --- */


* {
    box-sizing: border-box; /* Essential for mobile sizing */
}

/* Keep your current body style as is */
body, html {                                                                                                                          
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}


/* --- 2. RESPONSIVE HEADER & HEADING --- */

.main-heading {
    margin: 0;
    /* Point 1 Fix: Fluid font size that never breaks the layout */
    font-size: clamp(1rem, 4vw, 2.1rem); 
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    flex: 2;
}

.header-logo {
    max-height: 50px;
    width: auto;
    border-radius: 8px;
    border: 1px solid white;
}

/* --- 3. RESPONSIVE GRID (Point 3 Fix) --- */
.services-grid {
    display: grid;
    /* Automatically creates 1 column on mobile, 3 on desktop */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 4. GLASS POUCH FIX (Point 2 Fix) --- */

 

.glass-pouch {
    flex: 1;
    width: 100%;
    min-width: 280px; /* Lowered from 320px to fit small phones */
    max-width: 500px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px; /* Scaled down padding for mobile */
}



/* --- 6. MOBILE-ONLY TWEAKS (Point 6 Fix) --- */
@media (max-width: 600px) {
    .call-btn-header span {
        display: none; /* Hides "CALL" text on tiny screens, keeps icon */
    }
    
    .hero {
        padding: 60px 20px; /* Reduced padding so hero isn't too tall */
    }

    .hero h1 {
        font-size: 1.5rem;
    }
    
    .whatsapp-float { bottom: 20px; }
    .phone-float { bottom: 90px; }
}

/* --- REVIEWS & CARDS --- */
.card, .product-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}
 
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
     transition: none;
         scroll-behavior: smooth;
}


    /* Left: Sidebar Menu + Logo */
    .header-left {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
    }


.header-logo {
    border-radius: 8px !important;
    object-fit: contain;
    border: 2px solid white;
    display: block;
     max-height: 60px; /* Keeps it within header height */
    width: auto;
    margin: 0 auto; /* Centers horizontally if container is wide */
    object-fit: contain;
}



    /* Center: Main Heading */
    .header-center {
        flex: 3; /* Gives more room for the long title */
        text-align: center;
            flex-direction: column;
    }
                                              


.main-heading {
    margin: 0;
    font-size: 1.2; /* Reduced from 2.1rem for mobile friendliness */
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
}
    /* Right: Call Button */
    .header-right {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .call-btn-header {
        background: var(--secondary-green);
        color: white;
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 25px;
        font-size: 12px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 5px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
@media (max-width: 600px) {
    /* Hide the call button in the top header only */
    .call-btn-header {
        display: none !important;
    }
    
    /* Ensure the logo and toggle menu have enough space */
    .call-btn-header {
        justify-content: space-between;
    }
}
   
section {
    scroll-margin-top: 70px; /* Adjust this to the height of your header */
}
    /* Small Screen Adjustments */
    @media (max-width: 400px) {
        .main-heading { font-size: 0.9rem; }
        .header-logo { width: 35px; height: 35px; }
        .call-btn-header { padding: 6px 10px; font-size: 11px; }
    }
     .menu-btn {
            font-size: 28px;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
            padding: 0 15px;
        }

        /* --- SIDEBAR MENU --- */
   .sidebar {
            height: 100%; width: 0; position: fixed; z-index: 2001; top: 0; left: 0;
            background-color: #111; overflow-x: hidden; transition: 0.5s; padding-top: 60px;
        }

        .sidebar a, .sidebar button {
            padding: 12px 32px; text-decoration: none; font-size: 18px; color: #ccc;
            display: block; transition: 0.3s; background: none; border: none; width: 100%; text-align: left;
            cursor: pointer; font-family: inherit;
        }

        .sidebar a:hover { color: #fff; background: #222; }

        .sidebar-header {
            color: var(--primary-blue);
            padding: 10px 32px;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        /* --- HERO SECTION --- */
            .hero {
            background: #0a1628; /* fallback while slides load */
            color: white;
            padding: 120px 20px 80px;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
            min-height: 480px;
        }
	








      .ticker-window {
            width: 100%;
            overflow: hidden;
            background: #0c0c0c;
            border-top: 1px solid #444;
            border-bottom: 1px solid #444;
            padding: 15px 0;
            cursor: default;
        }

        .ticker-wrapper {
            display: inline-flex;
            white-space: nowrap;
            /* Animation starts here */
            animation: scroll-left 20s linear infinite;
        }
        

        .ticker-window:hover .ticker-wrapper{
            animation-play-state: paused;
        }

        .ticker-item {
            color: #b7c1e0;
            text-decoration: none;
            font-family: 'mv boli', monospace;
            padding: 0 30px;
            font-size: 1.1rem;
            text-transform: uppercase;
        }

        .ticker-item:hover {
            color: #00ff00;
        }
          /* Animation: Move from 0 to half of the total duplicated width */
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
     

        .btn {
            display: inline-block;
            background: var(--primary-blue);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: 0.3s;
            border: none;
        }

        .btn:hover { opacity: 0.9; transform: scale(1.05); }

        /* --- SERVICES SECTION --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .card {
            background: var(--white);
            border: 1px solid #eee;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        /* --- MAP SECTION---*/
        .map-container {
            width: 100%;
            height: 350px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #eee;
            margin-top: 20px;
        }

        .pricing-section { padding: 40px 0; background: var(--light-bg); }
        .pricing-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 8px; overflow: hidden; }
        .pricing-table th { background: var(--primary-blue); color: white; padding: 15px; text-align: left; }
        .pricing-table td { padding: 15px; border-bottom: 1px solid #eee; }
        /* --- ABOUT SECTION --- */
        .about-section {
            background: var(--light-bg);
            padding: 60px 0;
        }
     .about-section {
    display: flex;
    flex-direction: column; /* Stacks title, subtitle, and grid vertically */
    align-items: center;    /* Centers items horizontally */
    text-align: center;     /* Centers text inside paragraphs/headings */
    padding: 60px 20px;
}
        .about-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .stat-box {
            background: var(--primary-blue);
            color: white;
            padding: 20px;
            border-radius: 40px;
            flex: 1;
            min-width: 150px;
            text-align: center;
        }

        /* --- FORM SECTION --- */
        .contact-form {
            max-width: 600px;
            margin: 40px auto;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        input, select, textarea {
            width: 100%;
            padding: 12px;
            margin: 10px 0 20px 0;
            border: 1px solid #ccc;
            border-radius: 6px;
            box-sizing: border-box;
        }




.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
}

/* Photo Upload Box */
.file-input-wrapper {
    border: 2px dashed #ccc;
    padding: 20px;
    border-radius: 10px;
    background: #fdfdfd;
    text-align: center;
    transition: border-color 0.3s;
}

.file-input-wrapper:hover {
    border-color: var(--primary-blue);
}

.file-hint {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}

/* Textarea Styling */
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    resize: vertical; /* Allows user to pull it down but not wide */
}

textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
}
   







        footer {
            background: var(--dark-grey);
            color: white;
            text-align: center;
            padding: 40px 20px;
        }
        footer {
            color: white;         /* Change link color */
            text-decoration: none; /* Remove underline */
        }
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* This pushes items to opposite sides */
    align-items: center;            /* Keeps them level vertically */
    flex-wrap: wrap;                /* Ensures it looks good on mobile */
}


/* Footer Links */
.footer-links a {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
}
/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column; /* Stack them on top of each other */
        text-align: center;
        gap: 20px;
    }
    
    .footer-left, .footer-right {
        text-align: center;
        width: 100%;
    }

    .footer-links a {
        margin: 0 10px; /* Adjust spacing for mobile */
    }
}
/* Modal Background */
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
}

/* Modal Box */
.modal-content {
    background-color: #ffffff;
    color: #333333;
    margin: 5vh auto;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    opacity:1!important;
    overflow: hidden;
}

.close-btn {
    position: absolute;
    right: 20px; top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: rgb(0,0,0);
}


/* Modal Body Scrolling for long terms */
.modal-body {
    max-height: 400px;
    overflow-y: auto;
    text-align: left;
    flex-grow: 1;
    padding-right: 10px;
    line-height: 1.6;
    -webkit-overflow-scrolling: touch;
}

.modal-body p {
    margin-bottom: 15px;
    color: #bbb;
}

/* Custom Scrollbar for the terms */
.modal-body::-webkit-scrollbar {
    width: 6px;
}
.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}


        /* MOBILE OPTIMIZATION */
        @media (max-width: 600px) {
            .hero h1 { font-size: 1.1rem; }
            .whatsapp-float { padding: 3px 3px; font-size: 5px; }
        }
       /* --- ADD THE GROW EFFECT HERE --- */
        a, button, .product-card, .back-btn, .card {
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-block;
        }

        a:hover, button:hover, .product-card:hover, .back-btn:hover, .card:hover {
            transform: scale(1.08); /* Grows by 8% */
            cursor: pointer;
        }

        /* This makes it feel like a real button when you click/tap it */
        a:active, button:active {
            transform: scale(0.95); /* Shrinks slightly when pressed */
        }
     /* Styling the links with a boundary line */
a {
    color:#d4af37;             /* Sets the text color */
    text-decoration: underline; /* Keeps the underline active */
    text-underline-offset: 4px;     
    padding: 8px 16px;          /* Adds space inside the boundary */
    border: 2px solid transparent;  /* Creates the line boundary (border) */
    border-radius: 8px;         /* Rounds the corners of the box */
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;  /* Makes color changes smooth */
}

/* Changes when you hover over the link */
a:hover {
    background-color: #0056b3;  /* Fills the box with color */
    color: #ffffff;             /* Changes text to white */
    border-color: #0056b3;
}


/* This works for both the camera and the RO icons */
.bullet-emoji {
    width: 22px;             /* Slightly larger for visibility */
    height: auto;
    vertical-align: middle;  /* Keeps it level with your text */
    margin-right: 8px;       /* Adds a nice gap */
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.1)); /* Optional: adds depth */
}

#successMessage h3 {
    margin-top: 0;
    color: #155724;
}

#successMessage p {
    margin-bottom: 0;
}
/* --- CATALOGUE STYLES --- */
.catalogue-section {
    padding: 100px 20px 50px;
    text-align: center;
    background: #f9f9f9;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #003366;
    margin-bottom: 10px;
}
.card, .product-card, .price-card {
    background-color: var(--card-bg);
    color: var(--text-color);
}

/* The background overlay */
.overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 998; /* Sits behind the sidebar (999) */
    transition: 0.3s;
}




.why-us-section {
    display: flex;
    flex-direction: column; /* Stacks title, subtitle, and grid vertically */
    align-items: center;    /* Centers items horizontally */
    text-align: center;     /* Centers text inside paragraphs/headings */
    padding: 60px 20px;
}




.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 25px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    color: rgb(19, 201, 34);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 5px;
}

/* The Blinking Light */
.status-dot {
    height: 8px;
    width: 8px;
    background-color: #25d366; /* Online Green */
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

/* The Animation */
.online-pulse {
    animation: pulse-green 1s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.status-dot.offline {
    background-color: #ff4b2b; /* Offline Red */
    animation: none;
}

#backToTop {
    position: fixed;
    bottom: 70px; /* Requested height */
    left: 15px;   /* Positioned on left */
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    padding: 0;
    transition: transform 0.2s;
}

.progress-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;  /* Changed to 100% */
    height: 100%; /* Changed to 100% */
}

#backToTop .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #333;
}

@media (max-width: 600px) {
    #backToTop {
        width: 45px;  /* Button shrinks, but SVG will now follow */
        height: 45px;
        bottom: 70px;
        left: 20px;
    }
}





.reviews-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.reviews-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.review-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: none; /* Hidden by default */
    animation: fadeIn 0.5s ease-in-out;
}

.review-card.active {
    display: block; /* Only show active card */
}

.stars {
    color: #ffcc00;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.review-card h4 {
    margin-top: 20px;
    color: var(--primary-blue);
}

/* Dots Styling */
.dots-container {
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary-blue);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}









.whatsapp-instruction {
    background: #e7f7ed;
    border-left: 4px solid #25d366;
    padding: 10px;
    margin: 15px 0;
    border-radius: 4px;
}

.whatsapp-instruction p {
    margin: 0;
    font-size: 14px;
    color: #128c7e;
}








.thanks-pouch {
    position: fixed;
    top: -120px; /* Slightly higher to be safe */
    left: 50%;
    display: flex;
    z-index: 999999!important;
    transform: translateX(-50%);
    /* ... your other styles ... */
    visibility: visible; /* Add this */
    transition: top 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.thanks-pouch.show {
    top: 20px;
    visibility: visible; /* Add this */
}

.pouch-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pouch-icon { font-size: 24px; }
.pouch-text h4 { margin: 0; color: #128c7e; font-size: 16px; }
.pouch-text p { margin: 0; font-size: 13px; color: #444; }

.pouch-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #888;
    margin-left: 10px;
}


#thanks-pouch {
    display: none; 
}

/* Fix: Ensure hover is only on the anchor tag, not the whole sidebar */
.sidebar a:hover {
    background-color: #0056b3; /* Your blue color */
    width: 100%; /* Ensures it only fills the sidebar width */
}

/* Container for both pouches */
.feedback-layout {
    display: flex;
    justify-content: center;
    /* Makes both pouches the same height */
    gap: 40px;            /* Clear boundary between pouches */
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f7ff 0%, #c9dfff 100%);
    flex-wrap: wrap;      /* Stack them on mobile */
     
   
    justify-content: center;
    gap: 200px;

    
}

/* Base Glass Pouch Style */
.glass-pouch {
    flex: 1;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Slight Blue Tint for Inquiry Pouch */
.inquiry-pouch {
    background: rgba(224, 240, 255, 0.6);
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.pouch-title {
    text-align: center;
    color: #003366;
    margin-bottom: 30px;
    font-size: 22px;
}

.wa-submit-btn {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .feedback-layout {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}


.wa-submit-btn.loading {
    background: #1da851; /* Darker green while loading */
    color: transparent;
    position: relative;
    pointer-events: none; /* Prevent double clicks */
}

.wa-submit-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* Styling for Newspaper Reviews */
.newspaper-review {
    border-top: 4px solid var(--primary-blue); /* Distinctive top border */
    background: #fffdf5 !important; /* Slightly aged paper color */
    font-style: italic;
}

.newspaper-source {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    color: #444;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}


/* --- NEWSLETTER SECTION --- */
.newsletter-box {
    background: linear-gradient(135deg, #003366, #0056b3);
    color: white;
    padding: 60px 5%;
    text-align: center;
    margin: 40px 0;
}
.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 25px auto 0;
    gap: 10px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    outline: none;
}
.newsletter-form button {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    background: #25D366;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* --- MOBILE TWEAKS (@media) --- */
@media (max-width: 600px) {
    .wa-float, .ph-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        right: 15px;
    }
    .wa-float.active { bottom: 70px; }
    .ph-float.active { bottom: 130px; }
    
    .newsletter-form { flex-direction: column; }
}




/* --- FINAL MOBILE FIXES --- */
@media (max-width: 600px) {
    header {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 5px 10px!important;
    }

    .header-left {
        flex: 0 0 auto; /* Don't let it stretch */
    }

    .header-center {
        flex: 1;
        padding: 0 5px;
    }

    .main-heading {
        font-size: 1rem;
    }

    .header-right {
        flex: 0 0 auto;
    }

    .call-btn-header span:last-child {
        display: none; /* Hides the word "CALL", leaves the 📞 icon to save space */
    }

    .hero {
        padding: 40px 10px; /* Prevents text from hitting the edges */
    }

    section {
        scroll-margin-top: 90px; /* Matches our new smaller header */
    }
}

@media (max-width: 600px) {
    .menu-btn {
        display: none !important;
    }
    .profile-circle {
        display: flex !important;
    }
}
@media (max-width: 600px) {
    /* Stop the shrunken look */
    body, html {
        overflow-x: hidden; /* Prevents side-scrolling */
        width: 100%;
    }

    header {
        flex-wrap: wrap; /* Allows items to stack if they run out of room */
        gap: 10px;
    }

    /* Shrink the logo so it doesn't push the Call button out */
    .header-logo {
        width: 50px !important;
        height: 50px !important;
        margin: 0 !important;
    }

    .main-heading {
        font-size: 1.1rem !important;
        flex: 2;
    }

    /* Fix the Hero text size so it doesn't overlap */
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    /* Stack the Service Cards properly */
    .services-grid {
        grid-template-columns: 1fr !important;
        padding: 0 10px;
    }

    /* Ensure the call button stays inside */
    .header-right {
        flex: 0 0 auto;
    }
    
    .call-btn-header {
        padding: 5px 10px;
        font-size: 10px;
    }
}


#particles-js canvas {
    background: transparent !important;
    display: block;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #aebcbe;
    z-index: -1; /* Places it behind all content */
    pointer-events: pointer; /* Allows clicks to pass through to underlying elements */
}



footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}
.footer-logo {
    max-width: 130px; /* Adjust this number to your liking */
    height: auto;
    margin-bottom: 20px;
  
}

@media (max-width: 600px) {
    .footer-logo {
        max-width: 140px; /* Smaller for mobile screens */
        margin: 0 auto 20px; /* Centers logo on mobile */
    }
}
.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column h3 {
    color: var(--secondary-green);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-bottom {
width: 100%;
    margin-top: 40px;            /* Space above the line */
    padding-top: 20px;           /* Space below the line */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* The professional thin line */
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* Specific Styles for AMC Page */
.amc-hero {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://i.ibb.co/rK7yLZt4/download-1.jpg');
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 50px 20px;
    background: #ffffff;

}

.price-card {
    background: rgb(255, 255, 255);
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
        border: 1.5px solid var(--primary-blue);
}

.price-card.featured {
    border: 3px solid var(--primary-blue);
    transform: scale(1.05);
}

.price-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.price-card ul li::before {
    content: "✔️";
    margin-right: 10px;
}

.footer-column a:hover {
    color: #fff;
}







/* --- AMC BENEFITS SECTION --- */
.amc-benefits-section {
    background: linear-gradient(-45deg, #23a6d5, #23d5ab, #ee7752, #3f67d4, #25D366); /* Bubble BG Colors */
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite; /* Uses the same animation as body for consistency */
    padding: 80px 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden; /* Crucial for containing particles if you add them */
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.amc-benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* For z-index if you add overlays */
    z-index: 1;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent white card */
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3)); /* Little shadow for icons */
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white; /* Ensure heading is white */
}

.benefit-card p {
    font-size: 0.95rem;
    color: #e0e0e0; /* Lighter text for readability */
}

.subsection-title {
    font-size: clamp(1.4rem, 3.5vw, 2.5rem);
    margin-top: 60px;
    margin-bottom: 30px;
    font-weight: 600;
}

.purchase-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allows steps to wrap on mobile */
    gap: 20px;
    margin-bottom: 50px;
}

.step {
    background: rgba(0, 0, 0, 0.2); /* Darker background for steps */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    width: 300px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    border: 3px solid white;
}

.step h4 {
    margin-top: 15px;
    font-size: 1.3rem;
    color: white;
}

.step p {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .amc-benefits-section {
        padding: 60px 15px;
    }
    .benefits-grid, .purchase-steps {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    .benefit-card, .step {
        width: 100%;
        max-width: 400px; /* Constrain width on smaller screens */
        margin: 0 auto;
    }
}



/* --- HEADER LOGO & TEXT --- */
.nav-icon-logo {
    height: 110px;
    width: auto;
    margin-left: 5px;
}
/* Mobile Tweak for Profile */
@media (max-width: 600px) {
    .nav-icon-logo { width: 70px; height: 70px; }
}
.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white; /* Or #d4af37 for Gold */
}

.brand-name {
    font-size: 2.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
}

.brand-sub {
    font-size: 1.2rem;
    letter-spacing: 4px;
    font-weight: 300;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 2px;
}

.brand-slogan {
    font-size: 0.8rem;
    margin: 0;
    font-style: italic;
    opacity: 0.8;
}

/* --- BUTTON GROUPING --- */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-status {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
}

/* --- RESPONSIVE LOGIN LOGIC --- */
.login-btn-desktop {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .login-btn-desktop {
        display: none; /* Hide in header on mobile */
    }
    
    .brand-name { font-size: 1.7rem; }
    .brand-sub{ font-size: 0.9rem;}
    .brand-slogan{font-size: 0.6rem;}
    .header-status {
        padding: 5px;
        font-size: 10px;
    }
}




/* Create a special class for these specific links */
.simple-link {
    text-decoration: none; /* No underline by default */
    color: inherit;       /* Takes the color of surrounding text */
    transition: all 0.3s ease;
       border: none !important;
    padding: 0 !important;
    background: none !important;
}

/* The Hover Effect: Underline and Blue */
.simple-link:hover {
    color: #007bff;            /* Professional Blue */
    text-decoration: underline; /* Adds the underline */
    transform: none;           /* Disables the 'grow' effect if you have it globally */
}









/* Modal Background */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

/* The Card */
.auth-card {
    background: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
     max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.auth-subtitle { color: #666; margin-bottom: 25px; font-size: 0.9rem; }

/* Form Elements */
.input-group { text-align: left; margin-bottom: 15px; }
.input-group label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 0.85rem; }
.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: #007bff; /* Match your brand blue */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.auth-btn:hover { background: #0056b3; }

.auth-switch { margin-top: 20px; font-size: 0.9rem; }
.auth-switch a { color: #007bff; text-decoration: none; font-weight: bold; }

.close-btn {
    position: absolute;
    right: 20px; top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}


.social-btn {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    background: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}
.google { background: #1877F2; color: white; border: none; }
.facebook { background: #1877F2; color: white; border: none; }

/* Social Login Container */
.social-auth {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pill-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    background: white;
    width: 100%;
}

.pill-btn img {
    width: 20px;
    height: 20px;
}

.pill-btn:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.fb-btn {
    background-color: #1877F2;
    color: rgb(0, 0, 0);
    border: none;
}

.social-login-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.pill-btn {
    border-radius: 50px;
    padding: 12px;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

.pill-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pill-btn img {
    width: 20px;
}


#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #28a745;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    right: 30px;
    top: 30px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#toast.show {
    visibility: visible;
    animation: slideIn 0.5s, fadeOut 0.5s 2.5s;
}

@keyframes slideIn { from {right: -300px;} to {right: 30px;} }
@keyframes fadeOut { from {opacity: 1;} to {opacity: 0;} }

/* Profile Circle in Header */
.profile-circle {
    width: 40px;
    height: 40px;
    background-color: #71e7eb;
    color: rgb(79, 129, 236);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
    border: 2px solid white;
     transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.profile-circle:hover {
    background-color: #007bff;
    color: white;
    transform: scale(1.1);
}
   
/* Sidebar Logout Styling */
.sidebar-logout {
    margin-top: 10px;
    width: 100%;
    padding: 15px 12px;
    background: #000000 !important;
    color: white !important;
    border: none;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar-logout:hover {
    background: #e74646 !important;
}

/* Mobile Tweak for Profile */
@media (max-width: 600px) {
    .profile-circle { width: 36px; height: 36px; font-size: 12px; }
}





/* --- NEW PROFILE DROPDOWN --- */
.profile-dropdown {
    position: absolute;
    top: 78px;
    right: 15px;
    background: #ffffff;
    width: 260px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: none;
    flex-direction: column;
    z-index: 10000;
    border: 1px solid #eef0f3;
    overflow: hidden;
    animation: dropdownFadeIn 0.25s ease;
}
@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.profile-dropdown.show {
    display: flex !important;
}

/* Header section */
.pd-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px 14px;
    background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
    border-bottom: 1px solid #e8edf2;
}
.pd-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0056b3, #25d366);
    color: white;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,86,179,0.3);
    border: 2px solid white;
}
.pd-userinfo {
    overflow: hidden;
}
.pd-name {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pd-email {
    font-size: 11px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* Menu items */
.pd-menu {
    padding: 8px 0;
}
.pd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
    /* Override global a styles */
    border-radius: 0 !important;
    border: none !important;
    padding-left: 18px !important;
}
.pd-item:hover {
    color: #0056b3 !important;
    background: none !important;
    border-color: transparent !important;
    transform: none !important;
}
.pd-icon {
    width: 18px;
    color: #aab;
    font-size: 14px;
    flex-shrink: 0;
    transition: color 0.2s;
}
.pd-item:hover .pd-icon {
    color: #0056b3;
}
.pd-signout {
    color: #d63031 !important;
    margin-top: 4px;
    border-top: 1px solid #f0f0f0 !important;
    padding-top: 12px !important;
}
.pd-signout:hover {
    color: #c0392b !important;
    background: none !important;
}
.pd-signout .pd-icon {
    color: #d63031;
}

/* Footer links */
.pd-footer {
    padding: 10px 18px 12px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pd-footer-link {
    font-size: 11px !important;
    color: #3d3838 !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    transition: color 0.2s !important;
}
.pd-footer-link:hover {
    color: #0056b3 !important;
    background: none !important;
    transform: none !important;
}
.pd-footer-dot {
    color: #ddd;
    font-size: 12px;
}

/* Ensure the body hasn't been accidentally turned blue */
body {
    background-color: #ffffff; /* Or your preferred page color */
    margin: 0;
    padding: 0;
}


/* Glassmorphism header on scroll */

header.scrolled {
    background: #0056b3 !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid rgba(255,255,255,0.18) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35) !important;
}
/* Hide logo, show only text when scrolled */
header.scrolled .nav-icon-logo {
    opacity: 0;
    width: 0;
    margin: 0;
    transition: all 0.4s ease;
}

header .nav-icon-logo {
    transition: all 0.4s ease;
    opacity: 1;
}

header.scrolled .brand-name {
    font-size: 1.4rem;
    letter-spacing: 2px;
}


/* Steps SVG above background, below card content */
#steps-svg {
    z-index: 4 !important;
}
.step {
    z-index: 3 !important;
    position: relative;
}
@media (max-width: 600px) {
    #steps-svg {
        display: none;
    }
   #footer-svg{display: none;}
}

header.scrolled .nav-icon-logo {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    transition: all 0.4s ease;
}
header .nav-icon-logo {
    transition: all 0.4s ease;
}

/* --- ORBITING RINGS CONTINUOUS ANIMATION --- */
@keyframes drawRing1 {
    0%   { stroke-dashoffset: 1400; opacity: 0.7; }
    25%  { stroke-dashoffset: 0;    opacity: 0.9; }
    50%  { stroke-dashoffset: 0;    opacity: 0.9; }
    75%  { stroke-dashoffset: 1400; opacity: 0.7; }
    100% { stroke-dashoffset: 1400; opacity: 0.7; }
}
@keyframes drawRing2 {
    0%   { stroke-dashoffset: 1100; opacity: 0.7; }
    10%  { stroke-dashoffset: 1100; opacity: 0.7; }
    40%  { stroke-dashoffset: 0;    opacity: 0.9; }
    65%  { stroke-dashoffset: 0;    opacity: 0.9; }
    90%  { stroke-dashoffset: 1100; opacity: 0.7; }
    100% { stroke-dashoffset: 1100; opacity: 0.7; }
}
@keyframes drawRing3 {
    0%   { stroke-dashoffset: 0;   opacity: 0.9; }
    30%  { stroke-dashoffset: 800; opacity: 0.7; }
    55%  { stroke-dashoffset: 800; opacity: 0.7; }
    80%  { stroke-dashoffset: 0;   opacity: 0.9; }
    100% { stroke-dashoffset: 0;   opacity: 0.9; }
}

#ring-1 { animation: drawRing1 6s ease-in-out infinite; }
#ring-2 { animation: drawRing2 6s ease-in-out infinite; }
#ring-3 { animation: drawRing3 6s ease-in-out infinite; }



/* --- DARK MODE --- */
body.dark-mode {
    background-color: #0d1117 !important;
    color: #e6edf3 !important;
}
body.dark-mode .card,
body.dark-mode .price-card,
body.dark-mode .glass-pouch,
body.dark-mode .review-card,
body.dark-mode .auth-card,
body.dark-mode .admin-box,
body.dark-mode .user-card {
    background: #161b22 !important;
    color: #e6edf3 !important;
    border-color: #30363d !important;
}
body.dark-mode .about-section,
body.dark-mode .pricing-section {
    background: #0d1117 !important;
}
body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
    background: #21262d !important;
    color: #e6edf3 !important;
    border-color: #30363d !important;
}
body.dark-mode .profile-dropdown,
body.dark-mode .pd-header {
    background: #161b22 !important;
    border-color: #30363d !important;
}
body.dark-mode .pd-name,
body.dark-mode .pd-item {
    color: #e6edf3 !important;
}
body.dark-mode .sidebar {
    background-color: #0d1117 !important;
}
body.dark-mode footer {
    background-color: #010409 !important;
}
body.dark-mode .pricing-table td {
    border-color: #30363d !important;
    color: #e6edf3 !important;
}
body.dark-mode .pricing-table {
    background: #161b22 !important;
}

/* Dark mode toggle button */
.dark-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px !important;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: none;
    border: none !important;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
    border-radius: 0 !important;
}
.dark-toggle:hover {
    color: #0056b3 !important;
    background: none !important;
    transform: none !important;
}
.dark-toggle-icon {
    width: 18px;
    font-size: 14px;
    color: #aab;
}
/* The pill switch */
.toggle-switch {
    margin-left: auto;
    width: 36px;
    height: 20px;
    background: #ddd;
    border-radius: 10px;
    position: relative;
    transition: background 0.3s;
    flex-shrink: 0;
}
.toggle-switch::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
body.dark-mode .toggle-switch {
    background: #0056b3;
}
body.dark-mode .toggle-switch::after {
    transform: translateX(16px);
}

    
    
    


    /* ══════════════════════════════════════════
       STEPS — CLEAN NO SVG ARROWS
    ══════════════════════════════════════════ */
    .purchase-steps {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 50px;
      position: relative;
    }

    /* Arrow connector between steps (CSS only) */
    .step-connector {
      display: flex;
      align-items: center;
      color: rgba(255,255,255,0.6);
      font-size: 2rem;
      align-self: center;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .step-connector { display: none; }
    }


/* ════════════════════════════════════════════════════
   FLOATING BUTTONS — WhatsApp & Phone
   Exact code provided by user
   ════════════════════════════════════════════════════ */
.wa-float, .ph-float {
    position: fixed;
    right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 9999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: white !important;
    text-decoration: none;
    font-size: 28px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Start state: hidden below screen */
    bottom: -100px;
    opacity: 0;
}
@media (max-width: 600px) {
    .wa-float, .ph-float{
        width: 50px;
        height: 50px;
        font-size: 22px;
        right: 15px;
    }
}
.wa-float { background-color: #25D366; }
.ph-float { background-color: #0056b3; }

/* Show States */
.wa-float.active { bottom: 80px;  opacity: 1; }
.ph-float.active { bottom: 150px; opacity: 1; }
@media (max-width: 600px) {
    .wa-float.active { bottom: 90px; }
    .ph-float.active { bottom: 140px; }
}
/* Wiggle — only the icon inside, not the whole button */
.wiggle-me i {
    animation: icon-wiggle 1s ease-in-out;
}
@keyframes icon-wiggle {
    0%   { transform: scale(1) rotate(0deg); }
    20%  { transform: scale(1.3) rotate(-15deg); }
    40%  { transform: scale(1.3) rotate(15deg); }
    60%  { transform: scale(1.3) rotate(-15deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* ════════════════════════════════════════════════════
   SOCIAL PROOF TOAST  (bottom-left corner)
   ════════════════════════════════════════════════════ */
#social-toast {
    position: fixed;
    bottom: 150px; left: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 13px 16px;
    display: none;              /* hidden until JS shows it */
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-left: 4px solid #25d366;
    z-index: 99997;             /* below floating buttons */
    max-width: 300px;
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
}
#social-toast span:first-child { font-size: 26px; flex-shrink: 0; }
#social-toast strong { font-size: 13.5px; color: #1a1a2e; display: block; margin-bottom: 2px; }
#social-toast p      { font-size: 12px; color: #6b7280; margin: 0; }

@keyframes toastSlideIn {
    from { transform: translateX(-120%); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
}
@keyframes toastSlideOut {
    from { transform: translateX(0);     opacity: 1; }
    to   { transform: translateX(-120%); opacity: 0; }
}

/* Dark mode — toast stays readable */
body.dark-mode #social-toast {
    background: #1e293b;
    border-left-color: #25d366;
}
body.dark-mode #social-toast strong { color: #f1f5f9; }
body.dark-mode #social-toast p      { color: #94a3b8; }

/* ════════════════════════════════════════════════════
   MICRO-INTERACTIONS — 3D card tilt + icon pulse
   ════════════════════════════════════════════════════ */
.card {
    transform-style: preserve-3d;
    /* Override old transition so tilt works smoothly */
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.card:hover {
    /* 3D tilt effect: card tilts toward viewer on hover */
    transform: perspective(600px) rotateY(4deg) rotateX(-3deg) translateY(-6px) !important;
    box-shadow: 0 20px 50px rgba(0,86,179,0.18) !important;
}
/* Pulse the heading icon/emoji when card is hovered */
.card:hover h2 {
    animation: iconPulse 0.5s ease;
    display: inline-block;
}
@keyframes iconPulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.3) rotate(-6deg); }
    70%  { transform: scale(1.1) rotate(4deg); }
    100% { transform: scale(1); }
}

/* ════════════════════════════════════════════════════
   MOBILE — floating buttons scale down
   ════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .wa-float, .ph-float { width: 50px; height: 50px; font-size: 22px; right: 15px; }
    .wa-float.active { bottom: 70px; }
    .ph-float.active { bottom: 130px; }
}


/* Pop-up Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 100000000;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
}

.popup-icon { font-size: 50px; margin-bottom: 15px; }

.popup-btn {
    display: inline-block;
    background: #0056b3;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

.popup-overlay.show { display: flex; }


 /* FAQ */
    .faq-sec{max-width:1100px;margin:28px auto 0;padding:0 20px}
    .faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .faq-item{background:var(--card);border-radius:14px;border:1.5px solid #e5e9f5;overflow:hidden;transition:border-color .2s}
    .faq-item:hover{border-color:var(--blue)}
    .faq-q{padding:16px 18px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-weight:600;font-size:14px;user-select:none}
    .faq-q .arr{color:var(--blue);transition:transform .3s;font-size:12px;flex-shrink:0}
    .faq-q.op .arr{transform:rotate(180deg)}
    .faq-a{display:none;padding:0 18px 16px;font-size:13.5px;color:var(--muted);line-height:1.6}
    .faq-a.op{display:block}

     /* CARD */
    .c-card{background:var(--card);border-radius:var(--r);padding:28px;box-shadow:var(--sh);border:1px solid #e5e9f5}
    .c-card-title{font-family:'Syne',sans-serif;font-size:1.05rem;font-weight:700;margin-bottom:20px;display:flex;align-items:center;gap:9px;color:var(--text)}
    .c-card-title i{color:var(--blue)}
    @media(max-width:768px){.contact-grid,.faq-grid,.f-row{grid-template-columns:1fr}.quick-row .q-pill{min-width:calc(50% - 7px);flex:none}}
    @media(max-width:480px){.quick-row .q-pill{min-width:100%}}


/* ═══ CARD TILT + GLOW FIX ═══ */
.card {
    transform-style: preserve-3d;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
    border: 1.5px solid transparent;
    background: white;  /* explicit so it contrasts */
}

.card:hover {
    transform: perspective(600px) rotateY(6deg) rotateX(-4deg) translateY(-8px) !important;
    box-shadow: 
        0 20px 50px rgba(0, 86, 179, 0.2),
        0 0 0 2px rgba(0, 86, 179, 0.4),
        0 0 30px rgba(0, 86, 179, 0.15) !important;
    border-color: rgba(0, 86, 179, 0.5) !important;
}

/* Dark mode cards need a base colour so tilt is visible */
body.dark-mode .card {
    background: #1e293b;
    border: 1.5px solid rgba(255,255,255,0.08);
}
body.dark-mode .card:hover {
    box-shadow: 
        0 20px 50px rgba(37, 211, 102, 0.2),
        0 0 0 2px rgba(37, 211, 102, 0.4),
        0 0 30px rgba(37, 211, 102, 0.1) !important;
    border-color: rgba(37, 211, 102, 0.5) !important;
}

/* ═══ SLOT COUNTER ═══ */
.slot-counter {
    display: inline-block;
    overflow: hidden;
    height: 1.2em;
    vertical-align: bottom;
    position: relative;
}
.slot-reel {
    display: flex;
    flex-direction: column;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slot-digit {
    height: 1.2em;
    line-height: 1.2em;
    display: block;
}

/* ═══ FLOATING BUTTON WAVES ═══ */
.wa-float, .ph-float {
    position: fixed;
}
.wa-float::before, .wa-float::after,
.ph-float::before, .ph-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: btn-wave 2s ease-out infinite;
    pointer-events: none;
}
.wa-float::before { animation-delay: 0s; }
.wa-float::after  { animation-delay: 1s; }
.ph-float::before { animation-delay: 0.3s; }
.ph-float::after  { animation-delay: 1.3s; }

.wa-float::before, .wa-float::after {
    background: rgba(37, 211, 102, 0.4);
}
.ph-float::before, .ph-float::after {
    background: rgba(0, 86, 179, 0.4);
}

@keyframes btn-wave {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0;   }
}

/* ═══ FLOATING LABELS ═══ */
.float-label {
    position: relative;
    margin-bottom: 4px;
}
.float-label input,
.float-label select {
    width: 100%;
    padding: 16px 14px 6px;
    border: 1.5px solid #dde3f0;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    background: white;
}
.float-label input:focus {
    border-color: #0056b3;
}
.float-label label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #888;
    pointer-events: none;
    transition: all 0.2s ease;
}
/* When input has content OR is focused, float the label up */
.float-label input:focus ~ label,
.float-label input:not(:placeholder-shown) ~ label {
    top: 8px;
    transform: translateY(0);
    font-size: 10px;
    color: #0056b3;
    font-weight: 600;
}
/* Fix select float label */
.float-label select {
    width: 100%;
    padding: 16px 14px 6px;
    border: 1.5px solid #dde3f0;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    background: white;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Float the label when select has a real value (not empty) */
.float-label select:focus ~ label,
.float-label select:not([data-empty="true"]) ~ label {
    top: 8px;
    transform: translateY(0);
    font-size: 10px;
    color: #0056b3;
    font-weight: 600;
}
/* ═══ BOOKING PROGRESS BAR ═══ */
.progress-bar-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    gap: 0;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #dde3f0;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s ease;
}
.progress-step.active .step-circle {
    background: #0056b3;
    color: white;
    box-shadow: 0 0 0 4px rgba(0,86,179,0.2);
}
.progress-step.done .step-circle {
    background: #25d366;
    color: white;
}
.progress-step span {
    font-size: 11px;
    color: #888;
    font-weight: 600;
}
.progress-step.active span { color: #0056b3; }
.progress-step.done span   { color: #25d366; }
.progress-line {
    flex: 1;
    height: 3px;
    background: #dde3f0;
    margin: 0 6px;
    margin-bottom: 22px;
    min-width: 40px;
    transition: background 0.4s;
}
.progress-line.done { background: #25d366; }
.booking-step.hidden { display: none; }
.btn-next {
    background: #0056b3;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    flex: 1;
    transition: background 0.2s;
}
.btn-back {
    background: #f0f4ff;
    color: #0056b3;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.confirm-box {
    background: #f0f7ff;
    border-radius: 12px;
    padding: 18px;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 16px;
    border-left: 4px solid #0056b3;
}

/* ═══ LOGIN NUDGE ═══ */
.login-nudge {
    position: fixed;
    bottom: -160px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 18px 18px 0 0;
    padding: 20px 24px 24px;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
    z-index: 99998;
    width: min(420px, 95vw);
    transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 3px solid #0056b3;
}
.login-nudge.show { bottom: 0; }
.nudge-btn {
    width: 100%;
    margin-top: 14px;
    background: #0056b3;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.nudge-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    color: #aaa;
    cursor: pointer;
}
body.dark-mode .login-nudge {
    background: #1e293b;
    border-top-color: #25d366;
}
body.dark-mode .login-nudge strong { color: #f1f5f9; }

/* ═══ BEFORE/AFTER SLIDER ═══ */
.ba-slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 400px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    cursor: ew-resize;
    box-shadow: 0 10px 40px rgba(0,86,179,0.15);
    user-select: none;
}
.ba-before, .ba-after {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.ba-before {
    width: 50%;
    border-right: 3px solid white;
    z-index: 2;
}
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ba-handle::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: white;
    transform: translateX(-50%);
}
.ba-arrow {
    background: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #0056b3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1;
}
.ba-arrow.left  { margin-right: -4px; }
.ba-arrow.right { margin-left: -4px; }
@media(max-width:600px) { .ba-slider { height: 220px; } }



/* ═══════════════════════════════════════════════════
   FIX 2 — HERO SWIPE TEXT CSS
   Paste this at the very BOTTOM of style.css
   ═══════════════════════════════════════════════════ */

/* ── HERO SLIDESHOW ── */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: brightness(0.45);
}
.hero-slide.active { opacity: 1; }

/* ── SWIPE WORD ANIMATION ── */
.hero-swipe-wrap {
    display: inline-block;
    /* height must match your font size × line-height */
    height: 1.3em;
    overflow: hidden;
    vertical-align: bottom;
    position: relative;
}

.hero-swipe-word {
    display: block;
    color: #25d366;
    font-weight: 800;
    /* start: hidden below the container */
    transform: translateY(110%);
    opacity: 0;
    position: absolute;
    left: 0;
    white-space: nowrap;
    /* smooth cubic-bezier slide */
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1),
                opacity   0.5s ease;
}

/* visible word slides into position */
.hero-swipe-word.active {
    transform: translateY(0%);
    opacity: 1;
    position: relative;   /* takes up space so wrap has height */
}

/* exiting word slides UP and out */
.hero-swipe-word.exit {
    transform: translateY(-110%);
    opacity: 0;
    position: absolute;   /* removed from flow */
}

/* ── RIPPLE BASE ── */
.ripple-btn {
    position: relative;
    overflow: hidden;
    /* keep your existing styles, just add this class */
}

/* The ripple circle that expands on click */
.ripple-btn .ripple-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transform: scale(0);
    animation: ripple-expand 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-expand {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.amc-form-image {
    position: absolute;
    background-size: cover;

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
    width: 50px;
    height: 50px;
    opacity: 0;
    z-index: 100;
}
/* ════ AMC CLEAN CSS ════ */

@property --border-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
@keyframes borderSpin {
    to { --border-angle: 360deg; }
}

/* Spinning gold border wrapper around pricing cards */
.amc-benefits-section-wrapper {
    position: relative;
    padding: 5px;
    border-radius: 22px;
    overflow: hidden;
    margin: 40px 20px;
}
.amc-benefits-section-wrapper::before {
    content: '';
    position: absolute;
    width: 200%; height: 200%;
    top: -50%; left: -50%;
    background: conic-gradient(from var(--border-angle), #FFD700, #0056b3, #25d366, #FFD700);
    animation: borderSpin 4s linear infinite;
    z-index: 0;
}

/* Pricing container sits inside the spinning border */
.pricing-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 30px;
    background: #f9f9f9;
    border-radius: 18px;
}

/* Price cards — spinning rainbow border + shimmer on hover */
.price-card {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
    border: none !important;
    z-index: 2;
}
.price-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 17px;
    background: conic-gradient(from var(--border-angle), #25d366 0%, #0056b3 25%, #ef4444 50%, #f59e0b 75%, #25d366 100%);
    animation: borderSpin 3s linear infinite;
    z-index: -1;
    filter: blur(1px);
}
.price-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 13px;
    background: white;
    z-index: 0;
}
.price-card > * { position: relative; z-index: 1; }
.price-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 24px 50px rgba(0,86,179,0.22);
}

/* Shimmer sweep layer — add <div class="shimmer-layer"></div> inside each .price-card */
.price-card .shimmer-layer {
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-150%) skewX(-25deg);
    pointer-events: none;
    z-index: 10;
    transition: transform 0.7s ease-in-out;
}
.price-card:hover .shimmer-layer { transform: translateX(150%) skewX(-25deg); }

.price-card .tag {
    position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #25d366, #0056b3);
    color: white; padding: 5px 20px; border-radius: 50px;
    font-size: 12px; font-weight: 700; white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,86,179,0.3); z-index: 2;
}
.price-card .card-header {
    font-size: 1.1rem; font-weight: 700; color: #0056b3;
    margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px;
}
.price-card .price { font-size: 2rem; font-weight: 900; color: #1a1a2e; margin: 12px 0; }
.price-card .price span { font-size: 1rem; color: #888; font-weight: 400; }
.price-card ul { list-style: none; padding: 0; margin-bottom: 24px; text-align: left; }
.price-card ul li { padding: 6px 0; font-size: 14px; color: #444; border-bottom: 1px dashed #f0f0f0; }
.price-card ul li::before { content: "✔ "; color: #25d366; font-weight: bold; }

/* Why Choose AMC section — dark live animated gradient */
.amc-benefits-section {
    background: linear-gradient(-45deg, #0a1628, #003f8a, #0a6b47, #1a0a3d);
    background-size: 400% 400%;
    animation: gradientLive 12s ease infinite;
    padding: 80px 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
@keyframes gradientLive {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.amc-benefits-section .container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

/* AMC Inquiry Form — techy dark design */
.amc-form-section {
    background: linear-gradient(135deg, #b4d4f3 0%, #99e4e4 50%, #e6afaf 100%);
    max-width: 100%;
    margin: 0;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}
.amc-form-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(0,86,179,0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(0,86,179,0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.amc-form-inner {
    position: relative; z-index: 1;
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
@media (max-width: 768px) { .amc-form-inner { grid-template-columns: 1fr; gap: 30px; } }

.amc-form-left h2 { color: white; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; margin-bottom: 8px; }
.amc-form-left h2 span { color: #25d366; }
.amc-form-left .form-tagline { color: #8ab4d4; font-size: 1rem; margin-bottom: 32px; }

.amc-feature-list { list-style: none; padding: 0; margin: 0 0 32px; }
.amc-feature-list li {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    color: #cce4ff; font-size: 0.95rem;
}
.amc-feature-list li:last-child { border: none; }
.amc-feat-icon {
    width: 38px; height: 38px;
    background: rgba(0,86,179,0.3); border: 1px solid rgba(0,86,179,0.5);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.amc-stats-row { display: flex; gap: 20px; flex-wrap: wrap; }
.amc-stat {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 14px 20px; text-align: center; flex: 1; min-width: 80px;
}
.amc-stat .num { font-size: 1.6rem; font-weight: 800; color: #25d366; display: block; }
.amc-stat .lbl { font-size: 11px; color: #8ab4d4; text-transform: uppercase; letter-spacing: 1px; }

.amc-form-right {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 36px; backdrop-filter: blur(10px); position: relative;
}
.amc-form-right::before {
    content: ''; position: absolute; top: 0; left: 10%; right: 10%;
    height: 2px; background: linear-gradient(90deg, transparent, #25d366, #0056b3, transparent);
}
.amc-form-right h3 { color: white; font-size: 1.2rem; margin-bottom: 24px; }
.amc-form-right .form-group label { color: #8ab4d4; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.amc-form-right input, .amc-form-right textarea, .amc-form-right select {
    background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(0,86,179,0.4) !important;
    color: white !important; border-radius: 10px !important; padding: 13px 16px !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}
.amc-form-right input:focus, .amc-form-right textarea:focus, .amc-form-right select:focus {
    border-color: #25d366 !important; box-shadow: 0 0 0 3px rgba(37,211,102,0.15) !important;
    outline: none !important; background: rgba(255,255,255,0.09) !important;
}
.amc-form-right input::placeholder, .amc-form-right textarea::placeholder { color: rgba(255,255,255,0.3) !important; }
.amc-form-right select option { background: #0d2545; color: white; }

.amc-submit-btn {
    width: 100%; padding: 15px;
    background: linear-gradient(135deg, #0056b3, #25d366);
    color: white; border: none; border-radius: 12px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s; margin-top: 8px;
    position: relative; overflow: hidden;
}
.amc-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,86,179,0.4); }