/* =========================================================
   VISIT PAGE CSS — Dark Navy & Gold Design System
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0A1650;
    --navy-deep: #07091A;
    --gold: #FFD700;
    --gold-soft: #FFE44A;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--navy-deep);
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Offset Clearance for Floating Right Side Buttons */
.container,
.why-visit .container,
.exhibitors-container,
.stats-container,
.getting-to-expo .container,
.revolution-cta .container {
    padding-right: 75px !important;
}

/* Global Typography Hierarchy */
h1, h2, h3,
.hero-content h1,
.why-left h2,
.exhibitors-title,
.vp-title,
.section-main-title,
.revolution-content h2 {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
}

p, span, label, input, textarea, button, a, li, small {
    font-family: var(--font-body) !important;
}

/* =========================================
        HERO SECTION
========================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    padding-top: 130px;
    padding-bottom: 40px;
    overflow: hidden;
    background: var(--navy-deep);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 26, 0.75);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.hero-content h1 {
    color: var(--gold);
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    max-width: 800px;
    margin-bottom: 20px;
}

.hero-info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 700px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 14px 28px;
    background: rgba(7, 9, 26, 0.6);
    backdrop-filter: blur(10px);
    text-align: left;
    margin-bottom: 15px;
}

.info-title {
    color: var(--gold-soft);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.info-desc {
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    margin: 0;
}

.hero-note-box {
    width: 100%;
    max-width: 700px;
    background: rgba(255, 215, 0, 0.08);
    color: var(--gold-soft);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 500;
    text-align: center;
    border-left: 4px solid var(--gold);
}

/* =========================================
        STATISTICS SECTION
========================================= */

.stats-section {
    background: #0b112c;
    padding: 35px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.stats-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding-left: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    background: rgba(7, 9, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 10px;
    padding: 22px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.stat-card strong {
    font-family: var(--font-heading) !important;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-card span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.stat-card span.unit {
    font-size: 18px;
}

/* =========================================
        WHY VISIT SECTION
========================================= */

.why-visit {
    background: var(--navy-deep);
    padding: 45px 0;
}

.why-visit .container {
    max-width: 1380px;
    margin: 0 auto;
    padding-left: 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.why-left h2 {
    font-size: 24px;
    line-height: 1.2;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.why-left p.intro {
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.why-left p {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 20px;
}

.visit-btn {
    display: inline-flex !important;
    width: auto !important;
    height: 38px;
    padding: 0 22px;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
}

.why-right {
    display: flex;
    flex-direction: column;
}

.visit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    border-left: 3px solid transparent;
    transition: all .35s ease;
}

.visit-item:last-child {
    border-bottom: none;
}

.visit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.visit-icon i {
    font-size: 15px;
    color: var(--gold);
}

.visit-item p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
    font-size: 13px;
}

.visit-item p strong {
    color: var(--gold);
}

.visit-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--gold);
}

/* ==========================================
   EXHIBITORS PROFILE SECTION
========================================== */

.exhibitors-profile-section {
    padding: 45px 0;
    background: #0b112c;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.exhibitors-container {
    width: min(100% - 40px, 1380px);
    margin: 0 auto;
}

.exhibitors-title,
.vp-title,
.section-main-title {
    margin: 0 0 28px;
    color: #fff;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
}

.exhibitors-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.exhibitor-card {
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background: rgba(7, 9, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.exhibitor-card img {
    width: 100%;
    aspect-ratio: 1.75 / 1;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.exhibitor-card h3 {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12.5px;
    font-weight: 600 !important;
}

.exhibitor-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.exhibitor-card:hover h3 {
    color: var(--gold);
}

.exhibitors-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.exhibitors-register-btn {
    height: 38px;
    padding: 0 22px;
    font-size: 12px;
    font-weight: 700;
}

/* =================================
 VISITORS PROFILE (WHO SHOULD ATTEND)
================================= */

.visitor-profile {
    background: var(--navy-deep);
    padding: 45px 0;
}

.visitor-profile .container {
    max-width: 1380px;
    margin: auto;
    padding-left: 20px;
}

.vp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.vp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.vp-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}

.vp-card i {
    font-size: 18px;
    color: var(--gold);
    margin-right: 12px;
    flex-shrink: 0;
}

.vp-card span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
}

/* ==========================================
   GETTING TO EXPO SECTION
========================================== */

.getting-to-expo {
    background: #0b112c;
    padding: 45px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.getting-to-expo .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 20px;
}

.expo-travel-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 24px;
    align-items: start;
}

.expo-media-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.media-box {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(7, 9, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hall-layout-box {
    height: 180px;
}

.hall-layout-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.google-map-box {
    height: 280px;
}

.expo-info-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.travel-card-info {
    background: rgba(7, 9, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px 20px;
}

.travel-card-info h3 {
    font-family: var(--font-heading) !important;
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.travel-card-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.travel-card-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12.5px;
    line-height: 1.5;
}

.travel-card-info ul li i {
    color: var(--gold);
    font-size: 14px;
    margin-top: 2px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.travel-card-info ul li strong {
    color: #fff;
}

.travel-partner-box {
    background: rgba(7, 9, 26, 0.85);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    padding: 16px 20px;
}

.travel-partner-box h3 {
    font-family: var(--font-heading) !important;
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.partner-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12.5px;
    margin-bottom: 12px;
}

.partner-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-bottom: 10px;
}

.contact-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-item i,
.partner-meta i {
    color: var(--gold);
}

.partner-meta {
    display: flex;
    gap: 20px;
    color: #fff;
    font-size: 12.5px;
}

/* ==================================
   REVOLUTION CTA SECTION
================================== */

.revolution-cta {
    position: relative;
    background: url('../image/visit_bg.webp') center center / cover no-repeat;
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.revolution-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 26, 0.5); /* Lower value = lighter overlay / clearer image */
    z-index: 1;
}

.revolution-cta .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-left: 20px;
}

.revolution-content h2 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.revolution-content p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.revolution-sub {
    font-size: 13px !important;
    color: var(--gold-soft) !important;
    font-weight: 600;
    margin-bottom: 20px !important;
}

.revolution-btn {
    display: inline-flex !important;
    width: auto !important;
    height: 40px;
    padding: 0 26px;
    font-size: 12.5px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
}

/* =========================
 RESPONSIVE MEDIA QUERIES
========================= */

@media (max-width: 1100px) {
    .exhibitors-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .container,
    .why-visit .container,
    .exhibitors-container,
    .stats-container,
    .getting-to-expo .container,
    .revolution-cta .container {
        padding-right: 20px !important;
    }

    .hero-info-box {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .why-grid, .expo-travel-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .exhibitors-grid, .vp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .exhibitors-grid, .stats-container, .vp-grid {
        grid-template-columns: 1fr;
    }
}