/*
Theme Name: Zimbabwe Business Expo 2026
Theme URI: https://zimbabwebusinessexpo.com
Author: Tarooh.G
Author URI: https://zimbabwebusinessexpo.com
Description: A professional WordPress theme for the Zimbabwe Business Expo - connecting Zimbabwe with the global diaspora to drive trade, investment, and enterprise.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zim-business-expo
Tags: business, expo, events, conference, one-page, custom-logo, custom-menu, featured-images

Zimbabwe Business Expo Theme - Where Zimbabwe's Economic Momentum Comes Alive
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary-color: #E83338;
    --primary-dark: #c42a2e;
    --secondary-color: #3A5AA6;
    --accent-color: #2E603D;
    --highlight-color: #FBDA25;
    --text-dark: #222222;
    --text-light: #ffffff;
    --text-muted: #555555;
    --bg-light: #f5f7fa;
    --bg-dark: #2a3d70;
    --success-green: #2E603D;
    --border-color: #dce3ed;
    --shadow: 0 4px 6px rgba(58, 90, 166, 0.1);
    --shadow-lg: 0 10px 25px rgba(58, 90, 166, 0.18);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-color);
}

.hero-section .highlight,
.stats-section .highlight,
.newsletter-section .highlight,
.site-footer .highlight {
    color: var(--highlight-color);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--secondary-color);
}

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

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background-color: #1e3366;
    box-shadow: 0 4px 12px rgba(30, 51, 102, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-logo img {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-logo a {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.main-navigation ul {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--highlight-color);
    transition: var(--transition);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: var(--transition);
}

/* ==========================================================================
   Hero — South Africa Zimbabwe Business Expo
   ========================================================================== */
/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero-expo {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: #0a1628;
    color: #fff;
    overflow: hidden;
}

/* Ambient light overlay applied to each slide via .hero-slide__overlay */

/* Geometric decorative element */
.hero-expo__geometric {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-expo__geometric::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(251,218,37,0.06);
    border-radius: 50%;
}

.hero-expo__geometric::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 50%;
}

/* ── Main body ── */
.hero-expo__body {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 50px;
}

/* ── Content block (centered) ── */
.hero-expo__content {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

/* Eyebrow / countries */
.hero-expo__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.hero-expo__eyebrow-line {
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251,218,37,0.6), transparent);
}

.hero-expo__eyebrow-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.6);
}

/* Main title */
.hero-expo__title {
    font-size: 5.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 1;
    margin: 0 0 32px;
    color: #fff;
    text-shadow: 0 0 80px rgba(46,96,61,0.5);
    white-space: nowrap;
}

.hero-expo__highlight {
    background: linear-gradient(135deg, #FBDA25 0%, #f0c800 50%, #FBDA25 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-expo__highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FBDA25, #f0c800);
    border-radius: 3px;
    opacity: 0.4;
}

/* Theme text */
.hero-expo__theme {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    margin: 0 0 28px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tags */
.hero-expo__tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-expo__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.hero-expo__tag i {
    font-size: 0.35rem;
    color: var(--highlight-color);
}

.hero-expo__tag:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(251,218,37,0.3);
    color: #fff;
    transform: translateY(-2px);
}

/* CTA Buttons */
.hero-expo__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-expo__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-expo__btn--primary {
    background: linear-gradient(135deg, #2E603D, #3a7d4f);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(46,96,61,0.4);
}

.hero-expo__btn--primary:hover {
    background: linear-gradient(135deg, #3a7d4f, #48956a);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46,96,61,0.5);
    color: #fff;
}

.hero-expo__btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-expo__btn--ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    transform: translateY(-3px);
}

/* ==========================================================================
   BOTTOM INFO STRIP
   ========================================================================== */
.hero-expo__strip {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-expo__strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hero-expo__strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.hero-expo__strip-item > i {
    font-size: 1.1rem;
    color: var(--highlight-color);
    flex-shrink: 0;
}

.hero-expo__strip-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-expo__strip-item span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1px;
}

.hero-expo__strip-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* Countdown in strip */
.hero-expo__strip-countdown {
    flex-shrink: 0;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 6px;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    background: rgba(0,0,0,0.3);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 48px;
    border: 1px solid rgba(251,218,37,0.15);
}

.countdown-label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
}

.countdown-sep {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.hero-slide--active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* When slide has background image */
.hero-slide[style*="background-image"] .hero-slide__overlay {
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(14,60,32,0.88) 50%, rgba(10,22,40,0.92) 100%);
}

/* When slide has no background image */
.hero-slide:not([style*="background-image"]) .hero-slide__overlay {
    background: linear-gradient(135deg, #0a1628 0%, #0e3c20 40%, #14532d 60%, #0e3c20 80%, #0a1628 100%);
}

.hero-slide .hero-expo__body {
    position: relative;
    z-index: 2;
}

.hero-slide .hero-expo__strip {
    position: relative;
    z-index: 2;
}

/* Slider navigation */
.hero-slider__nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: auto;
}

.hero-slider__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider__arrow:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

.hero-slider__dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider__dot--active {
    background: var(--highlight-color);
    width: 28px;
    border-radius: 5px;
}

.hero-slider__dot:hover:not(.hero-slider__dot--active) {
    background: rgba(255,255,255,0.6);
}

/* Progress bar on active slide */
.hero-slide--active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--highlight-color);
    z-index: 3;
    animation: heroSlideProgress 6s linear forwards;
    pointer-events: none;
}

@keyframes heroSlideProgress {
    from { width: 0; }
    to { width: 100%; }
}

/* Hero Banner Image */
.hero-banner-image {
    width: 100%;
    line-height: 0;
}

.hero-banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Action Tabs Section
   ========================================================================== */
.action-tabs {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.tabs-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tab-card {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tab-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tab-card .tab-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tab-card:nth-child(2) .tab-icon {
    background-color: var(--secondary-color);
}

.tab-card:nth-child(3) .tab-icon {
    background-color: var(--accent-color);
}

.tab-card .tab-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.tab-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.tab-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.tab-card .btn {
    width: 100%;
}

/* ==========================================================================
   Success by Numbers Section
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, #2d4a8a, #3A5AA6, #2E603D);
    color: var(--text-light);
    padding: 50px 0;
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats-header h2 {
    color: var(--text-light);
}

.stats-header p {
    color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--highlight-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ==========================================================================
   About / Description Section
   ========================================================================== */
.about-section {
    padding: 100px 0;
}

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

.about-text .section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
}

.about-text h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.about-media {
    position: relative;
}

.about-media img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    background-color: #000;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--highlight-color);
}

.video-play-btn:hover i {
    color: var(--text-dark);
}

.video-play-btn i {
    color: var(--text-light);
    font-size: 2rem;
    margin-left: 5px;
}

/* ==========================================================================
   Programme Highlights Section
   ========================================================================== */
.highlights-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.highlight-card {
    background-color: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.highlight-image {
    height: 200px;
    overflow: hidden;
}

.highlight-icon-bg {
    background: linear-gradient(135deg, #3A5AA6, #2E603D);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon-bg i {
    font-size: 4rem;
    color: var(--highlight-color);
}

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

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

.highlight-content {
    padding: 25px;
}

.highlight-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.highlight-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Speakers Section
   ========================================================================== */
.speakers-section {
    padding: 100px 0;
}

.speakers-year-group + .speakers-year-group {
    margin-top: 60px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.speaker-card {
    text-align: center;
    transition: var(--transition);
}

.speaker-card:hover {
    transform: translateY(-10px);
}

.speaker-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--border-color);
    transition: var(--transition);
}

.speaker-card:hover .speaker-image {
    border-color: var(--primary-color);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-info h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.speaker-info .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.speaker-info .company {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.partners-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.partners-subtitle p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--text-light);
    border-radius: 10px;
    transition: var(--transition);
    min-height: 100px;
}

.partner-logo:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.partner-logo img {
    max-height: 60px;
    transition: var(--transition);
}

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

/* ==========================================================================
   Upcoming Expos Section
   ========================================================================== */
.expos-section {
    padding: 100px 0;
}

.expos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expo-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.expo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.expo-flag {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
}

.expo-content {
    padding: 25px;
    background-color: var(--text-light);
}

.expo-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.expo-date {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.expo-location {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.expo-location i {
    color: var(--primary-color);
}

/* ==========================================================================
   Newsletter / Join Community Section
   ========================================================================== */
.newsletter-section {
    background: linear-gradient(135deg, #E83338, #c42a2e);
    color: var(--text-light);
    padding: 80px 0;
}

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

.newsletter-content h2 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.newsletter-content h2 .highlight {
    color: var(--highlight-color);
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid var(--primary-color);
}

.newsletter-form button {
    padding: 15px 40px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #1e3366;
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--primary-color);
}

.footer-contact h4 {
    color: var(--highlight-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.footer-contact ul li i {
    color: var(--highlight-color);
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact ul li a:hover {
    color: var(--primary-color);
}

.footer-brand img {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-brand p {
    margin: 20px 0;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--highlight-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-newsletter button {
    width: 100%;
    padding: 12px 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    opacity: 0.8;
}

/* ==========================================================================
   Exhibit Page Styles
   ========================================================================== */
.exhibit-hero {
    background: linear-gradient(135deg, #3A5AA6, #2E603D);
    color: var(--text-light);
    padding: 160px 0 90px;
    text-align: center;
}

.exhibit-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.exhibit-hero-label {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.exhibit-hero-desc {
    max-width: 750px;
    margin: 0 auto 35px;
    font-size: 1.15rem;
    opacity: 0.92;
    line-height: 1.7;
}

.exhibit-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.pricing-card.bronze .pricing-tier { color: #cd7f32; }
.pricing-card.silver .pricing-tier { color: #c0c0c0; }
.pricing-card.gold .pricing-tier { color: #ffd700; }

.pricing-price {
    margin-bottom: 20px;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.pricing-price .vat {
    font-size: 1rem;
    color: var(--text-muted);
}

.earlybird-price {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.earlybird-price span {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li i {
    color: var(--success-green);
    margin-top: 4px;
}

.reasons-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.reason-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reason-card h4 i {
    color: var(--primary-color);
}

.reason-card ul li {
    padding: 8px 0;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.reason-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 16px;
}

/* ==========================================================================
   Exhibit Page - Reason Icons Grid
   ========================================================================== */
.exhibit-reasons-icons {
    padding: 80px 0;
}

.reasons-icons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
}

.reason-icon-item {
    padding: 20px 10px;
}

.reason-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.reason-icon-item:nth-child(2) .reason-icon-circle { background-color: var(--primary-color); }
.reason-icon-item:nth-child(3) .reason-icon-circle { background-color: var(--accent-color); }
.reason-icon-item:nth-child(4) .reason-icon-circle { background-color: #3A5AA6; }
.reason-icon-item:nth-child(5) .reason-icon-circle { background-color: var(--primary-color); }
.reason-icon-item:nth-child(6) .reason-icon-circle { background-color: var(--accent-color); }

.reason-icon-circle i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.reason-icon-item h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 8px;
}

.reason-icon-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.reason-icon-item:hover .reason-icon-circle {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Exhibit Page - Pricing Enhancements
   ========================================================================== */
.earlybird-amount {
    font-size: 1.5rem;
    color: var(--secondary-color);
    display: block;
    margin-top: 5px;
}

.earlybird-vat {
    font-size: 0.9rem;
}

.earlybird-note {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing-note {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.sponsor-amount {
    font-size: 1.6rem;
}

/* ==========================================================================
   Exhibit Page - Contact Form
   ========================================================================== */
.exhibit-contact-section {
    background: linear-gradient(135deg, #3A5AA6, #1e3366);
    color: var(--text-light);
}

.exhibit-form-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.exhibit-form {
    background: var(--text-light);
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.exhibit-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.exhibit-form .form-group {
    margin-bottom: 20px;
}

.exhibit-form label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.exhibit-form input,
.exhibit-form select,
.exhibit-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.exhibit-form input:focus,
.exhibit-form select:focus,
.exhibit-form textarea:focus {
    border-color: var(--secondary-color);
    outline: 2px solid rgba(58, 90, 166, 0.2);
}

.exhibit-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #1e3366, #3A5AA6, #2E603D);
    color: var(--text-light);
    padding: 160px 0 120px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 800;
}

.contact-hero-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--highlight-color);
    margin-bottom: 10px;
}

.contact-hero-desc {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Form Card */
.contact-form-section {
    margin-top: -60px;
    position: relative;
    z-index: 5;
    padding-bottom: 60px;
}

.contact-form-card {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.contact-form-card-header {
    background: linear-gradient(135deg, #1e3366, #3A5AA6);
    padding: 35px 40px;
    text-align: center;
    position: relative;
}

.contact-form-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--highlight-color);
    border-radius: 2px;
}

.contact-form-card-header h2 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-card-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.contact-form-card-body {
    padding: 40px;
}

.contact-page-form .form-group {
    margin-bottom: 22px;
}

.contact-page-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding-left: 2px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 10px;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    background: #f8fafc;
    transition: var(--transition);
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
    color: #a0aec0;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 90, 166, 0.1);
    background: #fff;
}

.contact-page-form textarea {
    resize: vertical;
    min-height: 130px;
}

.btn-contact-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1e3366, #3A5AA6);
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 51, 102, 0.3);
}

.contact-form-message {
    margin-top: 15px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    display: none;
}

.contact-form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info Cards */
.contact-cards-section {
    padding-top: 20px;
    padding-bottom: 80px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--text-light);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.contact-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--highlight-color));
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 8px 20px rgba(58, 90, 166, 0.25);
}

.contact-card-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.contact-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 700;
}

.contact-card-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.6;
}

.contact-card-details a {
    color: var(--primary-color);
    font-weight: 600;
    word-break: break-all;
    transition: var(--transition);
}

.contact-card-details a:hover {
    color: var(--secondary-color);
}

.contact-card-hours {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #edf2f7;
}

.contact-card-hours small {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.contact-social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 5px;
}

.contact-social-links a {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.95rem;
}

.contact-social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(58, 90, 166, 0.3);
    color: var(--text-light);
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-hero {
    background: linear-gradient(135deg, #3A5AA6, #2E603D);
    color: var(--text-light);
    padding: 160px 0 90px;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Company Story */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content h2,
.about-story-content h3 {
    color: var(--secondary-color);
}

.about-story-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

.about-story-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

.about-story-placeholder {
    background: linear-gradient(135deg, #3A5AA6, #2E603D);
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-story-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Vision & Mission Cards */
.vm-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vm-card {
    background: var(--text-light);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vm-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vm-card-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.vm-card-type {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.vm-type-vision {
    background-color: rgba(58, 90, 166, 0.1);
    color: var(--secondary-color);
}

.vm-type-mission {
    background-color: rgba(232, 51, 56, 0.1);
    color: var(--primary-color);
}

.vm-type-value {
    background-color: rgba(46, 96, 61, 0.1);
    color: var(--accent-color);
}

.vm-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.vm-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Team Grid */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-team-card {
    background: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.about-team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.about-team-photo {
    height: 260px;
    overflow: hidden;
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-team-card:hover .about-team-photo img {
    transform: scale(1.05);
}

.about-team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3A5AA6, #2E603D);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-team-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.about-team-info {
    padding: 25px 20px;
}

.about-team-info h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.about-team-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.about-team-bio {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-team-bio p {
    margin-bottom: 0;
}

.about-team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.about-team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
    font-size: 0.9rem;
}

.about-team-social a:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Testimonials Grid */
.about-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-testimonial-card {
    background: var(--text-light);
    border-radius: 10px;
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.about-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-testimonial-quote {
    margin-bottom: 15px;
}

.about-testimonial-quote i {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.2;
}

.about-testimonial-content {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.about-testimonial-content p {
    margin-bottom: 0;
}

.about-testimonial-stars {
    margin-bottom: 20px;
}

.about-testimonial-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.about-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.about-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.about-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-testimonial-author-info h5 {
    color: var(--secondary-color);
    margin-bottom: 2px;
    font-size: 1rem;
}

.about-testimonial-author-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #E83338, #c42a2e);
    color: var(--text-light);
    padding: 80px 0;
}

.about-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-content h2 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-cta-content p {
    opacity: 0.92;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Front Page — Stats Bar
   ========================================================================== */
.fp-stats-bar {
    background: linear-gradient(135deg, #2d4a8a, #3A5AA6, #2E603D);
    color: var(--text-light);
    padding: 40px 0;
    border-top: 4px solid var(--highlight-color);
    border-bottom: 4px solid var(--highlight-color);
}

.fp-stats-heading {
    text-align: center;
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 30px;
}

.fp-stats-heading .highlight {
    color: var(--highlight-color);
}

.fp-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.fp-stat-item {
    padding: 15px;
}

.fp-stats-bar .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 8px;
}

.fp-stats-bar .stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ==========================================================================
   Front Page — Exhibitor Application Form
   ========================================================================== */
.fp-form-section {
    background-color: var(--bg-light);
}

.fp-form-layout {
    display: flex;
    align-items: stretch;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.fp-form-image {
    flex: 1;
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.fp-form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-form-wrapper {
    flex: 1;
    min-width: 0;
}

.fp-exhibitor-form {
    background: var(--text-light);
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.fp-exhibitor-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fp-exhibitor-form .form-group {
    margin-bottom: 20px;
}

.fp-exhibitor-form label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.fp-exhibitor-form input,
.fp-exhibitor-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.fp-exhibitor-form input:focus,
.fp-exhibitor-form select:focus {
    border-color: var(--secondary-color);
    outline: 2px solid rgba(58, 90, 166, 0.2);
}

.fp-radio-group {
    display: flex;
    gap: 25px;
    padding-top: 8px;
}

.fp-radio,
.fp-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.fp-radio input,
.fp-checkbox input {
    width: auto;
    margin: 0;
}

.fp-exhibitor-form .btn {
    width: 100%;
    margin-top: 10px;
}

.fp-form-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 0.95rem;
    display: none;
}

.fp-form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.fp-form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==========================================================================
   Front Page — Sponsorship Tiers
   ========================================================================== */
.fp-tiers-section {
    background-color: var(--text-light);
}

.fp-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.fp-tier-card {
    background: var(--text-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.fp-tier-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fp-tier-featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.fp-tier-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.fp-tier-featured .fp-tier-badge {
    background: var(--primary-color);
}

.fp-tier-title {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.fp-tier-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.fp-tier-benefits {
    text-align: left;
    margin-bottom: 25px;
    flex-grow: 1;
}

.fp-tier-benefits li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.fp-tier-benefits li:last-child {
    border-bottom: none;
}

.fp-tier-benefits li i {
    color: var(--success-green);
    margin-top: 3px;
    flex-shrink: 0;
}

.fp-tier-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ==========================================================================
   Front Page — Partners (grouped by tier)
   ========================================================================== */
.fp-partners-section {
    background-color: var(--bg-light);
}

.fp-partner-tier-group {
    margin-bottom: 40px;
}

.fp-partner-tier-group:last-child {
    margin-bottom: 0;
}

.fp-partner-tier-label {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
}

.fp-partner-tier-label::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.fp-partner-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}

/* ==========================================================================
   Front Page — Event Passes
   ========================================================================== */
.fp-passes-section {
    background-color: var(--text-light);
}

.fp-passes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fp-pass-card {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.fp-pass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fp-pass-featured {
    border-color: var(--primary-color);
    transform: scale(1.03);
}

.fp-pass-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--text-light);
    padding: 6px 22px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.fp-pass-title {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.fp-pass-pricing {
    margin-bottom: 10px;
}

.fp-pass-early {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.1;
}

.fp-pass-early-label {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.fp-pass-final {
    background: var(--bg-light);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.fp-pass-final strong {
    color: var(--text-dark);
}

.fp-pass-features {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.fp-pass-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.fp-pass-features li:last-child {
    border-bottom: none;
}

.fp-pass-features li i {
    color: var(--success-green);
    margin-top: 3px;
    flex-shrink: 0;
}

.fp-pass-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ==========================================================================
   Front Page — Testimonials
   ========================================================================== */
.fp-testimonials-section {
    background-color: var(--bg-light);
}

.fp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fp-testimonial-card {
    background: var(--text-light);
    border-radius: 10px;
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.fp-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fp-testimonial-quote {
    margin-bottom: 15px;
}

.fp-testimonial-quote i {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.2;
}

.fp-testimonial-stars {
    margin-bottom: 15px;
}

.fp-testimonial-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.fp-testimonial-stars i.empty {
    color: var(--border-color);
}

.fp-testimonial-content {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.fp-testimonial-content p {
    margin-bottom: 0;
}

.fp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.fp-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.fp-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-testimonial-author-info h5 {
    color: var(--secondary-color);
    margin-bottom: 2px;
    font-size: 1rem;
}

.fp-testimonial-author-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Front Page — No Upcoming Events Message
   ========================================================================== */
.fp-no-events {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.fp-no-events i {
    font-size: 3.5rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.fp-no-events h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.fp-no-events p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ==========================================================================
   Exhibit Page — 4-Column Pricing Grid
   ========================================================================== */
.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================================================
   Concept Note Page
   ========================================================================== */
.concept-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}
.concept-hero::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"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>') repeat;
    background-size: 200px;
    pointer-events: none;
}
.concept-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.concept-hero .exhibit-hero-desc {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Concept Events Cards */
.concept-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.concept-event-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
}
.concept-event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.concept-event-uk {
    border-top-color: var(--secondary-color);
}
.concept-event-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.4rem;
    color: var(--primary-color);
}
.concept-event-uk .concept-event-icon {
    color: var(--secondary-color);
}
.concept-event-flag {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}
.concept-event-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.concept-event-details p {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.concept-event-details i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 8px;
}
.concept-event-uk .concept-event-details i {
    color: var(--secondary-color);
}

/* Concept Intro */
.concept-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.concept-intro-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Concept Aims */
.concept-aims-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.concept-aim-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.concept-aim-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.concept-aim-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: #fff;
}
.concept-aim-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.concept-aim-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Concept Structure */
.concept-structure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.concept-structure-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.concept-structure-card:hover {
    border-bottom-color: var(--primary-color);
    transform: translateY(-3px);
}
.concept-structure-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: var(--secondary-color);
}
.concept-structure-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.concept-structure-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Concept Schedule */
.concept-schedule-event {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.concept-schedule-event:last-child {
    margin-bottom: 0;
}
.concept-schedule-event > h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}
.concept-schedule-event > h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}
.concept-schedule-venue-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding-left: 30px;
}
.concept-schedule-day {
    margin-bottom: 20px;
}
.concept-schedule-day:last-child {
    margin-bottom: 0;
}
.concept-schedule-day h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}
.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.schedule-item {
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    gap: 15px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    align-items: center;
    font-size: 0.95rem;
}
.schedule-item-highlight {
    background: linear-gradient(135deg, rgba(232, 51, 56, 0.08), rgba(58, 90, 166, 0.08));
    border-left: 3px solid var(--primary-color);
}
.schedule-time {
    font-weight: 600;
    color: var(--secondary-color);
    white-space: nowrap;
}
.schedule-desc {
    color: var(--text-dark);
    font-weight: 500;
}
.schedule-venue {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Concept Discount Note */
.concept-discount-note {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(232, 51, 56, 0.08), rgba(58, 90, 166, 0.08));
    border: 1px solid rgba(232, 51, 56, 0.2);
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 30px;
}
.concept-discount-note i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}
.concept-discount-note p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

/* Concept Contact */
.concept-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}
.concept-contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.concept-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.concept-contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}
.concept-contact-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.concept-contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.concept-contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}
.concept-contact-card a:hover {
    color: var(--primary-color);
}
.concept-cta-buttons {
    text-align: center;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .speakers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .fp-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-partner-logos {
        grid-template-columns: repeat(4, 1fr);
    }

    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .concept-aims-grid,
    .concept-structure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-album-photos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero-expo__body {
        padding: 120px 30px 30px;
    }

    .hero-expo__title {
        font-size: 4rem;
        letter-spacing: 6px;
    }

    .hero-expo__geometric {
        width: 500px;
        height: 500px;
        top: -15%;
        right: -15%;
    }

    .hero-expo__strip-inner {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 30px;
    }

    .hero-slider__nav {
        bottom: 15px;
    }

    .main-navigation,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .about-content,
    .highlights-grid,
    .expos-grid,
    .pricing-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-card {
        max-width: 100%;
    }

    .reasons-icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .media-albums-grid,
    .media-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .media-album-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .media-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .main-navigation .sub-menu {
        min-width: 150px;
    }

    .exhibit-hero h1 {
        font-size: 2.2rem;
    }

    .exhibit-form .form-row {
        grid-template-columns: 1fr;
    }

    .exhibit-form {
        padding: 30px 25px;
    }

    .tabs-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-stats-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .fp-passes-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .fp-pass-featured {
        transform: none;
    }

    .fp-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-partner-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid-4 {
        grid-template-columns: 1fr;
    }

    .fp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .concept-events-grid {
        grid-template-columns: 1fr;
    }

    .concept-contact-grid {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .concept-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-expo__body {
        padding: 110px 20px 30px;
    }

    .hero-expo__title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-expo__eyebrow-text {
        font-size: 0.78rem;
        letter-spacing: 4px;
    }

    .hero-expo__theme {
        font-size: 1.05rem;
    }

    .hero-expo__tag {
        font-size: 0.75rem;
        padding: 7px 14px;
    }

    .hero-expo__btn {
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .hero-expo__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-expo__actions .hero-expo__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-expo__geometric {
        display: none;
    }

    .hero-expo__strip-inner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px;
    }

    .hero-expo__strip-divider {
        width: 60px;
        height: 1px;
    }

    .hero-expo__strip-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 6px;
    }

    .hero-slider__nav {
        bottom: 10px;
        gap: 12px;
    }

    .hero-slider__arrow {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .countdown-value {
        font-size: 1.3rem;
        padding: 6px 10px;
        min-width: 42px;
    }

    .countdown-value {
        font-size: 1.6rem;
        padding: 10px 14px;
        min-width: 52px;
    }

    .countdown-timer {
        gap: 15px;
    }

    .countdown-value {
        font-size: 2rem;
        padding: 10px 15px;
    }

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

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reasons-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .exhibit-hero h1 {
        font-size: 1.8rem;
    }

    .vm-cards-grid {
        grid-template-columns: 1fr;
    }

    .about-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-card-body {
        padding: 30px 25px;
    }

    .contact-form-card-header {
        padding: 25px;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero {
        padding: 140px 0 100px;
    }

    .exhibit-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .exhibit-hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .fp-tiers-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .fp-form-layout {
        flex-direction: column;
    }

    .fp-form-image {
        max-height: 400px;
    }

    .fp-exhibitor-form .form-row {
        grid-template-columns: 1fr;
    }

    .fp-exhibitor-form {
        padding: 30px 20px;
    }

    .fp-partner-logos {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card.popular {
        transform: none;
    }

    .concept-aims-grid,
    .concept-structure-grid {
        grid-template-columns: 1fr;
    }

    .concept-hero {
        padding: 120px 0 60px;
    }

    .concept-hero h1 {
        font-size: 2rem;
    }

    .concept-discount-note {
        flex-direction: column;
        text-align: center;
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .news-single-layout {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        position: static;
    }

    .news-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .news-category-filter,
    .news-search-input {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-expo__body {
        padding: 100px 15px 24px;
    }

    .hero-expo__eyebrow-line {
        width: 30px;
    }

    .hero-expo__eyebrow-text {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .hero-expo__title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .hero-expo__highlight::after {
        height: 3px;
        bottom: 1px;
    }

    .hero-expo__theme {
        font-size: 0.92rem;
    }

    .hero-expo__tags {
        gap: 6px;
    }

    .hero-expo__tag {
        font-size: 0.68rem;
        padding: 6px 10px;
        letter-spacing: 1px;
    }

    .hero-expo__btn {
        padding: 14px 24px;
        font-size: 0.88rem;
    }

    .countdown-value {
        font-size: 1.1rem;
        padding: 6px 8px;
        min-width: 38px;
    }

    .countdown-sep {
        font-size: 1rem;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-value {
        font-size: 1.2rem;
        padding: 8px 10px;
        min-width: 44px;
    }

    .hero-expo__bottom {
        margin-top: 24px;
        padding: 16px 0 20px;
    }

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

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

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-stats-grid {
        grid-template-columns: 1fr;
    }

    .fp-partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .vm-cards-grid {
        grid-template-columns: 1fr;
    }

    .about-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .reasons-icons-grid {
        grid-template-columns: 1fr 1fr;
    }

    .media-albums-grid,
    .media-videos-grid {
        grid-template-columns: 1fr;
    }

    .media-album-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-album-expanded {
        padding: 20px 15px;
    }

    .media-album-expanded-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .media-lightbox-content iframe {
        width: 95vw;
        height: 53vw;
    }

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

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

/* ==========================================================================
   Navigation Dropdown Submenus
   ========================================================================== */
.main-navigation li {
    position: relative;
}

.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e3366;
    min-width: 180px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 100;
}

.main-navigation li:hover > .sub-menu {
    display: block;
}

.main-navigation .sub-menu li {
    margin: 0;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.8rem;
    text-transform: none;
    white-space: nowrap;
}

.main-navigation .sub-menu a::after {
    display: none;
}

.main-navigation .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Media Page Styles
   ========================================================================== */

/* Media Tabs */
.media-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.media-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    background: transparent;
    transition: var(--transition);
}

.media-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.media-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Album Grid */
.media-albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.media-album-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
}

.media-album-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.media-album-card.active {
    box-shadow: 0 0 0 3px var(--primary-color), var(--shadow-lg);
}

.media-album-cover {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.media-album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.media-album-card:hover .media-album-cover img {
    transform: scale(1.05);
}

.media-album-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light), var(--border-color));
    font-size: 3rem;
    color: var(--text-muted);
}

.media-album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition);
}

.media-album-overlay i {
    font-size: 1.5rem;
}

.media-album-card:hover .media-album-overlay {
    opacity: 1;
}

.media-album-info {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.media-album-info h3 {
    font-size: 1.05rem;
    margin: 0;
    color: var(--text-dark);
}

.media-album-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Album Expanded */
.media-album-expanded {
    margin-top: 30px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.media-album-expanded-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.media-album-expanded-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.media-album-close {
    background: none;
    border: 2px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.media-album-close:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.media-album-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.media-album-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.media-album-photo {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.media-album-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-album-photo:hover {
    box-shadow: var(--shadow-lg);
}

.media-album-photo:hover img {
    transform: scale(1.08);
}

/* Video Grid */
.media-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.media-video-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
}

.media-video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.media-video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.media-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.media-video-card:hover .media-video-thumb img {
    transform: scale(1.05);
}

.media-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3366, #3A5AA6);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.media-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(232, 51, 56, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.media-video-card:hover .media-video-play {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.media-video-play i {
    margin-left: 3px;
}

.media-video-info {
    padding: 18px 20px;
}

.media-video-info h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-dark);
}

/* Lightbox */
.media-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.media-lightbox-content iframe {
    width: 80vw;
    height: 45vw;
    max-width: 900px;
    max-height: 506px;
    border-radius: 8px;
}

.media-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: var(--transition);
}

.media-lightbox-close:hover {
    opacity: 1;
}

.media-lightbox-prev,
.media-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 15px 18px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
}

.media-lightbox-prev { left: 20px; }
.media-lightbox-next { right: 20px; }

.media-lightbox-prev:hover,
.media-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Empty State */
.media-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.media-empty-state i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.media-empty-state h3 {
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #1e3366;
    padding: 80px 30px 30px;
    z-index: 999;
    transition: var(--transition);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Resources Page
   ========================================================================== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-card-header {
    margin-bottom: 15px;
}

.resource-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.resource-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.resource-card-excerpt p {
    margin-bottom: 0;
}

.resource-card-footer {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.resource-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.resource-meta i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.resource-download-btn {
    width: 100%;
    text-align: center;
}

.resource-download-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.resources-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.resources-empty i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.resources-empty h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Download Form Modal */
.dl-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.dl-modal-overlay.active {
    display: flex;
}

.dl-modal {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: dlModalSlideIn 0.3s ease;
}

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

.dl-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.dl-modal-close:hover {
    color: var(--primary-color);
}

.dl-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.dl-modal-header i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.dl-modal-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.dl-modal-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.dl-form-group {
    margin-bottom: 18px;
}

.dl-form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-family: var(--font-primary);
}

.dl-form-group label .required {
    color: var(--primary-color);
}

.dl-form-group input,
.dl-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-secondary);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.dl-form-group input:focus,
.dl-form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.dl-submit-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 1rem;
    padding: 14px;
}

.dl-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.dl-form-message {
    display: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: center;
}

.dl-msg-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.dl-msg-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* ==========================================================================
   News Page
   ========================================================================== */
.news-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.news-category-filter,
.news-search-input {
    padding: 12px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    background: #fff;
    transition: var(--transition);
    outline: none;
}

.news-category-filter:focus,
.news-search-input:focus {
    border-color: var(--secondary-color);
}

.news-category-filter {
    min-width: 200px;
}

.news-search-input {
    min-width: 250px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-light);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border-color);
}

.news-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-content h3 a {
    color: var(--text-dark);
}

.news-card-content h3 a:hover {
    color: var(--primary-color);
}

.news-card-content > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-meta {
    margin-bottom: 15px;
}

.news-card-meta span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.news-card-meta span i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.news-card-content .btn-outline {
    align-self: flex-start;
}

.news-pagination {
    text-align: center;
    margin-top: 50px;
}

.news-pagination .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.news-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.news-empty i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.news-empty h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.news-empty .btn {
    margin-top: 20px;
}

/* ==========================================================================
   Single News Article
   ========================================================================== */
.news-single-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.news-single-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0;
}

.news-single-date i {
    margin-right: 6px;
}

.news-single-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.news-single-featured {
    margin-bottom: 30px;
}

.news-single-featured img {
    width: 100%;
    border-radius: 12px;
}

.news-single-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.news-single-body p {
    margin-bottom: 1.5rem;
}

.news-single-body h2,
.news-single-body h3,
.news-single-body h4 {
    color: var(--secondary-color);
    margin-top: 2rem;
}

.news-single-body img {
    border-radius: 8px;
    margin: 20px 0;
}

.news-single-body ul,
.news-single-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.news-single-body ol {
    list-style: decimal;
}

.news-single-body li {
    margin-bottom: 0.5rem;
}

.news-sidebar {
    position: sticky;
    top: 100px;
}

.news-sidebar-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 20px;
}

.news-sidebar-widget h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.news-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-sidebar-item {
    margin-bottom: 15px;
}

.news-sidebar-item:last-child {
    margin-bottom: 0;
}

.news-sidebar-item a {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--text-dark);
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.news-sidebar-item a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.news-sidebar-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-sidebar-info h5 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.news-sidebar-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.news-sidebar-date i {
    margin-right: 4px;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}
