/* =========================================================
   EXHIBIT CSS — Unified 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;
}

/* Base Container Offset for Right Floating Buttons */
.container,
.why-exhibit-info .container,
.exhibitors-container,
.special-zones-container,
.ready-container,
.stall-container {
    padding-right: 75px !important;
}

/* Global Typography Alignment */
h1, h2, h3, h4,
.exhibitors-title,
.special-zones-heading,
.vp-title,
.floor-plan h2,
.ready-left h2,
.why-info-left h2,
.hero-right h2,
.stall-content h2 {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
}

p, span, label, input, textarea, button, a, li, .why-item {
    font-family: var(--font-body) !important;
}

/* =========================================
        HERO EXHIBIT
========================================= */

.hero-exhibit {
    display: flex;
    width: 100%;
    min-height: 380px;
    padding-top: 120px;
    background: var(--navy-deep);
}

.hero-left {
    width: 50%;
}

.hero-left img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
    border-radius: 0 12px 12px 0;
    border-right: 1px solid rgba(255, 215, 0, 0.2);
}

.hero-right {
    width: 50%;
    background: var(--navy-deep);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 40px;
}

.hero-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-soft);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-right h2 {
    font-size: 26px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-right p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.hero-btn {
    height: 38px;
    padding: 0 20px;
    font-size: 12px;
    font-weight: 700;
}

/* ==================================
        WHY EXHIBIT INFO
================================== */

.why-exhibit-info {
    background: #0b112c;
    padding: 45px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.why-info-left h2 {
    font-size: 24px;
    line-height: 1.2;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.why-info-left p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

/* Controlled non-stretched button */
.why-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-item {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    padding: 0 0 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.why-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* ==========================================
   EXHIBITORS PROFILE SECTION
========================================== */

.exhibitors-profile-section {
    padding: 45px 0;
    background: var(--navy-deep);
}

.exhibitors-container {
    width: min(100% - 40px, 1380px);
    margin: 0 auto;
}

.exhibitors-title,
.special-zones-heading,
.vp-title,
.floor-plan h2 {
    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(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    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;
    font-family: var(--font-body) !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: 40px;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 700;
}

/* =========================================================
   SPECIAL ZONES SECTION
========================================================= */

.special-zones-section {
    padding: 45px 20px;
    background: #0b112c;
}

.special-zones-container {
    width: min(1380px, 100%);
    margin: 0 auto;
}

.special-zones-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.zone-card {
    background: rgba(7, 9, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.zone-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.zone-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.zone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zone-title-box {
    padding: 14px;
}

.zone-title-box h3 {
    color: var(--gold);
    font-size: 15px;
    font-weight: 700 !important;
    margin-bottom: 6px;
}

.zone-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12.5px;
    line-height: 1.5;
}

/* ==================================
        FLOOR PLAN
================================== */

.floor-plan {
    background: var(--navy-deep);
    padding: 45px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.floor-plan img {
    width: 100%;
    max-width: 850px;
    height: 260px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floor-plan p {
    max-width: 550px;
    margin: 14px auto;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.floor-btn {
    display: inline-flex;
    justify-content: center;
    height: 38px;
    padding: 0 24px;
    font-size: 12px;
}

/* =================================
 VISITORS PROFILE
================================= */

.visitor-profile {
    background: #0b112c;
    padding: 45px 0;
}

.vp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.vp-card {
    background: rgba(7, 9, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.vp-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}

.vp-card i {
    font-size: 18px;
    color: var(--gold);
    margin-right: 10px;
    flex-shrink: 0;
}

.vp-card span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
}

/* ==========================================
   STALL TYPES — Fixed Non-Stretching Buttons
========================================== */

.stall-types {
    background: var(--navy-deep);
    padding: 45px 0;
}

.stall-container {
    max-width: 1000px;
    width: 90%;
    margin: auto;
}

.stall-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.stall-image {
    width: 220px;
    height: 140px;
    flex-shrink: 0;
}

.stall-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stall-content {
    flex: 1;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Prevents button from expanding full width */
}

.stall-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.stall-content p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
}

/* Corrected button styling for stall cards */
.stall-btn {
    display: inline-flex !important;
    width: auto !important;
    height: 36px;
    padding: 0 20px;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
}

/* ==================================
 READY TO EXHIBIT FORM
================================== */

.ready-exhibit {
    background: #0b112c;
    padding: 45px 0;
}

.ready-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 24px;
    align-items: start;
}

.ready-left h2 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ready-left p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.event-info {
    margin-bottom: 18px;
}

.event-info p {
    margin: 2px 0;
    font-size: 13px;
    color: var(--gold-soft);
}

.ready-btn {
    height: 38px;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 700;
}

.ready-right form {
    width: 100%;
    background: rgba(7, 9, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.form-row.full {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.form-group label span {
    color: var(--gold);
}

.ready-right input,
.ready-right textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 12.5px;
    color: #fff;
    outline: none;
    transition: border-color 0.25s ease;
}

.ready-right input {
    height: 36px;
}

.ready-right textarea {
    height: 55px;
    resize: none;
}

.ready-right input:focus,
.ready-right textarea:focus {
    border-color: var(--gold);
}

.submit-btn {
    width: 100%;
    height: 38px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
}

/* ========================
   RESPONSIVE MEDIA QUERIES
======================== */

@media(max-width: 1100px) {
    .exhibitors-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media(max-width: 991px) {
    .container,
    .why-exhibit-info .container,
    .exhibitors-container,
    .special-zones-container,
    .ready-container,
    .stall-container {
        padding-right: 20px !important;
    }
    
    .hero-exhibit {
        flex-direction: column;
        padding-top: 110px;
    }
    .hero-left, .hero-right {
        width: 100%;
    }
    .hero-right {
        padding: 24px 16px;
    }
    .why-grid, .ready-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .special-zones-grid, .vp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .stall-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .stall-image {
        width: 100%;
        height: 160px;
    }
}

@media(max-width: 768px) {
    .exhibitors-grid, .special-zones-grid, .vp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 480px) {
    .exhibitors-grid, .special-zones-grid, .vp-grid {
        grid-template-columns: 1fr;
    }
}