/* ===== Global Styles ===== */
:root {
    --green: #223B21;
    --gold: #E8C07A;
    --white: #ffffff;
    --cream: #FFF8E7;
    --dark-green: #1a2e19;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== Header Styles ===== */
#main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 40px;
}

.navbar {
    padding: 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--gold);
    border-radius: 20px;
    padding: 10px 20px;
    width: 100%;
    position: relative;
    transition: box-shadow 0.25s ease;
}

.navbar-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 0.25s ease;
}

#main-header.nav-over-cta .navbar-container {
    box-shadow: 0 5px 18px rgba(5, 32, 24, 0.18);
}

#main-header.nav-over-cta .navbar-container::after {
    border-color: #052018;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* .brand-circle {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: inline-block;
} */

/* .brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
} */

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #454444;
    padding: 8px 20px !important;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.active {
    color: #052018 !important;
    text-decoration-line: underline;
    text-decoration-color: #052018;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.navbar-buttons {
    display: flex;
    gap: 12px;
    margin-left: 20px;
    
}

.btn-register {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 15px 24px;
    border-radius: 10px;
    white-space: nowrap;
   border: 1px solid red;
}

.btn-outline-dark {
    border-color: var(--green);
    /* color: var(--green);
     */
     color: #000000;
}

.btn-outline-dark:hover {
    background-color: var(--green);
    color: var(--white);
}

.btn-dark {
    background-color: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    color: var(--white);
}

/* ===== Hero Section ===== */
.hero-section {
    background-color: var(--green);
    min-height: 100vh;
    position: relative;
    padding-top: 120px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: visible;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--green);
    background-image: url('../images/backgrounds/green_gradient_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-inner {
    padding: 0 40px;
    width: 100%;
    position: relative;
    z-index: 1;
    max-width: 1920px;
    margin: 0 auto;
}

.hero-row {
    position: relative;
    /* z-index: 2; */
    min-height: 70vh;
    max-width: 1840px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.hero-content {
    color: var(--white);
    flex: 1.5;
    padding-right: 40px;
   
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-heading em {
    font-style: italic;
    font-weight: 700;
}

.text-gold {
    color: var(--gold);
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 100%;
}

.hero-image-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

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

/* ===== EXPO 2026 Background Text ===== */
.expo-bg-text {
    position: absolute !important;
    top: 77.5% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-family: 'Inter', sans-serif;
    font-size: 16rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    z-index: 1;
    letter-spacing: 10px;
    user-select: none;
    pointer-events: none;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* ===== Expo Banner ===== */
.expo-banner-wrapper {
    position: absolute !important;
    bottom: -364px !important;
    left: 40px !important;
    right: 40px !important;
    z-index: 20;
    display: flex;
    justify-content: center;
}

.expo-banner {
    position: relative;
    border-radius: 20px;
    /* overflow: hidden; */
    width: 1840px;
    height: 411px;
}

.expo-banner-bg {
    position: absolute;
    top: -10px;
    left: 2px;
    right: 5px;
    width: auto;
    height: calc(100% + 20px);
    object-fit: contain;
    z-index: 0;
}

.expo-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px 40px 80px;
    
}

.expo-banner-left {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}

.expo-banner-right {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 60px;
    text-align: right;
}

.expo-banner-center {
   
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expo-city {
    font-family: poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #052018;
    margin: 0;
    letter-spacing: 1px;
}

.expo-country {
  font-family: poppins, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--green);
    letter-spacing: normal;
    margin: 0;
    margin-top: 2px;
}

.expo-upcoming {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 700;
    color: #052018;
    letter-spacing: 4px;
    margin: 0;
}

.expo-title {
    font-family: 'Playfair Display', serif;
    font-size: 8.5rem;
    font-weight: 700;
    /* font-style: italic; */
    color: var(--gold);
    margin: -10px 0 0;
    line-height: 1;
}

.expo-tags {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 5px;
}

.expo-tag {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 2px;
}

.expo-line {
    width: 70px;
    height: 1.8px;
    background-color: var(--gold);
}

.expo-date {
    font-family: poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #052018;
    margin: 0;
    text-align: right;
}

.expo-year {
   font-family: poppins, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--green);
    letter-spacing: 12px;
    margin: 0;
    margin-top: 2px;
    text-align: right;
}



/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    #main-header {
        padding: 15px 20px;
    }

    .navbar-container {
        padding: 10px 20px;
    }

    .navbar-collapse {
        background-color: var(--gold);
        border-radius: 15px;
        padding: 15px;
        margin-top: 10px;
    }

    .navbar-buttons {
        margin-left: 0;
        margin-top: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-image-col {
        margin-top: 40px;
    }

    .expo-banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .expo-bg-text {
        font-size: 4rem;
        bottom: 350px;
    }

    .expo-banner-wrapper {
        bottom: -150px;
    }
}

@media (max-width: 767.98px) {
    .hero-heading {
        font-size: 2rem;
    }

    .expo-banner {
        padding: 30px 20px;
    }

    .expo-bg-text {
        font-size: 3rem;
        bottom: 400px;
    }

    .expo-banner-wrapper {
        bottom: -200px;
    }

    .hero-section {
        padding-bottom: 250px;
    }
}

/* ===== White Section ===== */
.white-section {
    background-color: #fff;
    padding: 420px 50px 60px;
    position: relative;
    z-index: 5;
    border-radius: 0 0 60px 60px;
}

.people-image-wrapper {
    position: relative;
    max-width: 1840px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

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

.people-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.people-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
}

/* ===== Green Section ===== */
.green-section {
    background-color: var(--green);
    background-image: url('../images/backgrounds/green_gradient_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(78px, 5.4vw, 104px) clamp(40px, 4.2vw, 80px) clamp(72px, 5vw, 96px);
    position: relative;
    z-index: 4;
    margin-top: -40px;
}

.green-section-inner {
    width: min(100%, clamp(1242px, calc(65vw + 351.5px), 1600px));
    margin: 0 auto;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, calc(0.227vw + 0.681rem), 1rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 4px;
    color: var(--gold);
    margin: 0 0 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(534px, 43%, 700px);
    gap: clamp(80px, 6vw, 120px);
    align-items: start;
}

.about-text {
    max-width: clamp(500px, calc(21.8vw + 201px), 620px);
    padding-top: clamp(17px, 1.2vw, 24px);
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.875rem, calc(1.818vw + 1.318rem), 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin: 0 0 26px;
}

.about-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9375rem, calc(0.364vw + 0.625rem), 1.0625rem);
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 25px;
}

.about-desc:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stats-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.stats-bottom {
    width: 100%;
}

.stat-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: clamp(289px, calc(11.09vw + 137px), 350px);
}

.stat-card-wide {
    height: clamp(289px, calc(11.09vw + 137px), 350px);
}

.stat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stat-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 2.2vw, 44px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4.25rem, calc(2.91vw + 1.756rem), 5.25rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, calc(0.227vw + 0.681rem), 1rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--white);
    text-align: center;
}

/* ===== Why Attend Section ===== */
.why-attend-section {
    background-color: var(--white);
    padding: clamp(54px, 4.3vw, 82px) clamp(32px, 4.7vw, 80px) clamp(58px, 4.7vw, 90px);
    position: relative;
    z-index: 5;
}

.why-attend-inner {
    width: min(100%, clamp(1114px, calc(74vw + 179px), 1600px));
    margin: 0 auto;
}

.why-attend-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8125rem, calc(0.15vw + 0.694rem), 0.9375rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 4px;
    color: #20a957;
    margin: 0 0 17px;
}

.why-attend-heading {
    margin: 0 0 23px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.625rem, calc(1.22vw + 1.66rem), 3.125rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #08291f;
}

.why-attend-bold,
.why-attend-italic {
    font: inherit;
    color: inherit;
}

.why-attend-italic {
    display: inline-block;
    padding-left: clamp(188px, 15vw, 260px);
}

.why-attend-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, calc(0.15vw + 0.756rem), 1rem);
    line-height: 1.7;
    color: #122b24;
    max-width: clamp(455px, 37vw, 590px);
    margin: 0 0 43px;
}

.why-attend-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(8, 41, 31, 0.52);
}

.why-attend-row {
    display: grid;
    grid-template-columns: clamp(180px, 14.25vw, 250px) clamp(400px, 32vw, 520px) minmax(0, 1fr);
    gap: clamp(44px, 3.5vw, 68px);
    align-items: center;
    min-height: clamp(125px, 9vw, 160px);
    padding: 28px 0;
}

.why-attend-num {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, calc(0.15vw + 0.756rem), 1rem);
    font-weight: 600;
    color: #20a957;
}

.why-attend-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3125rem, calc(0.45vw + 0.957rem), 1.5rem);
    font-weight: 700;
    color: #08291f;
    margin: 0;
    line-height: 1.25;
}

.why-attend-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, calc(0.15vw + 0.756rem), 1rem);
    line-height: 1.48;
    color: #122b24;
    margin: 0;
}

/* ===== Partner Section ===== */
.partner-section {
    position: relative;
    z-index: auto;
}

.partner-green-bg {
    background-color: var(--green);
    background-image: url('../images/backgrounds/green_gradient_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(46px, 3.8vw, 72px) clamp(24px, 4vw, 72px) 0;
}

.partner-green-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: clamp(35px, 3vw, 52px);
}

.partner-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, calc(1.6vw + 1.083rem), 3rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 19px;
    line-height: 1.15;
    letter-spacing: -0.018em;
}

.partner-heading em {
    font-style: italic;
    color: var(--gold);
}

.partner-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8125rem, calc(0.2vw + 0.667rem), 0.9375rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin: 0 auto;
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(3, clamp(250px, calc(10.7vw + 125px), 330px));
    justify-content: center;
    gap: clamp(26px, 2.3vw, 42px);
    max-width: 1120px;
    margin: 0 auto clamp(-66px, -4.15vw, -48px);
    position: relative;
    z-index: 6;
}

.partner-card {
    --partner-card-header: clamp(47px, 3.3vw, 58px);
    background: linear-gradient(to bottom, #fff8ec 0 var(--partner-card-header), #ffffff var(--partner-card-header) 100%);
    border: 1px solid rgba(221, 172, 79, 0.9);
    border-radius: clamp(15px, 1.15vw, 20px);
    box-shadow: 0 5px 8px rgba(8, 41, 31, 0.14), 0 1px 2px rgba(8, 41, 31, 0.12);
    padding: 0 24px clamp(20px, 1.6vw, 28px);
    text-align: center;
    width: 100%;
    height: clamp(213px, calc(9vw + 108px), 280px);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.partner-card-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.625rem, calc(0.1vw + 0.552rem), 0.6875rem);
    font-weight: 600;
    letter-spacing: clamp(2.4px, 0.2vw, 3.2px);
    color: #102a23;
    width: calc(100% + 48px);
    height: var(--partner-card-header);
    flex: 0 0 var(--partner-card-header);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card-line {
    width: clamp(44px, 3.2vw, 58px);
    height: 3px;
    background-color: #e7b95e;
    margin: clamp(24px, 1.8vw, 31px) 0 clamp(18px, 1.35vw, 24px);
    border-radius: 2px;
    flex: 0 0 3px;
}

.partner-card-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card-logo-circle {
    width: clamp(96px, 7vw, 124px);
    height: clamp(96px, 7vw, 124px);
    border-radius: 50%;
    border: 1px solid #dedede;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    box-shadow: 0 1px 4px rgba(8, 41, 31, 0.08);
}

.partner-logo-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.72rem, 0.65vw, 0.85rem);
    font-weight: 700;
    line-height: 1.15;
    color: #1a237e;
}

.comex-logo {
    font-size: clamp(0.95rem, 0.9vw, 1.15rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #2384b4 0 22%, #e14d63 45% 68%, #eea72d 82%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== Info Bar Section ===== */
.info-bar-section {
    background-color: var(--white);
    padding: clamp(295px, 24vw, 390px) clamp(32px, 4.7vw, 80px) clamp(102px, 8.5vw, 145px);
    position: relative;
    z-index: 5;
}

.info-bar-inner {
    width: min(100%, clamp(927px, calc(72vw + 87px), 1470px));
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.info-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 2vw, 34px);
    padding: 4px clamp(34px, 3.1vw, 58px) 0;
}

.info-bar-item:first-child {
    padding-left: 0;
}

.info-bar-item:last-child {
    padding-right: 0;
}

.info-bar-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #102a23;
}

.info-bar-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, calc(0.45vw + 0.922rem), 1.5rem);
    font-weight: 600;
    color: #102a23;
    line-height: 1.3;
}

.info-bar-divider {
    width: 1px;
    height: clamp(108px, 8vw, 138px);
    background-color: rgba(8, 41, 31, 0.42);
    flex-shrink: 0;
    margin-top: 0;
}

/* ===== App Section ===== */
.app-section {
    background-color: var(--green);
    background-image: url('../images/backgrounds/green_gradient_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px 0;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.app-section-inner {
    max-width: 1840px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 40px;
}

.app-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.app-heading-sub {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--gold);
    margin: 0;
    line-height: 1.2;
}

.app-heading-sub em {
    font-style: italic;
}

.app-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 1840px;
    margin: 0 auto;
}

.app-mockup {
    position: relative;
    z-index: 2;
}

.app-mockup-img {
    width: 100%;
    max-width: 986px;
    height: auto;
    display: block;
}

.app-bg-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 14rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    z-index: 1;
    letter-spacing: 10px;
    user-select: none;
    line-height: 1;
}

/* ===== CTA Section ===== */
.cta-section {
    background-color: var(--gold);
    padding: clamp(80px, 5vw, 96px) clamp(32px, 4.2vw, 80px);
    position: relative;
    z-index: 5;
}

.cta-inner {
    width: min(100%, clamp(1242px, calc(60.8vw + 409px), 1600px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-text {
    max-width: clamp(590px, 36vw, 680px);
}

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #052018;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #052018;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    align-items: center;
}

.btn-cta {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 10px;
    white-space: nowrap;
}

/* ===== Footer ===== */
.site-footer {
    background-color: #052018;
    border-top: 1px solid rgba(232, 192, 122, 0.75);
    padding: clamp(68px, 4.3vw, 82px) clamp(32px, 4.5vw, 84px) 0;
    position: relative;
    z-index: 5;
}

.footer-inner {
    width: min(100%, 1680px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: clamp(180px, 15.4vw, 285px);
    padding-bottom: 58px;
}

.footer-brand {
    width: 320px;
    padding-top: 63px;
    text-align: center;
}

.footer-logo {
    width: 258px;
    height: auto;
    margin-bottom: 24px;
}

.footer-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(36px, 3vw, 60px);
}

.footer-col-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 1.55vw, 1.875rem);
    font-weight: 600;
    color: var(--white);
    margin: 0 0 33px;
    line-height: 1.2;
}

.footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.footer-col-list a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col-list a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 14px 0 18px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===== About Hero Section ===== */
.about-hero-section {
    background-color: var(--green);
    background-image: url('../images/backgrounds/green_gradient_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 184px clamp(40px, 4.15vw, 72px) 56px;
    min-height: auto;
    position: relative;
}

.about-hero-inner {
    width: min(100%, 1600px);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.about-hero-content {
    flex: 1;
}

.about-hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 62px;
    line-height: 1.1;
}

.about-hero-heading em {
    font-style: normal;
    color: var(--gold);
}

.about-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    max-width: 520px;
    margin: 0;
}

.about-hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding: 0 clamp(40px, 4.2vw, 72px) 0 0;
}

.about-hero-img {
    width: 100%;
    max-width: 510px;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

/* ===== Who We Are Section ===== */
.who-we-are-section {
    background-color: #fdfdfd;
    padding: 70px clamp(40px, 4.7vw, 80px);
}

.who-we-are-inner {
    width: min(100%, 1600px);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
}

.who-we-are-content {
    flex: 1;
    max-width: 500px;
    transform: translateY(-18px);
}

.who-we-are-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold);
    margin: 0 0 82px;
}

.who-we-are-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #052018;
    line-height: 1.28;
    margin: 0 0 48px;
}

.who-we-are-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #102a23;
    margin: 0 0 26px;
}

.who-we-are-desc:last-child {
    margin-bottom: 0;
}

.who-we-are-image {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    padding: 0 clamp(10px, 1vw, 18px) 0 0;
}

.who-we-are-img {
    width: 100%;
    max-width: 568px;
    height: 568px;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    filter: brightness(1.08);
}

/* ===== Contact Hero Section ===== */
.contact-hero-section {
    background-color: var(--green);
    background-image: url('../images/backgrounds/green_gradient_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(275px, 20.3vw, 310px) clamp(40px, 4.25vw, 72px) clamp(140px, 12vw, 190px);
    min-height: 92.5vh;
    position: relative;
}

.contact-hero-inner {
    width: min(100%, 1600px);
    margin: 0 auto;
}

.contact-hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 4.72vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 40px;
    line-height: 1.1;
}

.contact-hero-heading em {
    font-style: normal;
    color: var(--gold);
}

.contact-hero-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    margin: 0 0 20px;
}

.contact-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    max-width: 520px;
    margin: 0;
}

/* ===== Contact Info Section ===== */
.contact-info-section {
    background-color: #f5f5f5;
    padding: 0 40px 80px;
    position: relative;
    z-index: 5;
}

.contact-info-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    transform: translateY(-5%);
}

.contact-info-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px 0;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon-circle {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background-color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-circle i {
    font-size: 1.2rem;
    color: var(--gold);
}

.contact-info-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px 0;
}

.contact-info-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.contact-form-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.contact-form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1a1a1a;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    border-bottom-color: var(--green);
}

.contact-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 100px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
}

.contact-form-textarea:focus {
    border-color: var(--green);
}

.contact-form-error {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #e74c3c;
    display: none;
}

.contact-form-group.error .contact-form-input,
.contact-form-group.error .contact-form-textarea {
    border-bottom-color: #e74c3c;
}

.contact-form-group.error .contact-form-error {
    display: block;
}

.btn-send {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 10px;
    background-color: var(--green);
    border-color: var(--green);
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-send:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    color: var(--white);
}

/* ===== Privacy Policy Hero ===== */
.privacy-page #main-header {
    padding: 44px 28px 0;
}

.privacy-hero-section {
    min-height: 523px;
    background-color: var(--green);
    background-image: url('../images/backgrounds/green_gradient_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 220px 55px 80px;
    display: flex;
    align-items: flex-start;
}

.privacy-hero-inner {
    width: 100%;
    max-width: 1840px;
    margin: 0 auto;
}

.privacy-hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 24px;
}

.privacy-hero-heading span {
    color: var(--gold);
}

.privacy-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.terms-hero-desc {
    font-size: 1rem;
}

.terms-last-updated {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 16px 0 0;
}

.privacy-content-section {
    background-color: var(--white);
    padding: 72px 55px 108px;
}

.privacy-content-inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.privacy-policy-block + .privacy-policy-block {
    margin-top: 64px;
}

.privacy-policy-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: #08271f;
    margin: 0 0 18px;
}

.privacy-policy-block p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.75;
    color: #172a25;
    margin: 0;
}

.privacy-contact-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy-contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #172a25;
}

.privacy-contact-list svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.privacy-cta-section {
    background-color: var(--gold);
    padding: 50px clamp(32px, 4.2vw, 80px) 47px;
}

.privacy-cta-inner {
    width: min(100%, clamp(1242px, calc(60.8vw + 409px), 1600px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.privacy-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #052018;
    margin: 0 0 18px;
}

.privacy-cta-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #052018;
    margin: 0;
}

.privacy-cta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.privacy-cta-actions .btn {
    min-width: 145px;
    padding: 12px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===== Exhibitor Registration Form ===== */
.exhibitor-form-section {
    background: var(--white);
    padding: 38px 55px 110px;
}

.exhibitor-form-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.exhibitor-step-panel[hidden] {
    display: none;
}

.exhibitor-step-two {
    min-height: 720px;
}

.exhibitor-step-two .exhibitor-form-actions {
    margin-top: 105px;
}

.exhibitor-step-three {
    min-height: 790px;
}

.exhibitor-step-three .registration-progress {
    margin-bottom: 75px;
}

.exhibition-requirements-heading {
    margin-bottom: 35px;
}

.booth-type-fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.booth-type-fieldset legend {
    float: none;
    width: auto;
    margin: 0 0 75px;
    font: 600 0.78rem 'Inter', sans-serif;
    color: #102a23;
}

.booth-type-fieldset legend span {
    color: #e1261c;
}

.booth-type-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.booth-type-card {
    min-height: 175px;
    position: relative;
    border: 1px solid #d4d4d4;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 35px 34px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.booth-type-card.selected {
    border-color: #e9ae4c;
}

.booth-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booth-radio {
    position: absolute;
    top: 20px;
    left: 18px;
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
}

.booth-type-card.selected .booth-radio {
    border-color: #e9ae4c;
    box-shadow: inset 0 0 0 5px var(--white);
    background: #e9ae4c;
}

.booth-type-card .booth-card-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: block;
    object-fit: contain;
}

.booth-card-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booth-card-copy strong {
    font: 600 1.1rem 'Inter', sans-serif;
    color: #102a23;
}

.booth-card-copy small {
    font: 400 0.78rem/1.55 'Inter', sans-serif;
    color: #333;
}

.exhibition-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
    margin-top: 50px;
}

.exhibition-details-grid textarea {
    min-height: 105px;
}

.terms-agreement {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 58px;
    font: 400 0.8rem 'Inter', sans-serif;
    color: #102a23;
}

.terms-agreement input {
    width: 14px;
    height: 14px;
    accent-color: #08271f;
}

.terms-agreement a {
    color: inherit;
}

.exhibitor-step-three .exhibitor-form-actions {
    margin-top: 58px;
}

.exhibitor-step-four {
    min-height: 620px;
}

.review-consent-list {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 28px 0;
}

.review-consent-item {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.review-consent-item input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    accent-color: #08271f;
}

.review-consent-item strong {
    font: 600 0.9rem/1.5 'Inter', sans-serif;
    color: #102a23;
}

.review-consent-item a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.exhibitor-step-four .exhibitor-form-actions {
    margin-top: 70px;
}

.exhibitor-step-four .exhibitor-continue-btn {
    min-width: 155px;
}

/* ===== Attendee Registration Modal ===== */
body.modal-open {
    overflow: hidden;
}

.attendee-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.attendee-modal.open {
    display: flex;
}

.attendee-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(239, 239, 239, 0.94);
}

.attendee-modal-dialog {
    position: relative;
    width: min(100%, 710px);
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    border-radius: 22px;
    background: var(--white);
    padding: 76px 58px 60px;
}

.attendee-modal-dialog h2 {
    font: 700 2.75rem/1.15 'Playfair Display', serif;
    color: #08271f;
    margin: 0 0 12px;
}

.attendee-modal-intro {
    font: 400 0.95rem/1.6 'Inter', sans-serif;
    color: #172a25;
    margin: 0 0 40px;
}

.attendee-modal-form {
    display: flex;
    flex-direction: column;
}

.attendee-modal-form > label {
    font: 600 0.9rem 'Inter', sans-serif;
    color: #102a23;
    margin-bottom: 18px;
}

.attendee-modal-form > label span {
    color: #e1261c;
}

.attendee-email-control {
    height: 66px;
    border: 1px solid #888;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 18px;
}

.attendee-email-control:focus-within {
    border-color: #08271f;
    box-shadow: 0 0 0 2px rgba(8, 39, 31, 0.1);
}

.attendee-email-control svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #292929;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.attendee-email-control input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    font: 400 0.95rem 'Inter', sans-serif;
    color: #172a25;
}

.attendee-email-control input::placeholder {
    color: #aaa;
}

.attendee-modal-form small {
    font: 400 0.75rem 'Inter', sans-serif;
    color: #aaa;
    margin-top: 13px;
}

.attendee-continue-btn {
    height: 53px;
    border: 0;
    border-radius: 7px;
    background: #08271f;
    color: var(--white);
    font: 500 0.85rem 'Inter', sans-serif;
    margin-top: 32px;
}

.attendee-security-note {
    border-top: 1px solid #999;
    margin-top: 62px;
    padding: 30px 18px 0;
    display: flex;
    align-items: center;
    gap: 38px;
}

.attendee-security-note svg {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    fill: none;
    stroke: #292929;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.attendee-security-note span {
    font: 400 0.9rem/1.5 'Inter', sans-serif;
    color: #172a25;
}

.registration-progress {
    width: min(100%, 610px);
    margin: 0 auto 70px;
    display: flex;
    align-items: flex-start;
}

.progress-step {
    position: relative;
    flex: 0 0 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-circle {
    width: 48px;
    height: 48px;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 500 1.35rem 'Inter', sans-serif;
    color: #111;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.progress-step.active .progress-circle {
    background: var(--gold);
    border-color: var(--gold);
}

.progress-label {
    position: absolute;
    top: 64px;
    width: 130px;
    text-align: center;
    font: 400 0.75rem 'Inter', sans-serif;
    color: #e3aa4d;
}

.progress-line {
    height: 1px;
    margin-top: 24px;
    background: #d8d8d8;
    flex: 1;
}

.exhibitor-form-heading {
    margin-bottom: 44px;
}

.exhibitor-form-heading h2 {
    font: 700 2.5rem/1.2 'Playfair Display', serif;
    color: #08271f;
    margin: 0 0 12px;
}

.exhibitor-form-heading p {
    font: 400 0.85rem 'Inter', sans-serif;
    color: #172a25;
    margin: 0;
}

.exhibitor-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 42px;
}

.exhibitor-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exhibitor-field-wide {
    margin-top: 30px;
}

.exhibitor-field label {
    font: 600 0.78rem 'Inter', sans-serif;
    color: #102a23;
}

.exhibitor-field label span {
    color: #e1261c;
}

.exhibitor-field input,
.exhibitor-field select,
.exhibitor-field textarea {
    width: 100%;
    min-height: 38px;
    border: 1px solid #9da4a1;
    border-radius: 5px;
    background: var(--white);
    padding: 8px 12px;
    font: 400 0.85rem 'Inter', sans-serif;
    color: #172a25;
    outline: none;
}

/* ===== Shared Form Dropdowns ===== */
.contact-form-select,
.exhibitor-field select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' fill='none' stroke='%23052018' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form-select {
    min-height: 42px;
    padding-right: 30px;
    background-color: transparent;
    background-position: right 3px center;
}

.contact-form-select:hover {
    border-bottom-color: rgba(5, 32, 24, 0.65);
}

.contact-form-select:focus {
    border-bottom-color: #052018;
    box-shadow: 0 2px 0 rgba(5, 32, 24, 0.12);
}

.exhibitor-field select {
    padding-right: 42px;
    background-color: var(--white);
    background-position: right 13px center;
    color: #172a25;
}

.exhibitor-field select:required:invalid {
    color: #7b8581;
}

.exhibitor-field select:hover {
    border-color: #d7a957;
    background-color: #fffdf8;
}

.exhibitor-field select:focus {
    border-color: #052018;
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(5, 32, 24, 0.12);
}

.contact-form-select option,
.exhibitor-field select option {
    background-color: var(--white);
    color: #172a25;
    font-family: 'Inter', sans-serif;
}

.contact-form-select:disabled,
.exhibitor-field select:disabled {
    cursor: not-allowed;
    opacity: 0.62;
    background-color: #f2f2f2;
}

/* Fully styled dropdown menu (progressively enhanced in main.js). */
.tp-select {
    position: relative;
    width: 100%;
    color: #172a25;
    font-family: 'Inter', sans-serif;
}

.tp-select.is-open {
    z-index: 40;
}

.tp-select.tp-select--enhanced > select.tp-select-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.tp-select-trigger {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #172a25;
    font-family: 'Inter', sans-serif;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tp-select--boxed .tp-select-trigger {
    min-height: 44px;
    padding: 7px 8px 7px 12px;
    border: 1px solid #8f9995;
    border-radius: 8px;
    background: var(--white);
    font-size: 0.85rem;
    font-weight: 400;
}

.tp-select--contact .tp-select-trigger {
    min-height: 42px;
    padding: 7px 2px 7px 0;
    border: 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 400;
}

.tp-select-value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp-select-trigger.is-placeholder {
    color: #7b8581;
}

.tp-select-chevron {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: rgba(232, 192, 122, 0.22);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.tp-select-chevron::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.8px solid #052018;
    border-bottom: 1.8px solid #052018;
    transform: translate(-50%, -68%) rotate(45deg);
    transition: transform 0.2s ease;
}

.tp-select-trigger:hover .tp-select-chevron,
.tp-select-trigger:focus-visible .tp-select-chevron,
.tp-select.is-open .tp-select-chevron {
    background: rgba(232, 192, 122, 0.48);
}

.tp-select.is-open .tp-select-chevron::before {
    transform: translate(-50%, -32%) rotate(225deg);
}

.tp-select--boxed .tp-select-trigger:hover {
    border-color: #d5a958;
    background: #fffdf8;
}

.tp-select--boxed .tp-select-trigger:focus-visible,
.tp-select--boxed.is-open .tp-select-trigger {
    border-color: #052018;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(5, 32, 24, 0.12);
}

.tp-select--contact .tp-select-trigger:hover {
    border-bottom-color: rgba(5, 32, 24, 0.68);
}

.tp-select--contact .tp-select-trigger:focus-visible,
.tp-select--contact.is-open .tp-select-trigger {
    border-bottom-color: #052018;
    box-shadow: 0 2px 0 rgba(5, 32, 24, 0.12);
}

.tp-select-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 1200;
    width: 100%;
    max-height: min(280px, 40vh);
    padding: 6px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(5, 32, 24, 0.2);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 16px 38px rgba(5, 32, 24, 0.16), 0 4px 12px rgba(5, 32, 24, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transform-origin: top center;
    transition: opacity 0.16s ease, visibility 0.16s ease, transform 0.16s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(5, 32, 24, 0.34) transparent;
}

.tp-select.opens-upward .tp-select-menu {
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateY(6px);
    transform-origin: bottom center;
}

.tp-select.is-open .tp-select-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.tp-select-menu::-webkit-scrollbar {
    width: 7px;
}

.tp-select-menu::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background: rgba(5, 32, 24, 0.34);
    background-clip: padding-box;
}

.tp-select-option {
    position: relative;
    min-height: 44px;
    padding: 10px 38px 10px 12px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    color: #263a34;
    font-size: 0.86rem;
    font-weight: 400;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    user-select: none;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.tp-select-option + .tp-select-option {
    margin-top: 2px;
}

.tp-select-option.is-active,
.tp-select-option:hover {
    color: #052018;
    background: rgba(232, 192, 122, 0.2);
}

.tp-select-option.is-selected {
    color: #052018;
    background: rgba(232, 192, 122, 0.32);
    font-weight: 600;
}

.tp-select-option-check {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 7px;
    height: 12px;
    border-right: 2px solid #052018;
    border-bottom: 2px solid #052018;
    opacity: 0;
    transform: translateY(-60%) rotate(45deg);
}

.tp-select-option.is-selected .tp-select-option-check {
    opacity: 1;
}

.tp-select-option.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.tp-select-option.is-disabled:hover {
    background: transparent;
}

.tp-select-trigger:disabled {
    cursor: not-allowed;
    color: #7b8581;
    background: #f2f2f2;
    opacity: 0.68;
}

.tp-select.is-invalid .tp-select-trigger {
    border-color: #c83b31;
    box-shadow: 0 0 0 3px rgba(200, 59, 49, 0.1);
}

.tp-select-error {
    display: block;
    margin-top: 6px;
    color: #c83b31;
    font-size: 0.75rem;
    line-height: 1.35;
}

@media (max-width: 575.98px) {
    .tp-select-menu {
        width: min(100%, calc(100vw - 32px));
        max-width: calc(100vw - 32px);
        max-height: min(250px, 44vh);
        border-radius: 10px;
    }

    .tp-select-option {
        min-height: 46px;
        font-size: 0.84rem;
    }

    .tp-select-chevron {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tp-select-trigger,
    .tp-select-chevron,
    .tp-select-chevron::before,
    .tp-select-menu,
    .tp-select-option {
        transition: none;
    }
}

.exhibitor-field input:focus,
.exhibitor-field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(34, 59, 33, 0.12);
}

.exhibitor-field textarea {
    min-height: 96px;
    resize: vertical;
}

.exhibitor-field textarea::placeholder {
    color: #b7b7b7;
    font-style: italic;
}

.company-logo-dropzone {
    min-height: 230px;
    border: 1px dashed #aaa !important;
    border-radius: 5px;
    background: #fffdfa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.company-logo-dropzone svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 14px;
}

.company-logo-dropzone strong {
    font: 600 1rem 'Inter', sans-serif;
    color: #444;
}

.company-logo-dropzone small {
    font: 400 0.75rem 'Inter', sans-serif;
    color: #bbb;
    margin-top: 12px;
}

.exhibitor-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 68px;
}

.exhibitor-form-actions .btn {
    min-width: 112px;
    padding: 10px 22px;
    border-radius: 6px;
    font: 500 0.75rem 'Inter', sans-serif;
}

.exhibitor-cancel-btn {
    border: 1px solid #08271f;
    background: var(--white);
    color: #08271f;
}

.exhibitor-continue-btn {
    border: 1px solid #08271f;
    background: #08271f;
    color: var(--white);
}

.exhibitor-continue-btn:disabled {
    cursor: default;
    opacity: 0.72;
}

/* ===== Exhibitor Form Validation ===== */
.exhibitor-noscript-notice {
    width: min(720px, calc(100% - 40px));
    margin: 48px auto;
    padding: 18px 22px;
    border: 1px solid rgba(180, 35, 24, 0.3);
    border-radius: 10px;
    background: #fff7f6;
    color: #7a271a;
    font: 500 0.88rem/1.55 'Inter', sans-serif;
    text-align: center;
}

.exhibitor-field.has-error > input:not([type='file']),
.exhibitor-field.has-error > textarea {
    border-color: #b42318;
    background-color: #fffafa;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.09);
}

.exhibitor-field-error {
    display: block;
    margin-top: -5px;
    color: #b42318;
    font: 500 0.75rem/1.4 'Inter', sans-serif;
}

.booth-type-grid + .exhibitor-field-error {
    max-width: 900px;
    margin: 10px auto 0;
}

.booth-type-fieldset.has-error .booth-type-card {
    border-color: rgba(180, 35, 24, 0.58);
    background: #fffafa;
}

.booth-type-card:focus-within {
    border-color: #052018;
    box-shadow: 0 0 0 3px rgba(5, 32, 24, 0.12);
}

.terms-agreement.has-error,
.review-consent-item.has-error {
    color: #7a271a;
}

.terms-agreement.has-error input,
.review-consent-item.has-error input {
    outline: 2px solid rgba(180, 35, 24, 0.75);
    outline-offset: 2px;
}

.terms-agreement + .exhibitor-field-error {
    margin-top: 8px;
}

.review-consent-list > .exhibitor-field-error {
    margin: -14px 0 0 33px;
}

.company-logo-dropzone {
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.company-logo-dropzone:focus-visible,
.company-logo-dropzone.is-dragover {
    border-color: #052018 !important;
    background: #fff8e7;
    box-shadow: 0 0 0 3px rgba(5, 32, 24, 0.12);
    outline: none;
}

.company-logo-dropzone.is-invalid {
    border-color: #b42318 !important;
    background: #fffafa;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.09);
}

.company-logo-dropzone.has-file small {
    color: #315f4d;
    font-weight: 500;
}

.exhibitor-submit-status {
    margin-top: 34px;
    padding: 17px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(5, 32, 24, 0.2);
    border-radius: 10px;
    background: rgba(232, 192, 122, 0.16);
    color: #052018;
    font-family: 'Inter', sans-serif;
}

.exhibitor-submit-status[hidden] {
    display: none;
}

.exhibitor-submit-status strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.exhibitor-submit-status span {
    font-size: 0.8rem;
    line-height: 1.5;
}

.exhibitor-form-heading h2[tabindex='-1']:focus {
    outline: none;
}

@media (max-width: 575.98px) {
    .exhibitor-field-error,
    .tp-select-error {
        width: 100%;
        font-size: 0.72rem;
        text-align: left;
    }

    .review-consent-list > .exhibitor-field-error {
        margin-left: 0;
        text-align: center;
    }

    .exhibitor-submit-status {
        text-align: center;
    }
}
