/* ---- Hero Grid Layout ---- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 340px);
    gap: 48px;
    align-items: center;
    min-height: calc(80vh - 72px);
    position: relative;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: unset;
    }
    .hero-main-content {
        padding-bottom: 0;
        align-items: flex-start;
    }
    .hero-organiser-card {
        max-width: 400px;
        margin: 0 auto;
        margin-top: 0;
        margin-bottom: 0;
        box-shadow: 0 4px 24px rgba(34,34,34,0.13);
    }

    .container {
        margin: 50px auto 50px !important;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 62px;
    }
    .hero-grid {
        gap: 18px;
        padding: 0 0.5rem;
    }
    .hero-main-content {
        padding: 0;
        align-items: flex-start;
    }
    .hero-organiser-card {
        padding: 18px 4px 14px 4px;
        border-radius: 12px;
        max-width: 98vw;
        margin: 0 auto;
        margin-bottom: 12px;
        margin-top: 0;
    }
}

.hero-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

/* ---- Hero Organiser Card ---- */
.hero-organiser-card {
    background: linear-gradient(150deg, #23272f 50%, var(--brand-red) 100%);
    background: -webkit-linear-gradient(150deg, #23272f 50%, var(--brand-red) 100%);
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(34,34,34,0.10);
    padding: 32px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    border: 1.5px solid rgba(224, 55, 14, 0.10);
    animation: fadeUp 0.7s 0.1s ease-out both;
}
.hero-organiser-card-title {
    color: var(--brand-red);
    letter-spacing: 0.04em;
    margin-bottom: 2px;
    font-size: clamp(1rem, 7vw, 1.5rem);
    font-weight: 700;
}

.hero-organiser-card-title span {
    color:#fff;
}
.hero-organiser-card-logo {
    height: 95px;
    width: auto;
    border-radius: 10px;
    background: transparent;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 6px 12px;
    object-fit: contain;
}
.hero-organiser-card-label {
    font-size: 0.98rem;
    color: var(--brand-amber);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: center;
    background: rgba(223, 136, 3, 0.08);
    padding: 7px 18px;
    border-radius: 16px;
    border: 1px solid rgba(223, 136, 3, 0.13);
}
/* ---- Hero Organiser Floating ---- */

.hero-organiser{
    display: flex;
    /* justify-content: end; */
    margin-bottom: 40px;
}
.hero-organiser-floating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 32px;
    padding: 7px 22px 7px 10px;
    z-index: 10;
    animation: fadeDown 0.7s 0.1s ease-out both;
}

.hero-logo-floating {
    height: 75px;
    width: auto;
    border-radius: 7px;
    padding: 2px 6px;
    object-fit: contain;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}

.hero-organiser-label-floating {
    font-size: 0.82rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.03em;
    background: rgba(224, 55, 14, 0.18);
    padding: 4px 14px;
    border-radius: 16px;
    border: 1px solid rgba(224, 55, 14, 0.18);
    white-space: nowrap;
}

@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* ============================================
   ICONMEQ - International Construction Expo
   Main Stylesheet
   Font: Poppins | Theme: #e0370e, #df8803
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
    --brand-red: #e0370e;
    --brand-amber: #df8803;
    --brand-dark: #1a1a1a;
    --brand-dark2: #111111;
    --brand-gray: #f5f5f5;
    --brand-gray2: #eeeeee;
    --text-dark: #1e1e2e;
    --text-mid: #444;
    --text-light: #777;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #e0370e 0%, #df8803 100%);
    --gradient-dark: linear-gradient(135deg, #c02e0b 0%, #b86e02 100%);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(224, 55, 14, 0.18);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

/* ---- Layout ---- */
.container {
    max-width: 1240px;
    margin: 100px auto 50px;
    padding: 0 2rem;
}

.section {
    padding: 90px 0;
}

.section-sm {
    padding: 60px 0;
}

/* ---- Typography ---- */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
}

.section-title span {
    color: var(--brand-red);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 620px;
    margin-top: 14px;
    line-height: 1.8;
}

.divider {
    width: 56px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    margin: 14px 0 20px;
}

.text-center {
    text-align: center;
}

.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.text-center .section-tag::before {
    display: none;
}

.text-center .section-tag {
    padding-left: 0;
}

.text-center .divider {
    margin-left: auto;
    margin-right: auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(224, 55, 14, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(224, 55, 14, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--brand-red);
    border-color: var(--brand-red);
}

.btn-outline:hover {
    background: var(--brand-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(224, 55, 14, 0.3);
}

.btn-white {
    background: #fff;
    color: var(--brand-red);
    border-color: #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.btn i {
    font-size: 0.9em;
}

/* ---- Navbar ---- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}


.navbar {
    position: relative;
    background: #fff;
    backdrop-filter: none;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(224, 55, 14, 0.10), 0 1.5px 8px rgba(34,34,34,0.08);
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 4px 24px rgba(224, 55, 14, 0.10), 0 1.5px 8px rgba(34,34,34,0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    max-width: 1240px;
    margin: 0 auto;
    height: 100px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    width: 190px;
    gap: 0;
}

.nav-logo-title {
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    line-height: 1;
}

.nav-logo-sub {
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}


.nav-links a {
    color: var(--brand-red);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 6px 16px;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
}


.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: var(--brand-red);
    font-weight: 700;
}

.nav-links a.active {
    color: #fff;
    background: var(--brand-red);
}

.nav-cta {
    margin-left: 12px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-organizer {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
    text-align: right;
    line-height: 1.4;
}

.nav-organizer strong {
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}


.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--brand-red);
    border-radius: 2px;
    transition: var(--transition);
}


.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid #eee;
}

.mobile-menu.open {
    display: flex;
}


.mobile-menu a {
    color: var(--brand-red);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.mobile-menu a:hover {
    color: #fff;
    background: var(--brand-red);
}

.mobile-menu .btn {
    margin-top: 14px;
    text-align: center;
    justify-content: center;
}

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--brand-dark2);
    padding-top: 72px; /* Height of navbar to prevent overlap */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.22;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.6) 60%, rgba(223, 136, 3, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 150px 2rem 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224, 55, 14, 0.15);
    border: 1px solid rgba(224, 55, 14, 0.4);
    color: var(--brand-amber);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease-out;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-red);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    animation: fadeUp 0.6s 0.1s ease-out both;
}

.hero-title span {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
    animation: fadeUp 0.6s 0.15s ease-out both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin-bottom: 28px;
    line-height: 1.6;
    animation: fadeUp 0.6s 0.2s ease-out both;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeUp 0.6s 0.25s ease-out both;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-meta-item i {
    color: var(--brand-amber);
    font-size: 1rem;
}

.hero-meta-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 0.6s 0.3s ease-out both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeUp 0.8s 0.4s ease-out both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    animation: fadeIn 1s 1s ease-out both;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ---- Vision & Mission ---- */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 50px;
}

.vm-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.vm-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.vm-icon {
    width: 56px;
    height: 56px;
    background: rgba(224, 55, 14, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vm-icon i {
    font-size: 1.4rem;
    color: var(--brand-red);
}

.vm-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.vm-card p,
.vm-card ul li {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.vm-card ul {
    margin-top: 10px;
}

.vm-card ul li {
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.vm-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-red);
}

.vm-watermark {
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(224, 55, 14, 0.04);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ---- Highlights / Features Strip ---- */
.highlights-strip {
    background: var(--brand-dark);
    padding: 60px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.highlight-item {
    padding: 30px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(224, 55, 14, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.highlight-item:hover .highlight-icon {
    background: rgba(224, 55, 14, 0.25);
}

.highlight-icon i {
    font-size: 1.4rem;
    color: var(--brand-amber);
}

.highlight-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.highlight-item p {
    font-size: 0.75rem;
    color: #111;
    margin-top: 5px;
    line-height: 1.5;
}

.highlights-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.highlights-item p {
    font-size: 0.75rem;
    color: #fff;
    margin-top: 5px;
    line-height: 1.5;
}

/* ---- Stats Section ---- */
.stats-section {
    background: var(--brand-gray);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-right: 2px solid #e0e0e0;
    transition: var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover .stat-num {
    transform: scale(1.05);
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    transition: var(--transition);
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 8px;
}

.stat-sub {
    font-size: 0.75rem;
    color: var(--brand-red);
    font-weight: 500;
    margin-top: 4px;
}

/* ---- Cards ---- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.cards-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 50px;
}

.card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: rgba(224, 55, 14, 0.15);
}

.card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.card:hover .card-top-bar {
    transform: scaleX(1);
}

.card-icon {
    width: 54px;
    height: 54px;
    background: rgba(224, 55, 14, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
}

.card:hover .card-icon {
    background: rgba(224, 55, 14, 0.14);
}

.card-icon i {
    font-size: 1.35rem;
    color: var(--brand-red);
}

.card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.card-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

/* ---- Image + Content ---- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse>* {
    direction: ltr;
}

.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
}

.split-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.split-image:hover img {
    transform: scale(1.03);
}

.split-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gradient);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.split-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.split-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.split-list-item .icon-wrap {
    width: 36px;
    height: 36px;
    background: rgba(224, 55, 14, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.split-list-item .icon-wrap i {
    font-size: 0.95rem;
    color: var(--brand-red);
}

.split-list-item p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.split-list-item p strong {
    color: var(--text-dark);
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: var(--brand-dark);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(224, 55, 14, 0.85) 0%, rgba(223, 136, 3, 0.75) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cta-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ---- Exhibitor Profile ---- */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.profile-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border-top: 4px solid var(--brand-red);
}

.profile-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-top-color: var(--brand-amber);
}

.profile-card-img {
    height: 200px;
    overflow: hidden;
}

.profile-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-card-img img {
    transform: scale(1.06);
}

.profile-card-body {
    padding: 22px 22px 24px;
}

.profile-card-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--brand-red);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.profile-card h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.profile-tag {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-mid);
    background: var(--brand-gray);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.profile-card:hover .profile-tag {
    background: rgba(224, 55, 14, 0.07);
    border-color: rgba(224, 55, 14, 0.2);
    color: var(--brand-red);
}

/* ---- ROI List ---- */
.roi-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.roi-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    transition: var(--transition);
}

.roi-item:hover {
    box-shadow: 0 6px 24px rgba(224, 55, 14, 0.1);
    border-color: rgba(224, 55, 14, 0.2);
    transform: translateX(4px);
}

.roi-item i {
    font-size: 1.2rem;
    color: var(--brand-red);
    flex-shrink: 0;
}

.roi-item span {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ---- Visitor Cards ---- */
.visitor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.visitor-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: var(--transition);
}

.visitor-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.visitor-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.visitor-card-icon {
    width: 46px;
    height: 46px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visitor-card-icon i {
    font-size: 1.1rem;
    color: #fff;
}

.visitor-card-header h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.visitor-card ul {
    margin: 0;
}

.visitor-card ul li {
    font-size: 0.82rem;
    color: var(--text-mid);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}

.visitor-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-amber);
}

/* ---- Insights / Stats Cards ---- */
.insight-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.insight-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient);
    opacity: 0.04;
    border-radius: 50% 0 0 0;
    transition: var(--transition);
}

.insight-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.insight-card:hover::after {
    opacity: 0.08;
    width: 130px;
    height: 130px;
}

.insight-num {
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.insight-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.insight-card p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ---- Trend Items ---- */
.trends-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.trend-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.trend-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-top-color: var(--brand-red);
}

.trend-icon {
    width: 64px;
    height: 64px;
    background: rgba(224, 55, 14, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.trend-card:hover .trend-icon {
    background: rgba(224, 55, 14, 0.15);
}

.trend-icon i {
    font-size: 1.5rem;
    color: var(--brand-red);
}

.trend-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trend-card p {
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ---- Organizer Section ---- */
.organizer-section {
    background: var(--brand-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.organizer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.organizer-brand {
    text-align: center;
}

.organizer-logo-text {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.organizer-logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.organizer-divider {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px auto;
}

.organizer-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.organizer-info p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 20px;
}

.organizer-info p strong {
    color: rgba(255, 255, 255, 0.85);
}

/* ---- Segment Tabs (Insights) ---- */
.tab-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    color: var(--text-mid);
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(224, 55, 14, 0.3);
}

/* ---- Discover Section ---- */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.discover-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 260px;
    cursor: pointer;
}

.discover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.discover-card:hover img {
    transform: scale(1.08);
}

.discover-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.discover-card:hover .discover-card-overlay {
    background: linear-gradient(to top, rgba(224, 55, 14, 0.8) 0%, rgba(223, 136, 3, 0.4) 60%, transparent 100%);
}

.discover-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.discover-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

/* ---- Contact Form ---- */
.contact-wrapper {
    display: grid;
    /* grid-template-columns: 1fr 1.6fr; */
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        margin-top: 40px;
        background: none;
}

@media (max-width: 1100px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}
@media (max-width: 700px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 32px 26px 28px 26px;
    border-radius: 18px;
    border: 1.5px solid #f3f3f3;
    background: #fff;
    box-shadow: 0 4px 24px rgba(34,34,34,0.07);
    transition: var(--transition);
    min-height: 170px;
    position: relative;
    color: var(--text-dark);
}

.contact-info-item span,
.contact-info-item a,
.contact-info-item p {
    color: #111111 !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.10);
}

.contact-info-text h4 {
    color: var(--brand-amber);
    font-weight: 800;
    letter-spacing: 0.03em;
}



.contact-info-item:hover {
    box-shadow: 0 12px 36px rgba(234, 179, 8, 0.13);
    border-color: #facc15;
    transform: translateY(-4px) scale(1.03);
}

.contact-info-icon {
    width: 54px;
    height: 54px;
    background: var(--brand-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 12px;
    color:white;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-text h4 {
    font-size: 1.08rem;
    font-weight: 800;
    color: #facc15;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 0.97rem;
    color: #e5e7eb;
    line-height: 1.7;
    word-break: break-word;
}

.contact-info-text a:hover {
    color: #facc15;
}

.contact-form {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 7px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: var(--text-dark);
    background: #fafafa;
    transition: var(--transition);
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(224, 55, 14, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ---- Map ---- */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 50px;
    height: 380px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---- Page Header ---- */
.page-header {
    background: var(--brand-dark2);
    padding: 175px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(224, 55, 14, 0.2) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.page-header-content .section-tag {
    color: var(--brand-amber);
    margin-bottom: 12px;
}

.page-header-content .section-tag::before {
    background: var(--brand-amber);
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-header h1 span {
    color: var(--brand-amber);
}

.page-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--brand-amber);
}

.breadcrumb i {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ---- Key Stats Banner ---- */
.key-stats {
    background: var(--gradient);
    padding: 50px 0;
}

.key-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.key-stat-item {
    padding: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.key-stat-item:last-child {
    border-right: none;
}

.key-stat-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.key-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

/* ---- Why Section ---- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.why-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid #eee;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.why-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.why-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: var(--transition);
    background: linear-gradient(135deg, rgba(224, 55, 14, 0.03) 0%, rgba(223, 136, 3, 0.03) 100%);
}

.why-card:hover .why-card-bg {
    opacity: 1;
}

.why-card-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(224, 55, 14, 0.06);
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 20px;
}

.why-card-content {
    position: relative;
    z-index: 1;
}

.why-card-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.why-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ---- Segment Banner ---- */
.segment-banner {
    background: var(--brand-dark);
    padding: 20px 0 30px;
    overflow: hidden;
}

.segment-text-scroll {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    /* animation: scrollText 20s linear infinite; */
    padding: 10px 0;
}

.segment-text-scroll span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.segment-text-scroll span.highlight {
    color: var(--brand-amber);
}

@keyframes scrollText {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---- Footer ---- */
.footer {
    background: var(--brand-dark2);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

.footer-top {
    padding: 70px 0 50px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand-title {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.footer-brand-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-event-badge {
    display: inline-block;
    background: rgba(224, 55, 14, 0.12);
    border: 1px solid rgba(224, 55, 14, 0.3);
    color: var(--brand-amber);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 0.06em;
}

.footer-col h5 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand-red);
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--brand-amber);
    padding-left: 4px;
}

.footer-links a:hover::before {
    background: var(--brand-amber);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--brand-red);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: var(--brand-amber);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-social:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: var(--brand-amber);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--brand-amber);
}

/* ---- Bg colors ---- */
.bg-dark {
    background: var(--brand-dark);
}

.bg-gray {
    background: var(--brand-gray);
}

.bg-white {
    background: #fff;
}

/* ---- Utility ---- */
.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-20 {
    margin-bottom: 20px;
}

.grid-center {
    place-items: center;
}

/* ---- Animations on scroll ---- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.delay-1 {
    transition-delay: 0.1s;
}

.fade-up.delay-2 {
    transition-delay: 0.2s;
}

.fade-up.delay-3 {
    transition-delay: 0.3s;
}

.fade-up.delay-4 {
    transition-delay: 0.4s;
}

/* ---- Alert Banner ---- */
.alert-bar {
    background: var(--gradient);
    text-align: center;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1001;
}

.alert-bar a {
    color: #fff;
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .highlight-item:nth-child(3) {
        border-right: none;
    }

    .trends-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 70px 0;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-section.reverse {
        direction: ltr;
    }

    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cards-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .profile-grid {
        grid-template-columns: 1fr 1fr;
    }

    .visitor-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .discover-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .organizer-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .key-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trends-grid {
        grid-template-columns: 1fr 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .highlight-item:nth-child(even) {
        border-right: none;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .alert-bar {
       display: none;
    }
}

@media (max-width: 600px) {

    .container {
        padding: 0 0.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-organizer {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid-4 {
        grid-template-columns: 1fr;
    }

    .cards-grid-2 {
        grid-template-columns: 1fr;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .visitor-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .discover-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .key-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trends-grid {
        grid-template-columns: 1fr 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-meta-divider {
        display: none;
    }

    .hero-content {
        margin:100px auto 30px;
    }

    .hero-organiser-card {
        padding: 15px;
        gap: 10px;
    }

    .hero-organiser-card-title {
        font-size: clamp(1rem, 7vw, 1rem);
    }

    .hero-organiser-card-logo {
        height: 95px;
        width: auto;
        border-radius: 10px;
        object-fit: contain;
        padding: 0px;
    }

    html {
        font-size: 14px;
    }

    
    .vm-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: var(--radius-lg);
        padding: 20px 15px;
        position: relative;
        overflow: hidden;
        transition: var(--transition);
    }

}