:root {
    --saffron: #FF6B00;
    --saffron-light: #FF8C38;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --green-deep: #2D5016;
    --green-mid: #4A7C2F;
    --green-light: #7AB648;
    --cream: #FDF6E3;
    --cream-dark: #F5E6C8;
    --brown: #6B3A2A;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { line-height: 1.8; color: var(--text-mid); }

a { text-decoration: none; color: inherit; transition: var(--transition); }

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 0.5rem;
}
.section-title { color: var(--green-deep); margin-bottom: 1rem; }
.section-subtitle { color: var(--text-mid); max-width: 600px; margin: 0 auto 2.5rem; }
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255,107,0,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,0.45); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--saffron); }
.btn-green {
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(45,80,22,0.3);
}
.btn-green:hover { transform: translateY(-2px); }

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
    backdrop-filter: blur(10px);
}
.navbar.scrolled .nav-logo-text { color: var(--green-deep); }
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.navbar.scrolled .nav-links a:hover { color: var(--saffron); }
.navbar.scrolled .nav-cta { background: var(--saffron); color: var(--white); }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); line-height: 1.2; }
.nav-logo-text span { display: block; font-size: 0.7rem; font-family: 'Poppins', sans-serif; opacity: 0.85; font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.92); font-weight: 500; font-size: 0.92rem; position: relative; }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--saffron);
    transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
    padding: 10px 24px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}
.nav-cta:hover { background: var(--saffron); border-color: var(--saffron); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,80,22,0.85) 0%, rgba(26,26,26,0.6) 50%, rgba(201,168,76,0.4) 100%),
                url('../images/hero-bg.jpg') center/cover no-repeat;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 5% 80px;
    max-width: 750px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero h1 span { color: var(--gold-light); }
.hero p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    position: absolute;
    bottom: 40px; right: 5%;
    z-index: 2;
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}
.hero-stat {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 16px 24px;
    text-align: center;
    color: var(--white);
}
.hero-stat strong { display: block; font-size: 1.8rem; font-family: 'Playfair Display', serif; color: var(--gold-light); }
.hero-stat span { font-size: 0.78rem; opacity: 0.85; }

/* ── SECTIONS ── */
.section { padding: 80px 5%; }
.section-alt { background: var(--cream); }
.container { max-width: 1200px; margin: 0 auto; }

/* ── TRUST BAR ── */
.trust-bar {
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    padding: 24px 5%;
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); }
.trust-item i { font-size: 1.4rem; color: var(--gold-light); }
.trust-item span { font-size: 0.88rem; font-weight: 500; }

/* ── FEATURE CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(201,168,76,0.15);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}
.card h3 { color: var(--green-deep); margin-bottom: 0.5rem; font-size: 1.1rem; }
.card p { font-size: 0.9rem; }

/* ── ABOUT SPLIT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 2rem; font-family: 'Playfair Display', serif; }
.about-badge span { font-size: 0.78rem; }
.about-list { list-style: none; margin: 1.5rem 0; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.8rem; font-size: 0.95rem; color: var(--text-mid); }
.about-list li i { color: var(--green-mid); margin-top: 3px; flex-shrink: 0; }

/* ── AMENITIES ── */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; }
.amenity-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.amenity-item:hover { border-bottom-color: var(--saffron); transform: translateY(-4px); }
.amenity-item i { font-size: 2rem; color: var(--saffron); margin-bottom: 0.8rem; display: block; }
.amenity-item h4 { font-size: 0.92rem; color: var(--green-deep); font-family: 'Poppins', sans-serif; font-weight: 600; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}
.pricing-card.featured {
    border-color: var(--saffron);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}
.pricing-badge {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--saffron);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pricing-card h3 { color: var(--green-deep); margin-bottom: 0.5rem; }
.pricing-price { font-size: 2.4rem; font-family: 'Playfair Display', serif; color: var(--saffron); margin: 1rem 0; }
.pricing-price span { font-size: 1rem; color: var(--text-light); font-family: 'Poppins', sans-serif; }
.pricing-features { list-style: none; margin: 1.5rem 0; text-align: left; }
.pricing-features li { padding: 6px 0; font-size: 0.9rem; color: var(--text-mid); display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.pricing-features li i { color: var(--green-mid); font-size: 0.85rem; }

/* ── GALLERY ── */
.gallery-filter { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid var(--green-mid);
    background: transparent;
    color: var(--green-mid);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--green-mid); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,80,22,0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.9rem; font-weight: 500; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
}
.stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-card p { font-style: italic; margin-bottom: 1.2rem; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--green-deep); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item .icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.1rem;
}
.contact-info-item h4 { font-size: 0.85rem; color: var(--text-light); font-family: 'Poppins', sans-serif; font-weight: 500; margin-bottom: 2px; }
.contact-info-item p { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }

/* ── FORM ── */
.inquiry-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E0E0E0;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--saffron);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── FORM VALIDATION ── */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background: #fdf2f2;
    box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}
.field-error {
    color: #e74c3c;
    font-size: 0.78rem;
    margin-top: 4px;
    min-height: 18px;
    display: block;
}
.char-count {
    text-align: right;
    font-size: 0.75rem;
    color: #666;
    margin-top: 4px;
}
.form-group input[name="website"] {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* ── MAP ── */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 1.5rem; }
.map-wrap iframe { width: 100%; height: 280px; border: none; display: block; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    animation: pulse-wa 2s infinite;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float i { font-size: 1.8rem; color: var(--white); }
@keyframes pulse-wa {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8); }
}

/* ── FOOTER ── */
.footer {
    background: linear-gradient(135deg, var(--green-deep) 0%, #1a2e0a 100%);
    color: rgba(255,255,255,0.85);
    padding: 60px 5% 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { font-size: 0.88rem; margin: 1rem 0; line-height: 1.8; color: #ffffff; opacity: 1; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.footer h4 { color: var(--gold-light); font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.88rem; opacity: 0.8; transition: var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--gold-light); padding-left: 4px; }
.social-links { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--saffron); transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    opacity: 0.7;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    min-height: 340px;
    background: linear-gradient(135deg, rgba(45,80,22,0.9), rgba(201,168,76,0.6)),
                url('../images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    padding: 120px 5% 60px;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.85); margin-top: 0.5rem; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { opacity: 0.6; }

/* ── ALERT ── */
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 1rem; font-size: 0.9rem; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.2rem;
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { color: var(--text-dark) !important; font-size: 1rem; white-space: nowrap; }
    .nav-cta { display: none; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { position: static; display: flex; flex-wrap: wrap; padding: 0 5% 2rem; justify-content: center; gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .about-badge { bottom: -10px; right: 10px; }
}

/* ── TABLET ── */
@media (max-width: 600px) {
    .section { padding: 50px 5%; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .btn { justify-content: center; }
    .pricing-card.featured { transform: scale(1); }
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVE — max-width: 480px
   Isolated — does NOT affect desktop
══════════════════════════════════════ */
@media (max-width: 480px) {

    /* Navbar */
    .navbar { padding: 0 4%; height: 64px; }
    .nav-logo img { height: 38px; width: 38px; }
    .nav-logo-text { font-size: 0.9rem; }
    .nav-logo-text span { font-size: 0.62rem; }
    .nav-links { top: 64px; padding: 0.5rem 0; gap: 0; }
    .nav-links li { border-bottom: 1px solid #f0f0f0; }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { padding: 14px 5%; display: block; font-size: 0.98rem; }

    /* Hero */
    .hero {
        min-height: 100svh;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }
    .hero-content {
        padding: 80px 5% 16px;
        max-width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-badge { font-size: 0.68rem; padding: 6px 12px; margin-bottom: 0.8rem; }
    .hero h1 { font-size: 1.75rem; margin-bottom: 0.6rem; line-height: 1.25; }
    .hero p { font-size: 0.88rem; margin-bottom: 1.2rem; line-height: 1.6; }
    .hero-btns { flex-direction: row; gap: 0.6rem; flex-wrap: wrap; }
    .hero-btns .btn { padding: 11px 18px; font-size: 0.82rem; width: auto; flex: 1; min-width: 130px; justify-content: center; }
    .hero-stats {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 12px 5% 20px;
        width: 100%;
        flex-shrink: 0;
    }
    .hero-stat {
        padding: 10px 6px;
        border-radius: 10px;
        background: rgba(255,255,255,0.12);
        backdrop-filter: blur(8px);
    }
    .hero-stat strong { font-size: 1.2rem; }
    .hero-stat span { font-size: 0.62rem; }

    /* Temple strip */
    .temple-strip { font-size: 0.75rem; padding: 12px 4%; line-height: 2; }

    /* Trust bar */
    .trust-bar { padding: 14px 4%; }
    .trust-bar-inner { gap: 0.5rem; justify-content: flex-start; }
    .trust-item { width: calc(50% - 0.25rem); }
    .trust-item i { font-size: 1rem; }
    .trust-item span { font-size: 0.75rem; }

    /* Section headings */
    .section-tag { font-size: 0.68rem; letter-spacing: 1.5px; }
    .section-subtitle { font-size: 0.86rem; margin-bottom: 1.5rem; }

    /* Feature cards — horizontal layout on mobile */
    .cards-grid { grid-template-columns: 1fr; gap: 0.9rem; }
    .card { padding: 1.2rem; display: flex; align-items: flex-start; gap: 1rem; }
    .card-icon { width: 46px; height: 46px; font-size: 1.2rem; flex-shrink: 0; margin-bottom: 0; border-radius: 12px; }
    .card h3 { font-size: 0.98rem; margin-bottom: 0.25rem; }
    .card p { font-size: 0.83rem; }

    /* About section */
    .about-grid { gap: 2rem; }
    .about-img-wrap { margin-bottom: 1.8rem; }
    .about-badge { bottom: -12px; right: 10px; padding: 12px 16px; }
    .about-badge strong { font-size: 1.4rem; }
    .about-badge span { font-size: 0.72rem; }
    .about-list li { font-size: 0.86rem; }

    /* Amenities — 2 column grid */
    .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
    .amenity-item { padding: 1rem 0.7rem; }
    .amenity-item i { font-size: 1.5rem; margin-bottom: 0.4rem; }
    .amenity-item h4 { font-size: 0.78rem; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
    .testimonial-card { padding: 1.3rem; }
    .testimonial-card p { font-size: 0.86rem; }
    .stars { font-size: 0.85rem; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .pricing-card { padding: 1.8rem 1.3rem; }
    .pricing-price { font-size: 1.9rem; }
    .pricing-features li { font-size: 0.85rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .gallery-filter { gap: 0.5rem; margin-bottom: 1.2rem; }
    .filter-btn { padding: 6px 12px; font-size: 0.75rem; }

    /* Contact */
    .contact-grid { gap: 1.8rem; }
    .inquiry-form { padding: 1.4rem; }
    .contact-info-item { gap: 0.8rem; margin-bottom: 1.1rem; }
    .contact-info-item .icon { width: 40px; height: 40px; font-size: 0.9rem; border-radius: 10px; }
    .contact-info-item h4 { font-size: 0.76rem; }
    .contact-info-item p { font-size: 0.86rem; }
    .map-wrap iframe { height: 220px; }

    /* Page hero inner pages */
    .page-hero { min-height: 220px; padding: 88px 5% 36px; }
    .page-hero h1 { font-size: 1.7rem; }
    .breadcrumb { font-size: 0.76rem; }

    /* Footer */
    .footer { padding: 36px 5% 0; }
    .footer-grid { gap: 1.6rem; }
    .footer-logo { font-size: 1rem; }
    .footer-brand p { font-size: 0.8rem; }
    .footer h4 { font-size: 0.8rem; margin-bottom: 0.7rem; }
    .footer-links a { font-size: 0.8rem; }
    .footer-bottom { flex-direction: column; text-align: center; font-size: 0.72rem; padding: 1rem 0; gap: 0.3rem; }
    .social-links a { width: 34px; height: 34px; font-size: 0.85rem; }

    /* WhatsApp float */
    .whatsapp-float { width: 48px; height: 48px; bottom: 18px; right: 14px; }
    .whatsapp-float i { font-size: 1.4rem; }

    /* Chatbot */
    .chatbot-wrapper { bottom: 76px; right: 14px; }
    .chatbot-toggle { width: 48px; height: 48px; font-size: 1.15rem; }
    .chatbot-box { width: calc(100vw - 28px); height: 400px; }
    .chatbot-header { padding: 12px 14px; }
    .chatbot-header-info img { width: 30px; height: 30px; }
    .chatbot-header-info strong { font-size: 0.82rem; }
    .chatbot-header-info span { font-size: 0.68rem; }
    .bot-msg, .user-msg { font-size: 0.82rem; padding: 9px 12px; }
    .quick-btns button { font-size: 0.72rem; padding: 4px 9px; }
    .chatbot-input-wrap input { font-size: 0.82rem; padding: 9px 12px; }
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── LIGHTBOX SLIDESHOW ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-close {
    position: absolute;
    top: 18px; right: 24px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 88vw;
    max-height: 75vh;
}
.lb-content img {
    max-width: 88vw;
    max-height: 68vh;
    border-radius: 10px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: block;
}
.lb-content img.lb-loaded { opacity: 1; }
.lb-caption {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    min-height: 20px;
}
.lb-counter {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
}
.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
.lb-arrow:hover { background: rgba(255,107,0,0.7); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    overflow-x: auto;
    max-width: 88vw;
    padding: 4px 0 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.lb-thumbnails::-webkit-scrollbar { height: 4px; }
.lb-thumbnails::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
.lb-thumbnails img {
    width: 60px; height: 44px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: opacity 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.lb-thumbnails img:hover { opacity: 0.85; }
.lb-thumbnails img.active { opacity: 1; border-color: #FF6B00; }
/* Expand icon on gallery overlay */
.gallery-overlay { cursor: pointer; }
.gallery-overlay i { position: absolute; top: 12px; right: 12px; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
@media (max-width: 600px) {
    .lb-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-thumbnails img { width: 48px; height: 36px; }
}

/* ── TEMPLE STRIP ── */
.temple-strip {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    padding: 20px 5%;
    text-align: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.temple-strip i { margin: 0 8px; }

/* ── ANNOUNCEMENTS TICKER ── */
.ann-ticker {
    display: flex;
    align-items: center;
    background: #fff8e1;
    border-left: 5px solid var(--saffron);
    height: 42px;
    overflow: hidden;
}
.ann-ticker-label {
    flex-shrink: 0;
    background: var(--saffron);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.ann-ticker-track {
    flex: 1;
    overflow: hidden;
    height: 100%;
    position: relative;
}
.ann-ticker-inner {
    display: inline-flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: ticker-scroll 45s linear infinite;
}
.ann-ticker-inner:hover { animation-play-state: paused; }
.ann-ticker-item {
    font-size: 0.86rem;
    color: var(--text-dark);
    padding: 0 8px;
}
.ann-ticker-item strong { color: var(--green-deep); }
.ann-ticker-sep {
    color: var(--saffron);
    font-size: 0.6rem;
    padding: 0 12px;
    opacity: 0.6;
}
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── INQUIRY SUCCESS CARD ── */
.inquiry-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    min-height: 380px;
    animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.inq-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4edda, #a8d5b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}
.inq-success-icon i {
    font-size: 2.4rem;
    color: var(--green-mid);
}
.inquiry-success h3 {
    color: var(--green-deep);
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}
.inquiry-success p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 320px;
    line-height: 1.7;
}
.inq-success-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid var(--green-deep);
    background: transparent;
    color: var(--green-deep);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.btn-outline-dark:hover { background: var(--green-deep); color: #fff; }
