/* ==========================================================================
   INDIA BAKERY EXPO '26 - STYLESHEET
   Design Palette: Warm Cream, Soft Blush, Deep Green, Charcoal Dark, Bakery Gold
   ========================================================================== */

:root {
    /* Color Palette */
    --cream: #FFF8F2;
    --soft-cream: #FFF2E9;
    --card-bg: #FFFFFF;
    --pink: #E5A93C;
    --pink-light: #FDF7EC;

    /* Primary Logo Yellow / Gold Theme */
    --rose: #D99A35;
    --rose-dark: #B87B1B;
    --rose-glow: rgba(217, 154, 53, 0.22);
    --border-rose: rgba(217, 154, 53, 0.3);
    --shadow-rose: 0 12px 35px rgba(217, 154, 53, 0.3);

    --dark: #252525;
    --dark-heading: #1A1A1A;
    --muted: #666666;
    --gold: #D99A35;
    --gold-light: #FDF7EC;
    --green: #244E3A;
    --green-light: #EBF3EF;

    /* Borders & Shadows */
    --border: rgba(37, 37, 37, 0.08);
    --shadow-sm: 0 4px 15px rgba(37, 37, 37, 0.04);
    --shadow-md: 0 10px 30px rgba(37, 37, 37, 0.07);
    --shadow-lg: 0 20px 45px rgba(37, 37, 37, 0.12);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    /* Typography */
    --font-heading: 'Frank Ruhl Libre', 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* --------------------------------------------------------------------------
   Layout Containers
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding: 1.5rem 0;
    position: relative;
}

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

/* Section Header Shared */
.section-header {
    max-width: 760px;
    margin: 0 auto 1.5rem auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose);
    background-color: var(--pink-light);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.85rem;
    border: 1px solid rgba(227, 27, 75, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    color: var(--dark-heading);
    line-height: 1.25;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.6;
}

.title-rose {
    color: var(--rose);
}

.highlight-edition {
    color: var(--rose);
}

/* --------------------------------------------------------------------------
   Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--rose);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--dark);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-rose);
}

.btn-rose {
    background-color: var(--rose);
    color: #FFFFFF;
    box-shadow: var(--shadow-rose);
}

.btn-rose:hover {
    background-color: var(--rose-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--dark);
    color: #FFFFFF;
}

.btn-dark:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--dark);
    color: var(--dark);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn-outline-white:hover {
    background-color: #FFFFFF;
    color: var(--rose);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* --------------------------------------------------------------------------
   1. STICKY HEADER & NAV
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.25rem 0;
    transition: var(--transition);
    background-color: rgba(255, 248, 242, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(37, 37, 37, 0.05);
}

.header.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.header-logo-img {
    height: 67px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition);
}

.header.scrolled .header-logo-img {
    height: 44px;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    background-color: #FFFFFF;
    border-radius: var(--radius-sm);
    padding: 4px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--dark);
    position: relative;
    padding: 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--rose);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--rose);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-btn span {
    width: 100%;
    height: 2.5px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-fullwidth {
    min-height: 88vh;
    padding-top: 8rem;
    padding-bottom: 5.5rem;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--cream);
}

.hero-bg-image {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    height: calc(100% - 85px);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(255 248 242 / 83%) 0%, rgb(255 248 242 / 70%) 45%, rgb(255 248 242 / 0%) 75%, rgb(255 248 242 / 0%) 100%);
    z-index: 2;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(var(--pink) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 3;
}

.hero-container-full {
    position: relative;
    z-index: 4;
    width: 100%;
}

.hero-content-full {
    max-width: 860px;
}

.hero-top-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hero-title-full {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.6rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--dark-heading);
    margin-bottom: 1.25rem;
    letter-spacing: -1.5px;
}

.hero-description-full {
    font-size: 1.18rem;
    color: var(--dark);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 720px;
    font-weight: 500;
}

.hero-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #000000;
    background-color: rgba(217, 154, 53, 0.15);
    border: 1px solid rgba(217, 154, 53, 0.4);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

.hero-date-badge svg {
    color: #000000;
}

.hero-float-badge-full {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    z-index: 5;
    background: rgba(37, 37, 37, 0.92);
    color: #FFFFFF;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
}

.float-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.float-txt {
    display: flex;
    flex-direction: column;
}

.float-txt strong {
    font-size: 0.88rem;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.float-txt span {
    font-size: 0.76rem;
    color: var(--pink);
}

.hero-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--green-light);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(36, 78, 58, 0.15);
}

.hero-brand-logo-wrap {
    margin-bottom: 0.5rem;
}

.hero-brand-logo {
    height: 80px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.title-accent {
    color: var(--rose);
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.hero-info-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--pink-light);
    color: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--muted);
}

.info-val {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);

}

.info-subval {
    font-size: 0.78rem;
    color: var(--muted);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-organizer-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--muted);
    padding-top: 1rem;
    border-top: 1px stroke var(--border);
}

/* Hero Visual Frame */
.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #FFFFFF;
}

.hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image-frame:hover .hero-img {
    transform: scale(1.03);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.25rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.badge-top-right {
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--dark);
    color: #FFFFFF;
    border: none;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.badge-text {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-bottom-left {
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.badge-icon-wrap {
    width: 40px;
    height: 40px;
    background-color: var(--gold-light);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-content strong {
    font-size: 0.9rem;
    color: var(--dark);
}

.badge-content span {
    font-size: 0.75rem;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   3. EVENT INTRODUCTION
   -------------------------------------------------------------------------- */
.section-about {
    background-color: #FFFFFF;
}

.about-header-mobile {
    display: none;
    margin-bottom: 1.25rem;
}

.about-header-desktop {
    display: block;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
}

.image-stack {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.split-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.split-stat-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--rose);
    color: #FFFFFF;
    padding: 1.5rem 2rem;
    border-top-left-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.stat-unit {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0.9;
}

.stat-desc {
    font-size: 0.85rem;
    opacity: 0.85;
}

.lead-text {
    font-size: 1rem;
    color: var(--dark-heading);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.body-text {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 2rem;
    text-align: justify;
}

.info-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    background-color: var(--cream);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.strip-item {
    display: flex;
    flex-direction: column;
}

.strip-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--rose);
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.strip-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
}

/* --------------------------------------------------------------------------
   4. THE EXPO AIMS
   -------------------------------------------------------------------------- */
.section-aims {
    background-color: var(--soft-cream);
}

.aims-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.aim-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 2rem 1.6rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.aim-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink);
}

.aim-card-wide {
    grid-column: span 3;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--gold-light) 100%);
    border-color: rgba(217, 154, 53, 0.3);
}

.aim-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background-color: var(--pink-light);
    color: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    flex-shrink: 0;
}

.aim-card-wide .aim-icon-wrap {
    margin-bottom: 0.5rem;
    background-color: rgba(217, 154, 53, 0.15);
    color: var(--gold);
}

.aim-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-heading);
    margin-bottom: 0.6rem;
}

.aim-text {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.55;
}

.aims-callout-banner {
    margin-top: 2.5rem;
    padding: 1.75rem 2.5rem;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    color: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-rose);
}

.callout-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
}

.highlights-footer-box {
    margin-top: 2.5rem;
    background-color: var(--cream);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    border-left: 5px solid var(--rose);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlights-p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   5. EVENT HIGHLIGHTS
   -------------------------------------------------------------------------- */
.section-highlights {
    background-color: #FFFFFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 4rem;
    align-items: stretch;
}

.stat-card {
    background-color: transparent;
    padding: 1.25rem 0.5rem;
    border-radius: 0;
    text-align: center;
    border: none;
    box-shadow: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 55px;
    background-color: rgba(36, 78, 58, 0.22);
    border-radius: 2px;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    background-color: transparent;
}

.stat-num-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    white-space: nowrap;
    min-height: 52px;
    margin-bottom: 0.75rem;
    width: 100%;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--rose);
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--rose);
    margin-left: 4px;
    line-height: 1;
}

.stat-unit-label {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 1px;
    margin-left: 6px;
    vertical-align: baseline;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--muted);
    margin-top: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Redesigned 8 Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 1.6rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.highlight-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    width: 100%;
}

.highlight-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0 auto;
}

.highlight-card:hover .highlight-icon-box {
    transform: scale(1.1) rotate(4deg);
}

.highlight-badge {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.highlight-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-heading);
    margin-bottom: 0.6rem;
    line-height: 1.3;
    white-space: nowrap;
}

.highlight-desc {
    font-size: 0.86rem;
    color: #556070;
    line-height: 1.55;
    flex-grow: 1;
}

/* Bottom Glow Accent Bar */
.highlight-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0 0 16px 16px;
}

.highlight-card:hover .highlight-card-accent {
    width: 100%;
}

/* Unified Primary Brand Theme for Highlight Cards */
.highlight-icon-box {
    background: linear-gradient(135deg, #FFF0F3 0%, #FFE3E8 100%);
    color: var(--rose);
}

.highlight-card-accent {
    background: linear-gradient(90deg, var(--rose), #FF5376);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(227, 27, 75, 0.14);
}

.highlight-theme-rose .highlight-icon-box,
.highlight-theme-gold .highlight-icon-box,
.highlight-theme-emerald .highlight-icon-box,
.highlight-theme-purple .highlight-icon-box,
.highlight-theme-amber .highlight-icon-box {
    background: linear-gradient(135deg, #FFF0F3 0%, #FFE3E8 100%);
    color: var(--rose);
}

.highlight-theme-rose .highlight-card-accent,
.highlight-theme-gold .highlight-card-accent,
.highlight-theme-emerald .highlight-card-accent,
.highlight-theme-purple .highlight-card-accent,
.highlight-theme-amber .highlight-card-accent {
    background: linear-gradient(90deg, var(--rose), #FF5376);
}

/* Responsive Highlights Grid */
@media (max-width: 1100px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .highlight-card {
        padding: 1.4rem 1.2rem;
    }
}

/* --------------------------------------------------------------------------
   6. WHAT CAN BE DISPLAYED (EXHIBITORS)
   -------------------------------------------------------------------------- */
.section-exhibitors {
    background-color: var(--cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.category-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: var(--soft-cream);
    border-bottom: 1px solid var(--border);
}

.category-icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.category-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-title-wrap {
    display: flex;
    flex-direction: column;
}

.category-num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--rose);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-heading);
    line-height: 1.2;
}

.category-body {
    padding: 1.75rem;
    flex-grow: 1;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.category-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--dark);
    line-height: 1.45;
}

.check-icon {
    color: var(--rose);
    flex-shrink: 0;
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   7. VISITOR SECTION (WHO SHOULD VISIT)
   -------------------------------------------------------------------------- */
.section-visitors {
    background-color: #FFFFFF;
}

.visitor-accordion-wrap {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    background-color: #FFFFFF;
    border-color: var(--rose);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.35rem 1.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.accordion-header:hover {
    background-color: rgba(233, 141, 152, 0.08);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-heading);
}

.acc-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--pink-light);
    color: var(--rose);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-item.active .acc-badge {
    background-color: var(--rose);
    color: #FFFFFF;
}

.acc-chevron {
    color: var(--muted);
    transition: transform 0.3s ease;
}

.accordion-item.active .acc-chevron {
    transform: rotate(180deg);
    color: var(--rose);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.75rem;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
    padding: 0.5rem 1.75rem 1.75rem 1.75rem;
}

.visitor-tags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.75rem;
}

.vtag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--cream);
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid var(--border);
}

.vtag-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--rose);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. VISUAL GALLERY
   -------------------------------------------------------------------------- */
.section-gallery {
    background-color: var(--soft-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 280px;
}

.gallery-item.item-large {
    grid-column: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: #FFFFFF;
    transition: var(--transition);
}

.gallery-cat {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.25rem;
}

.gallery-caption {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   9. TAMIL NADU BAKERS FEDERATION (TNBF)
   -------------------------------------------------------------------------- */
.section-tnbf {
    background-color: #FFFFFF;
}

.tnbf-card {
    background: linear-gradient(135deg, var(--green) 0%, #153224 100%);
    color: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.tnbf-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 154, 53, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.tnbf-header-row {
    margin-bottom: 2rem;
}

.tnbf-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    background-color: rgba(217, 154, 53, 0.15);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
    border: 1px solid rgba(217, 154, 53, 0.3);
}

.tnbf-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #FFFFFF;
    font-weight: 800;
}

.tnbf-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.tnbf-main-text .lead-text {
    color: var(--cream);
    font-size: 1.1rem;
}

.tnbf-main-text .body-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.collab-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.collab-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
}

.collab-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.collab-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: var(--transition-fast);
}

.collab-pill:hover {
    background-color: rgba(255, 255, 255, 0.18);
    border-color: var(--gold);
}

/* --------------------------------------------------------------------------
   10. WHY ATTEND
   -------------------------------------------------------------------------- */
.section-why {
    background-color: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.why-card {
    background-color: #FFFFFF;
    padding: 2rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink);
}

.why-card-featured {
    /* background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); */
    color: #FFFFFF;
    border: none;
}

.why-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-rose);
}

.why-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 0.85rem;
}

.why-card-featured .why-num {
    color: var(--gold);
}

.why-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-heading);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.why-card-featured .why-title {
    /* color: #FFFFFF; */
}

.why-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}

.why-card-featured .why-desc {
    /* color: rgba(255, 255, 255, 0.9); */
}

/* --------------------------------------------------------------------------
   11. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner-section {
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.cta-banner-card {
    background: linear-gradient(135deg, var(--rose) 0%, #A51034 100%);
    color: #FFFFFF;
    border-radius: 0;
    padding: 5.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-rose);
    position: relative;
    overflow: hidden;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 1rem;
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cta-subtext {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.cta-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2.25rem;
}

.cta-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   12. CONTACT SECTION
   -------------------------------------------------------------------------- */
.section-contact {
    background-color: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.contact-card-main {
    background-color: var(--cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-heading);
    margin-bottom: 0.5rem;
}

.contact-card-desc {
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.contact-method-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #FFFFFF;
    padding: 1.1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-method-item:hover {
    border-color: var(--rose);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.method-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--pink-light);
    color: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--muted);
}

.method-value {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
}

.method-value-links {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--rose);
}

.venue-box {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--rose);
}

.venue-box-title {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.venue-box-address {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Contact Form */
.enquiry-form {
    background-color: var(--soft-cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--dark-heading);
    margin-bottom: 0.4rem;
}

.form-sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
}

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    color: var(--dark);
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px var(--rose-glow);
}

.form-feedback {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.form-feedback.success {
    color: var(--green);
    background-color: var(--green-light);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
}

.form-feedback.error {
    color: #C53030;
    background-color: #FFF5F5;
    border: 1px solid #FEB2B2;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
}


/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--dark);
    color: #FFFFFF;
    padding-top: 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.mobile-only-social {
    display: none !important;
}

.logo-footer {
    margin-bottom: 1.25rem;
}

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

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

.footer-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.social-icon-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.social-icon-link:hover {
    background-color: var(--rose);
    border-color: var(--rose);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(217, 154, 53, 0.35);
}

.footer-organizer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.4rem;
}

.footer-organizer strong {
    color: var(--gold);
    display: block;
}

.footer-office-address {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--pink);
    padding-left: 4px;
}

.footer-event-date,
.footer-event-venue {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    display: block;
}

.footer-contact-fast {
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-fast a {
    color: var(--pink);
}

.footer-bottom {
    padding: 1.5rem 0;
    background-color: #1A1A1A;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --------------------------------------------------------------------------
   MODAL DIALOG
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-card {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 660px;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--rose);
    margin-bottom: 0.25rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--dark-heading);
}

.modal-sub {
    font-size: 0.85rem;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   CUSTOM SURVEY QUESTIONS & RADIO CARDS (VISITOR REGISTRATION)
   -------------------------------------------------------------------------- */
.field-question-label {
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: var(--dark-heading);
    margin-bottom: 0.65rem;
}

.radio-card-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 0.5rem;
}

.radio-card-group.horizontal-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

@media (max-width: 640px) {
    .radio-card-group.horizontal-cards {
        grid-template-columns: 1fr;
    }
}

.radio-card-group.horizontal-cards .radio-card-box {
    padding: 0.75rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 12px;
    border: 1.5px solid #E2E8F0;
    background-color: #FFFFFF;
    transition: all 0.2s ease;
}

.radio-card-group.horizontal-cards .radio-card-text {
    font-weight: 700;
    font-size: 0.85rem;
    color: #2D3748;
    line-height: 1.3;
}

.radio-card-option {
    display: block;
    cursor: pointer;
    margin: 0;
}

.radio-card-option input[type="radio"] {
    display: none;
}

.radio-card-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid #E2E8F0;
    border-radius: 16px;
    background-color: #FFFFFF;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 0.92rem;
    color: #2D3748;
}

.radio-card-option:hover .radio-card-box {
    border-color: var(--rose);
    background-color: #FFF0F3;
}

.radio-card-option input[type="radio"]:checked+.radio-card-box {
    border: 2px solid var(--rose);
    background-color: #FFF0F3;
    box-shadow: 0 0 0 2px rgba(227, 27, 75, 0.12);
}

.radio-custom-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #CBD5E0;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.radio-card-option input[type="radio"]:checked+.radio-card-box .radio-custom-circle,
.inline-radio-item input[type="radio"]:checked+.radio-custom-circle,
.radio-list-item input[type="radio"]:checked+.radio-custom-circle,
.radio-pill-option input[type="radio"]:checked+.radio-pill-box .radio-custom-circle {
    border-color: var(--rose);
    background-color: var(--rose);
}

.radio-card-option input[type="radio"]:checked+.radio-card-box .radio-custom-circle::after,
.inline-radio-item input[type="radio"]:checked+.radio-custom-circle::after,
.radio-list-item input[type="radio"]:checked+.radio-custom-circle::after,
.radio-pill-option input[type="radio"]:checked+.radio-pill-box .radio-custom-circle::after {
    content: '';
    position: absolute;
    top: 5.5px;
    left: 5.5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #FFFFFF;
}

/* Vertical Radio List (Circle on Left, Text on Right, Clean No-Border Style matching image) */
.radio-list-vertical {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.radio-list-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    margin: 0;
    padding: 0.2rem 0;
    border: none;
    background: transparent;
    transition: opacity 0.2s ease;
}

.radio-list-item:hover {
    opacity: 0.85;
}

.radio-list-item input[type="radio"] {
    display: none;
}

.radio-list-text {
    font-weight: 700;
    font-size: 12px;
    color: #2D3748;
    line-height: 1.3;
}

.radio-list-item input[type="radio"]:checked+.radio-custom-circle+.radio-list-text {
    color: #1A202C;
    font-weight: 600;
}

/* Inline Radio Row (Matching Image UI like "2 BHK / 3 BHK") */
.inline-radio-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}

.inline-radio-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    margin: 0;
}

.inline-radio-item input[type="radio"] {
    display: none;
}

.inline-radio-label {
    font-weight: 600;
    font-size: 12px;
    color: #1A202C;
}

.radio-pill-option input[type="radio"]:checked+.radio-pill-box {
    border: 2px solid var(--rose);
    background-color: #FFF0F3;
    color: #1A202C;
}

.expo-input {
    background-color: #F7F5FC;
    border: 1.5px solid #E9E3F8;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    font-size: 12px;
    color: #2D3748;
    width: 100%;
    transition: all 0.2s ease;
}

.expo-input::placeholder {
    color: #A0AEC0;
}

.expo-input:focus {
    background-color: #FFFFFF;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(227, 27, 75, 0.15);
}

.expo-select {
    appearance: none;
    background-color: #F7F7FA;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    color: #4A5568;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

/* --------------------------------------------------------------------------
   CUSTOM FORM VALIDATION ERROR STYLING
   -------------------------------------------------------------------------- */
.expo-input.input-error,
.expo-select.input-error {
    border-color: #E53E3E !important;
    background-color: #FFF5F5 !important;
}

.modal-field-group {
    position: relative;
}

.modal-field-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.field-error-msg {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #E53E3E;
    margin-top: 0.35rem;
    line-height: 1.35;
    animation: fadeInError 0.2s ease-in-out;
}

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Information Section Styling (Matching Reference Image) */
.contact-info-section-wrapper {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #E2E8F0;
}

.contact-info-header {
    margin-bottom: 1.2rem;
}

.contact-info-title {
    font-size: 16px;
    font-weight: 700;
    color: #1A202C;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.25rem;
}

.contact-info-sub {
    font-size: 0.88rem;
    color: #4A5568;
    margin: 0;
}

.field-subtext {
    display: block;
    font-size: 0.78rem;
    color: #718096;
    margin-top: 0.35rem;
    line-height: 1.35;
}

/* --------------------------------------------------------------------------
   BACK TO TOP
   -------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 2.5rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark);
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--rose);
    transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN & MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .aim-card-wide {
        grid-column: span 2;
    }

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

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

    .tnbf-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

@media (max-width: 768px) {
    .about-header-mobile {
        display: block;
    }

    .about-header-desktop {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: var(--shadow-lg);
        padding: 6rem 2rem 2rem 2rem;
        transition: var(--transition);
        z-index: 1000;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hamburger-btn {
        display: flex;
    }

    .header-actions .btn {
        display: none;
    }

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

    .feature-card-wide {
        grid-column: span 1;
    }

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

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

    .gallery-item.item-large {
        grid-column: span 1;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    .aim-card-wide {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .tnbf-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

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

    .cta-banner-card {
        padding: 2.5rem 1.5rem;
    }
}

/* ==========================================================================
   EXPO ENQUIRY & REGISTRATION MODAL DIALOG (STALL & VISITOR)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1rem;
}

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

.modal-card {
    font-family: var(--font-heading);
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 100%;
    max-width: 660px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transform: translateY(20px) scale(0.97);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

/* Header Bar (Red / Theme Banner) */
.modal-header-bar {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    padding: 0.95rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
    position: relative;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    flex-shrink: 0;
}

.modal-header-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    padding-right: 1.25rem;
    line-height: 1.25;
}

.modal-close-icon {
    background: rgba(255, 255, 255, 0.22);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.modal-close-icon:hover {
    background: rgba(255, 255, 255, 0.38);
    transform: scale(1.08);
}

/* Modal Body Content */
.modal-body-content {
    padding: 1.1rem 1.4rem 1.25rem;
    overflow-y: auto;
}

/* Custom Sleek Scrollbar */
.modal-body-content::-webkit-scrollbar {
    width: 5px;
}

.modal-body-content::-webkit-scrollbar-track {
    background: #F1F4F8;
    border-radius: 8px;
}

.modal-body-content::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 8px;
}

.modal-body-content::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* Tab Switcher (Pill Toggle) */
.modal-tab-switcher {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #F1F5F9;
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 0.9rem;
    gap: 4px;
}

.tab-btn {
    font-family: var(--font-heading);
    border: none;
    background: transparent;
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #556070;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.tab-btn.active {
    background-color: var(--rose);
    color: #FFFFFF;
}

.tab-btn:hover:not(.active) {
    color: var(--dark);
    background-color: rgba(255, 255, 255, 0.7);
}

/* Modal Forms & Inputs */
.tab-content {
    animation: modalTabFadeIn 0.3s ease;
}

@keyframes modalTabFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1rem;
    margin-bottom: 0.65rem;
}

.contact-info-section-wrapper {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.modal-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding-left: 20px;

}

.modal-field-group.field-full-width {
    grid-column: span 2;
    margin-bottom: 0.65rem;
}

.modal-field-group label,
.field-question-label,
.inline-radio-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 650;
    color: #2D3748;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-with-icon svg {
    position: absolute;
    left: 0.85rem;
    width: 18px;
    height: 18px;
    color: #244E3A;
    pointer-events: none;
    transition: color 0.2s ease;
}

.input-with-icon .expo-input {
    padding-left: 2.5rem !important;
}

.input-with-icon:focus-within svg {
    color: #1A3A2A;
}

.expo-input,
.expo-select {
    font-family: var(--font-heading);
    width: 100%;
    padding: 0.65rem 0.85rem;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 12px;
    color: var(--dark);
    transition: all 0.2s ease;
    outline: none;
}

.expo-input::placeholder {
    font-family: var(--font-heading);
    color: #A0AEC0;
    font-size: 0.83rem;
}

.expo-input:focus,
.expo-select:focus {
    background-color: #FFFFFF;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(227, 27, 75, 0.12);
}

/* Modal Actions Footer Buttons */
.modal-actions-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.85rem;
}

.expo-btn {
    font-family: var(--font-heading);
    border: none;
    padding: 0.65rem 1.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 125px;
}

.expo-btn-cancel {
    background-color: #64748B;
    color: #FFFFFF;
}

.expo-btn-cancel:hover {
    background-color: #475569;
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.25);
}

.expo-btn-submit {
    background-color: var(--rose);
    color: #FFFFFF;
}

.expo-btn-submit:hover {
    background-color: var(--rose-dark);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .form-grid-2col {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .modal-field-group.field-full-width {
        grid-column: span 1;
    }

    .modal-header-title {
        font-size: 0.82rem;
    }

    .modal-body-content {
        padding: 1rem 0.85rem;
    }

    .tab-btn {
        font-size: 0.85rem;
        padding: 0.6rem 0.5rem;
    }

    .expo-btn {
        padding: 0.65rem 1.3rem;
        min-width: 110px;
    }
}

/* --------------------------------------------------------------------------
   10. WHY ATTEND SECTION
   -------------------------------------------------------------------------- */
.section-why .section-title {
    white-space: nowrap;
    font-size: clamp(1.4rem, 2.5vw, 2.5rem);
}

@media (max-width: 992px) {
    .section-why .section-title {
        white-space: normal;
    }
}

/* --------------------------------------------------------------------------
   11. VENUE LOCATION MAP SECTION
   -------------------------------------------------------------------------- */
.section-venue {
    background-color: var(--cream);
}

.venue-map-wrapper {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 2rem;
    align-items: stretch;
}

.venue-info-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.venue-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rose);
    background-color: var(--pink-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.venue-card-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--dark-heading);
    margin-bottom: 0.35rem;
}

.venue-card-sub {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.45;
    margin-bottom: 1.5rem;
}

.venue-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.venue-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.venue-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: var(--soft-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.venue-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.venue-detail-text strong {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--dark-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.venue-detail-text span {
    font-size: 0.88rem;
    color: #556070;
    line-height: 1.5;
}

.venue-direction-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.venue-map-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    min-height: 440px;
    background-color: #E5E7EB;
}

.venue-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 440px;
    display: block;
}

@media (max-width: 992px) {
    .venue-map-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .venue-map-card {
        min-height: 360px;
    }

    .venue-map-card iframe {
        min-height: 360px;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE — FULL SITE (768px Tablet & 480px Mobile)
   ========================================================================== */

/* ---- Tablet (≤ 900px): collapse nav, stack grids ---- */
@media (max-width: 900px) {

    /* Container */
    .container {
        padding: 0 1.25rem;
    }

    /* HEADER: hide nav, hamburger, and header actions button on mobile */
    .nav-menu {
        display: none !important;
    }

    .hamburger-btn {
        display: none !important;
    }

    .header-actions {
        display: none !important;
    }

    .hero-date-badge {
        display: none !important;
    }

    /* HERO */
    .hero-fullwidth {
        min-height: 85vh;
        min-height: 85dvh;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-top: 5rem;
        padding-bottom: 2rem;
        position: relative;
    }

    .hero-bg-image {
        top: 0 !important;
        height: 100% !important;
        width: 100% !important;
        background-image: url('assets/images/image copy1.png') !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }

    .hero-overlay-gradient {
        display: none !important;
    }

    .hero-content-full {
        max-width: 100%;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 1rem 0;
        margin: 0 auto;
    }

    .hero-title-full {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
        letter-spacing: -0.5px;
        text-align: center;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.45);
        padding: 0.6rem 1rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .hero-description-full {
        font-size: 0.92rem;
        line-height: 1.55;
        color: #FFFFFF;
        background: rgba(0, 0, 0, 0.393);
        padding: 1.1rem 1.35rem;
        border-radius: 16px;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        margin: 0 auto 1.5rem auto;
        text-align: center;
        max-width: 95%;
    }

    .hero-cta-group {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-cta-group .btn {
        margin: 0 auto;
    }

    .hero-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-float-badge-full {
        display: none;
    }

    /* ABOUT */
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-img {
        height: 300px;
    }

    /* AIMS */
    .aims-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aim-card-wide {
        grid-column: span 2;
    }

    /* STATS */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    /* EXHIBITORS */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* CONTACT */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-col,
    .contact-info-col {
        width: 100%;
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }
}

/* ---- Mobile (≤ 600px): fine-tune for phones ---- */
@media (max-width: 600px) {

    /* Section spacing */
    .section-pad {
        padding: 3.5rem 0;
    }

    /* HERO */
    .hero-fullwidth {
        padding-top: 5.5rem;
        padding-bottom: 2.5rem;
    }

    .hero-title-full {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        padding-top: 5px;
    }

    .hero-description-full {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-info-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta-group {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.85rem;
    }

    .hero-cta-group .btn,
    .expo-btn,
    .enquiry-form .btn {
        width: auto;
        padding: 0.65rem 1.35rem;
        font-size: 12px;
    }

    .hero-brand-logo {
        height: 60px;
    }

    /* SECTION HEADINGS */
    .section-tag {
        font-size: 0.72rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);

    }

    /* ABOUT */
    .split-img {
        height: 220px;
    }

    .info-strip {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    /* AIMS */
    .aims-grid {
        grid-template-columns: 1fr;
    }

    .aim-card-wide {
        grid-column: span 1;
    }

    .aims-callout-banner {
        padding: 1.25rem 1.25rem;
    }

    .callout-text {
        font-size: 1rem;
    }

    /* STATS */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin-bottom: 2rem;
    }

    .stat-card {
        padding: 0.75rem 0.25rem;
    }

    .stat-card:not(:last-child)::after {
        height: 36px;
    }

    .stat-num-container {
        min-height: 30px;
        margin-bottom: 0.25rem;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .stat-plus {
        font-size: 1.05rem;
    }

    .stat-unit-label {
        font-size: 0.68rem;
        margin-left: 3px;
    }

    .stat-label {
        font-size: 0.62rem;
        letter-spacing: 0.4px;
        margin-top: 0;
    }

    /* HIGHLIGHTS */
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    /* EXHIBITORS */
    .categories-grid {
        grid-template-columns: 1fr;
    }

    /* CONTACT */
    .enquiry-form {
        padding: 1.5rem 1.25rem;
    }

    .contact-card-main {
        padding: 1.5rem 1.25rem;
    }

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

    /* Date radio pills: wrap on mobile */
    .radio-list-vertical {
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* MODAL */
    .modal-card {
        width: 95vw;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: var(--radius-md);
    }

    .modal-body-content {
        padding: 1.25rem;
    }

    .modal-fields-grid {
        grid-template-columns: 1fr;
    }

    .field-full-width,
    .field-half-width {
        grid-column: span 1;
    }

    /* FOOTER */
    .desktop-social-links {
        display: none !important;
    }

    .mobile-only-social {
        display: block !important;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.25rem;
        padding-bottom: 2rem;
    }

    .footer-brand-col,
    .footer-info-col {
        grid-column: span 2;
    }

    .footer-links-col,
    .footer-social-col {
        grid-column: span 1;
    }

    .footer-logo-img {
        height: 52px;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        font-size: 0.78rem;
    }

    /* Back-to-top btn */
    .back-to-top-btn {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 42px;
        height: 42px;
    }
}

/* ---- Extra small (≤ 380px) ---- */
@media (max-width: 380px) {
    .hero-title-full {
        font-size: 1.6rem;
        padding-top: 20px;
    }

    .info-strip {
        grid-template-columns: 1fr;
    }

    .aims-callout-banner {
        padding: 1rem;
    }

    .enquiry-form,
    .contact-card-main {
        padding: 1.1rem 1rem;
    }
}