/**
 * Event Roster - Corporate Event Management & Ticketing Platform
 * Main Stylesheet - Dark Corporate Theme
 */

/* ============================================
   CSS Variables
============================================ */
:root {
    /* Primary Colors - Based on Logo */
    --primary: #e9e2d0;
    --primary-light: #f0ebe0;
    --primary-dark: #ddd5c0;
    --on-primary: #212529;
    /* dark text for light backgrounds */

    /* Accent Colors - Logo Orange */
    --accent: #c75634;
    --accent-hover: #d4673f;
    --accent-light: rgba(199, 86, 52, 0.1);
    --on-accent: #ffffff;
    /* white text for accent backgrounds */

    /* Secondary Accent - Logo Green */
    --gold: #284b3a;
    --gold-light: rgba(40, 75, 58, 0.1);

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f9f9f9;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #000000;

    /* Functional */
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;

    /* Typography */
    --font-primary: 'Sen', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Sen', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 5rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.3);

    /* Border Radius - Sharp edges throughout, except circular buttons */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
    --radius-full: 50%;
}

/* ============================================
   Dark Mode Theme
============================================ */
[data-theme="dark"] {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --primary-dark: #0f0f1a;

    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #000000;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.3);
}

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

/* Global Sharp Edges Override - Override Bootstrap rounded corners */
.card,
.card-header,
.card-footer,
.modal-content,
.modal-header,
.modal-footer,
.alert,
.badge,
.form-control,
.form-select,
.input-group-text,
.dropdown-menu,
.nav-pills .nav-link,
.nav-tabs .nav-link,
.toast,
.tooltip .tooltip-inner,
.popover,
.accordion-button,
.accordion-item,
.list-group-item,
.progress,
.pagination .page-link,
.breadcrumb {
    border-radius: 0 !important;
}

/* Rounded images override except profile pics */
.rounded-4,
.rounded-3,
.rounded-2,
.rounded-1 {
    border-radius: 0 !important;
}

html {
    scroll-behavior: smooth;
}

/* Skip to Content Link (Accessibility) */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 1rem 1.5rem;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    transition: left 0.3s ease;
}

.skip-to-content:focus {
    left: 50%;
    transform: translateX(-50%);
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Focus visible styles for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: #284b3a;
    background-color: var(--primary);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

/* Ensure data-theme mappings follow semantic meanings:
   - data-theme="light" -> light background / dark text
   - data-theme="dark"  -> dark background / light text
*/
body[data-theme="light"] {
    background-color: var(--primary);
    color: #284b3a;
}

body[data-theme="dark"] {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Make elements that used Bootstrap 'text-white' utilities render appropriately in light theme
   This avoids having to change markup across many pages; the utility classes will still work
   as expected when the site switches to dark mode. */
/* NOTE: text-white utilities should be used only on dark backgrounds. Markup was updated
   across site to use semantic classes (text-dark / text-muted). Remove the runtime overrides
   so utility classes behave consistently with markup. */

/* Convert Bootstrap 'bg-dark' utilities to light equivalents under light theme when needed */
body[data-theme="light"] .bg-dark,
body[data-theme="light"] .bg-dark-alt,
body[data-theme="light"] .modal-content.bg-dark {
    background-color: var(--primary-light) !important;
    color: var(--gray-900) !important;
}

::selection {
    background: var(--accent);
    color: var(--white);
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

/* ============================================
   Typography
============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #284b3a;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #284b3a;
    margin-bottom: 1rem;
}

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

/* Override Bootstrap's text-dark to use brand green */
.text-dark {
    color: #284b3a !important;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* ============================================
   Utility Classes
============================================ */
.py-6 {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.min-vh-80 {
    min-height: 80vh;
}

.bg-accent {
    background-color: var(--accent) !important;
    color: var(--on-accent) !important;
}

/* ============================================
   Buttons
============================================ */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0 !important;
    transition: all var(--transition-base);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Override Bootstrap rounded button variants */
.btn-sm,
.btn-lg,
.btn-xl {
    border-radius: 0 !important;
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--on-accent);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--on-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(199, 86, 52, 0.4);
}

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

.btn-outline-accent:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* ============================================
   Top Bar
============================================ */
.top-bar {
    background-color: var(--primary-dark) !important;
    font-size: 0.85rem;
}

.top-bar a:hover {
    color: var(--accent) !important;
}

/* ============================================
   Navbar
============================================ */
#mainNavbar {
    background-color: #e9e2d0;
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    transition: all var(--transition-base);
}

/* Immersive Header (Homepage) */
.navbar-transparent {
    background-color: transparent !important;
    backdrop-filter: none !important;
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: none !important;
}

/* Hide top bar on homepage for full immersion, keep on others */
body[data-page="index"] .top-bar {
    display: none !important;
}

/* Navbar links color on transparent header */
.navbar-transparent .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-transparent .navbar-nav .nav-link:hover,
.navbar-transparent .navbar-nav .nav-link.active {
    color: var(--white) !important;
    text-shadow: 0 0 10px rgba(199, 86, 52, 0.5);
}

.navbar-transparent .navbar-brand .navbar-logo {
    /* Hidden initially on video */
    opacity: 0;
    visibility: hidden;
    border-radius: 4px;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* Bouncy enter effect */
}

/* Scrolled State for Home Header */
#mainNavbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: var(--shadow-lg) !important;
}

.navbar-transparent.scrolled .navbar-nav .nav-link {
    color: #212529 !important;
}

.navbar-transparent.scrolled .navbar-nav .nav-link:hover,
.navbar-transparent.scrolled .navbar-nav .nav-link.active {
    color: var(--accent) !important;
    text-shadow: none;
}

.navbar-transparent.scrolled .navbar-brand .navbar-logo {
    filter: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 100px;
    width: auto;
    transition: all var(--transition-base);
}

#mainNavbar.scrolled .navbar-logo {
    height: 60px;
}

/* Mobile: Bigger logo */
@media (max-width: 991px) {
    .navbar-logo {
        height: 80px;
    }

    #mainNavbar.scrolled .navbar-logo {
        height: 50px;
    }
}

.footer-logo {
    height: 180px;
    /* Increased size as requested */
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    mix-blend-mode: multiply;
    /* Blends white background into footer bg */
    display: block;
    margin-left: 0;
    margin-right: auto;
}

/* Footer About Column Layout - Stacked */
.footer-about-wrapper {
    display: block;
    text-align: left;
}

.footer-brand {
    text-align: left;
    display: block;
}



.navbar-nav {
    flex: 1;
    justify-content: space-evenly;
}

.navbar-nav .nav-link {
    color: #284b3a !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 3rem;
    position: relative;
    transition: color var(--transition-base);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

/* Desktop Menu Dividers */
@media (min-width: 992px) {
    .navbar-nav .nav-item:not(:last-child)::after {
        content: '|';
        position: absolute;
        right: -1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: #c5bba8;
        font-weight: 300;
        font-size: 1.2rem;
    }

    .navbar-nav .nav-item {
        position: relative;
    }
}

.navbar-nav .nav-link.active:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--accent);
}

.dropdown-menu-dark {
    background-color: var(--primary-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: var(--accent-light);
    color: var(--accent);
}

/* Desktop: Open dropdown on hover */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar-nav .dropdown>.dropdown-toggle:active {
        pointer-events: none;
    }
}

/* Mobile Nav Footer Styles */
.mobile-nav-footer {
    border-color: #ddd5c0 !important;
}

.mobile-contact-info a,
.mobile-contact-info p {
    color: #284b3a;
    font-size: 0.95rem;
}

.mobile-contact-info a:hover {
    color: var(--accent);
}

.social-icon-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #284b3a;
    color: #fff;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.social-icon-link.whatsapp {
    background: #25D366;
}

.social-icon-link.whatsapp:hover {
    background: #128C7E;
}

/* ============================================
   Hero Section
============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.88) 0%, rgba(15, 15, 26, 0.92) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    width: 100%;
}

.hero-tagline {
    display: inline-block;
    background: #c75634;
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 0px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(199, 86, 52, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(199, 86, 52, 0);
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Hero Tagline Section Badge - Solid Orange */
.hero-tagline-section {
    display: inline-block;
    background: #c75634;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 0px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Enhanced Buttons */
.btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #e76f51 100%);
    border: none;
    color: var(--white);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e76f51 0%, var(--gold) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 162, 97, 0.4);
}

/* Counter Boxes */
.hero-counter-wrap {
    margin-top: 3rem;
}

.counter-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all var(--transition-base);
}

.counter-box:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.counter-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    display: inline;
    line-height: 1;
}

.counter-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.counter-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* Trusted By Section */
.trusted-by-section {
    background: var(--primary-dark);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.trusted-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trusted-label {
    color: var(--gray-600);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trusted-logo {
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all var(--transition-base);
}

.trusted-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.trusted-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Legacy styles kept for compatibility */
.hero-image-wrapper {
    position: relative;
    height: 500px;
}

.hero-image-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-slow);
}

.hero-image-card.card-1 {
    top: 0;
    right: 0;
    width: 280px;
    z-index: 3;
    transform: rotate(5deg);
}

.hero-image-card.card-2 {
    top: 100px;
    left: 0;
    width: 250px;
    z-index: 2;
    transform: rotate(-5deg);
}

.hero-image-card.card-3 {
    bottom: 0;
    right: 50px;
    width: 220px;
    z-index: 1;
    transform: rotate(3deg);
}

.hero-image-card:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.85rem;
}

/* ============================================
   Services Section
============================================ */
.services-section {
    background-color: var(--primary-light);
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(199, 86, 52, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--white);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 0.75rem;
}

/* ============================================
   USP Section
============================================ */
.usp-section {
    background-color: var(--primary);
}

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

/* Video wrapper for USP section */
.usp-video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: 0 auto;
}

.usp-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
}

.usp-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 0px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.usp-badge .badge-text {
    color: var(--gray-900);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.usp-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.usp-feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.usp-feature-content p {
    line-height: 1.6;
}

/* ============================================
   Events Section
============================================ */
.events-section {
    background-color: var(--primary-light);
}

.event-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

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

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    text-align: center;
    line-height: 1.2;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.event-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.event-meta i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.event-price .original {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.event-price .discounted {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Event Gallery */
.event-gallery {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 0.5rem;
}

.event-gallery img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--white);
    transition: all var(--transition-base);
    opacity: 0.8;
}

.event-gallery img:hover {
    transform: scale(1.2);
    opacity: 1;
    border-color: var(--accent);
}

/* ============================================
   Concerts Section
============================================ */
.concerts-section {
    background-color: var(--primary);
}

.concert-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.concert-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-xl);
}

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

.concert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.concert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.concert-date {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.concert-content {
    padding: 1.5rem;
}

.concert-genre {
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.concert-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.concert-venue {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.concert-venue i {
    margin-right: 0.5rem;
}

.concert-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.concert-price {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.concert-price .price {
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.25rem;
}

.discount-badge {
    background: var(--success);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
    font-weight: 600;
}

/* ============================================
   Bidding Section
============================================ */
.bidding-section {
    background-color: var(--primary-light);
}

.bidding-card {
    /* Darkened gradient to ensure white text meets contrast */
    background: linear-gradient(135deg, #c13b52 0%, #8f2b37 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.bidding-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

/* Accent gradient cards should use white text for readability */
.bg-accent-gradient .card-body,
.bg-accent-gradient h5,
.bg-accent-gradient p {
    color: var(--on-accent) !important;
}

/* Ensure bidding card text is readable on dark gradient */
.bidding-card h3,
.bidding-card p,
.bidding-card .badge,
.bidding-card .badge-text {
    color: var(--on-accent) !important;
}

/* ============================================
   Testimonials Section
============================================ */
.testimonials-section {
    background-color: var(--primary);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.testimonial-rating {
    color: var(--gold);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0;
}

.author-title {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ============================================
   Partners Section
============================================ */
.partners-section {
    background-color: var(--primary-light);
}

.partners-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partner-logo img {
    height: 40px;
    filter: grayscale(100%) brightness(2);
    opacity: 0.5;
    transition: all var(--transition-base);
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ============================================
   CTA Section
============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, #c13b52 100%);
}

/* ============================================
   Footer
============================================ */
.footer-main {
    background-color: #e9e2d0;
}

.footer-brand {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

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

.footer-links a {
    color: var(--gray-600);
    transition: all var(--transition-base);
}

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

.footer-contact a {
    color: var(--gray-600);
    transition: color var(--transition-base);
}

.footer-contact a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    transition: all var(--transition-base);
}

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

/* Footer Bottom - Single Line */
.footer-bottom p {
    white-space: nowrap;
}

/* ============================================
   Floating Actions
============================================ */
.floating-actions {
    position: fixed;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-left {
    left: 20px;
}

.floating-right {
    right: 20px;
}

.fab-btn {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.fab-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: var(--accent);
}

/* Back to Top */
.btn-back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: 2px solid var(--accent);
    border-radius: var(--radius-full);
    color: var(--accent);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all var(--transition-base);
}

.btn-back-to-top.visible {
    display: flex;
}

.btn-back-to-top:hover {
    background: var(--accent);
    color: var(--white);
}

/* ============================================
   Responsive Styles
============================================ */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    .py-6 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-section {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .navbar-collapse {
        background: var(--primary-dark);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--radius-md);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .bidding-card {
        padding: 2rem;
    }

    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .floating-actions {
        bottom: 15px;
        right: 15px;
    }

    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .counter-box {
        padding: 1rem 0.5rem;
    }

    .counter-number {
        font-size: 1.75rem;
    }
}

/* ============================================
   Portfolio Gallery Section
============================================ */
.portfolio-section {
    background: var(--primary-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.portfolio-item-large {
    grid-column: span 2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

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

.portfolio-category {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.portfolio-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .portfolio-item-large {
        grid-column: span 1;
    }
}

@media (max-width: 575px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .portfolio-item {
        height: 200px;
    }
}

/* ============================================
   Enhanced Partners Section
============================================ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.partner-logo-item {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all var(--transition-base);
}

.partner-logo-item:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.partner-logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Partner SVG Logos */
.partner-svg-logo {
    width: 100%;
    height: 50px;
    overflow: visible;
}

.partner-svg-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    fill: #6c757d;
    letter-spacing: 1px;
    transition: all var(--transition-base);
}

.partner-logo-item:hover .partner-svg-logo .logo-text {
    fill: var(--accent);
}

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

@media (max-width: 575px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-logo-item {
        height: 80px;
        padding: 1rem;
    }
}

/* ============================================
   CTA Banner Section
============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #c13b52 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 30px 30px;
    animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* Featured Event Gallery */
.featured-gallery {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 200px;
}

.featured-gallery img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: all var(--transition-base);
    opacity: 0.8;
}

.featured-gallery img:hover {
    transform: scale(1.1);
    opacity: 1;
    border-color: var(--accent);
}

/* ============================================
   Pre-Footer CTA Section
============================================ */
.cta-section {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.cta-section h3 {
    color: #212529;
}

.cta-section p {
    color: #6c757d;
}

/* ============================================
   Animation Classes
============================================ */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Smooth reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ============================================
   Dark Mode - Comprehensive Text Visibility Fixes
============================================ */
[data-theme="dark"] body,
body[data-theme="dark"] {
    background-color: #0f0f1a;
    color: #ffffff;
}

/* Section Titles and Badges */
[data-theme="dark"] .section-title,
[data-theme="dark"] .section-subtitle,
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #ffffff !important;
}

[data-theme="dark"] .section-badge {
    color: var(--accent) !important;
}

/* Text and Paragraphs */
[data-theme="dark"] p,
[data-theme="dark"] .text-muted,
[data-theme="dark"] .text-dark {
    color: #e0e0e0 !important;
}

[data-theme="dark"] .lead {
    color: #d0d0d0 !important;
}

/* Service Cards */
[data-theme="dark"] .service-card {
    background: #1a1a2e;
    border-color: #2a2a4a;
}

[data-theme="dark"] .service-card .service-title,
[data-theme="dark"] .service-card h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .service-card .service-desc {
    color: #b0b0b0 !important;
}

/* Event Cards */
[data-theme="dark"] .event-card,
[data-theme="dark"] .event-card-v2 {
    background: #1a1a2e;
    border-color: #2a2a4a;
}

[data-theme="dark"] .event-card .event-title,
[data-theme="dark"] .event-card-v2 .event-title {
    color: #ffffff !important;
}

[data-theme="dark"] .event-card .event-content,
[data-theme="dark"] .event-card-v2 .event-body {
    color: #e0e0e0;
}

[data-theme="dark"] .event-meta span,
[data-theme="dark"] .event-info p {
    color: #b0b0b0 !important;
}

[data-theme="dark"] .event-desc {
    color: #a0a0a0 !important;
}

/* Concert Cards */
[data-theme="dark"] .concert-card {
    background: #1a1a2e;
    border-color: #2a2a4a;
}

[data-theme="dark"] .concert-card .concert-title {
    color: #ffffff !important;
}

[data-theme="dark"] .concert-card .concert-venue,
[data-theme="dark"] .concert-card .concert-genre {
    color: #b0b0b0 !important;
}

/* Testimonials */
[data-theme="dark"] .testimonial-card {
    background: #1a1a2e;
    border-color: #2a2a4a;
}

[data-theme="dark"] .testimonial-text {
    color: #e0e0e0 !important;
}

[data-theme="dark"] .author-name {
    color: #ffffff !important;
}

[data-theme="dark"] .author-title {
    color: #a0a0a0 !important;
}

/* Featured Event Section */
[data-theme="dark"] .featured-event {
    background: #1a1a2e;
    border-color: #2a2a4a;
}

[data-theme="dark"] .featured-content {
    background: #1a1a2e;
}

[data-theme="dark"] .featured-content h2 {
    color: #ffffff !important;
}

[data-theme="dark"] .featured-content p,
[data-theme="dark"] .event-details p {
    color: #c0c0c0 !important;
}

/* USP Section */
[data-theme="dark"] .usp-section {
    background: #0f0f1a;
}

[data-theme="dark"] .usp-feature-content h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .usp-feature-content p {
    color: #b0b0b0 !important;
}

/* Services Section */
[data-theme="dark"] .services-section {
    background: #16213e;
}

/* Testimonials Section */
[data-theme="dark"] .testimonials-section {
    background: #0f0f1a;
}

/* Partners Section */
[data-theme="dark"] .partners-section {
    background: #16213e;
}

[data-theme="dark"] .partner-svg-logo .logo-text {
    fill: #ffffff;
}

/* Footer */
[data-theme="dark"] .footer-main {
    background: #0f0f1a;
}

[data-theme="dark"] .footer-heading {
    color: #ffffff !important;
}

[data-theme="dark"] .footer-links a {
    color: #b0b0b0 !important;
}

[data-theme="dark"] .footer-links a:hover {
    color: var(--accent) !important;
}

[data-theme="dark"] .footer-contact .text-muted,
[data-theme="dark"] .footer-contact a {
    color: #b0b0b0 !important;
}

[data-theme="dark"] .footer-bottom p,
[data-theme="dark"] .footer-bottom a {
    color: #808080 !important;
}

/* CTA Section */
[data-theme="dark"] .cta-section {
    background: #16213e;
}

[data-theme="dark"] .cta-section h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .cta-section p {
    color: #c0c0c0 !important;
}

/* Page Headers */
[data-theme="dark"] .page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
}

[data-theme="dark"] .page-title {
    color: #ffffff !important;
}

[data-theme="dark"] .breadcrumb-item.active {
    color: #a0a0a0 !important;
}

/* Navbar in Dark Mode */
[data-theme="dark"] #mainNavbar {
    background-color: #1a1a2e;
}

[data-theme="dark"] .navbar-nav .nav-link {
    color: #ffffff !important;
}

[data-theme="dark"] .top-bar {
    background-color: #0f0f1a !important;
}

[data-theme="dark"] .top-bar small,
[data-theme="dark"] .top-bar a {
    color: #c0c0c0 !important;
}

/* Forms in Dark Mode */
[data-theme="dark"] .form-control {
    background-color: #1a1a2e;
    border-color: #2a2a4a;
    color: #ffffff;
}

[data-theme="dark"] .form-control::placeholder {
    color: #808080;
}

/* Newsletter Section */
[data-theme="dark"] .newsletter-section {
    background: #16213e;
}

/* How It Works Section */
[data-theme="dark"] .how-it-works {
    background: #16213e;
}

[data-theme="dark"] .step-card {
    background: #1a1a2e;
}

[data-theme="dark"] .step-card h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .step-card p {
    color: #b0b0b0 !important;
}

/* Search and Filter */
[data-theme="dark"] .search-filter-section {
    background: #1a1a2e;
    border-color: #2a2a4a;
}

[data-theme="dark"] .filter-btn {
    color: #ffffff;
    background: #2a2a4a;
    border-color: #3a3a5a;
}

[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active {
    background: var(--accent);
    color: #ffffff;
}

/* ============================================
   Dark Mode - Additional Fixes (Based on Screenshots)
============================================ */

/* Top Bar Text - Make fully visible */
[data-theme="dark"] .top-bar,
[data-theme="dark"] .top-bar.bg-light {
    background-color: #0f0f1a !important;
}

[data-theme="dark"] .top-bar small,
[data-theme="dark"] .top-bar .text-dark,
[data-theme="dark"] .top-bar a.text-dark {
    color: #ffffff !important;
}

/* Services Section - "Complete Event Solutions" */
[data-theme="dark"] .services-section .section-title {
    color: #ffffff !important;
}

[data-theme="dark"] .services-section .section-badge {
    color: var(--accent) !important;
}

[data-theme="dark"] .services-section p {
    color: #c0c0c0 !important;
}

/* USP Section - "How We Deliver" and features */
[data-theme="dark"] .usp-section .section-title,
[data-theme="dark"] .usp-section h2 {
    color: #ffffff !important;
}

[data-theme="dark"] .usp-section .lead,
[data-theme="dark"] .usp-section p {
    color: #d0d0d0 !important;
}

[data-theme="dark"] .usp-feature h5,
[data-theme="dark"] .usp-feature-content h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .usp-feature p,
[data-theme="dark"] .usp-feature-content p {
    color: #b0b0b0 !important;
}

/* Events Section - "Upcoming Corporate Events" */
[data-theme="dark"] .events-section .section-title,
[data-theme="dark"] .events-section h2 {
    color: #ffffff !important;
}

[data-theme="dark"] .events-section .section-badge {
    color: var(--accent) !important;
}

/* Concerts Section - "Concerts We've Managed" */
[data-theme="dark"] .concerts-section .section-title,
[data-theme="dark"] .concerts-section h2 {
    color: #ffffff !important;
}

[data-theme="dark"] .concerts-section .section-badge {
    color: var(--accent) !important;
}

/* Partners Section - "Trusted by Leading Brands" */
[data-theme="dark"] .partners-section .section-title,
[data-theme="dark"] .partners-section h2 {
    color: #ffffff !important;
}

[data-theme="dark"] .partners-section .section-badge {
    color: var(--accent) !important;
}

[data-theme="dark"] .partner-card {
    background: #1a1a2e;
    border-color: #2a2a4a;
}

[data-theme="dark"] .partner-card span,
[data-theme="dark"] .partner-name,
[data-theme="dark"] .partner-svg-logo text,
[data-theme="dark"] .partner-svg-logo .logo-text {
    color: #ffffff !important;
    fill: #ffffff !important;
}

/* Testimonials Section - "What Our Clients Say" */
[data-theme="dark"] .testimonials-section .section-title,
[data-theme="dark"] .testimonials-section h2 {
    color: #ffffff !important;
}

[data-theme="dark"] .testimonials-section .section-badge {
    color: var(--accent) !important;
}

[data-theme="dark"] .testimonial-card {
    background: #1a1a2e;
    border-color: #2a2a4a;
}

[data-theme="dark"] .testimonial-card p,
[data-theme="dark"] .testimonial-text {
    color: #d0d0d0 !important;
}

[data-theme="dark"] .testimonial-card .author-name,
[data-theme="dark"] .testimonial-card h6 {
    color: #ffffff !important;
}

[data-theme="dark"] .testimonial-card .author-title,
[data-theme="dark"] .testimonial-card small {
    color: #a0a0a0 !important;
}

/* Vendor Bidding Section */
[data-theme="dark"] .vendor-bidding h3,
[data-theme="dark"] .vendor-bidding h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .vendor-bidding p {
    color: #c0c0c0 !important;
}

/* Generic dark background sections - ensure white text */
[data-theme="dark"] section h2,
[data-theme="dark"] section h3,
[data-theme="dark"] section h4 {
    color: #ffffff !important;
}

[data-theme="dark"] section .lead {
    color: #d0d0d0 !important;
}

/* Fix any remaining text-dark and text-muted in dark mode */
[data-theme="dark"] .text-dark {
    color: #ffffff !important;
}

[data-theme="dark"] .text-muted {
    color: #b0b0b0 !important;
}

/* ============================================
   Dark Mode - Navbar Visibility Fix
============================================ */
[data-theme="dark"] #mainNavbar {
    background-color: #1a1a2e !important;
}

[data-theme="dark"] #mainNavbar.scrolled {
    background-color: #1a1a2e !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .navbar-nav .nav-link {
    color: #ffffff !important;
}

[data-theme="dark"] .navbar-nav .nav-link:hover,
[data-theme="dark"] .navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

[data-theme="dark"] .dropdown-menu {
    background-color: #1a1a2e !important;
    border-color: #2a2a4a !important;
}

[data-theme="dark"] .dropdown-item {
    color: #ffffff !important;
}

[data-theme="dark"] .dropdown-item:hover,
[data-theme="dark"] .dropdown-item:focus {
    background-color: #2a2a4a !important;
    color: var(--accent) !important;
}

[data-theme="dark"] .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

[data-theme="dark"] .navbar-toggler-icon {
    filter: invert(1);
}

/* ============================================
   Dark Mode - Contact Page Fixes
============================================ */
[data-theme="dark"] .contact-form-section {
    background: #0f0f1a;
}

[data-theme="dark"] .contact-form-card {
    background: #1a1a2e !important;
    border-color: #2a2a4a !important;
}

[data-theme="dark"] .contact-form-card h3,
[data-theme="dark"] .contact-form-card h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .contact-form-card p {
    color: #c0c0c0 !important;
}

[data-theme="dark"] .form-label {
    color: #e0e0e0 !important;
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: #0f0f1a !important;
    border-color: #2a2a4a !important;
    color: #ffffff !important;
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 0.2rem rgba(199, 86, 52, 0.25) !important;
}

/* Contact Info Cards */
[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .info-card {
    background: #1a1a2e !important;
    border-color: #2a2a4a !important;
}

[data-theme="dark"] .contact-info-card h5,
[data-theme="dark"] .contact-info-card h6,
[data-theme="dark"] .info-card h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .contact-info-card p,
[data-theme="dark"] .contact-info-card a,
[data-theme="dark"] .info-card p {
    color: #b0b0b0 !important;
}

/* ============================================
   Dark Mode - FAQ / Accordion Fixes
============================================ */
[data-theme="dark"] .faq-section {
    background: #0f0f1a;
}

[data-theme="dark"] .faq-section .section-title,
[data-theme="dark"] .faq-section h2 {
    color: #ffffff !important;
}

[data-theme="dark"] .accordion {
    --bs-accordion-bg: #1a1a2e;
    --bs-accordion-border-color: #2a2a4a;
}

[data-theme="dark"] .accordion-item {
    background-color: #1a1a2e !important;
    border-color: #2a2a4a !important;
}

[data-theme="dark"] .accordion-button {
    background-color: #1a1a2e !important;
    color: #ffffff !important;
    border-color: #2a2a4a !important;
}

[data-theme="dark"] .accordion-button:not(.collapsed) {
    background-color: #16213e !important;
    color: var(--accent) !important;
}

[data-theme="dark"] .accordion-button::after {
    filter: invert(1);
}

[data-theme="dark"] .accordion-body {
    background-color: #1a1a2e !important;
    color: #c0c0c0 !important;
}

/* ============================================
   Dark Mode - Card Backgrounds (Generic)
============================================ */
[data-theme="dark"] .card {
    background-color: #1a1a2e !important;
    border-color: #2a2a4a !important;
}

[data-theme="dark"] .card-body {
    background-color: #1a1a2e !important;
}

[data-theme="dark"] .card-title {
    color: #ffffff !important;
}

[data-theme="dark"] .card-text {
    color: #c0c0c0 !important;
}

[data-theme="dark"] .card-header {
    background-color: #16213e !important;
    border-color: #2a2a4a !important;
    color: #ffffff !important;
}

[data-theme="dark"] .card-footer {
    background-color: #16213e !important;
    border-color: #2a2a4a !important;
}

/* ============================================
   Dark Mode - About Page
============================================ */
[data-theme="dark"] .about-section {
    background: #0f0f1a;
}

[data-theme="dark"] .about-content h2,
[data-theme="dark"] .about-content h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .about-content p {
    color: #c0c0c0 !important;
}

[data-theme="dark"] .team-card {
    background: #1a1a2e !important;
    border-color: #2a2a4a !important;
}

[data-theme="dark"] .team-card h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .team-card p {
    color: #b0b0b0 !important;
}

/* ============================================
   Dark Mode - Services Page
============================================ */
[data-theme="dark"] .service-detail-card {
    background: #1a1a2e !important;
    border-color: #2a2a4a !important;
}

[data-theme="dark"] .service-detail-card h3,
[data-theme="dark"] .service-detail-card h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .service-detail-card p,
[data-theme="dark"] .service-detail-card li {
    color: #c0c0c0 !important;
}

/* ============================================
   Dark Mode - Events Page
============================================ */
[data-theme="dark"] .event-detail-section {
    background: #0f0f1a;
}

[data-theme="dark"] .event-sidebar {
    background: #1a1a2e !important;
    border-color: #2a2a4a !important;
}

[data-theme="dark"] .event-sidebar h4,
[data-theme="dark"] .event-sidebar h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .event-sidebar p {
    color: #c0c0c0 !important;
}

/* ============================================
   Dark Mode - Gallery Page
============================================ */
[data-theme="dark"] .gallery-section {
    background: #0f0f1a;
}

[data-theme="dark"] .gallery-item {
    border-color: #2a2a4a !important;
}

[data-theme="dark"] .gallery-caption {
    color: #ffffff !important;
}

/* ============================================
   Dark Mode - Portfolio Page
============================================ */
[data-theme="dark"] .portfolio-section {
    background: #0f0f1a;
}

[data-theme="dark"] .portfolio-card {
    background: #1a1a2e !important;
    border-color: #2a2a4a !important;
}

[data-theme="dark"] .portfolio-card h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .portfolio-card p {
    color: #c0c0c0 !important;
}

/* ============================================
   Dark Mode - Blog Page
============================================ */
[data-theme="dark"] .blog-section {
    background: #0f0f1a;
}

[data-theme="dark"] .blog-card {
    background: #1a1a2e !important;
    border-color: #2a2a4a !important;
}

[data-theme="dark"] .blog-card h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .blog-card p {
    color: #c0c0c0 !important;
}

[data-theme="dark"] .blog-meta {
    color: #808080 !important;
}

/* ============================================
   Dark Mode - Privacy & Terms Pages
============================================ */
[data-theme="dark"] .privacy-section,
[data-theme="dark"] .terms-section,
[data-theme="dark"] .legal-content {
    background: #0f0f1a;
}

[data-theme="dark"] .legal-content h1,
[data-theme="dark"] .legal-content h2,
[data-theme="dark"] .legal-content h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .legal-content p,
[data-theme="dark"] .legal-content li {
    color: #c0c0c0 !important;
}

/* ============================================
   Dark Mode - List Items and Links
============================================ */
[data-theme="dark"] ul li,
[data-theme="dark"] ol li {
    color: #c0c0c0;
}

[data-theme="dark"] a:not(.btn):not(.nav-link) {
    color: var(--accent);
}

[data-theme="dark"] a:not(.btn):not(.nav-link):hover {
    color: #ff6b7f;
}

/* ============================================
   Dark Mode - Tables
============================================ */
[data-theme="dark"] .table {
    --bs-table-bg: #1a1a2e;
    --bs-table-color: #ffffff;
    --bs-table-border-color: #2a2a4a;
}

[data-theme="dark"] .table th {
    background-color: #16213e !important;
    color: #ffffff !important;
}

[data-theme="dark"] .table td {
    color: #c0c0c0 !important;
}

/* ============================================
   Dark Mode - Badges and Pills
============================================ */
[data-theme="dark"] .badge.bg-light {
    background-color: #2a2a4a !important;
    color: #ffffff !important;
}

/* ============================================
   Dark Mode - Breadcrumbs
============================================ */
[data-theme="dark"] .breadcrumb {
    background-color: transparent;
}

[data-theme="dark"] .breadcrumb-item a {
    color: var(--accent) !important;
}

[data-theme="dark"] .breadcrumb-item.active {
    color: #b0b0b0 !important;
}

[data-theme="dark"] .breadcrumb-item+.breadcrumb-item::before {
    color: #808080 !important;
}

/* ============================================
   Mobile Responsive Styles
============================================ */
@media (max-width: 991px) {

    /* Navbar mobile improvements */
    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        background: transparent;
    }

    .navbar-nav .dropdown-item {
        padding: 0.5rem 0;
    }

    /* Resize Header Logo on Mobile */
    .navbar-logo {
        height: 60px;
        /* Reduced from 120px for mobile */
    }

    #mainNavbar.scrolled .navbar-logo {
        height: 50px;
    }
}

@media (max-width: 767px) {

    /* Hero section mobile */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-tagline {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    /* Counter boxes mobile */
    .counter-box {
        padding: 1rem 0.75rem;
    }

    .counter-icon {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .counter-number {
        font-size: 1.75rem;
    }

    .counter-suffix {
        font-size: 1rem;
    }

    .counter-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    /* Buttons mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem !important;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .btn-xl {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.75rem;
    }

    /* Scroll indicator - hide on mobile */
    .scroll-indicator {
        display: none;
    }

    /* Footer mobile */
    .footer-main {
        padding-bottom: 100px;
        /* Space for FABs */
    }

    .footer-bottom p {
        white-space: normal;
        /* Ensure text wraps */
        word-wrap: break-word;
    }

    .footer-logo {
        height: 100px;
        /* Increased from 50px */
    }
}

@media (max-width: 575px) {

    /* Extra small screens */
    .hero-title {
        font-size: 1.75rem !important;
    }

    .counter-box {
        padding: 0.75rem 0.5rem;
    }

    .counter-number {
        font-size: 1.5rem;
    }

    .counter-label {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   Video-Only Hero Section
============================================ */
.hero-section.hero-video-only {
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.hero-section.hero-video-only .hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-section.hero-video-only .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-section.hero-video-only .hero-overlay {
    background: transparent;
}

/* ============================================
   About Us & Stats Section
============================================ */
.about-stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.hero-tagline-section {
    display: inline-block;
    background: #c75634;
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.stats-grid {
    padding: 1rem;
}

.stat-card-new {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
    height: 100%;
}

.stat-card-new:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(199, 86, 52, 0.15);
}

.stat-icon-new {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: var(--accent);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    display: inline;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label-new {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0.5rem 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dark mode for About Stats Section */
[data-theme="dark"] .about-stats-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

[data-theme="dark"] .stat-card-new {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .stat-number {
    color: #ffffff;
}

[data-theme="dark"] .stat-label-new {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive About Stats */
@media (max-width: 991px) {
    .about-stats-section .section-title {
        font-size: 2rem;
    }

    .stat-card-new {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section.hero-video-only {
        min-height: 100svh;
        height: 100svh;
        width: 100%;
        /* Changed from 100vw to 100% to prevent scrollbar overflow */
        overflow: hidden;
        position: relative;
        left: 0;
    }

    .about-stats-section .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label-new {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .hero-section.hero-video-only {
        min-height: 100svh;
        height: 100svh;
        width: 100%;
        /* Changed from 100vw to 100% */
        overflow: hidden;
        position: relative;
        left: 0;
    }
}

/* Mobile Logo Adjustments */
@media (max-width: 991px) {
    .navbar-logo {
        height: 50px;
        /* Smaller on mobile */
    }

    #mainNavbar.scrolled .navbar-logo {
        height: 40px;
        /* Even smaller when scrolled */
    }

    /* Adjust pop-up distance for mobile */
    .navbar-transparent .navbar-brand .navbar-logo {
        transform: translateY(-10px);
    }

    .navbar-transparent.scrolled .navbar-brand .navbar-logo {
        transform: translateY(0);
    }

    /* Fix Mobile Menu Visibility on Transparent Header */
    /* Fix Mobile Menu Visibility on Transparent Header */
    .navbar-transparent .navbar-collapse {
        background: #ffffff;
        /* Solid white backdrop for menu */
        border-radius: 8px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .navbar-transparent .navbar-collapse .nav-link,
    .navbar-transparent .navbar-collapse .nav-link:hover,
    .navbar-transparent .navbar-collapse .nav-link.active {
        color: #333 !important;
        /* Force dark text in mobile menu */
        text-shadow: none !important;
        /* Remove glow effect */
    }
}

/* ============================================
   Footer Styles
============================================ */
.footer-main {
    background-color: #e9e2d0;
    color: var(--gray-700);
}

[data-theme="dark"] .footer-main {
    background-color: #1a1a2e;
    color: rgba(255, 255, 255, 0.8);
}

/* Centered Footer Design */
.footer-centered {
    max-width: 600px;
    margin: 0 auto;
}

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

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0;
}

[data-theme="dark"] .footer-logo {
    filter: brightness(0) invert(1);
}

.footer-description {
    max-width: 500px;
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

[data-theme="dark"] .footer-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Social Links - Circle Style */
.social-links-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link-circle {
    width: 45px;
    height: 45px;
    background: #d0d0d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #555;
    transition: all var(--transition-base);
}

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

[data-theme="dark"] .social-link-circle {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .social-link-circle:hover {
    background: var(--accent);
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

[data-theme="dark"] .footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-bottom .text-muted {
    color: var(--gray-600) !important;
}

[data-theme="dark"] .footer-bottom .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-bottom a.text-muted:hover {
    color: var(--accent) !important;
}

/* Responsive Footer */
@media (max-width: 767px) {
    .footer-logo {
        height: 100px;
    }

    .footer-description {
        font-size: 0.95rem;
    }

    .social-link-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}