/*
 * The Homeware Expo 2026 - Clean Minimalistic Theme
 * Color Palette: Navy, Teal, Grey - Professional & Modern
 */

/* ===================================
   CSS Variables & Root Styles
   =================================== */
:root {
    /* Color Palette */
    --primary-dark: #061E29;      /* Deep Navy */
    --primary: #1D546D;           /* Navy Blue */
    --primary-light: #5F9598;     /* Teal */
    --light-bg: #F3F4F4;          /* Light Grey */

    /* Neutral Colors */
    --dark: #0a1f2e;
    --dark-light: #1a3a4a;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --white: #ffffff;

    /* Shadows - Subtle & Clean */
    --shadow-sm: 0 1px 3px rgba(6, 30, 41, 0.08);
    --shadow: 0 2px 8px rgba(6, 30, 41, 0.12);
    --shadow-md: 0 4px 16px rgba(6, 30, 41, 0.15);
    --shadow-lg: 0 8px 24px rgba(6, 30, 41, 0.18);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', sans-serif;

    /* Spacing */
    --border-radius: 8px;
    --border-radius-lg: 12px;

    /* Transitions */
    --transition: all 0.25s ease;
}

/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Top Info Bar
   =================================== */
.top-info-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(95, 149, 152, 0.2);
}

.top-info-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 500;
}

.info-item i {
    color: var(--primary-light);
    font-size: 13px;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: rgba(95, 149, 152, 0.15);
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================================
   Main Navigation
   =================================== */
.main-navbar {
    background-color: var(--white);
    padding: 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-navbar .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* Logo Styles */
.navbar-brand {
    padding: 18px 0;
    transition: var(--transition);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 32px;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-year {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1.5px;
    line-height: 1;
    margin-top: 3px;
}

/* Navigation Links */
.navbar-nav {
    gap: 4px;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 28px 18px !important;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary) !important;
}

/* Dropdown Styles */
.dropdown-menu {
    border: 1px solid var(--light-bg);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 8px;
    margin-top: 0;
    background-color: var(--white);
    min-width: 220px;
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary);
}

.dropdown-item:active {
    background-color: var(--light-bg);
    color: var(--primary);
}

.dropdown-item i {
    color: var(--primary-light);
    font-size: 14px;
    width: 20px;
}

/* CTA Button */
.btn-gradient {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-gradient:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* Mobile Toggle */
.navbar-toggler {
    border: 2px solid var(--primary);
    padding: 6px 10px;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(29, 84, 109, 0.25);
    border-color: var(--primary);
}

.navbar-toggler-icon {
    width: 22px;
    height: 22px;
}

/* ===================================
   Footer Styles
   =================================== */
.footer-section {
    background-color: var(--primary-dark);
    color: var(--white);
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 28px;
    color: var(--primary-light);
    margin-right: 10px;
}

.footer-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-light);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background-color: rgba(95, 149, 152, 0.15);
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social-link:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin: 0;
}

.footer-bottom strong {
    color: var(--primary-light);
    font-weight: 600;
}

/* ===================================
   Utility Classes
   =================================== */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-light);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Background Utilities */
.bg-light-custom {
    background-color: var(--light-bg);
}

.bg-primary-custom {
    background-color: var(--primary);
    color: var(--white);
}

/* Card Styles */
.card-modern {
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    background-color: var(--white);
}

.card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

/* Button Styles */
.btn-primary-custom {
    background-color: var(--primary);
    border: none;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-light-custom {
    background-color: var(--light-bg);
    border: 1px solid #e5e7eb;
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-light-custom:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Divider */
.divider {
    height: 1px;
    background-color: var(--light-bg);
    margin: 40px 0;
}

/* Text Colors */
.text-primary-custom {
    color: var(--primary) !important;
}

.text-primary-light {
    color: var(--primary-light) !important;
}

.text-muted-custom {
    color: var(--gray) !important;
}

/* Badge */
.badge-custom {
    background-color: var(--primary-light);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* ===================================
   Form Styles
   =================================== */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(29, 84, 109, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding: 10px 14px;
    font-size: 14px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(29, 84, 109, 0.15);
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 991px) {
    .nav-link {
        padding: 12px 16px !important;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-nav {
        padding: 16px 0;
        gap: 0;
    }

    .btn-gradient {
        margin-top: 12px;
        width: 100%;
        justify-content: center;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .top-info-items {
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .top-info-bar {
        font-size: 13px;
        padding: 10px 0;
    }

    .info-item {
        gap: 6px;
        font-size: 12px;
    }

    .brand-name {
        font-size: 19px;
    }

    .logo-icon {
        font-size: 26px;
    }

    .section-title {
        font-size: 26px;
    }

    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .social-links {
        justify-content: flex-start;
        margin-top: 12px;
    }
}

@media (max-width: 575px) {
    .top-info-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ===================================
   Smooth Scrolling & Selection
   =================================== */
html {
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--primary-light);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-light);
    color: var(--white);
}

/* ===================================
   Loading & Animation States
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.4s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}

/* ===================================
   Additional CSS for index.php
   Clean, Minimalistic Design
   =================================== */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 30, 41, 0.7);
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.badge-hero {
    background-color: rgba(95, 149, 152, 0.3);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-location {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px 30px;
    min-width: 110px;
    text-align: center;
    transition: var(--transition);
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.countdown-value {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    margin-top: 30px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 24px;
    color: var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Stats Section */
.stats-section {
    background-color: var(--white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(29, 84, 109, 0.1);
    border-radius: 50%;
    color: var(--primary);
    font-size: 30px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: var(--gray);
    margin: 0;
    font-weight: 500;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background-color: rgba(29, 84, 109, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-light);
    margin-bottom: 16px;
}

/* About Image */
.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    background: linear-gradient(135deg, rgba(29, 84, 109, 0.1) 0%, rgba(95, 149, 152, 0.1) 100%);
    border: 2px dashed var(--primary-light);
    border-radius: var(--border-radius-lg);
    padding: 80px 40px;
    text-align: center;
    color: var(--gray);
}

.about-image-placeholder i {
    font-size: 64px;
    color: var(--primary-light);
    margin-bottom: 16px;
    display: block;
}

.about-image-placeholder p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.feature-item {
    font-size: 15px;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.feature-item i {
    font-size: 18px;
}

/* Highlight Cards */
.highlight-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(29, 84, 109, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 20px;
}

.highlight-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.highlight-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Category Cards */
.category-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.category-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(95, 149, 152, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--primary);
}

.category-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.category-desc {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* Participate Boxes */
.participate-box {
    background-color: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    height: 100%;
}

.participate-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.participate-icon {
    font-size: 40px;
    color: var(--primary);
}

.participate-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.participate-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.participate-list li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.participate-list i {
    color: var(--primary-light);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Video Cards */
.video-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: var(--white);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.video-card iframe {
    display: block;
    border-radius: var(--border-radius);
}

/* Sponsors Grid */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    align-items: center;
}

.sponsor-item {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.sponsor-placeholder {
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 600;
}

/* Accordion / FAQ */
.accordion-item {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius) !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 16px;
    padding: 18px 24px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(29, 84, 109, 0.05);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1.2rem;
}

.accordion-body {
    padding: 20px 24px;
    color: var(--dark-light);
    font-size: 15px;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    color: var(--white);
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-section .btn-light {
    background-color: var(--white);
    color: var(--primary);
    border: none;
}

.cta-section .btn-light:hover {
    background-color: var(--light-bg);
    color: var(--primary-dark);
}

.cta-section .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Newsletter Form */
.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    box-shadow: var(--shadow-md);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 16px 24px;
    font-size: 15px;
    background-color: var(--white);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.newsletter-form .btn {
    padding: 16px 32px;
    border: none;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .countdown-item {
        min-width: 90px;
        padding: 16px 20px;
    }

    .countdown-value {
        font-size: 32px;
    }

    .stats-section {
        margin-top: 0;
        padding: 40px 0;
    }

    .participate-box {
        padding: 30px 24px;
        margin-bottom: 30px;
    }

    .cta-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 24px;
    }

    .cta-text {
        text-align: center;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .countdown-item {
        min-width: 75px;
        padding: 12px 16px;
    }

    .countdown-value {
        font-size: 26px;
    }

    .countdown-label {
        font-size: 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero-cta .btn {
        display: block;
        width: 100%;
        margin: 8px 0 !important;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .countdown-timer {
        gap: 12px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 10px 12px;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: var(--border-radius);
    }

    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: var(--border-radius) !important;
        width: 100%;
    }

    .newsletter-form .btn {
        margin-top: 12px;
    }
}


/* ===================================
   Additional CSS for Content Pages
   (about-fair, about-organizer, etc.)
   =================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 100px 0 80px;
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Content Elements */
.content-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-light);
    margin-bottom: 20px;
}

/* Image Placeholder */
.image-placeholder-lg {
    background: linear-gradient(135deg, rgba(29, 84, 109, 0.08) 0%, rgba(95, 149, 152, 0.08) 100%);
    border: 2px dashed var(--primary-light);
    border-radius: var(--border-radius-lg);
    padding: 100px 40px;
    text-align: center;
    color: var(--gray);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-placeholder-lg i {
    font-size: 80px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.image-placeholder-lg p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray);
}

/* Info Box */
.info-box {
    background-color: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-box-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(29, 84, 109, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-box-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.info-box-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-light);
    margin: 0;
}

/* Feature Box with Numbers */
.feature-box {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(29, 84, 109, 0.08);
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Sector List */
.sector-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sector-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sector-item i {
    font-size: 24px;
    color: var(--primary-light);
    margin-top: 4px;
    flex-shrink: 0;
}

.sector-item h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.sector-item p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.stat-icon-lg {
    width: 60px;
    height: 60px;
    background-color: rgba(95, 149, 152, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: var(--primary);
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-description {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    font-weight: 500;
}

/* Audience Cards */
.audience-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.audience-card:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.audience-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
    transition: var(--transition);
}

.audience-card:hover i {
    color: var(--white);
}

.audience-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    transition: var(--transition);
}

.audience-card:hover h5 {
    color: var(--white);
}

/* Alternative CTA Section */
.cta-section-alt {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    color: var(--white);
}

.cta-title-white {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text-white {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Content Pages */
@media (max-width: 991px) {
    .page-title {
        font-size: 38px;
    }

    .content-title {
        font-size: 28px;
    }

    .image-placeholder-lg {
        min-height: 300px;
        padding: 60px 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .content-title {
        font-size: 24px;
    }

    .image-placeholder-lg {
        min-height: 250px;
        padding: 50px 20px;
    }

    .image-placeholder-lg i {
        font-size: 60px;
    }

    .info-box,
    .feature-box {
        padding: 30px 20px;
    }

    .feature-number {
        font-size: 48px;
    }

    .cta-title-white {
        font-size: 28px;
    }

    .cta-text-white {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}


/* ===================================
   Additional CSS for About Organizer Page
   =================================== */

/* Organizer Image Wrapper */
.organizer-image-wrapper {
    position: relative;
}

.organizer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.badge-text {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Value Cards */
.value-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 30px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(29, 84, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.value-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.value-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

/* Expertise Timeline */
.expertise-timeline {
    margin-top: 30px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50px;
    width: 2px;
    height: calc(100% + 10px);
    background-color: var(--primary-light);
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding: 10px;
    box-shadow: var(--shadow);
    z-index: 1;
    position: relative;
}

.timeline-content {
    flex: 1;
    padding-top: 12px;
}

.timeline-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.expertise-item {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    color: var(--white);
}

.expertise-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.expertise-label {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
    font-weight: 500;
}

/* Specialization Box */
.specialization-box {
    background-color: var(--light-bg);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 30px;
}

.specialization-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.specialization-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.specialization-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark);
}

.specialization-list i {
    color: var(--primary-light);
    font-size: 16px;
    flex-shrink: 0;
}

/* Vision Section */
.vision-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.vision-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.quote-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.vision-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 24px;
    font-style: italic;
}

.vision-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Reason Cards */
.reason-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.reason-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.reason-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(29, 84, 109, 0.06);
    line-height: 1;
}

.reason-icon {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.reason-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.reason-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    border: 1px solid #e5e7eb;
}

.contact-info-item i {
    font-size: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--dark-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for Organizer Page */
@media (max-width: 991px) {
    .expertise-timeline {
        margin-top: 20px;
    }

    .timeline-year {
        width: 70px;
        height: 70px;
        font-size: 13px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .vision-text {
        font-size: 26px;
    }

    .vision-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .organizer-badge {
        top: 15px;
        left: 15px;
        padding: 12px 16px;
    }

    .badge-number {
        font-size: 24px;
    }

    .badge-text {
        font-size: 11px;
    }

    .timeline-item {
        gap: 16px;
    }

    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }

    .timeline-item:not(:last-child)::before {
        left: 30px;
    }

    .expertise-item {
        padding: 24px 16px;
    }

    .expertise-number {
        font-size: 36px;
    }

    .vision-section {
        padding: 60px 0;
    }

    .vision-text {
        font-size: 22px;
    }

    .quote-icon {
        font-size: 36px;
    }

    .reason-number {
        font-size: 36px;
        top: 15px;
        right: 15px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



/* ===================================
   Additional CSS for Why Exhibit Page
   =================================== */

/* Highlight Stats */
.highlight-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.highlight-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--light-bg);
    padding: 20px 24px;
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
}

.highlight-stat-item i {
    font-size: 36px;
    color: var(--primary);
}

.highlight-stat-item h4 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1;
}

.highlight-stat-item p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.3;
}

/* Benefit Cards */
.benefit-card {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: rgba(29, 84, 109, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

/* Perk Cards */
.perk-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.perk-card:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.perk-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
    transition: var(--transition);
}

.perk-card:hover i {
    color: var(--white);
    transform: scale(1.15);
}

.perk-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    transition: var(--transition);
}

.perk-card:hover h5 {
    color: var(--white);
}

.perk-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
    transition: var(--transition);
}

.perk-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Space Cards */
.space-card {
    background-color: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.space-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.featured-space {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(29, 84, 109, 0.03) 0%, rgba(95, 149, 152, 0.03) 100%);
}

.space-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.space-size {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}

.space-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.space-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.space-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 10px;
}

.space-features i {
    color: var(--primary-light);
    font-size: 14px;
    flex-shrink: 0;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFB800;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-light);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: rgba(29, 84, 109, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

/* Responsive Design for Why Exhibit Page */
@media (max-width: 991px) {
    .highlight-stats {
        flex-direction: column;
        gap: 20px;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .highlight-stat-item {
        padding: 16px 20px;
    }

    .highlight-stat-item i {
        font-size: 28px;
    }

    .highlight-stat-item h4 {
        font-size: 24px;
    }

    .benefit-card {
        padding: 24px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .benefit-title {
        font-size: 18px;
    }

    .space-size {
        font-size: 36px;
    }

    .space-title {
        font-size: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }
}


/* ===================================
   Additional CSS for Why Visit Page
   =================================== */

/* Visitor Stats Mini */
.visitor-stats-mini {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.visitor-stat-item {
    text-align: center;
}

.visitor-stat-item h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.visitor-stat-item h4 i {
    font-size: 28px;
}

.visitor-stat-item p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    font-weight: 600;
}

/* Visitor Type Cards */
.visitor-type-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.visitor-type-card:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.visitor-type-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(29, 84, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.visitor-type-card:hover .visitor-type-icon {
    background-color: var(--white);
    transform: scale(1.1);
}

.visitor-type-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    transition: var(--transition);
}

.visitor-type-card:hover h5 {
    color: var(--white);
}

.visitor-type-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
    transition: var(--transition);
}

.visitor-type-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Category Showcase Cards */
.category-showcase-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
}

.category-showcase-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-showcase-card i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.category-showcase-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.category-showcase-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-showcase-card ul li {
    font-size: 14px;
    color: var(--gray);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.category-showcase-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
}

/* Value Proposition Cards */
.value-prop-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-prop-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-prop-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(29, 84, 109, 0.06);
    line-height: 1;
}

.value-prop-card i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.value-prop-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.value-prop-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* Registration Benefits */
.registration-benefits {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reg-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark);
}

.reg-benefit-item i {
    font-size: 20px;
    color: var(--primary-light);
    flex-shrink: 0;
}

/* Registration CTA Box */
.registration-cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.registration-cta-box i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.registration-cta-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.registration-cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.registration-cta-box .btn {
    background-color: var(--white);
    color: var(--primary);
    border: none;
}

.registration-cta-box .btn:hover {
    background-color: var(--light-bg);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Event Info Bar */
.event-info-bar {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.event-info-item i {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.8);
}

.event-info-item div {
    text-align: left;
}

.event-info-item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.event-info-item span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive Design for Why Visit Page */
@media (max-width: 991px) {
    .visitor-stats-mini {
        justify-content: center;
    }

    .event-info-bar {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .visitor-stat-item h4 {
        font-size: 24px;
        flex-direction: column;
        gap: 5px;
    }

    .visitor-stat-item h4 i {
        font-size: 24px;
    }

    .visitor-type-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .category-showcase-card {
        padding: 30px 24px;
    }

    .category-showcase-card i {
        font-size: 36px;
    }

    .value-prop-number {
        font-size: 32px;
    }

    .value-prop-card i {
        font-size: 36px;
    }

    .registration-cta-box {
        padding: 40px 30px;
    }

    .registration-cta-box i {
        font-size: 48px;
    }

    .registration-cta-box h3 {
        font-size: 24px;
    }

    .event-info-bar {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .event-info-item {
        justify-content: center;
    }

    .event-info-item div {
        text-align: center;
    }
}


/* ===================================
   Additional CSS for Gallery Page
   =================================== */

/* Gallery Tabs */
.gallery-tabs .nav-pills {
    gap: 16px;
}

.gallery-tabs .nav-link {
    background-color: var(--white);
    border: 2px solid #e5e7eb;
    color: var(--primary-dark);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.gallery-tabs .nav-link:hover {
    border-color: var(--primary);
    background-color: rgba(29, 84, 109, 0.05);
}

.gallery-tabs .nav-link.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Gallery Items */
.gallery-item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.gallery-placeholder {
    background: linear-gradient(135deg, rgba(29, 84, 109, 0.08) 0%, rgba(95, 149, 152, 0.08) 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 80px 30px;
    text-align: center;
    color: var(--gray);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder i {
    font-size: 56px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.gallery-placeholder p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
}

.gallery-caption {
    padding: 20px;
}

.gallery-caption h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.gallery-caption p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Video Gallery Items */
.video-gallery-item {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.video-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    padding: 20px;
}

.video-caption h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.video-caption p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Fact Cards */
.fact-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.fact-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fact-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(29, 84, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.fact-card:hover .fact-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.fact-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1;
}

.fact-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.fact-description {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* Social Media Cards */
.social-card {
    display: block;
    background-color: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    height: 100%;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.social-card i {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.social-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.social-card p {
    font-size: 14px;
    margin: 0;
}

/* YouTube */
.social-card:nth-child(1) {
    border-color: #FF0000;
}

.social-card:nth-child(1):hover {
    background-color: #FF0000;
    border-color: #FF0000;
}

.social-card:nth-child(1) i {
    color: #FF0000;
}

.social-card:nth-child(1):hover i,
.social-card:nth-child(1):hover h5,
.social-card:nth-child(1):hover p {
    color: var(--white);
}

/* Facebook */
.social-card:nth-child(2) {
    border-color: #1877F2;
}

.social-card:nth-child(2):hover {
    background-color: #1877F2;
    border-color: #1877F2;
}

.social-card:nth-child(2) i {
    color: #1877F2;
}

.social-card:nth-child(2):hover i,
.social-card:nth-child(2):hover h5,
.social-card:nth-child(2):hover p {
    color: var(--white);
}

/* Instagram */
.social-card:nth-child(3) {
    border-color: #E4405F;
}

.social-card:nth-child(3):hover {
    background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
    border-color: #E4405F;
}

.social-card:nth-child(3) i {
    color: #E4405F;
}

.social-card:nth-child(3):hover i,
.social-card:nth-child(3):hover h5,
.social-card:nth-child(3):hover p {
    color: var(--white);
}

/* LinkedIn */
.social-card:nth-child(4) {
    border-color: #0A66C2;
}

.social-card:nth-child(4):hover {
    background-color: #0A66C2;
    border-color: #0A66C2;
}

.social-card:nth-child(4) i {
    color: #0A66C2;
}

.social-card:nth-child(4):hover i,
.social-card:nth-child(4):hover h5,
.social-card:nth-child(4):hover p {
    color: var(--white);
}

/* Responsive Design for Gallery Page */
@media (max-width: 991px) {
    .gallery-tabs .nav-pills {
        flex-direction: column;
        gap: 12px;
    }

    .gallery-tabs .nav-link {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .gallery-placeholder {
        padding: 60px 20px;
        min-height: 200px;
    }

    .gallery-placeholder i {
        font-size: 42px;
    }

    .video-wrapper {
        padding-bottom: 56.25%;
    }

    .fact-card {
        padding: 30px 20px;
    }

    .fact-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .fact-number {
        font-size: 36px;
    }

    .social-card {
        padding: 35px 25px;
    }

    .social-card i {
        font-size: 40px;
    }
}


/* ===================================
   Additional CSS for Exhibitor Registration
   =================================== */

/* Booth Options */
.booth-option {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    transition: var(--transition);
}

.booth-option:last-child {
    border-bottom: none;
}

.booth-option:hover {
    background-color: rgba(29, 84, 109, 0.03);
}

.booth-option strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.booth-option p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.featured-booth {
    background-color: rgba(29, 84, 109, 0.05);
    border-left: 3px solid var(--primary);
}

.badge-popular {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 6px;
}

/* Responsive for Exhibitor Page */
@media (max-width: 767px) {
    .booth-option {
        padding: 14px;
    }
}



/* ===================================
   CSS for Contact Page
   =================================== */

/* Contact Form Wrapper */
.contact-form-wrapper {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Contact Info Cards */
.contact-info-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* WhatsApp Card */
.whatsapp-card .contact-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-card:hover {
    border-color: #25D366;
}

/* China Card */
.china-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
    border-color: #dc2626;
}

.china-card .contact-icon {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.china-card:hover {
    border-color: #dc2626;
}

/* Venue Info */
.venue-info {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.venue-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
}

.venue-detail {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.venue-detail:last-of-type {
    border-bottom: none;
}

.venue-detail i {
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.venue-detail strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.venue-detail p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* Map Wrapper */
.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Social Connect Cards */
.social-connect-card {
    display: block;
    background-color: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.social-connect-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.social-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    transition: var(--transition);
}

.social-connect-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: var(--transition);
}

.social-connect-card p {
    font-size: 14px;
    margin: 0;
    transition: var(--transition);
}

.social-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.social-connect-card:hover .social-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* YouTube Card */
.youtube-card {
    border-color: #FF0000;
}

.youtube-card:hover {
    background-color: #FF0000;
}

.youtube-card .social-icon-large {
    background-color: rgba(255, 0, 0, 0.1);
    color: #FF0000;
}

.youtube-card:hover .social-icon-large {
    background-color: var(--white);
    transform: scale(1.1);
}

.youtube-card:hover h5,
.youtube-card:hover p {
    color: var(--white);
}

.youtube-card .social-arrow {
    background-color: var(--white);
    color: #FF0000;
}

/* Facebook Card */
.facebook-card {
    border-color: #1877F2;
}

.facebook-card:hover {
    background-color: #1877F2;
}

.facebook-card .social-icon-large {
    background-color: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.facebook-card:hover .social-icon-large {
    background-color: var(--white);
    transform: scale(1.1);
}

.facebook-card:hover h5,
.facebook-card:hover p {
    color: var(--white);
}

.facebook-card .social-arrow {
    background-color: var(--white);
    color: #1877F2;
}

/* Instagram Card */
.instagram-card {
    border-color: #E4405F;
}

.instagram-card:hover {
    background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
}

.instagram-card .social-icon-large {
    background-color: rgba(228, 64, 95, 0.1);
    color: #E4405F;
}

.instagram-card:hover .social-icon-large {
    background-color: var(--white);
    transform: scale(1.1);
}

.instagram-card:hover h5,
.instagram-card:hover p {
    color: var(--white);
}

.instagram-card .social-arrow {
    background-color: var(--white);
    color: #E4405F;
}

/* LinkedIn Card */
.linkedin-card {
    border-color: #0A66C2;
}

.linkedin-card:hover {
    background-color: #0A66C2;
}

.linkedin-card .social-icon-large {
    background-color: rgba(10, 102, 194, 0.1);
    color: #0A66C2;
}

.linkedin-card:hover .social-icon-large {
    background-color: var(--white);
    transform: scale(1.1);
}

.linkedin-card:hover h5,
.linkedin-card:hover p {
    color: var(--white);
}

.linkedin-card .social-arrow {
    background-color: var(--white);
    color: #0A66C2;
}

/* FAQ Accordion */
.accordion-item {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    background-color: var(--white);
    padding: 20px 24px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-bg);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-button::after {
    background-size: 20px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(40%) saturate(1047%) hue-rotate(154deg) brightness(95%) contrast(89%);
}

.accordion-body {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    padding: 20px 24px;
}

.accordion-body a {
    color: var(--primary);
    text-decoration: none;
}

.accordion-body a:hover {
    text-decoration: underline;
}

/* Responsive Design for Contact Page */
@media (max-width: 991px) {
    .contact-form-wrapper,
    .venue-info {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper,
    .venue-info {
        padding: 24px;
    }

    .contact-form-wrapper h2 {
        font-size: 24px;
    }

    .contact-info-card {
        padding: 24px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .venue-info h3 {
        font-size: 22px;
    }

    .social-icon-large {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .social-connect-card {
        padding: 35px 25px;
    }

    .accordion-button {
        font-size: 15px;
        padding: 16px 20px;
    }

    .accordion-body {
        font-size: 13px;
        padding: 16px 20px;
    }
}

/* ===================================
   Registration Page Sidebar Fixes
   =================================== */
.info-sidebar-card .info-item {
    color: #0a1f2e !important;
}

.info-sidebar-card .info-item strong {
    color: #061E29 !important;
}

.info-sidebar-card .info-item p {
    color: #6b7280 !important;
}

.info-sidebar-card .info-item i {
    color: #1D546D !important;
}

.info-sidebar-card .info-item div {
    color: #0a1f2e !important;
}

.info-sidebar-card .info-item div strong {
    color: #061E29 !important;
    display: block;
    margin-bottom: 4px;
}

.info-sidebar-card .info-item div p {
    color: #6b7280 !important;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Additional specificity for nested elements */
.info-sidebar-card h4,
.info-sidebar-card h5 {
    color: #061E29 !important;
}

.info-sidebar-card p {
    color: #6b7280 !important;
}

/* Logo Image Styling */
.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .logo-image {
        height: 40px;
    }
}

/* Footer Logo Styling */
.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-organizer {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-organizer-logo {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .footer-logo-image {
        height: 50px;
    }
    
    .footer-organizer-logo {
        height: 40px;
    }
}
