@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

/* --- SEMANTIC DESIGN SYSTEM TOKENS & THEMING ARCHITECTURE --- */
:root {
    /* Form Label Tokens */
    --font-label-size: 0.75rem; /* 12px minimum */
    --font-label-weight: 600;
    --font-label-tracking: 0.05em;
    --nav-height: 80px;

    /* Base Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', 'Manrope', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Permanent Spiritual Luxury Theme Variables (Single Controlled Design System) */
:root {
    --bg-primary: #F8F5EF;       /* Warm Spiritual Alabaster Body Background */
    --bg-surface: #FFFFFF;       /* Pure White Card/Surface */
    --bg-surface-elevated: #F2EFE8; /* Subtle Off-White Surface */
    --dark-luxury: #171717;      /* Dark Charcoal (Hero/Footer only) */
    
    --text-primary: #24211D;     /* Deep Temple Charcoal (WCAG AA Compliant) */
    --text-secondary: #68635C;   /* Refined Ash Slate */
    --text-muted: #78716C;
    --border-subtle: rgba(36, 33, 29, 0.12);
    
    --accent-gold: #B8943E;      /* Temple Gold Accent */
    --accent-gold-hover: #9D7B2F;/* Deeper Gold on Hover */
    --whatsapp-green: #25D366;   /* Accessible WhatsApp Green */
    
    /* Legacy aliases mapped to canonical luxury system */
    --primary-gold: #B8943E;
    --primary-gold-hover: #9D7B2F;
    --gold-accent: #B8943E;
    --gold-bright: #D4AF37;
    --gold-light: #FFF5D6;
    --gold-gradient: linear-gradient(135deg, #FFF5D6 0%, #E6C280 30%, #C6A66B 60%, #B8943E 100%);
    --dark-charcoal: #171717;
    --dark-card: #1F1F1F;
    --dark-border: rgba(184, 148, 62, 0.25);
    --light-bg: #F8F5EF;
    --light-card: #FFFFFF;
    --light-border: rgba(36, 33, 29, 0.12);
    --text-dark: #24211D;
    --text-muted-dark: #68635C;
    --text-light: #F8F5EF;
    --text-muted-light: #B8B8B8;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(184, 148, 62, 0.25);
    --glass-blur: blur(16px);
}

body, .theme-transition {
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}



h1, h2, h3, h4, h5, h6, .font-luxury-serif {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.glass-navbar {
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

/* Core High-Contrast Typography & Text Utilities */
.text-dark {
    color: #24211D !important;
}

.text-muted-dark {
    color: #68635C !important;
}

.text-gold {
    color: var(--primary-gold) !important;
}

.text-light {
    color: #F8F5EF !important;
}

.text-muted-light {
    color: #B8B8B8 !important;
}

.bg-gold {
    background-color: var(--primary-gold) !important;
}

.bg-white {
    background-color: #FFFFFF !important;
}

.bg-luxury-alabaster {
    background-color: #F8F5EF !important;
}

.bg-luxury-subtle {
    background-color: #F2EFE8 !important;
}

.btn-gold {
    background-color: var(--primary-gold);
    color: #111111;
    font-weight: 600;
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    padding: 10px 24px;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    background-color: var(--primary-gold-hover);
    border-color: var(--primary-gold-hover);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    padding: 10px 24px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background-color: var(--primary-gold);
    color: #111111;
    transform: translateY(-2px);
}

/* Room & Hotel Cards */
.luxury-card {
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}



.luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(170, 140, 100, 0.15);
}

@keyframes luxuryShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.luxury-card-img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
    aspect-ratio: 16 / 9;
    background: linear-gradient(90deg, #18191b 25%, #2a251e 50%, #18191b 75%);
    background-size: 200% 100%;
    animation: luxuryShimmer 2s infinite linear;
}

.luxury-card-img-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 2px solid rgba(197, 160, 89, 0.25);
    border-radius: 50%;
    z-index: 0;
}

.luxury-card-img,
.property-card-img,
.room-card-img,
img.object-fit-cover {
    position: relative;
    z-index: 1;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16 / 9;
    object-fit: cover !important;
    object-position: center 30% !important;
    transition: var(--transition-smooth);
}

.luxury-card:hover .luxury-card-img {
    transform: scale(1.08);
}

/* Custom Booking Widget */
.booking-widget-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-border);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 24px;
}



/* Sticky Booking CTA for Mobile */
.sticky-booking-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    z-index: 999;
    display: none;
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
    }
    .sticky-booking-cta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        z-index: 1040;
    }
}

/* Custom Micro-Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Skeleton Loading styles */
.skeleton {
    background: linear-gradient(90deg, #f0ece9 25%, #e0dcd9 50%, #f0ece9 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}



@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Dashboard Sidebars */
.admin-sidebar {
    background-color: var(--dark-charcoal);
    border-right: 1px solid var(--dark-border);
    min-height: calc(100vh - 56px);
}

.admin-sidebar .nav-link {
    color: var(--text-muted-light);
    transition: var(--transition-smooth);
    padding: 12px 20px;
}

.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
    color: var(--primary-gold);
    background-color: rgba(255,255,255,0.02);
}

/* --- HOMEPAGE LUXURY REDESIGN ENHANCEMENTS (V2 POLISH) --- */
.section-padding-luxury {
    padding-top: 130px;
    padding-bottom: 130px;
}

@media (max-width: 768px) {
    .section-padding-luxury {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.hero-wrapper {
    position: relative;
    overflow: hidden !important;
    contain: paint;
}

.hero-ken-burns {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    z-index: 1;
    animation: kenBurnsZoom 22s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
}

@keyframes kenBurnsZoom {
    0% { transform: scale(1.00); }
    100% { transform: scale(1.06); }
}

.hero-overlay-rich {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(23, 23, 23, 0.45) 0%, rgba(23, 23, 23, 0.78) 75%, #171717 100%);
}

.hero-glass-badge {
    background: rgba(23, 23, 23, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(198, 166, 107, 0.35);
    color: #C6A66B;
    padding: 8px 22px;
    border-radius: 30px;
    letter-spacing: 3px;
    font-weight: 600;
}

.luxury-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.6rem, 5.2vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    background: linear-gradient(135deg, #FFF5D6 0%, #E6C280 30%, #C6A66B 60%, #B8924F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
}

.luxury-section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.0rem, 3.8vw, 3.2rem);
    font-weight: 600;
    letter-spacing: 2px;
    color: #24211D;
}

.bg-dark .luxury-section-title,
.bg-black .luxury-section-title,
section.text-light .luxury-section-title,
[style*="#171717"] .luxury-section-title {
    color: #B8943E;
}

.hero-container {
    min-height: calc(100vh - var(--nav-height, 80px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
    position: relative;
    z-index: 3;
}

.hero-cta-group {
    margin-bottom: 2.5rem;
}

.booking-engine-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -3.5rem;
}

@media (max-width: 991.98px) {
    .hero-container {
        min-height: auto;
        padding-top: 3.5rem;
        padding-bottom: 2.5rem;
    }
    .booking-engine-wrapper {
        margin-top: 0;
        padding-top: 1.5rem;
    }
}

/* Secondary Hero CTA with Backdrop Blur */
.btn-secondary-hero {
    background: rgba(18, 18, 18, 0.45) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    color: #F8F9FA !important;
    border-radius: 12px !important;
    padding: 14px 32px !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-secondary-hero:hover {
    background: rgba(212, 175, 55, 0.22) !important;
    border-color: var(--accent-gold) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Form Micro-Labels */
.form-label-luxury {
    font-size: var(--font-label-size, 0.75rem) !important;
    font-weight: var(--font-label-weight, 600) !important;
    letter-spacing: var(--font-label-tracking, 0.05em) !important;
    text-transform: uppercase !important;
    opacity: 0.9 !important;
    color: var(--accent-gold) !important;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

/* Trust Marker Badges */
.trust-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    background: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 500;
    color: #68635C;
    border: 1px solid rgba(36, 33, 29, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.trust-pill-badge:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-1px);
}

/* Consolidated Floating Speed-Dial */
.floating-speed-dial {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1050;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.75rem;
}

.speed-dial-trigger {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.speed-dial-trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.speed-dial-trigger i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.floating-speed-dial.active .speed-dial-trigger {
    background: #242424;
    color: #F5F5F4;
}

.floating-speed-dial.active .speed-dial-trigger i {
    transform: rotate(45deg);
}

.speed-dial-menu {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease-out;
}

.floating-speed-dial.active .speed-dial-menu,
.floating-speed-dial:hover .speed-dial-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.speed-dial-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.speed-dial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    border: none;
    font-size: 1.15rem;
    transition: transform 0.2s ease;
}

.speed-dial-btn:hover {
    transform: scale(1.1);
}

.speed-dial-label {
    background: #FFFFFF;
    color: #24211D;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-family: var(--font-body);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(36, 33, 29, 0.12);
    white-space: nowrap;
}

.booking-glass-card {
    background: rgba(23, 23, 23, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(198, 166, 107, 0.4);
    border-radius: 16px;
    padding: 36px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(198, 166, 107, 0.15);
}

.booking-glass-card .form-control,
.booking-glass-card .form-select {
    background-color: rgba(17, 17, 17, 0.8) !important;
    color: #FFF5D6 !important;
    border: 1px solid rgba(198, 166, 107, 0.3) !important;
    border-radius: 12px;
    min-height: 52px;
    padding: 10px 14px !important;
    font-size: 0.88rem !important;
    transition: all 0.3s ease;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-glass-card .form-control:focus,
.booking-glass-card .form-select:focus {
    border-color: #C6A66B !important;
    box-shadow: 0 0 15px rgba(198, 166, 107, 0.35) !important;
}

.btn-gold {
    border-radius: 12px !important;
    padding: 14px 32px !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.btn-gold:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(198, 166, 107, 0.4) !important;
}

.btn-outline-gold {
    border-radius: 12px !important;
    padding: 14px 32px !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.btn-outline-gold:hover {
    transform: translateY(-3px) !important;
}

.trust-badge-pill {
    font-size: 0.85rem;
    color: rgba(255, 245, 214, 0.95);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.luxury-property-card {
    background: #FFFFFF;
    border: 1px solid rgba(198, 166, 107, 0.25);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}



.luxury-property-card:hover {
    transform: translateY(-8px);
    border-color: #C6A66B;
    box-shadow: 0 22px 50px rgba(198, 166, 107, 0.25);
}

.luxury-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 285px !important;
}

.luxury-property-card:hover .luxury-card-img {
    transform: scale(1.05);
}

.timeline-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198, 166, 107, 0.2), rgba(184, 146, 79, 0.05));
    border: 1px solid rgba(198, 166, 107, 0.45);
    color: #C6A66B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.timeline-card {
    border-top: 3px solid #C6A66B !important;
    transition: all 0.35s ease;
}

.timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(198, 166, 107, 0.2);
}

.timeline-card:hover .timeline-step-icon {
    background: #C6A66B;
    color: #171717;
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(198, 166, 107, 0.45);
}

.review-card-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C6A66B, #B8924F);
    color: #171717;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(198, 166, 107, 0.35);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    color: #C6A66B;
}

/* --- PRODUCTION LUXURY FOOTER STYLING --- */
.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #C6A66B !important;
    margin-bottom: 20px !important;
}

.footer-link {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #B8B8B8 !important;
    text-decoration: none !important;
    transition: color 0.2s ease, opacity 0.2s ease !important;
}

.footer-link:hover {
    color: #C6A66B !important;
}

.footer-desc {
    font-size: 16px !important;
    line-height: 1.8 !important;
    max-width: 320px !important;
    color: #C5C5C5 !important;
}

.hover-gold-link {
    color: #C6A66B !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.hover-gold-link:hover {
    color: #E6C280 !important;
    opacity: 0.9;
}

/* Luxury Property & Room Cards */
.luxury-property-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(36, 33, 29, 0.12) !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.luxury-property-card:hover {
    transform: translateY(-5px);
    border-color: #B8943E !important;
    box-shadow: 0 12px 35px rgba(184, 148, 62, 0.18);
}

.luxury-property-card .luxury-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
    min-height: 260px;
    background: linear-gradient(135deg, #18191b 0%, #28241e 100%);
}

/* Custom Luxury FAQ Accordion - High Contrast Spiritual Design */
.accordion-item {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(36, 33, 29, 0.12) !important;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.accordion-button {
    background-color: #FFFFFF !important;
    color: #24211D !important;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #B8943E !important;
    background-color: #F8F5EF !important;
    border-bottom: 1px solid rgba(36, 33, 29, 0.08) !important;
    box-shadow: none !important;
}

.accordion-button:focus,
.accordion-button:active,
.accordion-button:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(184, 148, 62, 0.2) !important;
    border-color: #B8943E !important;
}

.accordion-body {
    background-color: #FFFFFF !important;
    color: #68635C !important;
    font-size: 0.95rem;
    line-height: 1.75;
    padding: 1.25rem 1.5rem;
}

/* Review Card Avatar */
.review-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c5a059 0%, #a37f37 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.3);
}

/* Floating Action Widgets Mobile Safety Gap */
@media (max-width: 767.98px) {
    .floating-speed-dial,
    .floating-contact-widgets,
    #aiAssistantContainer {
        bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important;
        right: 1rem !important;
        z-index: 1050 !important;
    }

    .speed-dial-trigger {
        width: 50px;
        height: 50px;
    }

    #aiChatWindow {
        bottom: calc(152px + env(safe-area-inset-bottom, 0px)) !important;
        right: 0.5rem !important;
        max-width: calc(100vw - 1rem) !important;
    }
}

/* Gold Property Feature Badges/Pills with High-Contrast Clean White Text */
.badge-gold-pill,
.badge.bg-gold.text-white {
    background-color: #B8943E !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(184, 148, 62, 0.5) !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.badge-gold-pill:hover,
.badge.bg-gold.text-white:hover {
    background-color: #9D7B2F !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
}

.badge-gold-pill i,
.badge.bg-gold.text-white i {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

/* --- SURGICAL RESPONSIVE CONTAINMENT & OVERFLOW PREVENTION --- */
main {
    overflow-x: clip;
}

/* Prevent .row.g-5 negative margins from exceeding container padding on mobile screens */
@media (max-width: 991.98px) {
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
    }
}

/* Loader glow containment on small mobile viewports */
.annamalaiyar-loader-overlay {
    max-width: 100vw;
    overflow: hidden !important;
    contain: paint;
}

@media (max-width: 576px) {
    .annamalaiyar-loader-glow {
        max-width: 90vw;
        max-height: 90vw;
    }
}

