/* ========================================
   PDAC 2026 - Modern Responsive Styles
   Color Palette from vector.jpg:
   - Primary: #31aad7 (turquoise)
   - Secondary: #a6def7 (light blue)
   - Accent: #89d4f3 (medium blue)
   - Background: #ffffff (white)
======================================== */

/* ========== CSS Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #31aad7;
    --secondary-color: #a6def7;
    --accent-color: #89d4f3;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #f0f8fb;
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    --shadow-sm: 0 2px 4px rgba(49, 170, 215, 0.08);
    --shadow-md: 0 4px 12px rgba(49, 170, 215, 0.12);
    --shadow-lg: 0 8px 24px rgba(49, 170, 215, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Top Bar ========== */
.top-bar {
    background: #3a3a3a;
    color: white;
    padding: 8px 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.top-bar-links a:hover {
    color: var(--primary-color);
}

.top-bar-links .separator {
    opacity: 0.5;
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-links a {
    color: white;
    font-size: 16px;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ========== Hero with Mountain Background ========== */
.hero-mountain {
    position: relative;
    background-image: url('images/vector.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    min-height: 600px;
    padding: 80px 0 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(58, 58, 58, 0.95) 0%, 
        rgba(58, 58, 58, 0.85) 40%, 
        rgba(58, 58, 58, 0.70) 70%,
        rgba(58, 58, 58, 0.50) 100%);
    z-index: 1;
}

.hero-content-main {
    position: relative;
    z-index: 2;
}

/* ========== Logo and Carousel Section ========== */
.logo-carousel-section {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.pavilion-logo {
    text-align: center;
    flex-shrink: 0;
}

.pavilion-logo-img {
    width: 350px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.pavilion-subtitle {
    color: white;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* ========== Companies Carousel ========== */
.companies-carousel {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 380px;
    height: 380px;
    flex-shrink: 0;
}

.carousel-container {
    overflow: hidden;
    width: 380px;
    height: 380px;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.carousel-item img {
    max-width: 380px;
    max-height: 380px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer !important;
    transition: opacity 0.3s ease;
}

.carousel-link:hover {
    opacity: 0.8;
}

.carousel-link:hover img {
    cursor: pointer !important;
}

.carousel-link img {
    pointer-events: none;
}

.carousel-item.placeholder {
    min-height: 380px;
    width: 380px;
    height: 380px;
}

.company-placeholder {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none; /* Hidden to avoid overlapping with images */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

/* ========== Hero Search Box ========== */
.hero-search-box {
    max-width: 900px;
    margin: 0 auto;
}

.hero-search-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-search-box .search-box {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* ========== Filters Section ========== */
.filters-section {
    background: white;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.event-subtitle {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    margin: 2px 0;
}

.event-dates {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.85;
    margin: 2px 0;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-medium);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-lighter);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-text {
    background: transparent;
    color: var(--primary-color);
    padding: 8px 16px;
    font-weight: 500;
}

.btn-text:hover {
    background: var(--bg-lighter);
}

.btn-block {
    width: 100%;
}

/* ========== OLD Hero Section (Commented - now using hero-mountain) ========== */
/* .hero {
    background: linear-gradient(135deg, var(--bg-lighter) 0%, white 100%);
    padding: 60px 0;
    text-align: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
} */

/* ========== Search Box (now used in hero) ========== */
.search-box {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 16px 52px 16px 52px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--bg-white);
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(49, 170, 215, 0.1);
}

.clear-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.clear-btn:hover {
    background: var(--border-color);
    color: var(--text-dark);
}

.filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
}

.filter-select {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filter-select:hover {
    border-color: var(--accent-color);
}

/* ========== Stats Section ========== */
.stats {
    background: white;
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, white 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== Main Content ========== */
.main-content {
    padding: 48px 0 80px;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

/* ========== Events Section ========== */
.events-section {
    min-width: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

.results-count {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.events-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Day Group */
.day-group {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.day-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .day-header.special-day {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
} */

.day-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.day-date {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.special-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.events-list {
    padding: 0;
}

/* Event Card */
.event-card {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.event-card:last-child {
    border-bottom: none;
}

.event-card:hover {
    background: var(--bg-lighter);
    padding-left: 36px;
}

.event-header {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.event-time {
    min-width: 120px;
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
    background: var(--bg-lighter);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-color);
}

.time-start {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.time-end {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.event-subtitle {
    font-size: 14px;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 8px;
}

.event-description {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 8px;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 6px;
}

.meta-item svg {
    width: 14px;
    height: 14px;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
}

.tag.access-invitation {
    background: #fef3c7;
    color: #92400e;
}

.tag.access-ticketed {
    background: #fee2e2;
    color: #991b1b;
}

.tag.access-reserved {
    background: #e0e7ff;
    color: #3730a3;
}

.event-link {
    margin-top: 12px;
}

.event-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.event-link a:hover {
    color: var(--accent-color);
    gap: 8px;
}

.participants-list {
    margin-top: 8px;
    padding-left: 20px;
}

.participants-list li {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.no-results-icon {
    color: var(--border-color);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.no-results p {
    font-size: 16px;
    color: var(--text-light);
}

/* ========== Sidebar ========== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.info-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.price-tag {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, white 100%);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 2px solid var(--secondary-color);
}

.price-amount {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.benefits-list {
    list-style: none;
    margin-bottom: 24px;
}

.benefits-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.5;
    border-bottom: 1px solid var(--border-light);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

.exhibitors-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.exhibitor-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exhibitor-item:last-child {
    border-bottom: none;
}

.exhibitor-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.exhibitor-stand {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 4px 8px;
    background: var(--bg-lighter);
    border-radius: 4px;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 14px;
}

.quick-link:hover {
    background: var(--bg-lighter);
    color: var(--primary-color);
    padding-left: 16px;
}

.quick-link svg {
    color: var(--primary-color);
}

.schedule-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-lighter);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.schedule-row:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-lighter) 100%);
}

.schedule-day {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.schedule-time {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
}

/* ========== Modal ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-light);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.modal-close {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.modal-body {
    padding: 32px;
    overflow-y: auto;
}

.exhibitors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.exhibitor-card {
    padding: 16px;
    background: var(--bg-lighter);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.exhibitor-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.exhibitor-card .exhibitor-name {
    font-size: 15px;
    margin-bottom: 8px;
}

/* ========== Footer ========== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 48px 0 24px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 40px;
}

.footer-text {
    margin: 12px 0;
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

/* ========== Back to Top Button ========== */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(49, 170, 215, 0.25);
}

/* ========== Mobile Quick Access Menu ========== */
.mobile-quick-menu {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.mobile-menu-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu-item:hover {
    background: var(--bg-lighter);
    color: var(--primary-color);
}

.mobile-menu-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
    .content-layout {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 16px 0;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .logo {
        height: 48px;
    }

    .logo-carousel-section {
        flex-direction: column;
        gap: 30px;
    }

    .pavilion-logo {
        max-width: 100%;
    }

    .event-title {
        font-size: 24px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .search-section {
        padding: 24px 0;
    }

    .filters {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .filter-select {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .event-header {
        flex-direction: column;
        gap: 12px;
    }

    .event-time {
        min-width: auto;
        width: fit-content;
    }

    .day-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-title {
        font-size: 24px;
    }

    .exhibitors-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
    }

    /* New Hero Mountain Responsive */
    .hero-mountain {
        min-height: 500px;
        padding: 40px 0 40px;
    }

    .logo-carousel-section{
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .pavilion-logo-img {
        max-width: 280px;
    }

    .companies-carousel {
        padding: 0;
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .carousel-container {
        width: 280px;
        height: 280px;
    }

    .carousel-item {
        width: 280px;
        height: 280px;
        min-width: 280px;
        padding: 0;
    }

    .carousel-item img {
        max-width: 280px;
        max-height: 280px;
    }

    .carousel-item.placeholder {
        min-height: 280px;
        width: 280px;
        height: 280px;
    }

    .hero-search-title {
        font-size: 24px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Show Mobile Quick Menu */
    .mobile-quick-menu {
        display: block;
    }

    /* Adjust Back to Top for mobile */
    .back-to-top {
        bottom: 90px;
        right: 16px;
        width: 45px;
        height: 45px;
    }
}

/* Media Query for iPhone XR and similar devices (375px - 480px) */
@media (max-width: 480px) and (min-width: 376px) {
    .container {
        padding: 0 16px;
    }

    .logo-carousel-section {
        gap: 30px;
        margin-bottom: 30px;
    }

    .companies-carousel {
        padding: 0;
        width: 270px;
        height: 270px;
        margin: 0 auto;
    }

    .carousel-container {
        width: 270px;
        height: 270px;
    }

    .carousel-item {
        width: 270px;
        height: 270px;
        min-width: 270px;
        padding: 0;
    }

    .carousel-item img {
        max-width: 270px;
        max-height: 270px;
    }

    .carousel-item.placeholder {
        min-height: 270px;
        width: 270px;
        height: 270px;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .carousel-nav.prev {
        left: 5px;
    }

    .carousel-nav.next {
        right: 5px;
    }
}

/* Media Query for small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .event-title {
        font-size: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .info-card {
        padding: 20px;
    }

    .price-amount {
        font-size: 36px;
    }

    /* New Hero Mountain Mobile */
    .hero-mountain {
        min-height: 450px;
        padding: 30px 0;
    }

    .logo-carousel-section {
        gap: 25px;
        margin-bottom: 25px;
    }

    .pavilion-logo-img {
        max-width: 220px;
    }

    .companies-carousel {
        padding: 0;
        width: 240px;
        height: 240px;
        margin: 0 auto;
    }

    .carousel-container {
        width: 240px;
        height: 240px;
    }

    .carousel-item {
        width: 240px;
        height: 240px;
        min-width: 240px;
        padding: 0;
    }

    .carousel-item img {
        max-width: 240px;
        max-height: 240px;
    }

    .carousel-item.placeholder {
        min-height: 240px;
        width: 240px;
        height: 240px;
    }

    .carousel-nav {
        width: 32px;
        height: 32px;
    }

    .carousel-nav.prev {
        left: 3px;
    }

    .carousel-nav.next {
        right: 3px;
    }

    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }

    .hero-search-title {
        font-size: 20px;
    }

    .top-bar {
        font-size: 11px;
    }
}

/* ========== Scrollbar Styling ========== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ========== Loading Animation ========== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ========== Print Styles ========== */
@media print {
    .header,
    .search-section,
    .sidebar,
    .footer {
        display: none;
    }

    .event-card {
        page-break-inside: avoid;
    }
}
