:root {
    --accent: #3aa374;
    --accent-orange: #ff9a3d;
    --dark-bg: #0f1729;
    --light-bg: #f6f8f5;
    --text-dark: #0b1220;
    --text-light: #e0e7ff;
    --text-muted: #6b7280;
    --container: 1100px;
    --radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

html,
body {
    font-family: 'Inter', 'Segoe UI', system-ui, Arial, sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Fix for anchor links being hidden under sticky header */
[id] {
    scroll-margin-top: 100px;
}

@media (max-width: 1100px) {
    [id] {
        scroll-margin-top: 90px;
    }
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    /* Increased from 1rem to match highlights/split */
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* HEADER */
.site-header {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(11, 18, 32, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    gap: 1rem;
    flex-wrap: nowrap;
    /* Prevent wrapping for a consistent single-line header */
}

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

.logo-icon img {
    height: 45px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.brand:hover .logo-icon img {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    color: #1b4332;
    /* Rich Forest Green */
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 0.9;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.logo-tagline {
    font-size: 0.75rem;
    color: #1b4332;
    /* Match Forest Green for better visibility */
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-top: 2px;
    font-family: 'Poppins', sans-serif;
    opacity: 1;
}

/* LANGUAGE SELECTOR */
.lang-selector-wrapper {
    margin: 0 0.5rem;
    flex-shrink: 0;
}

.lang-select {
    height: 30px;
    /* Standardize height */
    padding: 0 0.5rem;
    border-radius: 6px;
    border: 2px solid #1b4332;
    background: white;
    color: #1b4332;
    font-weight: 700;
    font-size: 0.65rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
}

.lang-select:hover {
    border-color: #d97706;
    background: #fdf2f2;
}

@media (max-width: 600px) {
    .lang-selector-wrapper {
        margin: 0 0.25rem;
    }

    .lang-select {
        height: 26px;
        /* Smaller standardize height for mobile */
        padding: 0 0.4rem;
        font-size: 0.55rem;
        border-width: 1.5px;
    }
}

.nav-toggle {
    display: flex;
    margin-left: 1rem;
    height: 30px;
    /* Match Lang Selector */
    width: 34px;
    /* Square-ish button */
    border: 2px solid #1b4332;
    background: white;
    color: #1b4332;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.nav-toggle:hover {
    background: #1b4332;
    color: white;
    transform: scale(1.1);
}

.nav-toggle.active {
    background: #d97706;
    border-color: #d97706;
    color: white;
}

/* MOBILE/TOGGLE MENU FORMAT (Always active now) */
.site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(27, 67, 50, 0.98);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 80vh;
    overflow-y: auto;
    margin: 0;
}

.site-nav.active {
    display: flex !important;
    animation: slideInDownCustom 0.3s ease-out forwards;
}

/* Hide Mobile Pass Button on Desktop */
.mobile-pass-btn {
    display: none !important;
}

/* NAV STYLES - DROPDOWN */
.site-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    justify-content: flex-start;
}

.site-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffc107;
    padding-left: 1.5rem;
}

/* HEADER CTA - SCREENSHOT MATCH (.cta-box) */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-event-badge {
    background: linear-gradient(135deg, #1b4332, #3aa374);
    color: #ffc107;
    padding: 2px 10px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    /* Increased size */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.2);
    border: 1.5px solid #ffc107;
    white-space: nowrap;
    animation: badgePulse 2s infinite ease-in-out;
    margin-left: 0.5rem;
    margin-right: auto;
    /* Pushes CTA and Toggle to the right */
    font-family: 'Outfit', sans-serif;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(27, 67, 50, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 25px rgba(255, 193, 7, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(27, 67, 50, 0.2);
    }
}

@keyframes badgePulseTiny {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(27, 67, 50, 0.2);
    }

    50% {
        box-shadow: 0 2px 12px rgba(255, 193, 7, 0.4);
    }
}

@media (max-width: 1200px) {
    .header-event-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-left: 0.5rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        /* Allow wrapping so CTA can drop below */
        padding: 0.5rem 1rem !important;
        /* Forces 16px padding */
        gap: 0.4rem;
    }

    .brand {
        gap: 0.4rem;
        flex-shrink: 1;
        min-width: 0;
    }

    .logo-icon img {
        height: 32px;
    }

    .logo-text {
        font-size: 0.95rem;
        /* Reduced for mobile */
    }

    .logo-tagline {
        font-size: 0.55rem;
        /* Reduced for mobile */
        white-space: nowrap;
    }

    .header-event-badge {
        order: unset;
        /* Return to natural order */
        width: auto;
        padding: 3px 8px;
        font-size: 0.6rem;
        margin: 0;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .nav-toggle {
        padding: 0.2rem 0.4rem;
        margin-left: 0;
        flex-shrink: 0;
    }
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px;
    border: 1.5px solid #1b4332;
    border-radius: 8px;
    background: white;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-details {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #1b4332;
    font-weight: 600;
    font-size: 0.65rem;
    white-space: nowrap;
}

.event-icon {
    font-size: 0.8rem;
    color: #1b4332;
}

.btn-passes {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    background: #ffc107;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    border: none;
    /* Remove border from button itself */
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.65rem;
    box-shadow: none;
    text-transform: none;
    white-space: nowrap;
}

.btn-passes:hover {
    background: #ffb300;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-exhibitor {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    background: #1b4332;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.65rem;
    box-shadow: none;
    text-transform: none;
    white-space: nowrap;
}

.btn-exhibitor:hover {
    background: #2d6a4f;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

@keyframes slideInDownCustom {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* RESPONSIVE HEADERS - MOBILE/TAB (< 1100px) */
@media (max-width: 1100px) {
    .header-inner {
        padding: 0.5rem 1rem !important;
        /* 16px padding */
        flex-wrap: wrap !important;
        /* Allow wrapping */
        gap: 0.5rem;
    }

    .header-buttons {
        display: flex !important;
        order: 10;
        width: 100%;
        justify-content: center;
        margin-top: 0.2rem;
    }



    .header-event-badge {
        order: unset;
        width: auto;
        margin: 0;
        font-size: 0.8rem;
        /* Increased size */
        padding: 3px 10px;
        flex-shrink: 0;
    }

    .lang-selector-wrapper {
        margin-left: auto;
    }

    .nav-toggle {
        margin-left: 0.5rem;
        flex-shrink: 0;
    }


    /* Show Mobile Pass Button in Menu (Only needed when CTA is hidden) */
    .mobile-pass-btn {
        display: flex !important;
        background: #ffc107;
        color: #000 !important;
        font-weight: 700;
        justify-content: center;
        margin-top: 0.5rem;
        border-radius: 8px;
    }
}

/* UTILITIES */
@media (min-width: 769px) {
    .mobile-view {
        display: none !important;
    }
}

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

/* RESPONSIVE - SMALL MOBILE (< 600px) */
@media (max-width: 600px) {
    .header-inner {
        padding: 0.5rem 1rem !important;
    }

    .btn-passes, .btn-exhibitor {
        padding: 0.2rem 0.4rem;
        font-size: 0.55rem;
    }

    .logo-text {
        font-size: 0.75rem;
        /* Drastically reduced for tiny screens */
        letter-spacing: -0.5px;
    }

    .logo-tagline {
        font-size: 0.45rem;
        letter-spacing: -0.2px;
    }

    .header-event-badge {
        font-size: 0.55rem;
        /* Increased size */
        /* Further decreased for fit */
        padding: 1px 4px;
        /* Ultra-tight padding */
        border-width: 1px;
        flex-shrink: 0;
        margin-left: 0.1rem;
        animation: badgePulseTiny 2s infinite ease-in-out;
    }

    .logo-icon img {
        height: 24px;
        /* Even smaller logo */
    }

    .brand {
        gap: 0.2rem;
        flex-shrink: 1;
        min-width: 0;
    }

    .brand-text {
        flex-shrink: 1;
        min-width: 0;
    }

    .lang-selector-wrapper {
        margin-left: auto;
        /* Push to right */
    }

    .nav-toggle {
        height: 26px;
        width: 26px;
        font-size: 0.85rem;
        flex-shrink: 0;
        margin-left: 0.2rem;
    }

    /* Adjust Hero for full image view on mobile */
    .hero,
    .hero-slider {
        height: auto !important;
        min-height: 250px !important;
        aspect-ratio: 16 / 10;
    }

    .slide {
        background-size: 100% 100% !important;
    }

    .slide-content {
        padding-top: 2rem;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content .subtitle {
        font-size: 0.9rem;
    }
}


/* HERO SLIDER */
.hero {
    padding: 0;
    min-height: 500px;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeOut 0.5s;
}

/* Dark overlay for text visibility */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* Balanced overlay for clarity */
    z-index: 1;
}

.hero-slider {
    position: relative;
    height: 70vh;
    /* Reduced from 75vh to prevent overlap on small laptops */
    min-height: 500px;
    max-height: 700px;
    /* Cap it so text isn't pushed too low */
    overflow: hidden;
    background: #000;
    /* Pre-loader color */
}

.slide.fade {
    animation: fadeIn 1s;
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    /* Above the overlay */
    animation: slideUp 0.8s ease-out;
    padding: 0 1rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-content .subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* HERO SLIDER CONTROLS - PRIME DESIGN */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through to slider if not on buttons */
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(58, 163, 116, 0.5);
}

.slider-btn i {
    transition: transform 0.3s ease;
}

.slider-btn.prev:hover i {
    transform: translateX(-3px);
}

.slider-btn.next:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-controls {
        padding: 0 10px;
    }
}


.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(58, 163, 116, 0.1);
}

/* BUTTONS */
.btn-theme-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, #2d8a5e 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(58, 163, 116, 0.3);
    text-align: center;
    text-decoration: none;
}

.btn-theme-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(58, 163, 116, 0.4);
    background: linear-gradient(135deg, #2d8a5e 0%, #1b4332 100%);
}

.btn-theme-primary:active {
    transform: translateY(-1px);
}

/* SECTIONS */
.section {
    padding: 3rem 0;
    background: rgba(58, 163, 116, 0.08);
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
}

.section-title {
    font-size: 2.2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #1b4332;
    font-weight: 800;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    position: relative;
    padding-bottom: 1rem;
    /* Space for the line */
}

/* Designed Thin Line */
/* Designed Thin Line */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    /* Slightly wider */
    height: 4px;
    /* Slightly thicker */
    background: linear-gradient(90deg, var(--accent), var(--accent-orange));
    border-radius: 4px;
    z-index: 1;
    display: block;
    /* Ensure it renders */
}

.lead {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ANIMATED CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
        /* Stack 1 by 1 on mobile */
    }
}

.card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11, 18, 32, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    cursor: pointer;
    border: 2px solid #e0e7e0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.card-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    /* Solid light overlay for text clarity */
    z-index: 1;
    transition: all 0.4s ease;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-hover:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(11, 18, 32, 0.15);
    animation: borderGlowGreen 1.5s ease-in-out infinite;
}

.card-hover:hover .card-overlay {
    background: rgba(27, 67, 50, 0.92);
    /* Theme green on hover */
}

.card-hover:hover h3 {
    color: white !important;
}

.card-hover:hover p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.card-media {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Animated Border Keyframes */
@keyframes borderGlowGreen {
    0% {
        border-color: #3aa374;
        box-shadow: 0 0 0 2px #3aa374, inset 0 0 0 1px #3aa374;
    }

    50% {
        border-color: #2d8a5e;
        box-shadow: 0 0 12px 2px rgba(58, 163, 116, 0.5), inset 0 0 0 1px #2d8a5e;
    }

    100% {
        border-color: #3aa374;
        box-shadow: 0 0 0 2px #3aa374, inset 0 0 0 1px #3aa374;
    }
}

@keyframes borderAnimateGreen {
    0% {
        border-color: #3aa374;
    }

    50% {
        border-color: #ff9a3d;
    }

    100% {
        border-color: #3aa374;
    }
}

/* Partner Logo Border Animation - Green and Yellow cycle */
@keyframes partnerBorderGlowGreenYellow {
    0% {
        border-color: #3aa374;
        box-shadow: 0 0 0 3px #3aa374, inset 0 0 0 2px #3aa374, 0 0 20px rgba(58, 163, 116, 0.6);
    }

    25% {
        border-color: #2d8a5e;
        box-shadow: 0 0 0 3px #2d8a5e, inset 0 0 0 2px #2d8a5e, 0 0 20px rgba(58, 163, 116, 0.8);
    }

    50% {
        border-color: #ff9a3d;
        box-shadow: 0 0 0 3px #ff9a3d, inset 0 0 0 2px #ff9a3d, 0 0 20px rgba(255, 154, 61, 0.8);
    }

    75% {
        border-color: #ffc64d;
        box-shadow: 0 0 0 3px #ffc64d, inset 0 0 0 2px #ffc64d, 0 0 20px rgba(255, 198, 77, 0.6);
    }

    100% {
        border-color: #3aa374;
        box-shadow: 0 0 0 3px #3aa374, inset 0 0 0 2px #3aa374, 0 0 20px rgba(58, 163, 116, 0.6);
    }
}

/* Slide In Up Animation for Labels */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* HERO SPLIT SECTION */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
    /*margin: 3rem 0;*/
}

@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
    }

    .split-content {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
}

.split-col {
    padding: 3rem 0;
    display: flex;
    align-items: center;
}

.split-left {
    background: linear-gradient(135deg, #8b6f47 0%, #6b5438 100%);
    color: white;
    justify-content: flex-end;
}

.split-right {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #1a1a1a;
    justify-content: flex-start;
}

.split-content {
    width: 100%;
    max-width: calc(var(--container) / 2);
    padding: 0 1.5rem;
}

.split-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.split-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* EXHIBITORS HIGHLIGHT SECTION */
.exhibitors-highlight {
    background: #1b4332;
    color: white;
    padding: 4rem 0;
    /*margin: 2rem 0;*/
}

.exhibitors-highlight .container {
    position: relative;
    z-index: 2;
}

.exhibitors-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.exhibitors-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.exhibitors-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* CAROUSEL GALLERY */
.carousel-wrapper {
    position: relative;
    margin: 2rem 0;
}

.carousel {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.carousel-wrapper {
    position: relative;
}

.carousel-container {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s ease-in-out;
    padding: 1rem 0;
}

.tile-carousel {
    flex: 0 0 calc(25% - 1.125rem);
    /* Default: 4 items */
    min-height: 250px;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

/* RESPONSIVE CAROUSEL ITEMS */
@media (max-width: 1200px) {
    .tile-carousel {
        flex: 0 0 calc(33.333% - 1rem);
        /* 3 items */
    }
}

@media (max-width: 900px) {
    .tile-carousel {
        flex: 0 0 calc(50% - 0.75rem);
        /* 2 items */
    }
}

@media (max-width: 768px) {
    .tile-carousel {
        flex: 0 0 100%;
        /* 1 item on mobile */
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(58, 163, 116, 0.8);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: #1b4332;
    /* Darker green on hover */
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 10px;
    /* Moved inside */
}

.carousel-next {
    right: 10px;
    /* Moved inside */
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(58, 163, 116, 0.4);
    /* Base state */
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(58, 163, 116, 0.4);
}

/* PARTNERS & SPONSORS SECTION */
#partners {
    background-image: url('../images/watermark.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect for premium feel */
    position: relative;
    overflow: hidden;
    /* Removed border-radius to ensure full-width bleed */
}

#partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 252, 248, 0.96);
    /* High opacity light green tint for readability and texture */
    z-index: 1;
}

#partners>* {
    position: relative;
    z-index: 2;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: flex-start;
    justify-items: center;
    margin-top: 2rem;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
    width: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.logo-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    /* Square with rounded corners */
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px #ff9a3da6;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    /* Default transparent border */
    padding: 1rem;
}

.logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(10%);
    transition: all 0.4s ease;
    transform: scale(0.9);
}

.partner-card:hover .logo-wrapper {
    box-shadow: 0 10px 30px rgba(58, 163, 116, 0.15);
    background: white;
    transform: translateY(-5px);

    /* Animate Top, Right, Bottom borders */
    border-top-color: var(--accent);
    border-right-color: var(--accent);
    border-bottom-color: var(--accent);
    border-left-color: transparent;
    /* Keep left transparent or light */
}

.partner-card:hover .logo-wrapper img {
    filter: grayscale(0%);
    transform: scale(1);
}

.partner-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
    color: var(--accent);
}

/* EVENT HIGHLIGHTS SECTION */
.highlights-grid {
    display: flex;
    /* Force 1 line */
    flex-wrap: nowrap;
    /* Prevent wrapping */
    gap: 1.5rem;
    overflow-x: auto;
    /* Allow horizontal scroll if needed */
    padding-bottom: 0.5rem;
    /* Reduced padding */
    margin-top: 3rem;
    /* Added spacing */

    /* Hide Scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

/* Hide Scrollbar for Chrome, Safari and Opera */
.highlights-grid::-webkit-scrollbar {
    display: none;
}

.highlight-card {
    flex: 1;
    /* Distribute space equally */
    min-width: 250px;
    /* Minimum width to maintain readability */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 2rem 1.5rem;

    /* Background Animation */
    background: linear-gradient(135deg, #1b4332, #2d8a5e, #1b4332);
    background-size: 200% 200%;
    animation: bgGreenPulse 6s ease infinite;
    color: white;
    /* White text for contrast */
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(27, 67, 50, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: #ffc107;
    /* Pop color for titles */
    font-weight: 700;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    /* Semi-transparent white */
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes bgGreenPulse {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* EXHIBITORS FEATURED SECTION (Marquee) */
.exhibitors-featured {
    padding: 3rem 0;
    background: white;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    /* Adjust width based on items or use animation to scroll */
    animation: scrollMarquee 40s linear infinite;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.exhibitor-box {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    background: white;
    border-radius: 12px;
    border: 1px solid #f3ed3c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(109, 225, 155, 0.05);
    transition: all 0.5s ease;
}

.exhibitor-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(58, 163, 116, 0.2);
}

.exhibitor-box img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(10%);
    transition: filter 0.5s ease;
}

.exhibitor-box:hover img {
    filter: grayscale(0%);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Assuming content is doubled or we scroll appropriately. 
           If content is not doubled in HTML, this might snap visually. 
           For a perfect loop, Javascript or duplicate HTML is needed.
           Given user request "restore CSS", this provided a scrolling effect. */
    }
}

/* STALL PRICE SECTION */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border-color: var(--accent-orange);
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 154, 61, 0.15);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.price-header h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1b4332;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 2rem;
}

.gst {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list li::before {
    content: 'âœ“';
    color: var(--accent);
    font-weight: bold;
}

/* FACILITIES SECTION */
/* FACILITIES SECTION */
.facilities-grid {
    display: flex;
    /* Single line view */
    flex-wrap: nowrap;
    /* Prevent wrapping */
    gap: 1.5rem;
    overflow-x: auto;
    /* Scroll on small screens */
    margin-top: 32px;
    padding-bottom: 1rem;
    /* Space for hover effect */

    /* Hide scrollbars */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.facilities-grid::-webkit-scrollbar {
    display: none;
}

.facility-item {
    flex: 1;
    /* Equal width */
    min-width: 180px;
    /* Minimum width constraint */
    text-align: center;
    padding: 2rem;
    background: var(--accent);
    /* Theme color background */
    color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* Auto Animation: Small Jumping/Swing */
    animation: gentleJump 3s ease-in-out infinite;
}

/* Stagger animation for natural feel */
.facility-item:nth-child(even) {
    animation-delay: 1.5s;
}

.facility-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(58, 163, 116, 0.3);
    background: #1b4332;
    /* Darker green on hover */
    border-color: #ffc107;
    animation-play-state: paused;
}

.facility-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}

.facility-item p {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    margin: 0;
}

/* Jump Animation Keyframes */
@keyframes gentleJump {

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

    50% {
        transform: translateY(-10px);
    }
}

/* BOOKING SECTION */
#bookings {
    background-image: url('../images/watermark.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
}

#bookings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 252, 248, 0.96);
    z-index: 1;
}

#bookings>* {
    position: relative;
    z-index: 2;
}

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

.booking-box,
.booking-cta {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.booking-box:hover,
.booking-cta:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.booking-box h3,
.booking-cta h3 {
    color: #1b4332;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.booking-box p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.booking-cta {
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-note {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #856404;
    text-align: left;
}

.btn.primary {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(58, 163, 116, 0.3);
    display: inline-block;
}

.btn.primary:hover {
    background: #2d8a5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 163, 116, 0.4);
}

/* FOOTER REDESIGN */
.site-footer {
    background: linear-gradient(135deg, #09201a 0%, #1b4332 100%);
    color: #e0e7e0;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #ffc107;
}

.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/watermark.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.footer-main {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
    gap: 3rem;
}

.footer-col h4.footer-heading {
    color: #ffc107;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

/* Brand Column */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-logo {
    transform: scale(1.05);
}

.brand-col .logo-text {
    color: white;
    font-size: 1.5rem;
    line-height: 1;
}

.brand-col .logo-tagline {
    color: #3aa374;
    font-size: 0.7rem;
    margin-top: 4px;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(58, 163, 116, 0.4);
}

/* Links Column */
.footer-links {
    list-style: none;
}

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

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

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

/* Info Column */
.info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-top: 3px;
    width: 25px;
    text-align: center;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 2px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.info-text {
    font-size: 0.95rem;
    color: white;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Contact Column */
.org-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-link:hover {
    color: white;
}

.contact-link i {
    color: #ffc107;
    width: 20px;
    text-align: center;
}

.btn-footer-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #2d8a5e 100%);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(58, 163, 116, 0.3);
}

/* Lower Footer */
.footer-lower {
    background: rgba(0, 0, 0, 0.25);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.lower-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

/* ABOUT PAGE */
.about-sankalp {
    padding: 4rem 0;
    background: white;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid rgba(58, 163, 116, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Back to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-orange);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #e67e22;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

/* Utilities Class */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Additional Styles for Form and Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tile {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    cursor: pointer;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.tile-img {
    height: 180px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.tile-caption {
    padding: 0.8rem;
    color: #1b4332;
    font-size: 1rem;
    font-weight: 600;
    background: white;
    text-align: center;
    transition: all 0.3s ease;
}

.tile:hover .tile-caption {
    background: #f0fdf4;
    color: var(--accent);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.col {
    flex: 1;
}

/* Specific Responsive Adjustments */
@media (max-width: 900px) {
    .header-inner {
        padding: 0.75rem 0;
    }

    .site-nav {
        gap: 1.2rem;
    }

    .site-nav a {
        font-size: 0.9rem;
    }

    .hero-slider {
        min-height: 400px;
    }

    .slide-content h1 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .cards {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
    }

    .cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }

    .form-row {
        flex-direction: column;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .brand {
        font-size: 1rem;
    }

    .logo-icon {
        font-size: 1.3rem;
    }

    .hero-slider {
        min-height: 350px;
    }

    .section {
        padding: 2rem 0;
    }

    .hero-cta {
        padding: 1.5rem 0.5rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .highlights-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .exhibitors-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .prices-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Modal Styles */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.85) translateY(30px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes modalScaleOut {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.85);
        opacity: 0;
    }
}

.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.modal.active {
    display: flex;
    pointer-events: auto;
    animation: modalFadeIn 0.3s ease-out;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    max-width: 900px;
    /* Slightly wider for tables */
    width: 95%;
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 1px solid rgba(58, 163, 116, 0.2);
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

/* ... existing code ... */

/* Duplicate style removed */

.modal.active.close-animation .modal-content {
    animation: modalScaleOut 0.3s ease-in;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    /* Reduced padding */
    background: linear-gradient(135deg, #3aa374 0%, #2d8a5e 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header h2::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ffc107;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffc107;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.75rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.pass-form {
    padding: 1.5rem;
    /* Reduced padding */
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 0 0 1.25rem;
    /* Adjusted vertical spacing */
}

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

.form-section-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1b4332;
    margin: 1.5rem 0 0.75rem;
    padding-bottom: 0.4rem;
    line-height: 1;
    border-bottom: 2px solid rgba(58, 163, 116, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--accent);
    border-radius: 2px;
}

.check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0.8rem;
    background: #fff;
    border: 1.5px solid #e0e7e0;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.check-label:hover {
    background: #f0fdf4;
    border-color: #3aa374;
}

.check-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3aa374;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label:first-child {
    font-weight: 700;
    color: #0f1729;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
}

.form-group label:not(:first-child) {
    font-weight: 500;
    color: #444;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
    cursor: pointer;
    text-transform: none;
    line-height: 1;
}

.form-group input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
    margin: 0;
}

.form-group label:first-child::before,
.radio-inline label:first-child::before,
.checkbox-grid label:nth-child(5n+1)::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #3aa374;
    border-radius: 50%;
    box-shadow: 0 0 6px #3aa374;
    flex-shrink: 0;
    margin-right: 2px;
}

.form-group .required {
    color: #ff6b6b;
    font-weight: 800;
    font-size: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea,
.table input {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1.5px solid #e0e7e0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f9fbf9;
    line-height: 1.2;
    /* Decreased line height */
}

.form-group input:focus,
.table input:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(58, 163, 116, 0.1);
}

.form-group input[type="date"] {
    cursor: pointer;
}

.form-group input[type="date"]:focus {
    background-color: white;
}

/* Standardize Submit Button */
.pass-form .btn-theme-primary {
    width: 100%;
    margin-top: 1.5rem;
}

/* Tom Select Customization */
.ts-wrapper .ts-control {
    border: 1.5px solid #e0e7e0 !important;
    border-radius: 8px !important;
    padding: 0.6rem 0.8rem !important;
    background: #f9fbf9 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    min-height: auto !important;
    line-height: normal !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.ts-wrapper.focus .ts-control {
    border-color: var(--accent) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(58, 163, 116, 0.1) !important;
}

.ts-wrapper .ts-control input {
    font-size: 0.9rem !important;
}

.ts-dropdown {
    border: 1px solid #e0e7e0 !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
    z-index: 2000 !important;
}

.ts-dropdown .option {
    padding: 10px 12px !important;
}

.ts-dropdown .active {
    background-color: var(--accent) !important;
    color: white !important;
}

/* Responsive Table in Modal */
.table-responsive {
    background: white;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
}

.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    background: #1b4332 !important;
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 0.75rem 0.75rem;
    line-height: 1.1;
}

.table td {
    padding: 0.4rem 0.5rem;
    line-height: 1.1;
    border-bottom: 1px solid #f0f4f0;
}

.table tbody tr:hover {
    background-color: #f0fdf4;
}

.table input {
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.85rem;
    border-color: rgba(58, 163, 116, 0.2);
}

/* Modal Footer for Submit Button */
.modal-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    background: #f9fbf9;
    border-radius: 0 0 16px 16px;
    margin: 1.5rem -1.5rem -1.5rem -1.5rem;
}

.modal-footer .btn-theme-primary {
    margin-top: 0 !important;
    width: auto !important;
    padding: 0.8rem 3rem;
    min-width: 200px;
}

.pass-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(58, 163, 116, 0.35);
}

.pass-form .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.pass-form .btn-primary:active {
    transform: translateY(-1px);
}

/* Success State */
.pass-success {
    text-align: center;
    padding: 3rem 2.5rem;
    animation: slideUp 0.5s ease-out;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.pass-success h3 {
    color: #3aa374;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.pass-details {
    background: linear-gradient(135deg, rgba(58, 163, 116, 0.08) 0%, rgba(45, 138, 94, 0.08) 100%);
    border-left: 4px solid #3aa374;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: left;
}

.pass-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(58, 163, 116, 0.1);
    font-size: 0.95rem;
}

.pass-detail-item:last-child {
    border-bottom: none;
}

.pass-detail-label {
    font-weight: 600;
    color: #0f1729;
}

.pass-detail-value {
    color: #3aa374;
    font-weight: 700;
}

.pass-id {
    background: linear-gradient(135deg, #3aa374 0%, #2d8a5e 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Modal Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        border-radius: 16px;
    }

    .modal-header {
        padding: 2rem 1.5rem;
        border-radius: 16px 16px 0 0;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .pass-form {
        padding: 1.75rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 500px) {
    .modal-content {
        width: 98%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .pass-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .pass-success {
        padding: 2rem 1.5rem;
    }

    .success-icon {
        font-size: 3rem;
    }
}


/* COMPACT FLOATING ACTIONS (BOTTOM RIGHT) */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.fab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    /* Background now handled by specific classes */
    backdrop-filter: blur(10px);
    color: #fff;
    /* High contrast white text/icons */
    font-size: 0.85rem;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    /* Subtle text shadow for depth */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Deeper shadow for visibility */
}

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

.fab-visitor {
    background: rgba(255, 179, 0, 0.95);
    /* More solid gold */
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.fab-visitor:hover {
    background: var(--accent);
    /* Swap: Visitor becomes Green on hover */
    color: #fff;
    border-color: var(--accent);
    transform: translateX(-8px) scale(1.05);
    box-shadow: 0 12px 25px rgba(58, 163, 116, 0.5);
}

.fab-exhibitor {
    background: rgba(45, 138, 94, 0.95);
    /* More solid Green */
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow: 0 8px 20px rgba(58, 163, 116, 0.4);
}

.fab-exhibitor:hover {
    background: #ffb300;
    /* Swap: Exhibitor becomes Gold on hover */
    color: #fff;
    border-color: #ffb300;
    transform: translateX(-8px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 179, 0, 0.5);
}

/* Revert body padding */
body {
    padding-bottom: 0;
}

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

    .fab-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .fab-btn {
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .fab-btn span {
        display: inline-block;
        /* Ensure text stays visible */
    }

    .fab-btn i {
        font-size: 0.8rem;
    }
}