:root {
    --primary: #00d2ff;
    --primary-dark: #008c9e;
    --bg-dark: #0a0c10;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --accent-orange: #ff8c00;
    --success: #25D366;
    --error: #ff6b6b;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Animated Glow Background --- */
body::before {
    content: '';
    position: fixed;
    top: -10%; left: -10%;
    width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

header { padding: 2.5rem; text-align: center; }

.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 2rem;
    align-items: center;
    gap: 2rem;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0,210,255,0.15));
    animation: float 6s ease-in-out infinite;
}

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

/* --- Premium Form UI --- */
.form-container {
    background: var(--card-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto 5rem;
    box-shadow: 0 50px 100px rgba(0,0,0,0.6);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group.full-width { grid-column: span 2; }

label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

input, select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    padding: 1.1rem;
    border-radius: 16px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

/* --- Enhanced Add-on Cards --- */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.addon-card {
    cursor: pointer;
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.addon-card:hover { background: rgba(255,255,255,0.06); }

.addon-card input {
    position: absolute;
    opacity: 0;
}

.addon-card.active {
    border-color: var(--primary);
    background: rgba(0, 210, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.1);
}

.addon-icon { font-size: 1.5rem; margin-bottom: 5px; }
.addon-name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.addon-price { color: var(--primary); font-weight: 600; font-size: 0.85rem; }

/* --- Modern Payment Selector --- */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-method {
    cursor: pointer;
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.payment-method input { position: absolute; opacity: 0; }

.payment-method.active {
    border-color: var(--primary);
    background: rgba(0, 210, 255, 0.08);
}

.method-title { display: block; font-weight: 800; color: #fff; margin-bottom: 4px; }
.method-desc { display: block; font-size: 0.75rem; color: var(--text-dim); }

/* --- Price Table --- */
.result-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.2) 100%);
    border-radius: 24px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
}

.result-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-dim);
}

.result-line.total-line {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.pay-highlight {
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    margin-bottom: 8px;
}

button#submitBtn {
    width: 100%;
    padding: 1.4rem;
    margin-top: 2rem;
    border-radius: 20px;
    border: none;
    background: linear-gradient(45deg, var(--primary), #00a4ff);
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
    transition: all 0.4s;
}

button#submitBtn:hover:not(:disabled) {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.5);
}

@media (max-width: 768px) {
    .hero-section, .form-grid, .payment-grid { grid-template-columns: 1fr; }
    .hero-section {
        padding: 8rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section + div { grid-template-columns: 1fr !important; }
    .bulk-order-box, .track-order-box { padding: 2rem !important; }
}

#bulkOrderBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.4);
}

#trackBtn:hover {
    background: rgba(0, 210, 255, 0.1);
}

.partner-tile {
    background: rgba(255, 255, 255, 1);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    height: 120px;
    backdrop-filter: blur(10px);
}

.partner-tile img {
    max-width: 100%;
    max-height: 50px;
    /*filter: grayscale(1) brightness(1.5) opacity(0.7);*/
    transition: all 0.4s ease;
}

.partner-tile:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}

.partner-tile:hover img {
    filter: grayscale(0) brightness(1) opacity(1);
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .partners-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 600px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .partner-tile { padding: 1.5rem !important; height: 100px !important; }
}

.btn-whatsapp:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); }
.btn-telegram:hover { background: rgba(0, 136, 204, 0.2) !important; transform: translateY(-5px); }

@media (max-width: 900px) {
    .community-card { padding: 2.5rem !important; flex-direction: column !important; text-align: center; }
    .community-illustration { display: none !important; }
    .benefits-grid { grid-template-columns: 1fr !important; gap: 10px !important; margin: 0 auto 2.5rem !important; width: fit-content; text-align: left; }
    .community-buttons { justify-content: center; }
    .community-content h2 { font-size: 1.8rem !important; }
}

.gallery-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: zoom-in;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.2);
    z-index: 2;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* Verified Badge Style */
.verified-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(37, 211, 102, 0.9);
    backdrop-filter: blur(5px);
    color: #000;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Overlay Location Style */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
    opacity: 0;
    transition: 0.3s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
    .verified-badge { font-size: 0.5rem; padding: 4px 8px; top: 10px; left: 10px; }
}


/* FAQ Interaction Style */
.faq-item.active { border-color: var(--primary); background: rgba(0, 210, 255, 0.05); }
.faq-item.active .faq-answer { display: block; }
.faq-item.active span { transform: rotate(45deg); }

/* Gallery Polaroid Style */
.gallery-card { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-color); transition: 0.4s; }
.gallery-card img { width: 100%; height: auto; transition: 0.6s; }
.gallery-card:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; bottom: 0; width: 100%; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: #fff; opacity: 0; transition: 0.3s; text-align: left; }
.gallery-card:hover .gallery-overlay { opacity: 1; }
.verified-badge { position: absolute; top: 15px; left: 15px; background: var(--success); color: #000; padding: 5px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 800; z-index: 2; }


.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.1);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.quote {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 800;
    font-size: 0.9rem;
}

.author-info h4 { font-size: 1rem; margin-bottom: 2px; }
.author-info span { font-size: 0.75rem; color: var(--text-dim); display: block; }

.verified-tag {
    color: var(--success);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .testimonial-stats { grid-template-columns: 1fr !important; gap: 1rem !important; }
    .testimonial-card { padding: 1.5rem !important; }
}



.footer-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.social-icon img {
    width: 18px;
    filter: invert(1); /* Makes icons white */
}

.social-icon:hover img {
    filter: brightness(0); /* Makes icons black on hover */
}

@media (max-width: 900px) {
    footer div[style*="grid-template-columns"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 500px) {
    footer div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}


.gallery-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-card:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 10;
}




/* --- Floating Capsule Header --- */
.main-header {
    position: fixed;
    top: 20px; /* Floating from top */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1235px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05); /* Glass effect */
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 100px; /* Capsule Shape */
    padding: 0.6rem 2rem;
    padding-right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Scroll Effect */
.main-header.scrolled {
    top: 10px;
    background: rgba(10, 12, 16, 0.9);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Dropdown Container */
.nav-item { position: relative; }

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.nav-link:hover { color: var(--primary); }

/* Premium Dropdown Menu */
.dropdown-content {
    position: absolute;
    top: 140%;
    left: 0;
    background: #12141a;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    min-width: 220px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.nav-item:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: 0.2s;
}

.dropdown-link:hover {
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary);
    padding-left: 1.5rem;
}

/* Enquire Button (Matches Reference) */
.btn-enquire {
    background: var(--primary); /* Dark Red from CAA */
    color: white;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(155, 34, 38, 0.3);
}

.btn-enquire:hover {
    /*background: #bb3e03;*/
    transform: scale(1.05);
}






/* Hamburger Icon Animation */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001; /* Stay above everything */
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    display: block;
    transition: 0.3s;
    transform-origin: center;
}

/* Animate to X */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Logic */
@media (max-width: 900px) {
    .hamburger { display: flex; }

    .main-header { z-index: 1000; }

    .nav-menu {
        position: absolute;
        top: 50%; /* Starts inside the header */
        left: 5%;
        width: 90%;
        background: #0d1117;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 1.5rem 2rem; /* Top padding to clear the header */
        gap: 0.5rem;
        border-radius: 0 0 25px 25px;
        border: 1px solid var(--border-color);
        border-top: none;
        
        /* Behind effect */
        z-index: 999; 
        transform: translateY(-100%); 
        opacity: 0;
        pointer-events: none;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-actions { display: none; }
    
    /* Mobile Dropdown Styling */
    .nav-item { width: 100%; }
    .nav-link { 
        width: 100%; 
        justify-content: space-between; 
        padding: 1rem 0.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .dropdown-content {
        position: static;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        box-shadow: none;
        padding: 0;
        transition: all 0.4s ease-in-out;
    }

    .nav-item.open-submenu .dropdown-content {
        max-height: 500px;
        opacity: 1;
        padding: 0.5rem 0;
    }

    .nav-item.open-submenu .fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* --- Bulk Order & Tracking Block Responsive Fix --- */
@media (max-width: 900px) {
    /* Target the div wrapping the bulk-order and track-order boxes */
    .hero-section + div, 
    div[style*="grid-template-columns: 1fr 1fr"] { 
        grid-template-columns: 1fr !important; 
        padding: 2rem; /* Matches your section padding */
        gap: 2rem !important; /* Vertical gap between stacked blocks */
    }

    .bulk-order-box, .track-order-box {
        width: 100% !important;
        padding: 2rem !important;
    }
    
    .p-15m{
        padding: 1.5rem !important;
    }
}





/* HIDE SCROLLBAR */
.review-track::-webkit-scrollbar { display: none; }
.review-track { scrollbar-width: none; }

/* GOOGLE BUTTON ANIMATION */
@keyframes gradientMove {
    0% { background-position:0% 50%; }
    50% { background-position:100% 50%; }
    100% { background-position:0% 50%; }
}


/* =========================
   SLIDER STRUCTURE
========================= */

.review-slider {
    width: 100%;
    position: relative;
}

.review-viewport {
    overflow: hidden;
    padding: 25px 10px;
}

/* TRACK (FIXED) */
.review-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;                 /* IMPORTANT */
    scroll-snap-type: x mandatory;    /* SNAP ENABLE */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}


/* =========================
   CARDS (SNAP FIXED)
========================= */

.testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
    scroll-snap-align: start;   /* ⭐ KEY FIX */
}

/* HOVER EFFECT */
.testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 210, 255, 0.15);
}


/* =========================
   DOT NAVIGATION
========================= */

.review-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.review-dots span {
    width: 8px;
    height: 8px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dots span:hover {
    background: var(--primary);
    opacity: 0.7;
}

.review-dots span.active {
    background: var(--primary);
    transform: scale(1.6);
    box-shadow: 0 0 10px rgba(0,210,255,0.6);
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .review-track {
        gap: 16px;
    }

    .review-viewport {
        padding: 20px 5px;
    }
}