/* ========================================
   EXHIBIT PAGE STYLES - CLEAN & ELEGANT
   ======================================== */

/* Global Variables */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #388E3C;
    --accent-color: #6b9b4f;
    --text-dark: #2d3748;
    --text-light: #718096;
    --background-light: #f7fafc;
    --white: #ffffff;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Exhibit Page */
.exhibit-page {
    position: relative;
}

/* Hero Section - React Component Format */
.exhibit-hero {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #f0fdf4, #ffffff);
    position: relative;
    overflow: hidden;
}

.exhibit-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.exhibit-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .exhibit-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Content Side */
.exhibit-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.exhibit-hero-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Badge Styling */
.exhibit-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #dcfce7;
    color: #15803d;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    width: fit-content;
}

/* Title Styling */
.exhibit-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #166534;
    line-height: 1.1;
    margin: 0;
}

.exhibit-title .solutions-text {
    color: #16a34a;
}

@media (min-width: 1024px) {
    .exhibit-title {
        font-size: 3rem;
    }
}

/* Description Container */
.marketplace-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.marketplace-description {
    color: #4b5563;
    line-height: 1.625;
    margin: 0;
}

.marketplace-description.lead {
    font-size: 1.125rem;
    color: #4b5563;
}

/* Buttons Container */
.hero-cta-section {
    margin-top: 1rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Primary Button */
.btn-cta-primary {
    background-color: #16a34a;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: none;
}

.btn-cta-primary:hover {
    background-color: #15803d;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
    color: white;
}

/* Secondary Button */
.btn-cta-secondary {
    border: 1px solid #16a34a;
    color: #16a34a;
    background-color: transparent;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    background-color: #f0fdf4;
    color: #16a34a;
}

/* Image Side */
.exhibit-hero-image {
    position: relative;
}

.exhibit-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.exhibit-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.exhibit-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 83, 45, 0.2), transparent);
}

/* Exhibit Event Info */
.exhibit-event-info {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.exhibit-event-date,
.exhibit-event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.exhibit-event-location {
    margin-bottom: 0;
}

.exhibit-event-date i,
.exhibit-event-location i {
    color: #16a34a;
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

.exhibit-event-date span,
.exhibit-event-location span {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Floating Stats Card */
.floating-stats-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 1.5rem;
    border: 1px solid #dcfce7;
}

.stats-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stats-card-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-card-icon-inner {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #16a34a;
    border-radius: 50%;
}

.stats-card-text .stats-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #166534;
    line-height: 1;
    margin: 0;
}

.stats-card-text .stats-label {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .exhibit-hero {
        min-height: auto;
    }
    
    .exhibit-hero .container {
        padding: 3rem 1.5rem;
    }
    
    .exhibit-hero-grid {
        gap: 2.5rem;
    }
    
    .exhibit-hero-content {
        order: 2;
        text-align: center;
    }
    
    .exhibit-hero-image {
        order: 1;
    }
    
    .exhibit-subtitle {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .floating-stats-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        margin-left: 0;
    }
    
    .exhibit-event-info {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 639px) {
    .exhibit-hero .container {
        padding: 2rem 1rem;
    }
    
    .exhibit-title {
        font-size: 2rem;
    }
    
    .marketplace-description.lead {
        font-size: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .floating-stats-card {
        padding: 1rem;
    }
    
    .stats-card-content {
        gap: 0.75rem;
    }
    
    .stats-card-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .stats-card-text .stats-year {
        font-size: 1.25rem;
    }
    
    .exhibit-event-info {
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
    }
    
    .exhibit-event-date span,
    .exhibit-event-location span {
        font-size: 0.8125rem;
    }
}

/* Section Layout */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}















/* Exhibition Experience Section - Match Conference Layout */
.exhibition-experience {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.experience-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(76, 175, 80, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--primary-color);
    font-size: 1.6rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(76, 175, 80, 0.1);
}

.experience-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.05);
    border-color: transparent;
}

.card-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.card-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Downloadable Files Section */
.downloadable-files {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #e9ecef 100%);
    position: relative;
}

.downloadable-files::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="files-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><rect x="15" y="10" width="10" height="12" fill="rgba(76,175,80,0.05)" rx="1"/><rect x="12" y="13" width="16" height="2" fill="rgba(76,175,80,0.08)"/><rect x="12" y="16" width="12" height="1" fill="rgba(76,175,80,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23files-pattern)"/></svg>');
    opacity: 0.4;
}

.files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.file-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
    overflow: hidden;
}

.file-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.file-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(76, 175, 80, 0.2);
}

.file-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.file-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.file-card:hover .file-icon::before {
    left: 100%;
}

.file-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.file-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: center;
    font-size: 0.95rem;
}

.file-download-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.file-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

.file-download-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    color: white;
}

.file-download-btn .btn-icon {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.file-download-btn:hover .btn-icon {
    transform: translateY(-2px);
}

/* Sponsors Section */
.exhibit-sponsors {
    padding: 6rem 0;
    background: var(--white);
}

.sponsors-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Static Sponsors Grid */
.sponsors-static-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sponsor-item-large {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-logo-large {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sponsor-logo-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sponsor-logo-large img {
    max-width: 95%;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.sponsor-logo-large:hover img {
    transform: scale(1.02);
}

/* Sponsor Logo Link Styles */
.sponsor-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.sponsor-logo-link:hover {
    text-decoration: none;
    color: inherit;
}

.sponsor-logo-link .sponsor-logo-image {
    max-width: 95%;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Simple hover effects for clickable logos */
.sponsor-logo-large:hover {
    cursor: pointer;
}

/* Sponsors Carousel Styles */
.sponsors-carousel-container {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 2rem;
}

.sponsors-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sponsors-slides-track {
    position: relative;
    width: 100%;
    height: auto;
}

.sponsors-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.sponsors-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: center;
    min-height: 280px;
}

.sponsor-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-logo {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: var(--transition);
}

/* Sponsors Carousel Navigation */
.sponsors-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.sponsors-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: var(--primary-color);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.sponsors-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.sponsors-btn:active {
    transform: scale(0.95);
}

/* Sponsors Slide Indicators */
.sponsors-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.sponsors-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(76, 175, 80, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sponsors-indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.sponsors-indicator:hover {
    background: rgba(76, 175, 80, 0.6);
    transform: scale(1.1);
}

/* Sponsors Slide Counter */
.sponsors-counter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.sponsors-placeholder {
    text-align: center;
    padding: 4rem 2rem;
}

.placeholder-content i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.placeholder-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Registration Section */
.exhibit-with-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #edf2f7 100%);
}

.registration-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: none;
    border: none;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    padding: 2rem 0 1rem 0;
}

/* Registration Types */
.registration-types {
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.type-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.type-option {
    position: relative;
}

.type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.type-card {
    display: block;
    background: var(--background-light);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.type-card:hover {
    border-color: var(--primary-color);
    background: #f0f8f4;
}

.type-option input[type="radio"]:checked + .type-card {
    border-color: var(--primary-color);
    background: #f0f8f4;
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.type-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.25rem;
}

.type-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.type-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.type-features span {
    background: rgba(44, 85, 48, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Contact Information */
.contact-information {
    margin-bottom: 2rem;
    padding: 0 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 2rem;
    padding: 0 2rem 2rem 2rem;
}

.form-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Call to Action Section */
.exhibit-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-content .hero-cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-content .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-content .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-content .btn-cta-primary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .exhibit-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .exhibit-hero-content {
        padding-right: 0;
        order: 2;
    }
    
    .exhibit-hero-image {
        order: 1;
    }
    
    .floating-stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        align-self: flex-start;
    }
    
    .type-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-types,
    .contact-information,
    .form-submit {
        padding: 0 1rem;
    }
    
    .form-section-title {
        padding: 1rem 0 0.5rem 0;
        font-size: 1.25rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .type-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/**
 * AFC Gallery Slideshow Styles
 */
.afc-gallery-slideshow {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.afc-gallery-slideshow .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.slides-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.slide:hover .slide-image img {
    transform: scale(1.05);
}

/* Navigation Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.slide-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #22c55e;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.slide-btn:hover {
    background: #22c55e;
    color: white;
    transform: scale(1.1);
}

.slide-btn:active {
    transform: scale(0.95);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #22c55e;
    transform: scale(1.2);
}

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

/* Slide Counter */
.slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    z-index: 10;
}

/* Loading Animation */
.slide-image img {
    opacity: 0;
    animation: fadeInImage 0.5s ease forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

/* Accessibility */
.slide-btn:focus,
.indicator:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

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

.slide-image img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-image img[loading="lazy"].loaded {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .afc-gallery-slideshow {
        padding: 40px 0;
    }
    
    .slideshow-wrapper {
        height: 350px;
    }
    
    .slideshow-container {
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slideshow-controls {
        padding: 0 15px;
    }
    
    .slide-indicators {
        bottom: 15px;
        gap: 6px;
        padding: 8px 12px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .slide-counter {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .afc-gallery-slideshow {
        padding: 30px 0;
    }
    
    .slideshow-wrapper {
        height: 280px;
    }
    
    .slideshow-container {
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .slide-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slideshow-controls {
        padding: 0 10px;
    }
    
    .slide-indicators {
        gap: 5px;
        padding: 6px 10px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

/**
 * Exhibit Page Specific Styles
 */

/* Exhibit Hero Section Enhancements */
.exhibit-hero {
    position: relative;
}

.exhibit-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.exhibit-hero-content {
    padding-right: 20px;
}

.exhibit-hero-image {
    position: relative;
}

.exhibit-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.exhibit-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
}

/* Floating Stats Card */
.floating-stats-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-card-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stats-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-card-icon-inner {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
}

.stats-year {
    font-size: 18px;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
}

.stats-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Download Files Section */
.downloadable-files {
    background: #f9fafb;
}

.file-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.file-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.file-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.file-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.file-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #22c55e;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.file-download-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.file-download-btn .btn-icon {
    font-size: 14px;
}

/* Registration Form Enhancements */
.exhibit-registration-form {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.registration-types {
    margin-bottom: 40px;
}

.form-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

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

.type-option input[type="radio"] {
    display: none;
}

.type-card {
    display: block;
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.type-card:hover {
    border-color: #22c55e;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.1);
}

.type-option input[type="radio"]:checked + .type-card {
    border-color: #22c55e;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
}

.type-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.type-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.type-content p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
}

.type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.type-features span {
    background: #e5e7eb;
    color: #6b7280;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.type-option input[type="radio"]:checked + .type-card .type-features span {
    background: #dcfce7;
    color: #16a34a;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
}

.form-note {
    margin-top: 15px;
    color: #6b7280;
    font-size: 14px;
}

/* Mobile Responsive Adjustments - Form and Hero */
@media (max-width: 768px) {
    .exhibit-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .exhibit-hero-content {
        padding-right: 0;
        order: 2;
    }
    
    .exhibit-hero-image {
        order: 1;
    }
    
    .floating-stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        align-self: flex-start;
    }
    
    .type-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-types,
    .contact-information,
    .form-submit {
        padding: 0 1rem;
    }
    
    .form-section-title {
        padding: 1rem 0 0.5rem 0;
        font-size: 1.25rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .type-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}



/* ========================================
   ADDITIONAL RESPONSIVE IMPROVEMENTS
   ======================================== */

/* Ensure other sections are also responsive */
@media (max-width: 768px) {
    /* General section improvements for mobile */
    
    /* Exhibition Experience responsive */
    .exhibition-experience .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .exhibition-experience .experience-card {
        padding: 1.5rem;
    }
    
    .exhibition-experience .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .exhibition-experience .card-title {
        font-size: 1.2rem;
    }
    
    .exhibition-experience .card-description {
        font-size: 0.9rem;
    }
    
    /* Downloadable files responsive */
    .downloadable-files .files-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .downloadable-files .file-card {
        padding: 1.5rem;
    }
    
    /* Static sponsors grid responsive */
    .sponsors-static-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .sponsor-logo-large {
        height: 150px;
        padding: 2rem;
    }
    
    .sponsor-logo-large img {
        max-width: 95%;
        max-height: 100px;
    }
    
    .sponsor-logo-link .sponsor-logo-image {
        max-width: 95%;
        max-height: 100px;
    }
    
    /* Legacy carousel styles (keep for compatibility) */
    .sponsors-carousel-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1rem;
        min-height: 240px;
    }
    
    .sponsor-logo {
        height: 80px;
        padding: 1rem;
    }
    
    .sponsor-logo img {
        max-height: 50px;
    }
    
    .sponsors-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .sponsors-carousel-controls {
        padding: 0 0.5rem;
    }
    
    .sponsors-counter {
        top: 0.5rem;
        right: 0.5rem;
        padding: 4px 8px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    /* Further mobile optimizations */
    .exhibition-experience .experience-grid,
    .downloadable-files .files-grid {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .exhibition-experience .experience-card,
    .downloadable-files .file-card {
        padding: 1rem;
    }
    
    /* Static sponsors grid - very small screens */
    .sponsors-static-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
        margin: 0 0.5rem;
    }
    
    .sponsor-logo-large {
        height: 120px;
        padding: 1.5rem;
    }
    
    .sponsor-logo-large img {
        max-width: 95%;
        max-height: 70px;
    }
    
    .sponsor-logo-link .sponsor-logo-image {
        max-width: 95%;
        max-height: 70px;
    }
    
    /* Legacy carousel - very small screens */
    .sponsors-carousel-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 0.75rem;
        min-height: 320px;
    }
    
    .sponsor-logo {
        height: 70px;
        padding: 0.75rem;
    }
    
    .sponsor-logo img {
        max-height: 40px;
    }
    
    .sponsors-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .sponsors-carousel-controls {
        padding: 0 0.25rem;
    }
    
    .sponsors-indicators {
        gap: 6px;
        margin-top: 1rem;
    }
    
    .sponsors-indicator {
        width: 8px;
        height: 8px;
    }
    
    /* Container padding adjustments */
    .exhibition-experience .container,
    .downloadable-files .container,
    .exhibit-sponsors .container,
    .exhibit-with-us .container,
    .exhibit-cta .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
} 