/* ============================================
   CUJABAH VILLAGE - PREMIUM 5-STAR THEME
   Luxury Restaurant Website Design System
   ============================================ */

/* ============================================
   1. PREMIUM COLOR PALETTE & CSS VARIABLES
   ============================================ */
:root {
    /* Primary Colors - Deep Luxury Violet */
    --premium-violet: #6f42c1;
    --premium-violet-dark: #5a32a3;
    --premium-violet-darker: #4a2889;
    --premium-violet-light: #8b6cd1;
    --premium-violet-glow: rgba(111, 66, 193, 0.4);

    /* Gold Accent Colors - Elegant Metallic */
    --premium-gold: #d4af37;
    --premium-gold-light: #f4d03f;
    --premium-gold-dark: #b8960c;
    --premium-gold-shimmer: linear-gradient(90deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    --premium-gold-glow: rgba(212, 175, 55, 0.5);

    /* Neutral Colors - Sophisticated Grays */
    --premium-white: #ffffff;
    --premium-cream: #faf8f5;
    --premium-light-gray: #f5f3f0;
    --premium-medium-gray: #e8e4df;
    --premium-dark-gray: #2c2c2c;
    --premium-charcoal: #1a1a1a;
    --premium-black: #0d0d0d;

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6c6c6c;
    --text-light: #f5f5f5;
    --text-gold: var(--premium-gold);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-dark: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(20px);
    --glass-blur-heavy: blur(30px);

    /* Premium Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-premium: 0 20px 60px rgba(111, 66, 193, 0.2);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --shadow-glow: 0 0 30px rgba(111, 66, 193, 0.3);

    /* Premium Gradients */
    --gradient-premium: linear-gradient(135deg, var(--premium-violet) 0%, var(--premium-violet-dark) 100%);
    --gradient-premium-dark: linear-gradient(135deg, var(--premium-violet-dark) 0%, var(--premium-charcoal) 100%);
    --gradient-gold: linear-gradient(135deg, var(--premium-gold) 0%, var(--premium-gold-light) 50%, var(--premium-gold) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(111, 66, 193, 0.8) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    --gradient-section: linear-gradient(180deg, var(--premium-cream) 0%, var(--premium-white) 100%);
    --gradient-dark-section: linear-gradient(180deg, var(--premium-charcoal) 0%, var(--premium-black) 100%);

    /* Animation Timings */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-elegant: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 20px;
    --radius-xl: 30px;
    --radius-round: 50%;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;
}

/* ============================================
   2. GLASSMORPHISM COMPONENTS
   ============================================ */
.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: var(--radius-large);
}

.glass-card-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-large);
}

.glass-navbar {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.95) 0%, rgba(90, 50, 163, 0.98) 100%);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   3. PREMIUM TYPOGRAPHY
   ============================================ */
.premium-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--premium-violet);
}

.premium-heading-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-subheading {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--premium-gold);
}

/* Text shimmer with gold color - ensure visibility */
.text-shimmer {
    color: var(--premium-gold); /* Fallback */
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 25%, #ffd700 50%, #f4d03f 75%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

/* Ensure gold heading is visible */
.premium-heading-gold {
    color: var(--premium-gold) !important;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   4. PREMIUM BUTTONS
   ============================================ */
.btn-premium {
    position: relative;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-medium);
    border: none;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-premium:hover::before {
    transform: translateX(100%);
}

.btn-premium-violet {
    background: var(--gradient-premium);
    color: var(--premium-white);
    box-shadow: var(--shadow-premium);
}

.btn-premium-violet:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(111, 66, 193, 0.35);
    color: var(--premium-white);
}

.btn-premium-gold {
    background: var(--gradient-gold);
    color: var(--premium-charcoal);
    box-shadow: var(--shadow-gold);
}

.btn-premium-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
    color: var(--premium-charcoal);
}

.btn-premium-outline {
    background: transparent;
    border: 2px solid var(--premium-gold);
    color: var(--premium-gold);
}

.btn-premium-outline:hover {
    background: var(--premium-gold);
    color: var(--premium-charcoal);
    transform: translateY(-3px);
}

.btn-premium-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--premium-white);
}

.btn-premium-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--premium-white);
}

/* Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-ripple:active::after {
    width: 400px;
    height: 400px;
}

/* ============================================
   5. PREMIUM CARDS
   ============================================ */
.card-premium {
    background: var(--premium-white);
    border-radius: var(--radius-large);
    border: none;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.card-premium-dark {
    background: var(--gradient-dark-section);
    color: var(--text-light);
}

.card-premium-dark:hover {
    box-shadow: var(--shadow-glow);
}

/* 3D Card Effect */
.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.card-3d-inner {
    transition: var(--transition-elegant);
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(5deg) rotateX(5deg);
}

/* Card with Image Zoom */
.card-zoom-image {
    overflow: hidden;
}

.card-zoom-image img {
    transition: transform 0.8s ease;
}

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

/* ============================================
   6. PREMIUM ICONS (Phosphor Integration)
   ============================================ */
.icon-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-medium);
    background: var(--gradient-premium);
    color: var(--premium-gold);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.icon-premium:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.icon-premium-lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.icon-premium-xl {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
}

.icon-gold-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background: var(--gradient-gold);
    color: var(--premium-charcoal);
    font-size: 1.25rem;
    transition: var(--transition-bounce);
}

.icon-gold-circle:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-gold);
}

.icon-floating {
    animation: floatIcon 3s ease-in-out infinite;
}

/* ============================================
   7. PREMIUM SECTION STYLING
   ============================================ */
.section-premium {
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.section-dark {
    background: var(--gradient-dark-section);
    color: var(--text-light);
}

.section-cream {
    background: var(--gradient-section);
}

/* Ensure headings in cream sections are fully visible */
.section-cream .premium-heading,
.section-cream h2 {
    color: var(--premium-violet) !important;
    -webkit-text-fill-color: var(--premium-violet) !important;
}

.section-cream .premium-heading-gold,
.section-cream .text-gold {
    color: var(--premium-gold) !important;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Override for display headings in cream section */
.section-cream .display-5 {
    color: var(--premium-violet) !important;
    -webkit-text-fill-color: var(--premium-violet);
}

.section-cream .display-5 .premium-heading-gold {
    -webkit-text-fill-color: transparent !important;
}

.section-pattern {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(111, 66, 193, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

/* Section Dividers */
.divider-premium {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin: 0 auto var(--space-md);
}

.divider-premium-left {
    margin-left: 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--premium-gold), transparent);
    margin: var(--space-lg) 0;
}

/* ============================================
   8. PREMIUM HERO SECTION
   ============================================ */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-premium-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--space-lg);
}

.hero-premium-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--premium-white);
    margin-bottom: var(--space-md);
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-premium-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Floating Elements */
.hero-floating-element {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    animation: floatSlow 20s ease-in-out infinite;
}

.hero-floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: -5s;
}

.hero-floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--premium-gold);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator-wheel {
    width: 4px;
    height: 10px;
    background: var(--premium-gold);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

/* ============================================
   9. PREMIUM NAVIGATION
   ============================================ */
.navbar-premium {
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar-premium.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 26, 26, 0.98) !important;
    box-shadow: var(--shadow-large);
}

.navbar-brand-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.navbar-brand-premium:hover {
    transform: translateY(-2px);
}

.navbar-logo-premium {
    height: 50px;
    width: auto;
    border-radius: var(--radius-small);
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.navbar-logo-premium:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
}

.navbar-text-premium {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link-premium {
    position: relative;
    color: var(--premium-white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    transition: var(--transition-normal);
}

.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--premium-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

.nav-link-premium:hover {
    color: var(--premium-gold) !important;
}

.nav-link-premium.active {
    color: var(--premium-gold) !important;
}

/* Premium Dropdown */
.dropdown-menu-premium {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-medium);
    padding: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-large);
}

.dropdown-item-premium {
    color: var(--premium-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-small);
    transition: var(--transition-fast);
}

.dropdown-item-premium:hover {
    background: var(--gradient-premium);
    color: var(--premium-white);
}

.dropdown-item-premium i {
    color: var(--premium-gold);
    margin-right: 0.75rem;
    transition: var(--transition-fast);
}

.dropdown-item-premium:hover i {
    transform: translateX(3px);
}

/* ============================================
   10. PREMIUM FOOTER
   ============================================ */
.footer-premium {
    background: var(--gradient-dark-section);
    color: var(--text-light);
    padding: var(--space-xxl) 0 0;
    position: relative;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: var(--space-md);
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: var(--radius-small);
}

.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--premium-gold);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--premium-gold);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--premium-gold);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.75rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.footer-links a:hover i {
    opacity: 1;
}

/* Social Icons */
.social-links-premium {
    display: flex;
    gap: 12px;
}

.social-link-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-round);
    background: rgba(255, 255, 255, 0.1);
    color: var(--premium-white);
    font-size: 1.2rem;
    transition: var(--transition-bounce);
    text-decoration: none;
}

.social-link-premium:hover {
    background: var(--premium-gold);
    color: var(--premium-charcoal);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-gold);
}

/* Footer Bottom */
.footer-bottom-premium {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
    margin-top: var(--space-xl);
    text-align: center;
}

.footer-bottom-premium p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-premium a {
    color: var(--premium-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-premium a:hover {
    text-decoration: underline;
}

/* ============================================
   11. PREMIUM ANIMATIONS
   ============================================ */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -20px) rotate(5deg); }
    50% { transform: translate(20px, 0) rotate(0deg); }
    75% { transform: translate(10px, 20px) rotate(-5deg); }
}

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

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(15px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-elegant);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-elegant);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-elegant);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition-elegant);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   12. PREMIUM GALLERY
   ============================================ */
.gallery-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.gallery-item-premium {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item-premium:hover img {
    transform: scale(1.15);
}

.gallery-overlay-premium {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item-premium:hover .gallery-overlay-premium {
    opacity: 1;
}

.gallery-overlay-premium h5 {
    color: var(--premium-white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-overlay-premium p {
    color: var(--premium-gold);
    font-size: 0.9rem;
    margin: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth) 0.1s;
}

.gallery-item-premium:hover .gallery-overlay-premium h5,
.gallery-item-premium:hover .gallery-overlay-premium p {
    transform: translateY(0);
}

/* ============================================
   13. PREMIUM FORM STYLING
   ============================================ */
.form-control-premium {
    background: var(--premium-white);
    border: 2px solid var(--premium-medium-gray);
    border-radius: var(--radius-medium);
    padding: 14px 18px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control-premium:focus {
    border-color: var(--premium-violet);
    box-shadow: 0 0 0 4px rgba(111, 66, 193, 0.15);
    outline: none;
}

.form-control-premium::placeholder {
    color: var(--text-muted);
}

.form-label-premium {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* ============================================
   14. RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991.98px) {
    .hero-premium-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .section-premium {
        padding: var(--space-xl) 0;
    }

    .navbar-text-premium {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .hero-premium {
        min-height: 80vh;
    }

    .icon-premium-xl {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .footer-premium {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .social-links-premium {
        justify-content: center;
    }

    .gallery-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

@media (max-width: 575.98px) {
    .btn-premium {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .gallery-premium {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   15. UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--premium-gold) !important; }
.text-violet { color: var(--premium-violet) !important; }
.bg-premium { background: var(--gradient-premium) !important; }
.bg-gold { background: var(--gradient-gold) !important; }

.shadow-premium { box-shadow: var(--shadow-premium) !important; }
.shadow-gold { box-shadow: var(--shadow-gold) !important; }

.rounded-premium { border-radius: var(--radius-large) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }

.hover-lift { transition: var(--transition-smooth); }
.hover-lift:hover { transform: translateY(-8px); }

.hover-glow:hover { box-shadow: var(--shadow-glow); }

.animate-float { animation: floatIcon 3s ease-in-out infinite; }
.animate-pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }

/* ============================================
   16. PREMIUM HERO CAROUSEL
   ============================================ */
.hero-premium-carousel {
    position: relative;
    overflow: hidden;
}

.hero-floating-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    color: rgba(212, 175, 55, 0.15);
    font-size: 3rem;
    animation: floatSlow 15s ease-in-out infinite;
}

.floating-element-1 { top: 15%; left: 10%; animation-delay: 0s; }
.floating-element-2 { top: 25%; right: 15%; animation-delay: -5s; font-size: 2.5rem; }
.floating-element-3 { bottom: 30%; left: 20%; animation-delay: -10s; font-size: 2rem; }

.carousel-banner-img-premium {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-image-wrapper {
    position: relative;
}

.carousel-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.4) 0%,
        rgba(111, 66, 193, 0.3) 50%,
        rgba(26, 26, 26, 0.8) 100%
    );
}

.carousel-caption-premium {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content-wrapper {
    max-width: 800px;
    padding: 2rem;
}

.carousel-badge {
    display: inline-block;
    background: var(--premium-gold);
    color: var(--premium-charcoal);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.carousel-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--premium-white);
    text-shadow: 2px 4px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.carousel-cta-wrapper {
    margin-top: 2rem;
}

/* Premium Carousel Controls */
.carousel-control-premium {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.carousel-control-premium:hover {
    opacity: 1;
}

.carousel-control-icon-premium {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-gold);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-premium:hover .carousel-control-icon-premium {
    background: var(--premium-gold);
    color: var(--premium-charcoal);
    transform: scale(1.1);
}

.carousel-indicators-premium {
    bottom: 30px;
}

.carousel-indicators-premium button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    margin: 0 5px;
}

.carousel-indicators-premium button.active {
    background: var(--premium-gold);
    width: 35px;
    border-radius: 10px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-indicator-text {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--premium-gold);
    font-size: 1.25rem;
}

/* ============================================
   17. ABOUT SECTION PREMIUM STYLES
   ============================================ */
.about-image-wrapper {
    position: relative;
}

.about-main-image {
    position: relative;
    z-index: 2;
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    padding: 20px 25px;
    z-index: 3;
    animation: floatIcon 4s ease-in-out infinite;
}

.about-shape-decoration {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--premium-gold);
    border-radius: var(--radius-large);
    z-index: 1;
    opacity: 0.3;
}

.feature-mini-card {
    transition: var(--transition-smooth);
}

.feature-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

/* ============================================
   18. STAFF SECTION PREMIUM STYLES
   ============================================ */
.staff-section-premium {
    position: relative;
    overflow: hidden;
}

.staff-card-premium {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-large);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.staff-card-premium:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.staff-image-premium {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.staff-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.staff-card-premium:hover .staff-image-premium img {
    transform: scale(1.1);
}

.staff-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--premium-gold);
}

.staff-overlay-premium {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.staff-card-premium:hover .staff-overlay-premium {
    opacity: 1;
}

.staff-overlay-premium p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.staff-social-links {
    display: flex;
    gap: 10px;
}

.staff-social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.staff-social-link:hover {
    background: var(--premium-gold);
    color: var(--premium-charcoal);
}

.staff-info-premium {
    padding: 1.5rem;
    text-align: center;
}

.staff-name-premium {
    color: var(--premium-white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.staff-role-premium {
    color: var(--premium-gold);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   19. VENUE CARDS PREMIUM STYLES
   ============================================ */
.venue-card-premium {
    overflow: hidden;
    transition: var(--transition-smooth);
}

.venue-card-premium:hover {
    transform: translateY(-10px);
}

.venue-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.venue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.venue-card-premium:hover .venue-image {
    transform: scale(1.1);
}

.venue-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--premium-violet);
    color: var(--premium-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.venue-badge-gold {
    background: var(--premium-gold);
    color: var(--premium-charcoal);
}

.venue-badge-premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border: 1px solid var(--premium-gold);
}

.venue-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.venue-features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* ============================================
   20. SERVICE CARDS PREMIUM STYLES
   ============================================ */

/* Text color utility */
.text-violet {
    color: #6f42c1 !important;
}

/* Light background service cards */
.service-card-light {
    background: #ffffff;
    border: 1px solid rgba(111, 66, 193, 0.15);
    border-radius: var(--radius-large);
    padding: 2rem 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card-light:hover {
    background: #ffffff;
    transform: translateY(-8px);
    border-color: var(--premium-gold);
    box-shadow: 0 15px 40px rgba(111, 66, 193, 0.15);
}

.service-card-light h5 {
    color: #6f42c1 !important;
    font-weight: 700;
}

.service-card-light p {
    color: #555555 !important;
}

.service-card-light:hover .service-icon-premium {
    background: var(--gradient-gold);
    color: var(--premium-charcoal);
    transform: scale(1.1);
}

/* Dark background service cards */
.service-card-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-large);
    padding: 2rem 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card-premium:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: var(--premium-gold);
}

.service-icon-premium {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-medium);
    background: var(--gradient-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--premium-gold);
    transition: var(--transition-smooth);
}

.service-card-premium:hover .service-icon-premium {
    background: var(--gradient-gold);
    color: var(--premium-charcoal);
    transform: scale(1.1);
}

/* Ensure service card text is visible on dark backgrounds */
.service-card-premium h5,
.service-card-premium .text-white {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.service-card-premium p,
.service-card-premium .text-light {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
}

.service-card-premium:hover .service-hover-line {
    width: 100%;
}

/* Section Dark text visibility fixes */
.section-dark h2,
.section-dark .display-5 {
    color: #ffffff !important;
}

.section-dark .text-gold,
.section-dark .premium-heading-gold {
    color: var(--premium-gold) !important;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ============================================
   21. CTA SECTION PREMIUM STYLES
   ============================================ */
.cta-section-premium {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-premium-dark);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(111, 66, 193, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card-premium {
    border-radius: var(--radius-large);
}

/* ============================================
   22. RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 991.98px) {
    .carousel-banner-img-premium {
        height: 70vh;
        min-height: 500px;
    }

    .carousel-title-premium {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .about-floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }

    .about-shape-decoration {
        display: none;
    }

    .staff-image-premium {
        height: 250px;
    }

    .cta-section-premium {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .carousel-banner-img-premium {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-control-premium {
        display: none;
    }

    .hero-trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        font-size: 0.8rem;
    }

    .staff-image-premium {
        height: 220px;
    }

    .venue-image-wrapper {
        height: 180px;
    }

    .service-icon-premium {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .carousel-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}
