/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 12px;
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 600;
}

.breadcrumb-item.active span {
    pointer-events: none;
}

/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 12px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-nav {
        padding: 10px 0;
    }
    
    .breadcrumb {
        font-size: 11px;
    }
}

/* Prevent unwanted scrollbars on sections */
section {
    overflow: visible;
    height: auto;
    min-height: auto;
}

/* Ensure all grid containers are elastic */
.venues-grid,
.vendors-grid, 
.events-grid,
.gallery-grid,
.services-grid {
    overflow: visible;
    height: auto;
}

/* Tablet Layout - Single Column */
@media (max-width: 1024px) {
    .venues-grid,
    .vendors-grid,
    .events-grid,
    .gallery-grid,
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Hero Responsive for Tablet */
    .hero-content {
        top: 50%;
        max-height: 70vh;
        padding: 0 15px;
        max-width: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .hero-main-title {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 14px;
        margin-bottom: 10px;
    }
    
    .hero-service-highlights {
        gap: 15px;
        margin: 12px 0 15px 0;
    }
    
    .service-highlight {
        padding: 7px 14px;
    }
    
    .highlight-text {
        font-size: 0.8rem;
    }
    
    .hero-cta-section {
        gap: 12px;
        margin-top: 15px;
    }
    
    .hero-cta-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 130px;
    }
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 70px; /* Account for fixed navbar */
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Navigation Bar Styles - Based on WeddingWire.in */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e9ecef;
    will-change: transform;
    contain: layout;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

/* Logo and Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.brand-name {
    font-family: 'Dancing Script', 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 28px;
    font-weight: 600;
    color: #e91e63;
    letter-spacing: 0.5px;
}

/* Navigation Menu */
.navbar-nav {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 20px 18px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: #e91e63;
}

.nav-link i {
    font-size: 12px;
    margin-left: 5px;
    display: none;
}

/* Dropdown arrow animation removed */

/* Dropdown Menu - Hidden */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    display: none !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    margin: 4px 8px;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #e91e63;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== REVAMPED HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Background Video Wrapper */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Videos */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-video.active {
    opacity: 1;
}



/* Pattern Overlay */
.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 3;
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

/* Hero Main Container */
.hero-main-container {
    position: relative;
    z-index: 4;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}





/* Hero Content Wrapper */
.hero-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}

/* Modern Hero Slides */
.hero-slide-modern {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    position: absolute;
    width: 100%;
    max-width: 1000px;
}

.hero-slide-modern.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Slide Content Center */
.slide-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

/* Quote Container */
.quote-container {
    position: relative;
    max-width: 800px;
}

.quote-mark {
    font-size: 6rem;
    font-weight: 700;
    color: rgba(59, 130, 246, 0.3);
    position: absolute;
    top: -30px;
    left: -40px;
    font-family: 'Georgia', serif;
    line-height: 1;
    z-index: -1;
}

.hero-quote {
    font-size: 3.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6),
        0 8px 16px rgba(0, 0, 0, 0.4);
}

.quote-author {
    font-size: 1.1rem;
    color: #ffffff;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn::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.6s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(59, 130, 246, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.4);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Bottom Navigation & Controls */
.hero-bottom-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px 30px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Event Type Tabs */
.event-type-tabs {
    display: flex;
    gap: 15px;
}

.event-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.event-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

.event-tab.active {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.event-tab i {
    font-size: 1rem;
}

/* Progress Indicator */
.slide-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    width: 33.33%;
    border-radius: 2px;
    transition: width 8s linear;
}

.progress-dots {
    display: flex;
    gap: 10px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: #3b82f6;
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Navigation Arrows */
.hero-nav-arrows {
    display: flex;
    gap: 15px;
}

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

.nav-arrow-modern:hover {
    background: rgba(59, 130, 246, 0.8);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}



/* ===== RESPONSIVE HERO STYLES ===== */

/* Tablet Responsive (1024px and below) */
@media (max-width: 1024px) {

    
    .hero-content-wrapper {
        padding: 0 30px;
    }
    
    .hero-quote {
        font-size: 2.8rem;
    }
    
    .quote-mark {
        font-size: 5rem;
        top: -25px;
        left: -30px;
    }
    
    .hero-cta-buttons {
        gap: 20px;
    }
    
    .hero-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .hero-bottom-controls {
        padding: 0 30px 25px;
        flex-direction: column;
        gap: 20px;
    }
    
    .event-type-tabs {
        justify-content: center;
    }
    

}

/* Mobile Responsive (768px and below) */
@media (max-width: 768px) {

    
    .hero-content-wrapper {
        padding: 0 20px;
    }
    
    .hero-quote {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .quote-mark {
        font-size: 4rem;
        top: -20px;
        left: -25px;
    }
    
    .quote-author {
        font-size: 1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-btn {
        padding: 15px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-bottom-controls {
        padding: 0 20px 20px;
    }
    
    .event-type-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .event-tab {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .progress-bar {
        width: 150px;
    }
    

}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {

    
    .hero-content-wrapper {
        padding: 0 15px;
    }
    
    .hero-quote {
        font-size: 1.8rem;
        line-height: 1.05;
    }
    
    .quote-mark {
        font-size: 3rem;
        top: -15px;
        left: -20px;
    }
    
    .quote-author {
        font-size: 0.9rem;
    }
    
    .hero-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .hero-bottom-controls {
        padding: 0 15px 15px;
    }
    
    .event-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .progress-bar {
        width: 120px;
        height: 2px;
    }
    
    .nav-arrow-modern {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    

}

/* Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px 0;
    color: #ffffff;
    text-shadow: 
        1px 1px 0px rgba(0, 0, 0, 1),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Inter', sans-serif;
}

/* Description */
.hero-description {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 15px 0;
    color: #ffffff;
    text-shadow: 
        1px 1px 0px rgba(0, 0, 0, 1),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Inter', sans-serif;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(233, 30, 99, 0.9);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-shadow: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Service Highlights */
.hero-service-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0 20px 0;
    flex-wrap: wrap;
}

.service-highlight {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-highlight:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 1.2rem;
    filter: brightness(1.2);
}

.highlight-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero CTA Section */
.hero-cta-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 150px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-cta-btn.primary {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.hero-cta-btn.primary:hover {
    background: linear-gradient(135deg, #c2185b, #ad1457);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.6);
}

.hero-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Video Description Text */
.video-description {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
}

.video-text {
    opacity: 0;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: opacity 0.5s ease;
}

.video-text.active {
    opacity: 1;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.9), rgba(147, 51, 234, 0.9));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 1s ease 0.1s both;
}

.hero-slide h1 {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease 0.3s both;
}

.hero-slide p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease 0.6s both;
}

.service-highlights {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease 0.8s both;
}

.service-highlights span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.service-highlights span:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-cta {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin: 0 auto;
    width: fit-content;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
    animation: slideInUp 1s ease 0.9s both;
}

.hero-cta:hover {
    background: linear-gradient(135deg, #c2185b, #ad1457);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.6);
}

/* Navigation Dots */
.hero-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.nav-dot.active {
    background: #e91e63;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Slide Arrows */
.hero-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 4;
    pointer-events: none;
}

.hero-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: rgba(233, 30, 99, 0.8);
    border-color: #e91e63;
    transform: scale(1.1);
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Main Content */
.main-content {
    background-color: #f8f9fa;
}

/* AOS Animation Styles */
[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 20px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story,
.about-mission,
.about-values {
    margin-bottom: 50px;
    text-align: center;
}

.about-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #e91e63;
    border-radius: 1px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Venues Section */
.venues-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: auto;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    width: 100%;
    height: auto;
}

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

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

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

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

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

.venue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(41, 128, 185, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    color: white;
    padding: 20px;
}

.venue-card:hover .venue-overlay {
    opacity: 1;
}

.venue-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.venue-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.venue-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.venue-btn:hover {
    background: white;
    color: #3498db;
}

.venue-content {
    padding: 30px;
}

.venue-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.venue-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.venue-features li {
    padding: 8px 0;
    color: #495057;
    font-weight: 500;
    border-bottom: 1px solid #f1f3f4;
}

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

/* Vendors Section */
.vendors-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: auto;
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    width: 100%;
    height: auto;
}

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

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

.vendor-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.vendor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.vendor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.9), rgba(142, 68, 173, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    color: white;
    padding: 20px;
}

.vendor-card:hover .vendor-overlay {
    opacity: 1;
}

.vendor-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vendor-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.vendor-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.vendor-btn:hover {
    background: white;
    color: #9b59b6;
}

.vendor-content {
    padding: 30px;
}

.vendor-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.vendor-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.vendor-features li {
    padding: 8px 0;
    color: #495057;
    font-weight: 500;
    border-bottom: 1px solid #f1f3f4;
}

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

/* Events Section */
.events-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    width: 100%;
    height: auto;
}

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

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

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

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.9), rgba(211, 84, 0, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    color: white;
    padding: 20px;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.event-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.event-btn:hover {
    background: white;
    color: #e67e22;
}

.event-content {
    padding: 30px;
}

.event-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.event-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.event-features li {
    padding: 8px 0;
    color: #495057;
    font-weight: 500;
    border-bottom: 1px solid #f1f3f4;
}

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

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    min-height: auto;
}

.gallery-section .section-header h2,
.gallery-section .section-subtitle {
    color: white;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.tab-btn:hover,
.tab-btn.active {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    border-color: #e91e63;
    transform: translateY(-2px);
}

/* ===== MODERN MASONRY GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
    width: 100%;
    height: auto;
    grid-auto-flow: dense;
}

/* Masonry Grid Layout with Different Heights */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

/* Masonry Height Variations */
.gallery-item:nth-child(3n+1) {
    grid-row: span 1;
    min-height: 280px;
}

.gallery-item:nth-child(3n+2) {
    grid-row: span 1;
    min-height: 320px;
}

.gallery-item:nth-child(3n+3) {
    grid-row: span 1;
    min-height: 360px;
}

/* Featured Items - Larger */
.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 400px;
}

/* Gallery Item Inner Wrapper */
.gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

/* Modern Hover Effects */
.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
    z-index: 10;
}

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

/* Modern Overlay with Gradient */
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(233, 30, 99, 0.9) 0%,
        rgba(194, 24, 91, 0.8) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
}

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

/* Gallery Item Content */
.gallery-item-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-item-content {
    transform: translateY(0);
}

.gallery-item-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Merriweather', serif;
}

.gallery-item-description {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Modern Action Buttons */
.gallery-item-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-btn-view {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-btn-view:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-btn-view i {
    font-size: 1rem;
}

/* Category Badge */
.gallery-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-category-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Loading State */
.gallery-item.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Fade In Animation */
.gallery-item.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item:nth-child(3n+1) { min-height: 260px; }
    .gallery-item:nth-child(3n+2) { min-height: 300px; }
    .gallery-item:nth-child(3n+3) { min-height: 340px; }
    .gallery-item.featured { min-height: 380px; }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-item:nth-child(3n+1) { min-height: 240px; }
    .gallery-item:nth-child(3n+2) { min-height: 280px; }
    .gallery-item:nth-child(3n+3) { min-height: 320px; }
    .gallery-item.featured {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 300px;
    }
    
    .gallery-item-title { font-size: 1.2rem; }
    .gallery-item-description { font-size: 0.9rem; }
    .gallery-item-actions { gap: 8px; }
    .gallery-btn-view {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item:nth-child(3n+1),
    .gallery-item:nth-child(3n+2),
    .gallery-item:nth-child(3n+3),
    .gallery-item.featured {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }
    
    .gallery-item-title { font-size: 1.1rem; }
    .gallery-item-description { font-size: 0.85rem; }
    .gallery-item-content { padding: 15px; }
    .gallery-btn-view {
        padding: 6px 12px;
        font-size: 0.75rem;
        gap: 6px;
    }
}

/* Enhanced Tab Buttons */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.tab-btn::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.6s;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn:hover,
.tab-btn.active {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    border-color: #e91e63;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

/* Filter Animation */
.gallery-item.filtering {
    opacity: 0;
    transform: scale(0.8) rotateY(90deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.filtered {
    display: none;
}

.gallery-item.not-filtered {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

/* Premium Shadow Effects */
.gallery-item {
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
}

.gallery-item:hover {
    box-shadow:
        0 20px 40px rgba(233, 30, 99, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Accessibility */
.gallery-item:focus-within {
    outline: 3px solid #e91e63;
    outline-offset: 2px;
}

.gallery-btn-view:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Performance Optimizations */
.gallery-item {
    will-change: transform, opacity;
    contain: layout style paint;
}

.gallery-item img {
    will-change: transform;
    contain: layout style;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.15);
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-details p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group:last-of-type {
    grid-template-columns: 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e91e63;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.contact-btn {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #c2185b, #ad1457);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

/* Simple Map Below Form */
.form-map-container {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.map-wrapper-simple {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.simple-map-btn {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    width: fit-content;
}

.simple-map-btn:hover {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.simple-map-btn i {
    font-size: 1rem;
}

/* Responsive Design for Simple Map */
@media (max-width: 768px) {
    .form-map-container {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .simple-map-btn {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #cccccc;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section h3 {
    color: #ff8c00;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-brand-name {
    font-family: 'Dancing Script', 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ff8c00;
}

.footer-tagline {
    color: #ff8c00;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.read-more-btn {
    color: #ff8c00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #ffaa33;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ff8c00;
}

.address-info h4,
.phone-info h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.office-info {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.office-info strong {
    color: white;
}

.phone-info p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff8c00;
}

/* New Footer Contact Item Styles */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item i {
    color: #ff8c00;
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-details h4 {
    color: #ff8c00;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-details p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-details a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff8c00;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid transparent;
}

.social-link.facebook {
    background: rgba(59, 89, 152, 0.1);
    color: #3b5998;
    border-color: #3b5998;
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border-color: #e1306c;
}

.social-link.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border-color: #ff0000;
}

.social-link i {
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
}

.social-link span {
    font-size: 0.9rem;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
    background: #3b5998;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.footer-availability {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 140, 0, 0.3);
}

.footer-availability p {
    color: #ff8c00;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-availability i {
    font-size: 1rem;
}

.visitor-counter h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.counter-display {
    background: #333;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
}

.counter-number {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ff00;
}

.chat-btn {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.chat-btn:hover {
    background: #ffaa33;
    transform: translateY(-2px);
}

.cta-button {
    background: #e91e63;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
    background: #c2185b;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* Mobile Overflow Fix */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-section {
        width: 100%;
        max-width: 100%;
    }
    
    .navbar-container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Fix all grid and flex containers */
    .venues-grid,
    .vendors-grid,
    .events-grid,
    .gallery-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content {
        top: 50%;
        padding: 0 10px;
        max-width: 95%;
        max-height: 65vh;
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .hero-content p {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    /* Fix modal widths on mobile */
    .venue-details-content,
    .enhanced-details-content,
    .gallery-details-modal-content {
        width: 95%;
        max-width: 95%;
        margin: 0 auto;
    }
    
    /* Fix image containers */
    .venue-image,
    .vendor-image,
    .event-image,
    .gallery-item {
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix buttons and text that might overflow */
    .venue-btn,
    .vendor-btn,
    .event-btn,
    .gallery-btn {
        font-size: 14px;
        padding: 10px 15px;
        word-wrap: break-word;
    }
    
    /* Ensure sections are properly contained */
    section {
        width: 100%;
        max-width: 100%;
    }

    .navbar-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        /* Mobile menu transition removed */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .navbar-nav.active {
        left: 0;
    }

    .nav-item {
        border-bottom: 1px solid #e9ecef;
    }

    .nav-link {
        padding: 20px;
        justify-content: space-between;
        border-bottom: none;
    }

    .nav-link:hover {
        border-bottom: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8f9fa;
        display: none;
        margin: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 15px 30px;
        margin: 0;
        border-radius: 0;
        border-bottom: 1px solid #e9ecef;
    }

    .dropdown-item:hover {
        transform: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-text-content {
        padding: 20px;
        max-width: 95%;
        margin-top: 220px;
    }

    .hero-main-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .hero-service-options {
        gap: 15px;
        margin-top: 20px;
    }

    .service-option {
        padding: 10px 16px;
    }

    .service-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        height: 60px;
    }

    .brand-name {
        font-size: 20px;
    }

    .logo {
        height: 45px;
        width: 45px;
    }

    .navbar-nav {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .hero-text-content {
        padding: 15px;
        max-width: 98%;
        margin-top: 200px;
    }

    .hero-main-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero-service-options {
        gap: 12px;
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }

    .service-option {
        padding: 8px 14px;
        width: fit-content;
    }

    .service-text {
        font-size: 0.85rem;
    }

    .service-icon {
        font-size: 1rem;
    }

    .hero-section {
        height: 80vh;
    }

    .service-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .hero-navigation {
        gap: 8px;
        padding: 8px 15px;
    }

    .nav-dot {
        width: 8px;
        height: 8px;
    }

    .hero-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .hero-arrows {
        padding: 0 20px;
    }

    .hero-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* Mobile Hero Elements */
    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
        margin-bottom: 8px;
    }
    
    .hero-main-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .hero-service-highlights {
        gap: 8px;
        margin: 10px 0 15px 0;
        flex-direction: column;
        align-items: center;
    }
    
    .service-highlight {
        padding: 6px 12px;
        min-width: 180px;
        justify-content: center;
    }
    
    .highlight-text {
        font-size: 0.75rem;
    }
    
    .highlight-icon {
        font-size: 1rem;
    }
    
    .hero-cta-section {
        gap: 8px;
        margin-top: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        min-width: 160px;
    }
}

/* Extra small mobile screens (480px and below) */
@media (max-width: 480px) {
    .hero-content {
        max-height: 60vh;
        padding: 0 8px;
        max-width: 98%;
    }
    
    .hero-main-title {
        font-size: 1.8rem;
        line-height: 1.05;
        margin-bottom: 6px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .hero-description {
        font-size: 0.8rem;
        line-height: 1.25;
        margin-bottom: 8px;
    }
    
    .hero-badge {
        font-size: 0.6rem;
        padding: 3px 10px;
        margin-bottom: 6px;
    }
    
    .hero-service-highlights {
        gap: 6px;
        margin: 8px 0 12px 0;
    }
    
    .service-highlight {
        padding: 5px 10px;
        min-width: 150px;
    }
    
    .highlight-text {
        font-size: 0.7rem;
    }
    
    .highlight-icon {
        font-size: 0.9rem;
    }
    
    .hero-cta-section {
        gap: 6px;
        margin-top: 10px;
    }
    
    .hero-cta-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
        min-width: 140px;
    }
}

/* Animations removed as per user request */

/* Active States */
.nav-link.active {
    color: #e91e63;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .about-section,
    .services-section,
    .gallery-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .form-group {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-item {
        margin-bottom: 15px;
    }
    
    .contact-details h4 {
        font-size: 0.85rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    .social-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
    
    .footer-availability p {
        font-size: 0.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-section,
    .services-section,
    .gallery-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        min-width: auto;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .value-item {
        padding: 20px 15px;
    }
}

/* Social Share Buttons */
.social-share-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1001;
}

.share-container {
    position: relative;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    border-radius: 50%;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
    font-size: 18px;
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
}

.share-menu {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.share-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
    font-size: 14px;
    font-weight: 500;
}

.share-link:last-child {
    border-bottom: none;
}

.share-link:hover {
    background: #f8f9fa;
    color: #e91e63;
    transform: translateX(5px);
}

.share-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.share-link span {
    flex: 1;
}

.facebook-share:hover { color: #1877f2; }
.twitter-share:hover { color: #1da1f2; }
.instagram-share:hover { color: #e4405f; }
.linkedin-share:hover { color: #0077b5; }
.email-share:hover { color: #ea4335; }
.whatsapp-share:hover { color: #25d366; }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn-float i {
    color: white;
    font-size: 24px;
}

@media (max-width: 768px) {
    .social-share-float {
        bottom: 70px;
        right: 15px;
    }
    
    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .share-menu {
        bottom: 55px;
        right: 0;
        min-width: 180px;
    }
    
    .share-link {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .share-link i {
        font-size: 14px;
        width: 18px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn-float {
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-btn-float i {
        font-size: 20px;
    }
}

/* Gallery Tooltip Styles */
.gallery-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    max-width: 250px;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-tooltip.show {
    opacity: 1;
}

/* Gallery Details Modal Styles */
.gallery-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    padding: 20px;
    overflow: hidden; /* Prevent background scroll */
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-details-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Ensure proper scrolling within modal only */
    overscroll-behavior: contain;
}

.gallery-details-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #e91e63;
    color: white;
    border-radius: 12px 12px 0 0;
}

.gallery-details-modal-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.gallery-details-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.gallery-details-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-details-modal-body {
    padding: 30px;
}

.gallery-details-section {
    margin-bottom: 25px;
}

.gallery-details-section h3 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-details-section h3 i {
    font-size: 20px;
}

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

.gallery-details-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-details-list li:last-child {
    border-bottom: none;
}

.gallery-details-list li i {
    color: #e91e63;
    width: 20px;
}

.gallery-contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e91e63;
}

.gallery-contact-info h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
}

.gallery-contact-info p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.gallery-action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.gallery-action-btn {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.gallery-action-btn.call {
    background: #2196F3;
    color: white;
}

.gallery-action-btn.call:hover {
    background: #1976D2;
}

.gallery-action-btn.whatsapp {
    background: #25D366;
    color: white;
}

.gallery-action-btn.whatsapp:hover {
    background: #128C7E;
}

.gallery-action-btn.email {
    background: #FF9800;
    color: white;
}

.gallery-action-btn.email:hover {
    background: #F57C00;
}

/* Mobile Responsive for Gallery Modal */
@media (max-width: 768px) {
    .gallery-details-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .gallery-details-modal-header {
        padding: 15px 20px;
    }
    
    .gallery-details-modal-title {
        font-size: 20px;
    }
    
    .gallery-details-modal-body {
        padding: 20px;
    }
    
    .gallery-action-buttons {
        grid-template-columns: 1fr;
    }
}

/* Image Only Viewer */
.image-only-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow: hidden; /* Prevent background scroll */
}

.image-only-modal.show {
    opacity: 1;
}

.image-only-content {
    max-width: 95%;
    max-height: 95%;
    position: relative;
    text-align: center;
}

.image-only-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.image-only-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 28px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.image-only-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.image-only-title {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

/* Enhanced Details Modal */
.enhanced-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    padding: 20px;
    overflow: hidden; /* Prevent background scroll */
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.enhanced-details-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    /* Ensure proper scrolling within modal only */
    overscroll-behavior: contain;
}

.enhanced-details-header {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.enhanced-details-title {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
}

.enhanced-details-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.enhanced-details-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.enhanced-details-body {
    padding: 30px;
}

.details-section {
    margin-bottom: 30px;
}

.details-section h3 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-section h3 i {
    font-size: 22px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.details-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e91e63;
    transition: transform 0.3s ease;
}

.details-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.details-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.details-card p {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
    line-height: 1.5;
}

.contact-info-enhanced {
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e91e63;
    margin: 20px 0;
}

.contact-info-enhanced h4 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.contact-item-enhanced {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.contact-item-enhanced i {
    color: #e91e63;
    font-size: 18px;
    width: 20px;
}

.contact-item-enhanced span {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.action-buttons-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.action-btn-enhanced {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-call {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-email {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
}

.btn-map {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
}

.btn-search {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: white;
}

/* Image hover effects for all sections */
.venue-image img,
.vendor-image img,
.event-image img,
.gallery-item img {
    cursor: pointer;
    transition: all 0.3s ease;
}

.venue-image img:hover,
.vendor-image img:hover,
.event-image img:hover,
.gallery-item img:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Click indicators */
.image-click-hint {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(233, 30, 99, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.venue-image:hover .image-click-hint,
.vendor-image:hover .image-click-hint,
.event-image:hover .image-click-hint,
.gallery-item:hover .image-click-hint {
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .enhanced-details-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .enhanced-details-header {
        padding: 20px;
    }
    
    .enhanced-details-title {
        font-size: 22px;
    }
    
    .enhanced-details-body {
        padding: 20px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .action-buttons-enhanced {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .image-only-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .image-only-close {
        top: -40px;
        font-size: 24px;
        width: 40px;
        height: 40px;
    }
    
    .image-only-title {
        bottom: -50px;
        font-size: 18px;
    }
}

/* Enhanced Venue Image Viewer */
.venue-image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.venue-image-viewer.show {
    opacity: 1;
}

.venue-viewer-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    text-align: center;
}

.venue-viewer-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.venue-viewer-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.venue-viewer-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.venue-viewer-title {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

/* Enhanced Venue Details Modal */
.venue-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    padding: 20px;
    overflow: hidden; /* Prevent background scroll */
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.venue-details-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    /* Ensure proper scrolling within modal only */
    overscroll-behavior: contain;
}

.venue-details-header {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.venue-details-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.venue-details-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.venue-details-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.venue-details-body {
    padding: 40px;
}

.venue-info-section {
    margin-bottom: 35px;
}

.venue-info-section h3 {
    color: #e91e63;
    margin-bottom: 20px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.venue-info-section h3 i {
    font-size: 24px;
}

.venue-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.venue-info-card {
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #e91e63;
    transition: transform 0.3s ease;
}

.venue-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.venue-info-card h4 {
    color: #333;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.venue-info-card h4 i {
    color: #e91e63;
    font-size: 20px;
}

.venue-info-card p {
    color: #666;
    font-size: 15px;
    margin: 8px 0;
    line-height: 1.6;
}

.venue-facilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.facility-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.facility-item:hover {
    border-color: #e91e63;
    transform: translateX(5px);
}

.facility-item i {
    color: #e91e63;
    font-size: 18px;
    width: 20px;
}

.facility-item span {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.contact-section-enhanced {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #e91e63;
    margin: 30px 0;
}

.contact-section-enhanced h4 {
    color: #e91e63;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.contact-item i {
    color: #e91e63;
    font-size: 20px;
    width: 24px;
}

.contact-item span {
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.venue-exploration {
    margin-top: 35px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e8f5e8);
    border-radius: 15px;
    border: 2px solid #4CAF50;
}

.venue-exploration h3 {
    color: #4CAF50;
    margin-bottom: 25px;
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.exploration-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.exploration-button {
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exploration-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-explore-hotels {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
}

.btn-view-locations {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
}

.btn-discover-more {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: white;
}

.venue-action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
    margin-top: 35px;
}

.venue-action-btn {
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-call-venue {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.btn-whatsapp-venue {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-email-venue {
    background: linear-gradient(135deg, #FF5722, #D84315);
    color: white;
}

.btn-directions {
    background: linear-gradient(135deg, #795548, #5D4037);
    color: white;
}

/* Enhanced venue card hover effects */
.venue-image img {
    cursor: pointer;
    transition: all 0.3s ease;
}

.venue-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Enhanced vendor card hover effects */
.vendor-image img {
    cursor: pointer;
    transition: all 0.3s ease;
}

.vendor-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .venue-details-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .venue-details-header {
        padding: 25px;
    }
    
    .venue-details-title {
        font-size: 24px;
    }
    
    .venue-details-body {
        padding: 25px;
    }
    
    .venue-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .venue-facilities-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .venue-action-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .exploration-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .venue-viewer-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .venue-viewer-close {
        top: -40px;
        font-size: 26px;
        width: 45px;
        height: 45px;
    }
    
    .venue-viewer-title {
        bottom: -50px;
        font-size: 18px;
    }
}

/* Legal Pages Styles */
.legal-page-section {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid #e91e63;
}

.legal-header h1 {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 1rem;
    color: #888;
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #e91e63;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
}

.legal-section h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

.legal-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-section ul,
.legal-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section li strong {
    color: #333;
    font-weight: 600;
}

.company-details {
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #e91e63;
    margin: 20px 0;
}

.company-details p {
    margin-bottom: 10px;
}

.company-details ul {
    margin-left: 15px;
}

.contact-info {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e91e63;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.legal-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.back-home-btn:hover {
    background: linear-gradient(135deg, #c2185b, #ad1457);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.back-home-btn i {
    font-size: 1.2rem;
}

/* Enhanced Lightbox Modal Styles */
.image-only-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow: hidden;
}

.image-only-modal.show {
    opacity: 1;
}

.lightbox-container {
    width: 95%;
    max-width: 1200px;
    height: 95vh;
    max-height: 900px;
    background: rgba(20, 20, 20, 0.98);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.9), rgba(194, 24, 91, 0.9));
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lightbox-counter {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.lightbox-title {
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lightbox-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

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

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.lightbox-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.lightbox-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1);
}

.lightbox-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: grab;
}

.lightbox-image-container:active {
    cursor: grabbing;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #e91e63;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lightbox-thumbnails {
    height: 120px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    overflow-x: auto;
    overflow-y: hidden;
}

.thumbnails-container {
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
}

.lightbox-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.lightbox-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.lightbox-thumbnail.active {
    border-color: #e91e63;
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

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

.lightbox-thumbnail:hover img {
    transform: scale(1.1);
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-navigation .lightbox-btn {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.lightbox-navigation .lightbox-btn:hover {
    background: rgba(233, 30, 99, 0.8);
    border-color: #e91e63;
}

/* Lightbox Responsive Design */
@media (max-width: 768px) {
    .lightbox-container {
        width: 98%;
        height: 90vh;
        max-height: none;
        border-radius: 15px;
    }
    
    .lightbox-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .lightbox-info {
        text-align: center;
    }
    
    .lightbox-title {
        font-size: 1rem;
    }
    
    .lightbox-controls {
        justify-content: center;
        gap: 8px;
    }
    
    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .lightbox-thumbnails {
        height: 80px;
        padding: 10px;
    }
    
    .lightbox-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .lightbox-navigation {
        padding: 0 10px;
    }
    
    .lightbox-navigation .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .lightbox-container {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }
    
    .lightbox-header {
        padding: 10px 15px;
    }
    
    .lightbox-title {
        font-size: 0.9rem;
    }
    
    .lightbox-controls {
        gap: 5px;
    }
    
    .lightbox-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .lightbox-thumbnails {
        height: 60px;
        padding: 8px;
    }
    
    .lightbox-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-navigation {
        padding: 0 5px;
    }
    
    .lightbox-navigation .lightbox-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Lightbox Fullscreen Styles */
.image-only-modal:fullscreen .lightbox-container {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0;
}

.image-only-modal:fullscreen .lightbox-header {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.95), rgba(194, 24, 91, 0.95));
}

.image-only-modal:fullscreen .lightbox-image {
    border-radius: 0;
}

/* Lightbox Animation Enhancements */
@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-only-modal.show {
    animation: lightboxFadeIn 0.4s ease;
}

/* Custom Scrollbar for Thumbnails */
.lightbox-thumbnails::-webkit-scrollbar {
    height: 8px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(233, 30, 99, 0.6);
    border-radius: 4px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb:hover {
    background: rgba(233, 30, 99, 0.8);
}

/* Lightbox Zoom Indicators */
.lightbox-zoom-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-zoom-indicator.show {
    opacity: 1;
}

/* Keyboard Navigation Hints */
.lightbox-keyboard-hint {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox-keyboard-hint.show {
    opacity: 1;
}

/* Touch Gesture Indicators */
.lightbox-touch-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(233, 30, 99, 0.9);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lightbox-touch-indicator.show {
    opacity: 1;
}

.lightbox-touch-indicator.hide {
    opacity: 0;
}

/* Legal Pages Mobile Responsive */
@media (max-width: 768px) {
    .legal-page-section {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p {
        text-align: left;
    }
    
    .company-details,
    .contact-info {
        padding: 20px;
        margin: 15px 0;
    }
    
    .back-home-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .legal-section ul,
    .legal-section ol {
        margin-left: 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.nav-link:focus,
.dropdown-item:focus,
.cta-button:focus {
    outline: none;
}

/* Loading animations removed as per user request */

/* All Images Tab - Clean Image Only Display */
.gallery-item[data-category="all"] {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item[data-category="all"]:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item[data-category="all"] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Remove any overlays for all-images */
.gallery-item[data-category="all"] .gallery-overlay,
.gallery-item[data-category="all"] .image-click-hint {
    display: none !important;
}

/* Hidden state for gallery items */
.gallery-item.hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.8);
}

/* Video Gallery Items */
.gallery-item.video-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item.video-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #e91e63;
    transition: all 0.3s ease;
}

.gallery-item.video-item:hover .play-button {
    background: #e91e63;
    color: white;
    transform: scale(1.1);
}

/* Gallery See More Button */
.gallery-see-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 20px 0;
}

.gallery-see-more-btn {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    position: relative;
    overflow: hidden;
}

.gallery-see-more-btn::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.6s;
}

.gallery-see-more-btn:hover::before {
    left: 100%;
}

.gallery-see-more-btn:hover {
    background: linear-gradient(135deg, #c2185b, #ad1457);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.6);
}

.gallery-see-more-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.gallery-see-more-btn:hover i {
    transform: rotate(90deg);
}

/* Mobile responsive for See More button */
@media (max-width: 768px) {
    .gallery-see-more-btn {
        padding: 12px 25px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .gallery-see-more-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .gallery-see-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .gallery-see-more-btn i {
        font-size: 1rem;
    }
}