/* ===================== COLOR ROOT VARIABLES ===================== */
:root {
    /* Primary Colors */
    --color-primary: #0D3B66;
    --color-primary-light: #256D85;
    --color-primary-dark: #061F3A;
    
    /* Secondary / Accent Colors */
    --color-secondary: #F4A261;
    --color-accent: #F2C94C;
    --color-accent-hover: #E1B847;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-background: #F4F7FB;
    --color-surface: #FFFFFF;
    --color-surface-light: #F7FAFC;
    --color-text-dark: #0F172A;
    --color-text-medium: #536171;
    --color-text-light: #7C8A9B;
    
    /* Overlay & Transparency */
    --color-overlay-dark: rgba(8, 21, 43, 0.65);
    --color-overlay-light: rgba(255, 255, 255, 0.12);
    
    /* Shadows */
    --shadow-sm: 0 2px 6px rgba(13, 35, 65, 0.08);
    --shadow-md: 0 6px 18px rgba(13, 35, 65, 0.12);
    --shadow-lg: 0 12px 30px rgba(13, 35, 65, 0.18);
    
    /* Layout */
    --navbar-height: 70px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

/* Smooth scrolling for in-page anchors */
html {
    scroll-behavior: smooth;
}

/* ===================== GENERAL STYLES ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================== NAVIGATION BAR ===================== */
.navbar {
    background-color: rgba(13, 59, 102, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 20px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-white);
    margin: 5px 0;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===================== HERO SECTION ===================== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback background image if video doesn't load */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.72) 0%, rgba(13, 59, 102, 0.32) 100%), url("image/homebg.jpg") center/cover no-repeat;
    background-attachment: fixed;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay-dark);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 40px 20px;
}

/* Ensure anchored sections account for fixed navbar */
.hero,
.highlights,
.event-section,
.imo-section,
.about-us,
.services,
.exhibitor-section,
.media-center,
.gallery-section,
.partners-section,
.contact-section,
.sponsor-section {
    scroll-margin-top: calc(var(--navbar-height) + 10px);
}

.hero-headline {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1s ease;
}

.hero-subheadline {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* ===================== CTA BUTTONS ===================== */
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn i {
    font-size: 1rem;
}

.cta-primary {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    border-color: var(--color-secondary);
}

.cta-primary:hover {
    background-color: transparent;
    color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 201, 76, 0.35);
}

.cta-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.95);
}

.cta-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 201, 76, 0.35);
}

/* ===================== HIGHLIGHTS SECTION ===================== */
.highlights {
    padding: 80px 0;
    background-color: var(--color-surface-light);
}

.highlights h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(244, 162, 97, 0.12);
    color: var(--color-secondary);
    margin: 0 auto 20px;
    font-size: 1.4rem;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.highlight-card h3 {
    color: var(--color-primary);
    font-size: 22px;
    margin-bottom: 15px;
}

.highlight-card p {
    color: var(--color-text-medium);
    font-size: 15px;
    line-height: 1.6;
}

/* ===================== ABOUT US SECTION ===================== */
.about-us {
    padding: 80px 0;
    background-color: var(--color-background);
}

.about-us h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-intro {
    background-color: var(--color-surface-light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.about-intro p {
    color: var(--color-text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-intro strong {
    color: var(--color-primary);
    font-weight: 600;
}

.about-expo {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.about-expo h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.expo-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.expo-list {
    list-style: none;
    padding: 0;
}

.expo-list li {
    font-size: 16px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.expo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 18px;
}

/* ===================== OUR SERVICES ===================== */
.services {
    padding: 80px 0;
    background-color: var(--color-surface-light);
}

.services h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    min-height: 260px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(13, 59, 102, 0.08);
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-card h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* ===================== EVENT SECTION ===================== */
.event-section,
.imo-section {
    padding: 80px 0;
    background-color: var(--color-surface);
}

.event-section h2,
.imo-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.event-theme,
.imo-intro {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-medium);
    margin-bottom: 40px;
}

.event-grid,
.imo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.event-card,
.imo-card {
    background: var(--color-surface-light);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.event-card h3,
.imo-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--color-primary);
}

.event-list,
.imo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-list li,
.imo-list li {
    font-size: 16px;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.event-list li::before,
.imo-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 18px;
    line-height: 1;
}

/* ===================== SPONSORS SECTION ===================== */
.sponsor-section {
    padding: 80px 0;
    background-color: var(--color-surface-light);
}

.sponsor-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary);
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.sponsor-card {
    background: var(--color-surface);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.sponsor-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.sponsor-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sponsor-list li {
    font-size: 16px;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.sponsor-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 18px;
    line-height: 1;
}

.sponsor-details {
    padding: 80px 0;
    background: var(--color-background);
}

.sponsor-benefits-grid,
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.benefit-card,
.package-card,
.sponsor-help {
    background: var(--color-surface);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(13, 35, 65, 0.08);
    box-shadow: var(--shadow-sm);
}

.benefit-card h3,
.package-card h3,
.sponsor-help h3 {
    color: var(--color-primary);
    margin-bottom: 16px;
}

.package-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.package-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid transparent;
    font-size: 1.15rem;
}

.package-card.platinum .package-icon {
    color: #b8871a;
    background: rgba(184, 135, 26, 0.14);
    border-color: rgba(184, 135, 26, 0.22);
}

.package-card.gold .package-icon {
    color: #a67c1e;
    background: rgba(166, 124, 30, 0.14);
    border-color: rgba(166, 124, 30, 0.22);
}

.package-card.silver .package-icon {
    color: #7f8c8d;
    background: rgba(127, 140, 141, 0.14);
    border-color: rgba(127, 140, 141, 0.22);
}

.package-card.bronze .package-icon {
    color: #a66f39;
    background: rgba(166, 111, 57, 0.14);
    border-color: rgba(166, 111, 57, 0.22);
}

.package-card.supporting .package-icon {
    color: #2d6b5d;
    background: rgba(45, 107, 93, 0.14);
    border-color: rgba(45, 107, 93, 0.22);
}

.package-card.opening .package-icon {
    color: #3c5777;
    background: rgba(60, 87, 119, 0.14);
    border-color: rgba(60, 87, 119, 0.22);
}

.package-card.gala .package-icon {
    color: #743d84;
    background: rgba(116, 61, 132, 0.14);
    border-color: rgba(116, 61, 132, 0.22);
}

.package-card.platinum h3 {
    color: #b8871a;
}

.package-card.gold h3 {
    color: #a67c1e;
}

.package-card.silver h3 {
    color: #7f8c8d;
}

.package-card.bronze h3 {
    color: #a66f39;
}

.package-card.supporting h3 {
    color: #2d6b5d;
}

.package-card.opening h3 {
    color: #3c5777;
}

.package-card.gala h3 {
    color: #743d84;
}

.benefit-card p,
.package-card li,
.sponsor-help p,
.sponsor-help li {
    color: var(--color-text-medium);
    line-height: 1.75;
}

.package-price {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-card li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
}

.package-card li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.sponsor-help ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.sponsor-help li {
    margin-bottom: 10px;
}

.sponsor-help a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.sponsor-cta {
    margin-top: 40px;
    text-align: center;
}

.sponsor-cta .cta-btn {
    padding: 16px 36px;
}

@media (max-width: 768px) {
    .sponsor-benefits-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }
}

.footer p {
    font-size: 14px;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: var(--navbar-height);
        right: 0;
        left: 0;
        background: rgba(13, 59, 102, 0.95);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.expanded {
        max-height: 520px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 16px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 14px;
    }

    .nav-links a:first-child {
        border-top: none;
    }

    .logo {
        z-index: 1100;
    }

    .nav-toggle {
        z-index: 1100;
    }

    .hero {
        margin-top: 50px;
        height: auto;
        min-height: 80vh;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .highlights h2 {
        font-size: 28px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .about-us h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-intro,
    .about-expo {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 14px;
    }

    .nav-links {
        gap: 10px;
        font-size: 11px;
    }

    .hero-headline {
        font-size: 24px;
    }

    .hero-subheadline {
        font-size: 14px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}
section{
    padding: 100px 8%;
}

img{
    width: 100%;
    display: block;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}


/* ========================= */
/* SECTION HEADER */
/* ========================= */

.section-header{
    text-align: center;
    margin-bottom: 60px;
}

.section-tag{
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(13,35,65,0.08);
}

.section-header h2{
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--color-primary);
}

.section-header p{
    max-width: 700px;
    margin: auto;
    color: var(--color-text-medium);
}

.exhibitor-section,
.media-center,
.gallery-section,
.partners-section,
.ceo-message,
.contact-section{
    background: var(--color-background);
}

/* ========================= */
/* EXHIBITOR SECTION */
/* ========================= */

.exhibitor-grid,
.media-grid,
.gallery-grid,
.partners-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.feature-card,
.media-card,
.gallery-item,
.partner-card,
.info-box{
    background: var(--color-surface);
    border: 1px solid rgba(13,35,65,0.08);
    padding: 35px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    color: var(--color-text-dark);
}

.feature-card:hover,
.media-card:hover,
.gallery-item:hover,
.partner-card:hover,
.info-box:hover{
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.feature-card h3,
.media-card h3,
.gallery-item h3,
.partner-card h3,
.info-box h3{
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.feature-icon,
.why-icon,
.package-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(65, 111, 210, 0.12);
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.feature-card,
.why-card,
.package-card {
    position: relative;
}

.section-subheader {
    text-align: center;
    margin: 60px auto 30px;
    max-width: 760px;
}

.section-subheader h2 {
    margin-top: 10px;
    font-size: 2.5rem;
}

.section-subheader p {
    color: var(--color-text-medium);
    margin-top: 12px;
}

.package-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.package-card {
    background: var(--color-surface);
    border: 1px solid rgba(13, 35, 65, 0.08);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.package-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.package-price {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-primary);
}

.package-subtitle {
    margin-bottom: 18px;
    color: var(--color-text-medium);
    font-weight: 600;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--color-text-medium);
}

.package-card li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.why-card {
    background: var(--color-surface);
    border: 1px solid rgba(13, 35, 65, 0.08);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.why-card h3 {
    margin-top: 0;
}

.why-card p {
    color: var(--color-text-medium);
    line-height: 1.75;
}

.exhibitor-help {
    margin-top: 40px;
    background: var(--color-surface);
    border: 1px solid rgba(13, 35, 65, 0.08);
    padding: 30px;
    border-radius: var(--radius-md);
}

.exhibitor-help h3 {
    margin-bottom: 18px;
    color: var(--color-primary);
}

.exhibitor-help p,
.exhibitor-help li {
    color: var(--color-text-medium);
    line-height: 1.75;
}

.exhibitor-help ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.exhibitor-help a {
    color: var(--color-secondary);
    text-decoration: none;
}

.exhibitor-cta {
    margin-top: 30px;
    text-align: center;
}

.exhibitor-cta .cta-btn {
    padding: 14px 32px;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 18px;
    display: block;
}

.gallery-item {
    padding: 20px;
}

.feature-card p,
.info-box p{
    color: var(--color-text-medium);
}

/* ========================= */
/* EXTRA EXHIBITOR BOXES */
/* ========================= */

.exhibitor-extra{
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}


/* ========================= */
/* CEO MESSAGE */
/* ========================= */

.ceo-message{
    background: var(--color-surface-light);
}

.message-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ceo-image img{
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.message-content h2{
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.message-content p{
    margin-bottom: 20px;
    color: var(--color-text-dark);
    line-height: 1.8;
}

.message-content h4{
    color: var(--color-secondary);
    margin-top: 30px;
    font-weight: 700;
}


/* ========================= */
/* CONTACT SECTION */
/* ========================= */

.contact-section{
    background: var(--color-background);
}

.contact-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-box{
    background: var(--color-surface);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(13,35,65,0.08);
    transition: var(--transition);
    color: var(--color-text-dark);
}

.contact-box:hover{
    border-color: var(--color-secondary);
}

.contact-box h3{
    margin-bottom: 12px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box h3 i,
.contact-box a i{
    color: var(--color-secondary);
}

.contact-box p,
.contact-box a{
    color: var(--color-text-medium);
}

.contact-form form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--color-surface-light);
    color: var(--color-text-dark);
    outline: none;
    border: 1px solid rgba(13,35,65,0.12);
}

.contact-form textarea{
    height: 180px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(242,201,76,0.15);
}

.contact-form button{
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    padding: 16px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.contact-form button:hover{
    background: var(--color-accent-hover);
    transform: translateY(-3px);
}

.form-feedback {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--color-text-medium);
}

.form-feedback.success {
    color: #2d6b5d;
}

.form-feedback.error {
    color: #b00020;
}

.google-map{
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}


/* ========================= */
/* FOOTER */
/* ========================= */

.footer-section{
    background: var(--color-primary-dark);
    padding: 80px 8% 30px;
}

.footer-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about h2{
    margin-bottom: 20px;
    color: var(--color-accent);
}

.footer-about p{
    color: rgba(255, 255, 255, 0.75);
}

.footer-social{
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icon{
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.9);
    transition: background 0.25s ease, transform 0.25s ease;
}

.social-icon:hover{
    background: var(--color-accent);
    transform: translateY(-2px);
    color: var(--color-primary-dark);
}

.footer-links h3,
.footer-newsletter h3{
    margin-bottom: 20px;
    color: var(--color-accent);
}
.footer-newsletter-description{
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

.footer-links ul li{
    margin-bottom: 12px;
}

.footer-links ul li a{
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-links ul li a:hover{
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-newsletter form{
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-newsletter input{
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--radius-sm);
    outline: none;
    background: var(--color-surface);
    color: var(--color-text-dark);
}

.footer-newsletter button{
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    border: none;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover{
    background: var(--color-accent-hover);
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
    will-change: opacity, transform;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-headline {
    animation: headlineReveal 0.95s ease-out both;
}

.hero-subheadline {
    animation: subheadlineReveal 1s ease-out both 0.15s;
}

.section-header h2 {
    animation: headingReveal 1s ease-out both 0.1s;
}

.section-header .section-tag {
    animation: tagPulse 1.1s ease-out both 0.05s;
}

@keyframes headlineReveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subheadlineReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headingReveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes tagPulse {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

@media(max-width: 991px){

    .message-container,
    .contact-container{
        grid-template-columns: 1fr;
    }

    .section-header h2{
        font-size: 2.3rem;
    }

    .message-content h2{
        font-size: 2.3rem;
    }

}

@media(max-width: 768px){

    section{
        padding: 80px 5%;
    }

    .section-header h2{
        font-size: 2rem;
    }

    .footer-newsletter form{
        flex-direction: column;
    }

}