/* 
 * Shafaq Marquee Public Website Styles
 * InEvent-inspired dark theme design
 */

:root {
    /* Luxurious Wedding Color Palette */
    --primary-color: #d4af37;        /* Gold */
    --secondary-color: #8b4513;      /* Bronze */
    --accent-color: #b8860b;          /* Dark Goldenrod */
    --light-bg: #faf8f5;              /* Cream */
    --dark-bg: #2c1810;              /* Dark Brown */
    --darker-bg: #1a0f0a;            /* Very Dark Brown */
    --card-bg: #ffffff;              /* White cards */
    --text-primary: #2c1810;          /* Dark Brown text */
    --text-secondary: #6b4e3d;        /* Medium Brown */
    --text-muted: #8b7355;            /* Light Brown */
    --border-color: #e6ddd4;          /* Light border */
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    --gradient-secondary: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', 'Times New Roman', serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1200px;
}

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

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

/* Mobile viewport fix */
html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Ensure all containers respect mobile width */
.container, .container-fluid {
    max-width: 100% !important;
    overflow-x: hidden;
}

/* Fix Bootstrap grid on mobile */
@media (max-width: 767px) {
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    
    [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Navigation - Transparent to White on Scroll */
.navbar-public {
    background-color: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    box-shadow: none !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-public.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* Solid Navigation for Non-Home Pages */
.navbar-public-solid {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Navigation Links for Solid Navbar */
.navbar-public-solid .nav-link-public {
    color: var(--text-primary) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-public-solid .nav-link-public:hover {
    color: var(--primary-color) !important;
    transform: translateY(-1px);
}

.navbar-public-solid .navbar-brand-public {
    color: #dc2626 !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    font-style: italic;
    padding-left: 2rem;
    -webkit-text-stroke: 1px #dc2626;
    text-stroke: 1px #dc2626;
}

.navbar-public-solid .btn-primary-custom {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
}

/* Halls Page Header Text Clarity */
.halls-header {
    position: relative;
    z-index: 10;
}

.halls-header h1 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}

.halls-header p {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
    font-weight: 500 !important;
}

.halls-header .section-divider {
    background: white !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Halls Page Navigation - Black Text */
body:has(.halls-header) .navbar-public-solid .nav-link-public {
    color: #333 !important;
    font-weight: 600;
}

body:has(.halls-header) .navbar-public-solid .nav-link-public:hover {
    color: var(--primary-color) !important;
}

body:has(.halls-header) .navbar-public-solid .navbar-brand-public {
    color: #dc2626 !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    font-style: italic;
    padding-left: 2rem;
    -webkit-text-stroke: 1px #dc2626;
    text-stroke: 1px #dc2626;
}

/* Enhanced Hall Cards */
.hall-card-description {
    margin-bottom: 1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-item i {
    width: 16px;
    text-align: center;
}

.amenity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.amenity-tag {
    background: var(--light-bg);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Info Cards */
.info-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.info-icon {
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
}

/* Planning Cards */
.planning-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.planning-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.planning-icon {
    transition: all 0.3s ease;
}

.planning-card:hover .planning-icon {
    transform: scale(1.1);
}

.planning-tips {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.planning-tips ul {
    margin-bottom: 0;
}

.planning-tips li {
    margin-bottom: 0.25rem;
}

/* Success Stories */
.success-story {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.story-avatar {
    transition: all 0.3s ease;
}

.success-story:hover .story-avatar {
    transform: scale(1.1);
}

.story-stats {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

.rating i {
    margin-right: 0.1rem;
}

/* Hall Detail Page Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Feature Cards Hover Effects */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.feature-card:hover .feature-bg {
    opacity: 0.2;
    transform: translate(20px, -20px) scale(1.1);
}

/* Booking Card Animations */
.booking-card {
    transition: all 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
}

.booking-card:hover .booking-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

/* Form Input Focus Effects */
.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25) !important;
    transform: translateY(-2px);
}

/* Location Card Animations */
.location-card {
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}

.location-card:hover .location-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

/* Quick Stats Animation */
.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    color: var(--accent-color) !important;
    text-shadow: 0 0 20px rgba(139, 69, 19, 0.5);
}

/* CTA Button Animations */
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.4) !important;
}

.btn-outline-custom:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2) !important;
}

/* Scroll Indicator Animation */
.scroll-indicator {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Gallery Item Hover Effects */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.gallery-item img {
    transition: all 0.3s ease;
}

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

/* Review Card Animations */
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.review-card:hover .review-avatar {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

/* Fix Overlapping Issues */
.hero-section .container {
    position: relative;
    z-index: 10;
}

.location-card {
    position: relative;
    z-index: 5;
    margin-top: 2rem;
}

/* Ensure proper spacing */
.hero-actions {
    margin-bottom: 2rem !important;
}

/* Fix debug text visibility */
.hero-pattern {
    display: none !important;
}

/* Responsive Design for Hall Detail */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .quick-stats {
        gap: 1rem !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .feature-card {
        padding: 2rem !important;
    }
    
    .booking-card {
        position: static !important;
        margin-top: 2rem;
    }
    
    .location-card {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

/* Responsive adjustments for halls page */
@media (max-width: 768px) {
    .feature-list {
        gap: 0.25rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
    }
    
    .amenity-tags {
        gap: 0.25rem;
    }
    
    .amenity-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .comparison-table .table th,
    .comparison-table .table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

.navbar-brand-public {
    font-family: 'Brush Script MT', 'Lucida Handwriting', 'Segoe Script', cursive;
    font-size: 3.2rem;
    font-weight: 900;
    color: #dc2626 !important;
    display: flex;
    align-items: center;
    text-decoration: none;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    transition: all 0.3s ease;
    text-transform: none;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
    -webkit-text-stroke: 1px #dc2626;
    text-stroke: 1px #dc2626;
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}


.navbar-public.scrolled .navbar-brand-public {
    color: #dc2626 !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    font-style: italic;
    padding-left: 2rem;
    -webkit-text-stroke: 1px #dc2626;
    text-stroke: 1px #dc2626;
}

.navbar-public.scrolled .navbar-logo {
    height: 55px;
    width: auto;
}


.navbar-brand-public .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-link-public {
    color: white !important;
    font-weight: 500;
    padding: 0.8rem 1.2rem !important;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 25px;
    margin: 0 0.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-public.scrolled .nav-link-public {
    color: var(--text-secondary) !important;
    text-shadow: none;
}

.nav-link-public:hover {
    color: var(--primary-color) !important;
    background-color: rgba(212, 175, 55, 0.1);
    text-shadow: none;
}

.nav-link-public.active {
    color: var(--primary-color) !important;
    background-color: rgba(212, 175, 55, 0.15);
    text-shadow: none;
}

/* Hero Section - Full Screen Video with Transparent Nav */
.hero-section {
    background: var(--light-bg);
    color: var(--text-primary);
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    transition: all 0.3s ease;
    transform: scale(1);
    min-width: 100%;
    min-height: 100%;
}

.hero-section.scrolled .hero-video-bg {
    opacity: 0.3;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-section.scrolled .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    transition: all 0.3s ease;
}

.hero-section.scrolled .hero-content {
    transform: translateY(-20px);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.hero-section.scrolled .hero-title {
    font-size: 2.2rem;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.2s backwards;
    font-weight: 300;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section.scrolled .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    animation: fadeInUp 1s ease 0.4s backwards;
    transition: all 0.3s ease;
}

.hero-section.scrolled .hero-stats {
    transform: translateY(-30px);
    gap: 3rem;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-section.scrolled .hero-stat {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.hero-stat:hover .hero-stat-number {
    transform: scale(1.1);
    color: var(--accent-color);
}

.hero-stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-stat:hover .hero-stat-label {
    color: var(--text-primary);
}

.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    font-family: var(--font-body);
}

.btn-primary-custom:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background-color: transparent;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.btn-outline-custom:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
    border-color: transparent;
}

/* Sections */
.section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.section.light {
    background-color: white;
}

.section.dark {
    background-color: var(--dark-bg);
    color: white;
}

.section.dark .section-title {
    color: white;
}

.section.dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    font-size: 2.8rem;
    text-align: center !important;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    font-family: var(--font-heading);
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center !important;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
    display: block;
    width: 100%;
}

.section-divider {
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 4rem;
    border-radius: 2px;
}

/* Kitchen Feature Cards */
.kitchen-feature-card {
    background: white;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.kitchen-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

.kitchen-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kitchen-features li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.kitchen-features li::before {
    content: '🍽️';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Menu Category Cards */
.menu-category-card {
    background: white;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.menu-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

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

.menu-list li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.menu-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Pricing Info Card */
.pricing-info-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.pricing-factor {
    text-align: center;
}

.pricing-factor h6 {
    color: white;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.pricing-factor p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

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

.service-list li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Hall Cards Row - Equal Height */
.hall-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
}

/* Hall Cards - Elegant Wedding Style with Scroll Animations */
.hall-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hall-card:nth-child(1) { animation-delay: 0.1s; }
.hall-card:nth-child(2) { animation-delay: 0.2s; }
.hall-card:nth-child(3) { animation-delay: 0.3s; }
.hall-card:nth-child(4) { animation-delay: 0.4s; }
.hall-card:nth-child(5) { animation-delay: 0.5s; }
.hall-card:nth-child(6) { animation-delay: 0.6s; }

.hall-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.hall-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

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

.hall-card-body {
    padding: 2rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hall-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.hall-card-location {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    flex-shrink: 0;
}

.hall-card-location i {
    margin-right: 0.8rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hall-card-capacity {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-align: center;
    align-self: center;
    flex-shrink: 0;
}

.hall-card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    text-align: center;
    flex-shrink: 0;
}

.hall-card-price small {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.hall-features {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.hall-features small {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    display: block;
    text-align: center;
}

.hall-card .btn {
    margin-top: auto;
    flex-shrink: 0;
}

/* Review Cards */
.review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.review-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

.gallery-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Video Embed */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.form-control-custom {
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    height: 100%;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
}

.contact-info-item h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer - Elegant Wedding Style */
.footer-public {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: white;
    padding: 80px 0 40px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer-public::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-public::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-public h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-public h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.footer-public p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 3rem;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-link-ursoft {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link-ursoft:hover {
    color: var(--accent-color) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: translateY(-1px);
}

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

.footer-link-ursoft:hover::after {
    width: 100%;
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    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);
    }
}

/* Scroll-triggered animations */
.animate-in {
    animation: slideInUp 0.8s ease forwards;
}

/* Loading animation - DISABLED */
/* body:not(.loaded) {
    overflow: hidden;
}

body:not(.loaded) .page-loader {
    display: flex;
}

body.loaded .page-loader {
    display: none;
} */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Comprehensive Mobile Responsive Design */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Medium screens (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hall-card-title {
        font-size: 1.3rem;
    }
}

/* Small screens (768px to 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .hall-card-title {
        font-size: 1.2rem;
    }
    
    .hall-card-price {
        font-size: 1.6rem;
    }
    
    .hero-stat-number {
        font-size: 2.2rem;
    }
    
    /* Hall cards in 2 columns on tablet */
    .hall-card {
        margin-bottom: 2rem;
    }
    
    /* Kitchen features in 1 column on tablet */
    .kitchen-feature-card {
        margin-bottom: 2rem;
    }
    
    /* Menu categories in 2 columns on tablet */
    .menu-category-card {
        margin-bottom: 1.5rem;
    }
}

/* Mobile screens (576px to 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hall-card-title {
        font-size: 1.1rem;
    }
    
    .hall-card-price {
        font-size: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .footer-public h5 {
        font-size: 1.1rem;
    }
    
    .footer-public h6 {
        font-size: 1rem;
    }
    
    /* Hero section mobile adjustments */
    .hero-section {
        min-height: 70vh;
        padding: 60px 0 40px;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    /* Navigation mobile - WHITE HEADER WITH BLACK TEXT */
    .navbar-public {
        background: white !important;
        backdrop-filter: none !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
        padding: 0.8rem 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        border-bottom: 1px solid var(--border-color) !important;
    }
    
    .navbar-brand-public {
        font-size: 2.6rem;
        color: #dc2626 !important;
        font-weight: 900;
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
        letter-spacing: 3px;
        text-transform: none;
        font-style: italic;
        padding-left: 1.5rem;
        -webkit-text-stroke: 1px #dc2626;
        text-stroke: 1px #dc2626;
    }
    
    .nav-link-public {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
        color: var(--text-primary) !important;
        font-weight: 600;
    }
    
    .nav-link-public:hover {
        color: var(--primary-color) !important;
    }
    
    /* Mobile navbar toggle button */
    .navbar-toggler {
        border: 2px solid var(--text-primary);
        color: var(--text-primary);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 24, 16, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Mobile navbar collapse */
    .navbar-collapse {
        background: white;
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
    }
    
    /* Mobile body padding to account for fixed header */
    body {
        padding-top: 80px;
    }
    
    /* Hero section mobile - adjust for fixed header */
    .hero-section {
        padding-top: 100px;
    }
    
    /* Fix section spacing on mobile to prevent overlap */
    .section {
        padding: 80px 0 !important;
        margin-top: 0 !important;
        position: relative;
        z-index: 1;
    }
    
    .section.light {
        padding: 80px 0 !important;
        background: var(--light-bg) !important;
    }
    
    /* Ensure hall cards section is visible */
    .section:has(.hall-card) {
        padding: 100px 0 80px !important;
        background: var(--light-bg) !important;
        margin-top: 0 !important;
    }
    
    /* Fix any overlapping content */
    .container {
        position: relative;
        z-index: 2;
    }
    
    /* Improve text visibility on mobile */
    .hero-title {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
        color: white !important;
        font-weight: 700 !important;
    }
    
    .hero-subtitle {
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7) !important;
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: 500 !important;
    }
    
    .section-title {
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6) !important;
        color: var(--text-primary) !important;
        font-weight: 700 !important;
    }
    
    .section-subtitle {
        color: var(--text-secondary) !important;
        font-weight: 500 !important;
    }
    
    /* Hall card text improvements */
    .hall-card-title {
        color: var(--text-primary) !important;
        font-weight: 700 !important;
    }
    
    .hall-card-location {
        color: var(--text-secondary) !important;
        font-weight: 500 !important;
    }
    
    .hall-card-capacity {
        color: var(--text-secondary) !important;
        font-weight: 500 !important;
    }
    
    /* Hall cards mobile - single column */
    .hall-card {
        margin-bottom: 2rem;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }
    
    /* Ensure hall cards section is properly spaced */
    .section:has(.hall-card) {
        padding-top: 120px !important;
        padding-bottom: 80px !important;
        background: var(--light-bg) !important;
        margin-top: 0 !important;
        position: relative;
        z-index: 1;
    }
    
    /* Fix any content hiding behind fixed header */
    .section:has(.hall-card) .container {
        position: relative;
        z-index: 2;
        margin-top: 0 !important;
    }
    
    .hall-card-img {
        height: 200px;
        width: 100% !important;
        object-fit: cover;
    }
    
    .hall-card-body {
        padding: 1.5rem;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Ensure no horizontal overflow */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .col-lg-3, .col-md-6 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Fix container width issues */
    .container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Prevent horizontal scrolling */
    body, html {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    /* Fix any elements that might cause overflow */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Kitchen features mobile - single column */
    .kitchen-feature-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .kitchen-features li {
        font-size: 0.9rem;
    }
    
    /* Menu categories mobile - single column */
    .menu-category-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .menu-category-card h5 {
        font-size: 1.1rem;
    }
    
    .menu-category-card p {
        font-size: 0.9rem;
    }
    
    /* Pricing info mobile */
    .pricing-info-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .pricing-info-card h5 {
        font-size: 1.2rem;
    }
    
    /* Footer mobile */
    .footer-public {
        padding: 3rem 0 2rem;
    }
    
    .footer-public .row > div {
        margin-bottom: 2rem;
    }
    
    .footer-public h5 {
        margin-bottom: 1rem;
    }
    
    .footer-public ul li {
        margin-bottom: 0.5rem;
    }
    
    /* Buttons mobile */
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Section padding mobile */
    .section {
        padding: 60px 0;
    }
    
    .section.light {
        padding: 60px 0;
    }
    
    /* Contact form mobile */
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-box {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

/* Extra small screens (up to 575px) */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hall-card-title {
        font-size: 1rem;
    }
    
    .hall-card-price {
        font-size: 1.3rem;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    /* Hero section small mobile */
    .hero-section {
        min-height: 60vh;
        padding: 40px 0 30px;
        padding-top: 100px; /* Account for fixed header */
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-stats {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    /* Navigation small mobile - WHITE HEADER WITH BLACK TEXT */
    .navbar-public {
        background: white !important;
        backdrop-filter: none !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
        padding: 0.6rem 0 !important;
        border-bottom: 1px solid var(--border-color) !important;
    }
    
    .navbar-brand-public {
        font-size: 2.2rem;
        color: #dc2626 !important;
        font-weight: 900;
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
        letter-spacing: 3px;
        text-transform: none;
        font-style: italic;
        padding-left: 1.2rem;
        -webkit-text-stroke: 1px #dc2626;
        text-stroke: 1px #dc2626;
    }
    
    .nav-link-public {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        color: var(--text-primary) !important;
        font-weight: 600;
    }
    
    /* Mobile body padding for small screens */
    body {
        padding-top: 70px;
    }
    
    /* Fix section spacing on small mobile */
    .section {
        padding: 70px 0 !important;
        margin-top: 0 !important;
        position: relative;
        z-index: 1;
    }
    
    .section.light {
        padding: 70px 0 !important;
        background: var(--light-bg) !important;
    }
    
    /* Ensure hall cards section is visible on small mobile */
    .section:has(.hall-card) {
        padding: 90px 0 70px !important;
        background: var(--light-bg) !important;
        margin-top: 0 !important;
    }
    
    /* Hall cards small mobile */
    .hall-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 1.5rem 0 !important;
        overflow: hidden;
    }
    
    .hall-card-img {
        height: 180px;
        width: 100% !important;
        object-fit: cover;
    }
    
    .hall-card-body {
        padding: 1rem;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Force single column layout on small mobile */
    .row {
        display: block !important;
        margin: 0 !important;
    }
    
    .col-lg-3, .col-md-6, .col-sm-6, .col-12 {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 0 !important;
        margin-bottom: 1rem;
    }
    
    /* Ensure perfect mobile fit */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        margin: 0 auto !important;
    }
    
    /* Prevent any element from causing overflow */
    .section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Kitchen features small mobile */
    .kitchen-feature-card {
        padding: 1rem;
    }
    
    .kitchen-feature-card h4 {
        font-size: 1.1rem;
    }
    
    .kitchen-features li {
        font-size: 0.8rem;
    }
    
    /* Menu categories small mobile */
    .menu-category-card {
        padding: 1rem;
    }
    
    .menu-category-card h5 {
        font-size: 1rem;
    }
    
    .menu-category-card p {
        font-size: 0.8rem;
    }
    
    /* Pricing info small mobile */
    .pricing-info-card {
        padding: 1rem;
    }
    
    .pricing-info-card h5 {
        font-size: 1.1rem;
    }
    
    /* Footer small mobile */
    .footer-public {
        padding: 2rem 0 1rem;
    }
    
    .footer-public h5 {
        font-size: 1rem;
    }
    
    .footer-public h6 {
        font-size: 0.9rem;
    }
    
    /* Buttons small mobile */
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    /* Section padding small mobile */
    .section {
        padding: 40px 0;
    }
    
    .section.light {
        padding: 40px 0;
    }
    
    /* Contact form small mobile */
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-box {
        padding: 1.5rem 1rem;
    }
    
    /* Gallery small mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Extra extra small devices (phones in portrait) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hall-card-title {
        font-size: 0.95rem;
    }
    
    .hero-stat-number {
        font-size: 1.6rem;
    }
    
    .hero-section {
        min-height: 50vh;
        padding: 30px 0 20px;
        padding-top: 100px; /* Account for fixed header */
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section.light {
        padding: 30px 0;
    }
    
    .container {
        padding: 0 5px;
    }
    
    /* Navigation extra small mobile - WHITE HEADER WITH BLACK TEXT */
    .navbar-public {
        background: white !important;
        backdrop-filter: none !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
        padding: 0.5rem 0 !important;
        border-bottom: 1px solid var(--border-color) !important;
    }
    
    .navbar-brand-public {
        font-size: 1.8rem;
        color: #dc2626 !important;
        font-weight: 900;
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
        letter-spacing: 3px;
        text-transform: none;
        font-style: italic;
        padding-left: 1rem;
        -webkit-text-stroke: 1px #dc2626;
        text-stroke: 1px #dc2626;
    }
    
    .navbar-logo {
        height: 45px;
        width: auto;
    }
    
    
    .nav-link-public {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
        color: var(--text-primary) !important;
        font-weight: 600;
    }
    
    /* Mobile body padding for extra small screens */
    body {
        padding-top: 60px;
    }
    
    /* Fix section spacing on extra small mobile */
    .section {
        padding: 60px 0 !important;
        margin-top: 0 !important;
        position: relative;
        z-index: 1;
    }
    
    .section.light {
        padding: 60px 0 !important;
        background: var(--light-bg) !important;
    }
    
    /* Ensure hall cards section is visible on extra small mobile */
    .section:has(.hall-card) {
        padding: 80px 0 60px !important;
        background: var(--light-bg) !important;
        margin-top: 0 !important;
    }
    
    /* Extra small mobile - Force perfect fit */
    .hall-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 1rem 0 !important;
        overflow: hidden;
    }
    
    .hall-card-img {
        width: 100% !important;
        height: 160px;
        object-fit: cover;
    }
    
    .hall-card-body {
        padding: 0.8rem;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Force single column and prevent overflow */
    .row {
        display: block !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .col-lg-3, .col-md-6, .col-sm-6, .col-12, .col-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 0 !important;
        margin-bottom: 0.8rem;
        float: none !important;
    }
    
    /* Perfect mobile container */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 5px !important;
        margin: 0 auto !important;
    }
    
    /* Ensure no horizontal scroll */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Fix any remaining overflow issues */
    .section {
        padding-left: 5px !important;
        padding-right: 5px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Button fixes for mobile */
    .btn-primary-custom, .btn-outline-custom {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0.5rem;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* Halls Page Specific Mobile Responsiveness */
@media (max-width: 767px) {
    /* Halls page header mobile */
    .halls-header {
        padding: 80px 0 60px !important;
    }
    
    .halls-header h1 {
        font-size: 2.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .halls-header p {
        font-size: 1rem !important;
        padding: 0 20px;
    }
    
    .halls-header .section-divider {
        width: 60px !important;
        height: 2px !important;
        margin: 0 auto 1.5rem !important;
    }
    
    /* Filter section mobile */
    .filter-card {
        padding: 1.5rem !important;
        margin: 0 10px;
    }
    
    .filter-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .filter-card .form-control,
    .filter-card .form-select {
        padding: 10px 12px !important;
        font-size: 0.9rem !important;
    }
    
    .filter-card .btn {
        width: 100% !important;
        margin-top: 1rem;
    }
    
    /* Hall cards mobile layout */
    .hall-card {
        margin-bottom: 2rem;
    }
    
    .hall-card-img {
        height: 200px;
    }
    
    .hall-card-body {
        padding: 1.5rem;
    }
    
    .hall-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hall-card-location {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .hall-card-capacity {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hall-features {
        margin-bottom: 1.5rem;
    }
    
    .hall-features small {
        font-size: 0.8rem;
    }
    
    /* Info cards mobile */
    .info-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .info-card h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Planning cards mobile */
    .planning-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .planning-card h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .planning-card p {
        font-size: 0.9rem;
    }
    
    .planning-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .planning-tips {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .planning-tips ul {
        font-size: 0.85rem;
    }
    
    /* Success stories mobile */
    .success-story {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .success-story h6 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .success-story p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .story-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .story-stats {
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .story-stats .row > div {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .story-stats .rating {
        font-size: 0.8rem;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 3rem 0 !important;
    }
    
    .cta-section h3 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cta-section p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .cta-section .btn {
        width: 100% !important;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    /* Halls page header small mobile */
    .halls-header {
        padding: 60px 0 40px !important;
    }
    
    .halls-header h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .halls-header p {
        font-size: 0.9rem !important;
        padding: 0 15px;
    }
    
    .halls-header .section-divider {
        width: 50px !important;
        height: 2px !important;
        margin: 0 auto 1rem !important;
    }
    
    /* Filter section small mobile */
    .filter-card {
        padding: 1rem !important;
        margin: 0 5px;
    }
    
    .filter-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .filter-card .form-control,
    .filter-card .form-select {
        padding: 8px 10px !important;
        font-size: 0.85rem !important;
    }
    
    /* Hall cards small mobile */
    .hall-card-img {
        height: 180px;
    }
    
    .hall-card-body {
        padding: 1rem;
    }
    
    .hall-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .hall-card-location {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .hall-card-capacity {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .hall-features {
        margin-bottom: 1rem;
    }
    
    .hall-features small {
        font-size: 0.75rem;
    }
    
    /* Info cards small mobile */
    .info-card {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .info-card h5 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Planning cards small mobile */
    .planning-card {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .planning-card h5 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .planning-card p {
        font-size: 0.85rem;
    }
    
    .planning-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .planning-tips {
        padding: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .planning-tips ul {
        font-size: 0.8rem;
    }
    
    /* Success stories small mobile */
    .success-story {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .success-story h6 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .success-story p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .story-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .story-stats {
        padding-top: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .story-stats .rating {
        font-size: 0.75rem;
    }
    
    /* CTA section small mobile */
    .cta-section {
        padding: 2rem 0 !important;
    }
    
    .cta-section h3 {
        font-size: 1.6rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .cta-section p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Loading Animation - DISABLED */
.page-loader {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.page-loader.hidden {
    display: none !important;
}

.loader-spinner {
    display: none !important;
    visibility: hidden !important;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Services Page - Professional Redesign */

/* Hero Section */
.services-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: var(--font-heading);
}

.services-hero-divider {
    margin: 0 auto 2rem;
    height: 4px;
    width: 100px;
    background: white;
    border-radius: 2px;
}

.services-hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
}

.services-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.services-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.services-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.services-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.services-image {
    text-align: center;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 4rem 2rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Menu Categories */
.menu-categories {
    padding: 100px 0;
    background: white;
}

.menu-category-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.menu-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.menu-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.menu-category-icon i {
    font-size: 2rem;
    color: white;
}

.menu-category-card h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.menu-category-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Event Management */
.event-management {
    padding: 100px 0;
    background: white;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Specialized Services */
.specialized-services {
    padding: 100px 0;
    background: var(--light-bg);
}

.specialized-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.specialized-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.specialized-card-content {
    display: flex;
    align-items: flex-start;
}

.specialized-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.specialized-icon i {
    font-size: 2rem;
    color: white;
}

.specialized-text h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.specialized-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.specialized-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialized-features li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.specialized-features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Call to Action */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn-cta-secondary {
    border: 2px solid white;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Services Page Mobile Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0 80px;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-overview,
    .menu-categories,
    .pricing-section,
    .event-management,
    .specialized-services,
    .services-cta {
        padding: 60px 0;
    }
    
    .services-section-title {
        font-size: 2rem;
    }
    
    .services-section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .specialized-card-content {
        flex-direction: column;
        text-align: center;
    }
    
    .specialized-icon {
        margin: 0 auto 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
    }
    
    .services-section-title {
        font-size: 1.8rem;
    }
    
    .menu-category-card,
    .pricing-card,
    .service-card,
    .specialized-card {
        padding: 2rem 1.5rem;
    }
    
    .menu-category-icon,
    .service-card-icon,
    .specialized-icon {
        width: 60px;
        height: 60px;
    }
    
    .menu-category-icon i,
    .service-card-icon i,
    .specialized-icon i {
        font-size: 1.5rem;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Testimonials Page - Professional Design */

/* Hero Section */
.testimonials-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: var(--font-heading);
}

.testimonials-hero-divider {
    margin: 0 auto 2rem;
    height: 4px;
    width: 100px;
    background: white;
    border-radius: 2px;
}

.testimonials-hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
}

/* Overall Rating Section */
.overall-rating-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.rating-summary {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.5rem;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.rating-breakdown-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.rating-label {
    width: 80px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.rating-progress {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin: 0 1rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-count {
    width: 40px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.total-reviews {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Featured Reviews Section */
.featured-reviews {
    padding: 100px 0;
    background: white;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(139, 69, 19, 0.05));
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.testimonial-avatar i {
    color: white;
    font-size: 1.2rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.2rem 0;
}

.testimonial-venue {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.featured-badge i {
    color: white;
    font-size: 0.8rem;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating .rating-stars {
    justify-content: flex-start;
}

.testimonial-rating .rating-stars i {
    font-size: 1rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
}

.testimonial-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.testimonial-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* No Reviews State */
.no-reviews {
    padding: 100px 0;
    background: var(--light-bg);
}

.no-reviews-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.no-reviews-icon i {
    color: white;
    font-size: 3rem;
}

.no-reviews-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.no-reviews-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Call to Action */
.testimonials-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn-cta-secondary {
    border: 2px solid white;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Testimonials Page Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-hero {
        padding: 120px 0 80px;
    }
    
    .testimonials-hero-title {
        font-size: 2.5rem;
    }
    
    .testimonials-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .overall-rating-section,
    .featured-reviews,
    .no-reviews,
    .testimonials-cta {
        padding: 60px 0;
    }
    
    .rating-summary {
        padding: 2rem;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .rating-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rating-progress {
        margin: 0;
        width: 100%;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin: 0 auto 1rem;
    }
    
    .featured-badge {
        position: static;
        margin-top: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .testimonials-hero-title {
        font-size: 2rem;
    }
    
    .testimonials-hero-subtitle {
        font-size: 1rem;
    }
    
    .rating-summary {
        padding: 1.5rem;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Submit Review Page - Professional Design */

/* Hero Section */
.submit-review-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.submit-review-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: var(--font-heading);
}

.submit-review-hero-divider {
    margin: 0 auto 2rem;
    height: 4px;
    width: 100px;
    background: white;
    border-radius: 2px;
}

.submit-review-hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
}

/* Review Form Section */
.review-form-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.review-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.form-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
}

.form-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.form-group {
    position: relative;
}

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

.form-control-custom {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.form-select.form-control-custom {
    padding-left: 3rem;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.1rem;
    z-index: 2;
    pointer-events: none;
}

.form-icon i {
    margin-top: 1.2rem;
}

/* Rating Section */
.rating-section {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rating-stars {
    display: flex;
    gap: 0.5rem;
    font-size: 2.5rem;
    cursor: pointer;
}

.rating-stars i {
    color: #e9ecef;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.rating-stars i:hover {
    color: #ffc107;
    transform: scale(1.1);
}

.rating-stars i.active {
    color: #ffc107;
}

.rating-stars i.hover {
    color: #ffc107;
    transform: scale(1.1);
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    min-height: 1.5rem;
}

/* Character Count */
.character-count {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.character-count.warning {
    color: #ff6b6b;
}

.character-count.danger {
    color: #dc3545;
    font-weight: 600;
}

/* Review Guidelines */
.review-guidelines {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.guidelines-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.guidelines-list li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    position: relative;
    padding-left: 1.5rem;
}

.guidelines-list li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.btn-submit-review {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    color: white;
}

.btn-cancel {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-cancel:hover {
    background: var(--text-secondary);
    color: white;
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

/* Why Review Section */
.why-review-section {
    padding: 100px 0;
    background: white;
}

.why-review-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.why-review-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    color: white;
    font-size: 2rem;
}

.benefit-card h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Submit Review Page Mobile Responsive */
@media (max-width: 768px) {
    .submit-review-hero {
        padding: 120px 0 80px;
    }
    
    .submit-review-hero-title {
        font-size: 2.5rem;
    }
    
    .submit-review-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .review-form-section,
    .why-review-section {
        padding: 60px 0;
    }
    
    .review-form-card {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .rating-stars {
        font-size: 2rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-submit-review,
    .btn-cancel {
        width: 100%;
        max-width: 300px;
    }
    
    .why-review-title {
        font-size: 2rem;
    }
    
    .why-review-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .submit-review-hero-title {
        font-size: 2rem;
    }
    
    .submit-review-hero-subtitle {
        font-size: 1rem;
    }
    
    .review-form-card {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .rating-stars {
        font-size: 1.8rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .why-review-title {
        font-size: 1.8rem;
    }
}

/* About Page - Professional Design */

/* Hero Section */
.about-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: var(--font-heading);
}

.about-hero-divider {
    margin: 0 auto 2rem;
    height: 4px;
    width: 100px;
    background: white;
    border-radius: 2px;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
}

/* Our Story Section */
.our-story-section {
    padding: 100px 0;
    background: white;
}

.story-content {
    padding-right: 2rem;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.story-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-image {
    text-align: center;
}

/* Hall Showcase Grid - Professional 4-Image Layout */
.hall-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 450px;
    padding: 12px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 1.2rem 1rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
    border-radius: 0 0 15px 15px;
}

.showcase-item:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.image-overlay p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Individual hall styling */
.showcase-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.showcase-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.showcase-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.showcase-item:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Fallback for image placeholder */
.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 4rem 2rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    text-align: center;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mission-icon i,
.vision-icon i {
    color: white;
    font-size: 2rem;
}

.mission-title,
.vision-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.mission-text,
.vision-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: white;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    color: white;
    font-size: 2rem;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-avatar i {
    color: white;
    font-size: 2rem;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: white;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    color: white;
    font-size: 2rem;
}

.contact-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* About Page Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 80px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .our-story-section,
    .mission-vision-section,
    .values-section,
    .team-section,
    .contact-info-section,
    .why-choose-section {
        padding: 60px 0;
    }
    
    .story-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }
    
    .value-card,
    .team-card,
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    /* Hall showcase mobile */
    .showcase-grid {
        height: 350px;
        gap: 8px;
        padding: 8px;
    }
    
    .image-overlay {
        padding: 1rem 0.75rem;
    }
    
    .image-overlay h5 {
        font-size: 1.1rem;
    }
    
    .image-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }
    
    .value-card,
    .team-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Hall showcase small mobile */
    .showcase-grid {
        height: 300px;
        gap: 6px;
        padding: 6px;
    }
    
    .image-overlay {
        padding: 0.75rem 0.5rem;
    }
    
    .image-overlay h5 {
        font-size: 1rem;
    }
    
    .image-overlay p {
        font-size: 0.8rem;
    }
}

/* Contact Page - Professional Design */

/* Hero Section */
.contact-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: var(--font-heading);
}

.contact-hero-divider {
    margin: 0 auto 2rem;
    height: 4px;
    width: 100px;
    background: white;
    border-radius: 2px;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: white;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    color: white;
    font-size: 2rem;
}

.contact-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}


/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

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

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.form-section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.form-group {
    position: relative;
}

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

.form-control-custom {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem 0.75rem 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.form-select.form-control-custom {
    padding-left: 3rem;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    z-index: 2;
}

.form-icon i {
    font-size: 1rem;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Maps Section */
.maps-section {
    padding: 100px 0;
    background: white;
}

.maps-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-cta-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 80px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-section,
    .contact-form-section,
    .maps-section,
    .contact-cta {
        padding: 60px 0;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Utilities */
.bg-light-custom {
    background-color: var(--light-bg);
}

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

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.badge-capacity {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Gallery Page CSS */
.gallery-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.gallery-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.gallery-hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-color));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.gallery-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Gallery Filter Section */
.gallery-filter-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.gallery-filter-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Gallery Grid Section */
.gallery-grid-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image,
.gallery-video {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-image img,
.gallery-video img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img,
.gallery-item:hover .gallery-video img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8) 0%, rgba(205, 133, 63, 0.8) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

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

.gallery-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-venue {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.gallery-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Video Specific Styles */
.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(139, 69, 19, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-item:hover .video-play-btn {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Empty State */
.gallery-empty {
    padding: 100px 0;
    text-align: center;
}

.empty-content {
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.empty-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.empty-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Featured Events Section */
.featured-events-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.event-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.event-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Gallery CTA */
.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-width: 180px;
    justify-content: center;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-cta-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.lightbox-media {
    position: relative;
}

.lightbox-media img,
.lightbox-media iframe {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-caption {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid var(--border-color);
}

.lightbox-caption h5 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

/* Gallery Page Mobile Responsive CSS */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 100px 0 60px;
    }
    
    .gallery-hero-title {
        font-size: 2.5rem;
    }
    
    .gallery-hero-subtitle {
        font-size: 1rem;
    }
    
    .gallery-filter-section {
        padding: 40px 0;
    }
    
    .gallery-filter-card {
        padding: 1.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image img,
    .gallery-video img {
        height: 200px;
    }
    
    .featured-events-section {
        padding: 60px 0;
    }
    
    .event-image {
        height: 150px;
    }
    
    .event-content {
        padding: 1.25rem;
    }
    
    .gallery-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .lightbox-modal {
        padding: 1rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
}

@media (max-width: 576px) {
    .gallery-hero-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-image img,
    .gallery-video img {
        height: 180px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Home Page Section Headings Center Alignment */
.section .container h2.section-title {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section .container p.section-subtitle {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Hall Video Embed Styles */
.hall-video-embed {
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Video Showcase Styles */
.video-showcase-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.video-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.video-showcase-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-showcase-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-showcase-content {
    padding: 20px;
}

.video-showcase-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.video-showcase-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Venue Video Showcase Styles */
.venue-video-showcase {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.venue-video-showcase:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.venue-video-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.venue-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.venue-video-content {
    padding: 30px;
}

.venue-video-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.venue-video-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b0000 100%);
    padding: 100px 0 80px;
    color: white;
    text-align: center;
}

.gallery-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-hero-divider {
    width: 80px;
    height: 4px;
    background: white;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.gallery-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Hall Video Cards */
.hall-video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.hall-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hall-video-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.hall-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hall-video-content {
    padding: 20px;
}

.hall-video-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hall-video-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Hall Image Cards */
.hall-image-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.hall-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hall-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.hall-image-card:hover .hall-image {
    transform: scale(1.05);
}

.hall-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.hall-image-card:hover .hall-image-overlay {
    transform: translateY(0);
}

.hall-image-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.hall-image-description {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Review Cards */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.review-header {
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.review-rating {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-rating i {
    margin-right: 2px;
}

.review-content {
    position: relative;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-link:hover::before {
    left: 100%;
}

.whatsapp-link:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    animation: none;
}

.whatsapp-link i {
    font-size: 1.3rem;
    margin-right: 8px;
    animation: whatsappBounce 1.5s infinite;
}

.whatsapp-text {
    white-space: nowrap;
}

/* WhatsApp Animations */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

@keyframes whatsappBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@keyframes whatsappShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

/* Floating animation for the button */
.whatsapp-button {
    animation: whatsappFloat 3s ease-in-out infinite;
}

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

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-link i {
        margin-right: 0;
        font-size: 1.5rem;
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: lightboxSlideIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(220, 38, 38, 0.9);
    transform: scale(1.1);
}

.lightbox-title {
    padding: 20px;
    margin: 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes lightboxSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Lightbox iframe styles */
.lightbox-content iframe {
    width: 100%;
    height: 70vh;
    border: none;
    border-radius: 8px;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

