/* ================= VARIABLES ================= */
:root {
    --primary: #1565c0;       /* Royal Blue - Professional */
    --primary-dark: #0d47a1;
    --accent: #e3f2fd;        /* Light Blue */
    --gold: #fbc02d;          /* Gold for premium feel */
    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --font-main: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* GLOBAL RESET */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* This stops the double-width issue */
    width: 100%;
    position: relative;
}
body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.6;
}


/* ================= BACKGROUND ANIMATION ================= */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Stays behind everything */
    overflow: hidden;
    pointer-events: none; /* Allows clicking through it */
}

.bg-animation i {
    position: absolute;
    display: block;
    color: var(--primary); /* Royal Blue */
    opacity: 0.05; /* Very subtle (Professional look) */
    font-size: 2rem;
    bottom: -100px; /* Start below screen */
    animation: floatUp 15s linear infinite;
}

/* Specific styling for 'Gold' items (Stars/Celebration) */
.bg-animation i.fa-star,
.bg-animation i.fa-champagne-glasses,
.bg-animation i.fa-bolt {
    color: var(--gold);
    opacity: 0.08;
}

/* Keyframes for the floating effect */
@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.08; /* Fade in */
    }
    90% {
        opacity: 0.08; /* Stay visible */
    }
    100% {
        transform: translateY(-120vh) rotate(360deg) scale(1.2); /* Move up & rotate */
        opacity: 0;
    }
}

/* Positioning & Timing Randomization for natural look */
.bg-animation i:nth-child(1) { left: 10%; width: 80px; animation-duration: 12s; animation-delay: 0s; font-size: 3rem; }
.bg-animation i:nth-child(2) { left: 20%; width: 60px; animation-duration: 18s; animation-delay: 2s; font-size: 2rem; }
.bg-animation i:nth-child(3) { left: 35%; width: 50px; animation-duration: 14s; animation-delay: 5s; font-size: 1.5rem; }
.bg-animation i:nth-child(4) { left: 50%; width: 80px; animation-duration: 20s; animation-delay: 0s; font-size: 4rem; }
.bg-animation i:nth-child(5) { left: 65%; width: 60px; animation-duration: 16s; animation-delay: 3s; font-size: 2.5rem; }
.bg-animation i:nth-child(6) { left: 75%; width: 50px; animation-duration: 13s; animation-delay: 7s; font-size: 2rem; }
.bg-animation i:nth-child(7) { left: 85%; width: 90px; animation-duration: 19s; animation-delay: 4s; font-size: 3rem; }
.bg-animation i:nth-child(8) { left: 95%; width: 50px; animation-duration: 15s; animation-delay: 1s; font-size: 2.5rem; }
.bg-animation i:nth-child(9) { left: 5%; width: 40px; animation-duration: 17s; animation-delay: 6s; font-size: 1.8rem; }
.bg-animation i:nth-child(10) { left: 40%; width: 70px; animation-duration: 22s; animation-delay: 8s; font-size: 3.5rem; }


a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ================= UTILS ================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 10px; font-weight: 800; }
.highlight-text { color: var(--primary); }

/* ================= TOP BAR & NAVBAR ================= */
.top-bar { background: var(--text-dark); color: rgba(255,255,255,0.8); padding: 8px 0; font-size: 0.85rem; }
.top-bar-content { display: flex; justify-content: center; gap: 20px; }
.separator { opacity: 0.3; }

.navbar {
    padding: 15px 0; position: sticky; top: 0; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px); z-index: 1000; box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 45px; height: 45px; background: var(--primary); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.logo-text { font-weight: 800; font-size: 1.3rem; line-height: 1; color: var(--text-dark); }
.logo-text span { color: var(--primary); }
.logo-text small { display: block; font-size: 0.75rem; color: #888; font-weight: 500; margin-top: 2px; }

.nav-links { display: flex; gap: 30px; align-items: center; font-weight: 600; }
.nav-links a:hover { color: var(--primary); }
.btn-nav { background: var(--primary); color: white !important; padding: 10px 25px; border-radius: 50px; box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3); }

.lang-btn {
    border: 2px solid var(--primary); color: var(--primary); padding: 5px 15px;
    border-radius: 20px; font-weight: 700; background: transparent; cursor: pointer;
}
.lang-btn:hover { background: var(--primary); color: white; }

.mobile-toggle { display: none; font-size: 1.5rem; background: none; border: none; }

/* ================= HERO ================= */
.hero {
    position: relative; padding: 120px 0; background: #f0f4ff; overflow: hidden;
}
/* Use a tent/event background pattern or image overlay */
.hero-bg-overlay {
    position: absolute; top: 0; right: 0; width: 60%; height: 100%;
    background: url('https://images.unsplash.com/photo-1519750157634-b6d493a0f77c?auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1; mask-image: linear-gradient(to left, white, transparent); -webkit-mask-image: linear-gradient(to left, black, transparent);
}
.hero-content { position: relative; z-index: 10; max-width: 700px; }

.badge-pill {
    display: inline-flex; align-items: center; gap: 8px; background: white; padding: 8px 18px;
    border-radius: 30px; font-size: 0.9rem; font-weight: 700; color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 24px; border: 1px solid var(--accent);
}
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 24px; color: var(--text-dark); }
.highlight { color: var(--primary); }
.hero-subtext { margin-bottom: 35px; font-size: 1.2rem; max-width: 90%; }

.hero-actions { display: flex; gap: 15px; margin-bottom: 40px; }
.btn-primary { background: var(--primary); color: white; padding: 15px 35px; border-radius: 50px; font-weight: 700; box-shadow: 0 10px 25px rgba(21, 101, 192, 0.3); }
.btn-secondary { background: white; color: var(--text-dark); padding: 15px 35px; border-radius: 50px; font-weight: 700; border: 2px solid rgba(0,0,0,0.05); }

.hero-features { display: flex; gap: 20px; font-weight: 600; color: #555; }
.hero-features i { color: var(--gold); font-size: 1.1rem; }

/* ================= SERVICES GRID ================= */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }

.feature-card {
    background: white; padding: 40px 30px; border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-card);
    text-align: center; transition: 0.3s;
}
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary); }

.icon-box {
    width: 70px; height: 70px; border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 24px;
}
.icon-box.blue { background: #e3f2fd; color: var(--primary); }
.icon-box.purple { background: #f3e5f5; color: #8e24aa; }
.icon-box.gold { background: #fffde7; color: #fbc02d; }
.icon-box.red { background: #ffebee; color: #e53935; }

.feature-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--text-dark); }
.feature-card p { color: #666; }

/* ================= BOOKING FORM (Quick Order style) ================= */
.quick-order-section { background: white; }
.order-wrapper {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 30px; padding: 60px; display: flex; align-items: center; gap: 50px;
    box-shadow: 0 15px 40px rgba(21, 101, 192, 0.1);
}
.order-text { flex: 1; }
.order-text h2 { font-size: 2.2rem; color: var(--primary-dark); margin: 15px 0; }
.order-form-container { flex: 1; display: flex; flex-direction: column; gap: 20px; }

.form-row { display: flex; gap: 15px; }
.input-group { position: relative; width: 100%; }
.input-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--primary); opacity: 0.7; }
.form-input {
    width: 100%; padding: 15px 15px 15px 50px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.9); outline: none; font-family: var(--font-main);
}

.btn-whatsapp-full {
    background: #25d366; color: white; font-size: 1.1rem; font-weight: 700; padding: 16px;
    border-radius: 50px; width: 100%; cursor: pointer; border: none;
    display: flex; justify-content: center; align-items: center; gap: 10px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25); transition: 0.3s;
}
.btn-whatsapp-full:hover { background: #1ebc57; transform: translateY(-3px); }

/* ================= TRUST SECTION (Centered) ================= */
.section-trust {
    background: white;
    text-align: center; /* Centers the Heading */
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto; /* Centers the container */
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.trust-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px; /* Center description */
}

/* Transform list into a 3-Column Grid */
.trust-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 0;
}

.trust-list li {
    display: flex;
    flex-direction: column; /* Stack Icon on top of text */
    align-items: center;    /* Center items horizontally */
    text-align: center;     /* Center text */
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.trust-list li:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

/* Icon Styling */
.trust-list i {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px; /* Space between icon and text */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.trust-list li:hover i {
    background: var(--primary);
    color: white;
}

.trust-list strong {
    display: block;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.trust-list p {
    font-size: 0.95rem;
    color: #777;
    margin: 0; /* Reset margin */
}

/* ================= OWNER SECTION ================= */
.owner-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff8e1; /* Light Gold BG */
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(251, 192, 45, 0.2);
}

.owner-image img {
    border-radius: 20px;
    width: 300px;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.owner-info {
    flex: 1;
}

.owner-info h2 {
    font-size: 2.2rem;
    margin: 10px 0;
    color: var(--text-dark);
}

.owner-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.signature {
    font-family: 'Yuji Boku', serif;
    font-size: 2rem;
    color: #555;
    margin-top: 20px;
    display: block;
}

/* Mobile Responsive Adjustments */
@media (max-width: 900px) {
    .owner-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .owner-image img {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
    .owner-info {
        width: 100%;
    }
}

/* =========================================
   7. GALLERY SECTION & LOADING SPINNER
   ========================================= */
.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 240px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
    background: #e9ecef; /* Placeholder gray */
    cursor: pointer;
}

/* Spinner Styles */
.loader-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background: #f8f9fa;
}

.spinner {
    width: 35px;
    height: 35px;
    border: 3px solid rgba(45, 106, 79, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Image Loaded State */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    opacity: 0; /* Hidden until loaded */
    transition: opacity 0.5s ease-in-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item img.loaded {
    opacity: 1; /* Fade in */
}

.gallery-item:hover img.loaded {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    z-index: 3;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}


/* ================= FOOTER ================= */
footer { background: var(--text-dark); color: white; padding: 80px 0 30px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 50px; margin-bottom: 30px; }
.footer-bottom { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-info i { color: var(--gold); margin-right: 10px; }

/* ================= LIGHTBOX ================= */
.lightbox {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9); justify-content: center; align-items: center;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90%; max-height: 90vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 35px; color: white; font-size: 40px; cursor: pointer; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .order-wrapper, .owner-card { flex-direction: column; text-align: center; padding: 30px; }
    .form-row { flex-direction: column; }
    .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 80%; background: white; flex-direction: column; padding: 100px 30px; transition: 0.3s; z-index: 999; align-items: flex-start; }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: block;
        font-size: 1.8rem;
        color: var(--text-dark); /* Ensure it's visible against white */
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2001; /* CRITICAL: Higher than the menu */
        position: relative; /* Keeps it clickable */}
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 100;
}

/* =========================================
   12. GOOGLE REVIEW CTA
   ========================================= */
.review-cta-section {
    background: linear-gradient(135deg, #285a94 0%, #1565c0 100%); /* Dark Green Gradient */
    color: white;
    padding: 80px 0;
    margin-top: 40px;
    border-radius: 0; /* Full width feel */
}

/* Optional: If you want it contained and rounded like a card, uncomment below: */
.review-cta-section .container {
    background: linear-gradient(135deg, #285a94 0%, #1565c0 100%);
    border-radius: 30px;
    padding: 60px 40px;
}
.review-cta-section { background: white; padding: 40px 0; }


.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #5297e5; /* Light Green */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.review-cta-section h2 {
    color: white; /* Override default dark color */
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.review-cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 25px;
}

/* Stars Animation */
.stars-animation {
    color: #ffd700; /* Gold */
    font-size: 1.5rem;
    display: flex;
    gap: 5px;
}

.stars-animation i {
    animation: bounce 2s infinite;
}

.stars-animation i:nth-child(1) { animation-delay: 0.1s; }
.stars-animation i:nth-child(2) { animation-delay: 0.2s; }
.stars-animation i:nth-child(3) { animation-delay: 0.3s; }
.stars-animation i:nth-child(4) { animation-delay: 0.4s; }
.stars-animation i:nth-child(5) { animation-delay: 0.5s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Button & Wrapper */
.cta-button-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-google-review {
    background: white;
    color: #1b4332;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-google-review:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: #f1f1f1;
}

.btn-google-review i {
    color: #4285F4; /* Google Blue */
}

.cta-button-wrapper small {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-content {
        text-align: center;
        flex-direction: column;
        gap: 30px;
    }

    .review-cta-section p {
        margin-left: auto;
        margin-right: auto;
    }

    .stars-animation {
        justify-content: center;
    }
}

/* ================= SERVICE AREAS ================= */
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.area-tags span {
    background: white; border: 1px solid #eee; padding: 10px 20px; border-radius: 50px;
    font-size: 0.9rem; font-weight: 600; color: #555; transition: 0.3s;
}
.area-tags span:hover { background: var(--primary); color: white; transform: translateY(-3px); }

/* ================= STATS ================= */
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; text-align: center; }
.stat-item h2 { font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 5px; }
.stat-item p { color: rgba(255,255,255,0.8); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }


/* ================= TIMELINE ================= */
.timeline {
    display: flex; justify-content: center; align-items: flex-start;
    flex-wrap: wrap; gap: 10px; max-width: 900px; margin: 0 auto;
}
.timeline-item { text-align: center; width: 140px; position: relative; }
.step-num {
    width: 50px; height: 50px; background: var(--primary); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 800; margin: 0 auto 15px; border: 4px solid white;
    box-shadow: 0 5px 15px rgba(21, 101, 192, 0.2); z-index: 2; position: relative;
}
.timeline-line {
    flex: 1; height: 2px; background: #ddd; margin-top: 25px; min-width: 50px;
}
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text-dark); }
.timeline-item p { font-size: 0.85rem; color: #777; line-height: 1.4; }

@media (max-width: 600px) {
    .timeline { flex-direction: column; align-items: center; }
    .timeline-line { width: 2px; height: 30px; margin: 0; min-width: 0; }
}

/* ================= DHAM SECTION ================= */
.dham-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.dham-card {
    background: white;
    border: 2px dashed #ccc; /* Dashed border looks more "rugged/utility" */
    padding: 30px;
    text-align: center;
    border-radius: 15px;
}

.dham-card i {
    font-size: 2.5rem;
    color: var(--text-dark); /* Keep it neutral/dark */
    margin-bottom: 15px;
}

.dham-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.dham-card p {
    font-size: 0.9rem;
    color: #666;
}

/* ================= FAQ ================= */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.faq-item { background: white; padding: 30px; border-radius: 15px; border-left: 5px solid var(--primary); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.faq-item h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-dark); }
.faq-item p { color: #666; margin: 0; }