/* 
 * The Soul of Rajasthan - Light Cream Header/Footer & Vibrant Pink Palette System
 * Auto-Sliding Multi-Image Unsplash Hero Banner & Single-Line Header CTA
 */

/* ==========================================================================
   1. COLOR SYSTEM & CSS VARIABLES
   ========================================================================== */
:root {
    /* Primary Pink Accent & Hover Colors */
    --color-pink: #eb2f96;            /* Topbar & Primary Accent Vibrant Pink */
    --color-pink-hover: #ff66b2;      /* Glow Hover Pink */
    --color-maroon: #831843;          /* Deep Velvet Maroon */
    --color-maroon-dark: #4A0E17;     /* Dark Royal Maroon */
    --color-gold: #eb2f96;            /* Primary Accent Pink Alias */
    --color-gold-hover: #ff66b2;
    
    /* Background Surface Colors */
    --color-bg-primary: #080808;      /* Deep Charcoal Dark Body Background */
    --color-bg-deeper: #000000;       /* Pitch Dark Surface */
    --color-surface-card: #121214;    /* Dark Matte Card Surface */
    
    /* Light Cream Palette (Header & Footer) */
    --color-cream-bg: #FAF6F0;        /* Light Cream Header/Footer Surface */
    --color-cream-topbar: #eb2f96;    /* Topbar Background #eb2f96 */
    --color-cream-border: rgba(93, 27, 45, 0.15); /* Soft Border */
    
    /* Borders & Dividers */
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-pink: rgba(235, 47, 150, 0.3);
    
    /* Typography Text Colors */
    --color-text-primary: #F3F4F6;    /* Pristine Light White */
    --color-text-dark: #2D2D2D;       /* Dark Charcoal for Light Surfaces */
    --color-text-muted: #A3A3A3;      /* Muted Silver Gray */
    
    /* Typography Font Families */
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Motion & Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   2. GLOBAL RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
}

/* Base Link Styles */
a {
    color: var(--color-pink);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-pink-hover);
}

/* Selection Highlight */
::selection {
    background: var(--color-pink);
    color: #FFFFFF;
}

/* ==========================================================================
   3. TYPOGRAPHY HIERARCHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6, .font-cinzel {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 0.02em;
    line-height: 1.25;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.85rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

/* Pink Accent Highlight Spans */
h1 span, h2 span, h3 span, .gold-accent, .pink-accent {
    color: var(--color-pink);
    text-shadow: 0 0 15px rgba(235, 47, 150, 0.35);
}

p {
    color: var(--color-text-muted);
    font-size: 1.02rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Section Header Utilities */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-pink);
    margin-bottom: 0.6rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-text-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 1.2rem;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-pink);
    box-shadow: 0 0 12px rgba(235, 47, 150, 0.7);
    border-radius: 2px;
}

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Grid Layout Utilities */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    h2, .section-title { font-size: 2rem; }
}

/* Padding Utilities */
.pt-3 { padding-top: 5rem; }
.pb-3 { padding-bottom: 5rem; }
.py-5 { padding-top: 6rem; padding-bottom: 6rem; }

/* ==========================================================================
   4. BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-decoration: none;
    white-space: nowrap;
}

/* Primary Action Button (Solid #eb2f96 Pink) */
.btn-primary, .btn-gold, .btn-book-event {
    background-color: var(--color-pink);
    color: #FFFFFF;
    border: 1px solid var(--color-pink);
    box-shadow: 0 4px 18px rgba(235, 47, 150, 0.35);
}

.btn-primary:hover, .btn-gold:hover, .btn-book-event:hover {
    background-color: var(--color-pink-hover);
    border-color: var(--color-pink-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 178, 0.5);
}

/* Secondary / Outline Button */
.btn-secondary, .btn-outline {
    background: rgba(250, 246, 240, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-pink);
    color: var(--color-pink);
}

.btn-secondary:hover, .btn-outline:hover {
    background: var(--color-pink);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 47, 150, 0.4);
}

/* ==========================================================================
   5. HEADER NAVIGATION & TOPBAR (#eb2f96 TOPBAR + LIGHT CREAM NAVBAR)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

/* Topbar Announcement Bar (Soft Light Pink #FCE7F3 Background) */
.topbar {
    background: #FCE7F3 !important;
    border-bottom: 1px solid rgba(235, 47, 150, 0.2);
    font-size: 0.82rem;
    padding: 0.45rem 0;
    color: #831843 !important;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #831843 !important;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.topbar-item:hover {
    color: #eb2f96 !important;
}

.topbar-badge {
    background: rgba(235, 47, 150, 0.12) !important;
    border: 1px solid rgba(235, 47, 150, 0.25) !important;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #831843 !important;
    font-weight: 700;
}

/* Sticky Light Cream Navbar */
.navbar {
    position: relative;
    background: rgba(250, 246, 240, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-cream-border);
    box-shadow: 0 4px 20px rgba(93, 27, 45, 0.08);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(250, 246, 240, 0.99);
    box-shadow: 0 10px 30px rgba(93, 27, 45, 0.15);
    border-bottom-color: var(--color-pink);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 1rem;
}

/* Brand Logo Block */
.navbar-brand {
    flex-shrink: 0;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(235, 47, 150, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.brand-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(235, 47, 150, 0.35);
}

.logo-emblem {
    width: 42px;
    height: 42px;
    background: rgba(235, 47, 150, 0.1);
    border: 1px solid var(--color-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(235, 47, 150, 0.2);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    color: var(--color-pink);
    font-weight: 800;
    text-transform: uppercase;
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    letter-spacing: 0.5px;
    line-height: 1.1;
    white-space: nowrap;
}

.logo-tagline {
    font-size: 0.65rem;
    color: #666666;
    white-space: nowrap;
}

/* Navigation Menu - Single Row Layout (Prevent Wrapping) */
.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: relative;
    padding: 0.4rem 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-pink);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-pink);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Header CTA Button - Compact Single Line Small Font */
.navbar-cta {
    flex-shrink: 0;
}

.btn-book-event {
    background-color: #eb2f96 !important;
    color: #FFFFFF !important;
    border: 1px solid #eb2f96 !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    padding: 0.55rem 1.1rem !important;
    white-space: nowrap !important;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(235, 47, 150, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-book-event:hover {
    background-color: #ff66b2 !important;
    border-color: #ff66b2 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 102, 178, 0.5);
}

/* Mobile Nav Toggle Button Styling & Animation */
.mobile-cta-item,
.mobile-menu-address {
    display: none !important;
}

.desktop-only-cta {
    display: inline-flex;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid #eb2f96;
    background: rgba(235, 47, 150, 0.12);
    transition: all 0.3s ease;
    z-index: 1000005;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.navbar-toggle:hover {
    background: rgba(235, 47, 150, 0.25);
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #eb2f96;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    pointer-events: none !important;
}

/* Toggle Hamburger to X Close Animation */
.navbar-toggle.active {
    background: #eb2f96 !important;
    border-color: #eb2f96 !important;
}

.navbar-toggle.active span {
    background: #FFFFFF !important;
}

.navbar-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1100px) {
    .navbar-nav { gap: 0.85rem; }
    .nav-link { font-size: 0.78rem; }
}

@media (max-width: 1024px) {
    .navbar {
        position: relative !important;
    }

    .navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: static !important;
    }

    .desktop-only-cta {
        display: none !important;
    }

    .mobile-cta-item {
        display: block !important;
        padding-top: 1rem;
        margin-top: 0.5rem;
        border-top: 1px dashed rgba(255, 255, 255, 0.2);
    }

    .mobile-cta-item .btn-book-event {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
        padding: 0.85rem 1.5rem !important;
        font-size: 0.88rem !important;
    }

    .navbar-toggle {
        display: flex !important;
        margin-left: auto !important;
        cursor: pointer !important;
        z-index: 1000001 !important;
    }
    
    /* Slide-Down Mobile Navigation Drawer */
    .navbar-menu:not(.active) {
        display: none !important;
    }

    .navbar-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #14050B !important; /* Royal Dark Wine Background */
        border-top: 3px solid #eb2f96 !important;
        border-bottom: 3px solid #eb2f96 !important;
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.98) !important;
        padding: 1.25rem 1.25rem 1.75rem !important;
        flex-direction: column !important;
        z-index: 1000000 !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        box-sizing: border-box !important;
    }
    
    .navbar-menu.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: mobileMenuSlideDown 0.3s ease forwards;
    }

    .navbar-nav {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        text-align: center !important;
    }

    .navbar-nav li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .navbar-nav li:last-child {
        border-bottom: none !important;
    }

    .nav-link {
        display: block !important;
        padding: 0.95rem 1rem !important;
        color: #FFFFFF !important;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        font-family: var(--font-serif) !important;
        text-align: center !important;
        transition: all 0.25s ease !important;
    }

    .nav-link:hover, .nav-link.active {
        color: #eb2f96 !important;
        background: rgba(235, 47, 150, 0.18) !important;
        border-radius: 6px !important;
    }

    /* Mobile Drawer Address & Direct Hotline Info Box */
    .mobile-menu-address {
        display: block !important;
        margin-top: 1.25rem !important;
        padding: 1.1rem 1rem !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px dashed rgba(235, 47, 150, 0.4) !important;
        border-radius: 10px !important;
        text-align: center !important;
    }

    .mobile-address-badge {
        color: #eb2f96 !important;
        font-size: 0.75rem !important;
        font-weight: 800 !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        margin-bottom: 0.4rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.4rem !important;
    }

    .mobile-address-text {
        color: #E2E8F0 !important;
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin: 0 0 0.85rem 0 !important;
        font-weight: 500 !important;
    }

    .mobile-contact-pills {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .mobile-contact-pill {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        padding: 0.6rem 1rem !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 6px !important;
        color: #FFFFFF !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        text-transform: none !important;
        transition: all 0.2s ease !important;
    }

    .mobile-contact-pill.whatsapp-pill {
        background: rgba(37, 211, 102, 0.18) !important;
        border-color: rgba(37, 211, 102, 0.4) !important;
        color: #25D366 !important;
    }
}

@keyframes mobileMenuSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mobileMenuSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   6. AUTO-SLIDING MULTI-IMAGE HERO BANNER CAROUSEL
   ========================================================================== */
.hero-slider {
    position: relative;
    margin-top: 138px !important;
    min-height: 75vh;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.7s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
    text-align: center;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

/* Clear Banner Overlays (0% Dark Opacity, 100% Bright Vivid Original Image Colors) */
.hero-slide-overlay,
.page-hero::before {
    display: none !important;
    opacity: 0 !important;
    background: none !important;
    content: none !important;
}

/* Hide all text overlay content from Hero and Page Banners */
.hero-slide .hero-content,
.page-hero .container,
.page-hero-eyebrow,
.page-hero h1,
.page-hero p {
    display: none !important;
}

/* Page Hero Banner for Secondary Pages (Pure Panoramic Image Showcase - Fixed Header Offset) */
.page-hero {
    position: relative;
    margin-top: 138px !important;
    height: 380px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-image: url('../images/hero/user_hero_banner.jpg');
}

/* ==========================================================================
   7. DARK MATTE GLASS CARDS & MICRO-INTERACTIONS
   ========================================================================== */
.card, .tradition-card, .artist-card, .instrument-card, .performance-card {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.card:hover, .tradition-card:hover, .artist-card:hover, .instrument-card:hover, .performance-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-pink);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(235, 47, 150, 0.25);
}

/* Top Featured Badge */
.featured-badge, .card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-pink);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Image Hover Micro-interactions */
.card-image-wrapper, .tradition-img, .artist-img, .gallery-item {
    position: relative;
    overflow: hidden;
    background: #000000;
}

.card-image-wrapper img, .tradition-img img, .artist-img img, .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-image-wrapper:hover img, .tradition-img:hover img, .artist-img:hover img, .gallery-item:hover img {
    transform: scale(1.05);
}

/* Image Central Search/Zoom Hover Icon */
.image-overlay-icon {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-image-wrapper:hover .image-overlay-icon, 
.gallery-item:hover .image-overlay-icon {
    opacity: 1;
}

.image-overlay-icon i {
    width: 48px;
    height: 48px;
    background: var(--color-pink);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(235, 47, 150, 0.5);
}

.card-body, .tradition-content, .artist-content, .instrument-content {
    padding: 1.85rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.6rem;
}

.card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

/* ==========================================================================
   8. FORM CONTROLS & BOOKING UI
   ========================================================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-pink);
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea, .form-control {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: #141416;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus, .form-control:focus {
    border-color: var(--color-pink);
    box-shadow: 0 0 14px rgba(235, 47, 150, 0.35);
    background: #18181C;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================================
   9. LIGHT CREAM FOOTER (MATCHING HEADER PALETTE)
   ========================================================================== */
.footer {
    background-color: var(--color-cream-bg);
    border-top: 1px solid var(--color-cream-border);
    padding-top: 5rem;
    padding-bottom: 2rem;
    color: var(--color-text-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-dark);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555555;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--color-pink);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #444444;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-pink);
    padding-left: 5px;
}

/* Social Icons with Circular Hover States */
.social-links {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-cream-border);
    background: rgba(235, 47, 150, 0.08);
    color: var(--color-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--color-pink);
    color: #FFFFFF;
    border-color: var(--color-pink);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(235, 47, 150, 0.4);
}

/* Bottom Legal Bar */
.footer-bottom {
    border-top: 1px solid var(--color-cream-border);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666666;
}

/* ==========================================================================
   10. FLOATING WHATSAPP BUTTON & PULSE
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 30px;
    color: #ffffff;
}

.whatsapp-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(0.95); opacity: 0.9; }
    50% { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

/* Notification & Alert Banners */
.notification-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1001;
    background: #121214;
    border: 1px solid var(--color-pink);
    color: var(--color-text-primary);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ==========================================================================
   11. COMPREHENSIVE RESPONSIVE DESIGN & CATEGORY TABS (MOBILE & TABLET & LAPTOP)
   ========================================================================== */

.category-btn {
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #FFFFFF !important;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.category-btn:hover, .category-btn.active {
    background: #5D1B2D !important;
    border-color: #eb2f96 !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(235, 47, 150, 0.35);
}

.category-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    animation: fadeIn 0.4s ease;
}

.category-content.active {
    display: grid !important;
}

@media (max-width: 992px) {
    .container { padding-left: 1.25rem; padding-right: 1.25rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 1.25rem !important; }
    .footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2rem !important; }
    .hero-slider { height: 440px !important; min-height: 440px !important; margin-top: 130px !important; }
    .page-hero { height: 250px !important; min-height: 250px !important; margin-top: 130px !important; }
}

@media (max-width: 768px) {
    .topbar { display: none !important; }

    .logo-title { font-size: 0.95rem; }
    .logo-subtitle { font-size: 0.55rem; }
    .logo-tagline { display: none; }

    .grid-2, .grid-3, .grid-4, .gallery-grid, .artists-grid, .instrument-grid, .performance-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .category-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .category-content > div:first-child {
        height: 250px !important;
    }

    .footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }

    .hero-slider { height: 320px !important; min-height: 320px !important; margin-top: 70px !important; }
    .page-hero { height: 200px !important; min-height: 200px !important; margin-top: 70px !important; }

    .floating-whatsapp { width: 50px; height: 50px; bottom: 1.25rem; right: 1.25rem; }
    .floating-whatsapp i { font-size: 24px; }
}

@media (max-width: 480px) {
    .container { padding-left: 0.85rem; padding-right: 0.85rem; }
    .brand-logo-img { height: 38px; }
    .logo-title { font-size: 0.88rem; }
    .logo-emblem { width: 34px; height: 34px; }
    .hero-slider { height: 260px !important; min-height: 260px !important; margin-top: 65px !important; }
    .page-hero { height: 170px !important; min-height: 170px !important; margin-top: 65px !important; }
}

/* ==========================================================================
   12. INSTAGRAM VIDEO SHOWCASE SECTION (RESPONSIVE IG REELS ABOVE FOOTER)
   ========================================================================== */
.ig-video-section {
    background: linear-gradient(180deg, #09090b 0%, #15151b 100%);
    border-top: 1px solid rgba(235, 47, 150, 0.25);
    border-bottom: 1px solid rgba(235, 47, 150, 0.15);
    padding: 4.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.ig-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ig-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(225, 48, 108, 0.12);
    border: 1px solid rgba(225, 48, 108, 0.35);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 0.8rem;
    color: #E1306C;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ig-section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.ig-section-header p {
    color: #A3A3A3;
    max-width: 620px;
    margin: 0 auto 1.5rem;
    font-size: 0.98rem;
}

.ig-follow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #E1306C;
    color: #E1306C;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.ig-follow-link:hover {
    background: #E1306C;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
    transform: translateY(-2px);
}

/* Instagram Reels 4-Column Responsive Grid */
.ig-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ig-reel-card {
    background: #121216;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.ig-reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(225, 48, 108, 0.3);
    border-color: rgba(225, 48, 108, 0.6);
}

.ig-reel-media {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 14;
    background: #000000;
    overflow: hidden;
}

.ig-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.ig-reel-header-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.ig-play-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(225, 48, 108, 0.9);
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.ig-play-trigger:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: #E1306C;
}

.ig-reel-card.playing .ig-play-trigger {
    opacity: 0;
    pointer-events: none;
}

.ig-reel-card.playing:hover .ig-play-trigger {
    opacity: 1;
    pointer-events: auto;
}

.ig-reel-sound-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    z-index: 3;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.25s ease;
}

.ig-reel-sound-badge:hover {
    background: rgba(225, 48, 108, 0.85);
}

.ig-reel-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ig-reel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
    color: #A3A3A3;
}

.ig-reel-title {
    font-size: 1.05rem;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
    font-family: var(--font-serif);
    line-height: 1.3;
}

.ig-reel-desc {
    font-size: 0.82rem;
    color: #888888;
    margin-bottom: 1.1rem;
}

.ig-reel-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem;
    border-radius: 8px;
    background: rgba(225, 48, 108, 0.12);
    border: 1px solid rgba(225, 48, 108, 0.35);
    color: #E1306C;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.ig-reel-btn:hover {
    background: #E1306C;
    color: #FFFFFF;
}

/* Responsive Media Queries for Instagram Video Showcase Section */
@media (max-width: 1200px) {
    .ig-video-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 991px) {
    .ig-video-section {
        padding: 3.5rem 0 3rem;
    }
    .ig-section-header {
        margin-bottom: 2.2rem;
    }
    .ig-section-header h2 {
        font-size: 1.8rem;
    }
    .ig-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .ig-video-section {
        padding: 3rem 0 2.5rem;
    }
    .ig-section-header {
        margin-bottom: 1.8rem;
    }
    .ig-header-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }
    .ig-section-header h2 {
        font-size: 1.45rem;
        letter-spacing: 0.5px;
        line-height: 1.35;
    }
    .ig-section-header p {
        font-size: 0.88rem;
        padding: 0 0.5rem;
        margin-bottom: 1.2rem;
    }
    .ig-follow-link {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }
    .ig-video-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
        gap: 1.8rem;
    }
    .ig-reel-media {
        aspect-ratio: 9 / 13;
    }
}

@media (max-width: 400px) {
    .ig-video-grid {
        max-width: 100%;
    }
    .ig-section-header h2 {
        font-size: 1.3rem;
    }
}



/* ==========================================================================
   ROYAL TESTIMONIALS SECTION (Framed Card Design System)
   ========================================================================== */
.royal-testimonials-section {
    background-color: #080808;
    background: linear-gradient(135deg, #0a0a0c 0%, #050506 50%, #0d080b 100%);
    padding: 5.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.royal-testimonials-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(235, 47, 150, 0.15) 0%, rgba(8, 8, 8, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.royal-testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(93, 27, 45, 0.25) 0%, rgba(8, 8, 8, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.royal-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header & Decorative Flourish Title */
.royal-testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.royal-testimonials-title-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    position: relative;
}

.royal-testimonials-title-wrap .title-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, #eb2f96);
}

.royal-testimonials-title-wrap .title-line.right {
    background: linear-gradient(to left, transparent, #eb2f96);
}

.royal-testimonials-title-wrap .title-flourish-icon {
    color: #eb2f96;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.royal-testimonials-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #FFFDF8;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 15px rgba(235, 47, 150, 0.4);
}

/* Framed Testimonial Cards Layout */
.royal-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.royal-testimonials-row2 {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-top: 1.8rem;
}

.royal-testimonials-row2 .royal-testimonial-card {
    flex: 0 1 calc(33.333% - 1.2rem);
    max-width: calc(33.333% - 1.2rem);
}

/* Individual Framed Card (Dark Black Matte Theme) */
.royal-testimonial-card {
    position: relative;
    background: linear-gradient(145deg, #131316 0%, #0b0b0d 100%);
    border: 1px solid rgba(235, 47, 150, 0.25);
    border-radius: 6px;
    padding: 2.2rem 1.75rem 1.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

/* Inner Ornamental Frame Hairline */
.royal-testimonial-card::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    pointer-events: none;
    border-radius: 4px;
}

.royal-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(235, 47, 150, 0.25);
    border-color: #eb2f96;
}

/* Card Content Elements */
.royal-testimonial-avatar-wrap {
    margin: 0 auto 1rem;
    position: relative;
    width: 76px;
    height: 76px;
    z-index: 1;
}

.royal-testimonial-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eb2f96;
    box-shadow: 0 0 15px rgba(235, 47, 150, 0.3);
    background-color: #121214;
    transition: transform 0.3s ease;
}

.royal-testimonial-card:hover .royal-testimonial-avatar {
    transform: scale(1.06);
    border-color: #ff66b2;
    box-shadow: 0 0 20px rgba(255, 102, 178, 0.5);
}

.royal-testimonial-stars {
    color: #FFD700;
    font-size: 0.95rem;
    letter-spacing: 0.25rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.royal-testimonial-quote {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.92rem;
    line-height: 1.65;
    color: #E5E7EB;
    margin-bottom: 1.25rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.royal-testimonial-event {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: rgba(235, 47, 150, 0.12);
    border: 1px dashed rgba(235, 47, 150, 0.4);
    color: #ff66b2;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.royal-testimonial-event i {
    color: #FFD700;
    font-size: 0.8rem;
}

.royal-testimonial-meta {
    position: relative;
    z-index: 1;
}

.royal-testimonial-author {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #FFFDF8;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.royal-testimonial-role {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.83rem;
    color: #9CA3AF;
    font-weight: 500;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .royal-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .royal-testimonials-row2 {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 0;
    }
    .royal-testimonials-row2 .royal-testimonial-card {
        flex: 1 1 calc(50% - 0.9rem);
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .royal-testimonials-section {
        padding: 3.5rem 1rem;
    }
    .royal-testimonials-title {
        font-size: 1.7rem;
    }
    .royal-testimonials-title-wrap .title-line {
        width: 35px;
    }
    .royal-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .royal-testimonials-row2 {
        flex-direction: column;
        margin-top: 0;
    }
}

/* ==========================================================================
   ROYAL INTRO / ABOUT US SECTION (3 Framed Vintage Cards with Metallic Seals)
   ========================================================================== */
.royal-about-section {
    background: #FAF6F0;
    padding: 4rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
}

/* Background Golden Mandala Accents */
.royal-about-mandala-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: 0;
}

.royal-about-mandala-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: 0;
}

.royal-about-mandala-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: 0;
}

.royal-about-bottom-accent {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
    color: #D4A359;
    opacity: 0.7;
}

.royal-about-bottom-accent .sparkle {
    font-size: 1.2rem;
}

.royal-about-bottom-accent .sparkle-small {
    font-size: 0.9rem;
}

.royal-about-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Title Header & Flourishes */
.royal-about-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.royal-about-top-flourish {
    display: flex;
    justify-content: center;
    margin-bottom: 0.4rem;
}

.royal-about-main-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #4A2E19;
    text-transform: uppercase;
    margin: 0;
}

/* 3 Vintage Framed Cards Grid (Forced 3 Columns Side-by-Side in 1 Row) */
.royal-about-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    align-items: stretch;
    width: 100%;
}

/* Individual Framed Card (Double Vintage Border) */
.royal-about-card {
    position: relative;
    background: #FAF6EE;
    border: 1px solid #D6C2A1;
    border-radius: 6px;
    padding: 2.6rem 1.5rem 1.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(80, 50, 20, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

/* Inner Hairline Vintage Frame (Double Border) */
.royal-about-card::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid #E6D7C1;
    pointer-events: none;
    border-radius: 4px;
}

.royal-about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(80, 50, 20, 0.1);
    border-color: #B87E30;
}

/* Metallic Bronze Coin Seal Badge */
.royal-about-seal-wrap {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.royal-about-seal {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #9E6B40 0%, #683F20 60%, #3B200C 100%);
    border: 3px solid #FAF6F0;
    box-shadow: 0 4px 10px rgba(55, 30, 10, 0.4), inset 0 2px 4px rgba(255, 230, 180, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Elements */
.royal-about-card-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #6B3E19;
    text-transform: uppercase;
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.royal-about-card-img-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 185px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(184, 126, 48, 0.3);
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    z-index: 1;
}

.royal-about-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.royal-about-card:hover .royal-about-card-img {
    transform: scale(1.04);
}

.royal-about-card-desc {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.88rem;
    line-height: 1.65;
    color: #4A4A4A;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
}

.royal-about-card-footer {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 1rem;
    font-weight: 700;
    color: #BD833A;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* Stat Counter Bar Integration */
.royal-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: #FFFDF8;
    border: 1px solid #D8C4A0;
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(93, 27, 45, 0.04);
}

.royal-about-stat-num {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-maroon-dark, #5D1B2D);
    margin-bottom: 0.2rem;
}

.royal-about-stat-label {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.88rem;
    color: #666666;
    font-weight: 500;
}

/* Responsive Media Queries - Ensuring Horizontal Card Row Layout Across All Screen Sizes */
@media (max-width: 991px) {
    .royal-about-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        padding-top: 2rem !important;
        padding-bottom: 1rem !important;
        gap: 1.25rem !important;
        -webkit-overflow-scrolling: touch;
    }
    .royal-about-card {
        flex: 0 0 82% !important;
        min-width: 270px !important;
        scroll-snap-align: center !important;
    }
    .royal-about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .royal-about-section {
        padding: 3.5rem 1rem;
    }
    .royal-about-main-title {
        font-size: 1.7rem;
    }
    .royal-about-card {
        flex: 0 0 88% !important;
        min-width: 260px !important;
    }
    .royal-about-stats {
        grid-template-columns: 1fr;
    }
}

/* Form Inputs & Dark Mode Date Picker Enhancements */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #EC4899;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #18181B;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #EC4899;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.35);
}

.form-textarea {
    min-height: 110px;
    resize: vertical;
}

/* Bright Pink/White Calendar Icon & Dark Calendar Dialog */
input[type="date"] {
    color-scheme: dark;
    cursor: pointer !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(280deg);
    cursor: pointer !important;
    opacity: 0.95;
    padding: 4px;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    transform: scale(1.2);
    opacity: 1;
}



