/* ==========================
   SECTIONS.CSS — Automation Expo 2026
   Tighter spacing, elevated design
========================== */

/* =====================================
   ABOUT EXPO SECTION
===================================== */
.about-expo {
    padding: 48px 5% 0;
    background: var(--bg-white);
}

.about-card {
    max-width: 1380px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 36px;
    display: grid;
    grid-template-columns: 50% 46%;
    gap: 4%;
    align-items: center;
    box-shadow: 0 4px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
}

.about-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 8px 18px;
    border-radius: 50px;
    background: #FFF5D8;
    color: var(--accent-indigo);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    text-transform: uppercase;
    border: 1px solid rgba(255,215,0,0.3);
}

.about-left h2 {
    font-size: clamp(26px, 3vw, 46px);
    line-height: 1.15;
    color: var(--accent-indigo);
    margin-bottom: 14px;
    font-weight: 800;
}

.about-left h2 span { color: var(--accent-red); }

.about-left p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-soft);
    margin-bottom: 14px;
}

.about-right {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    width: 100%;
    aspect-ratio: 16 / 9;
    box-shadow: 0 12px 40px rgba(7,9,26,0.12);
}

.about-right video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.about-right::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(255,215,0,0.2);
    pointer-events: none;
}
.stats-frontier {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 52px 5% 48px;
}

.stats-frontier-inner {
    max-width: 1380px;
    margin: 0 auto;
}

.stats-headline {
    text-align: center;
    margin-bottom: 40px;
}

.stats-tag {
    display: inline-block;
    background: #FFF5D8;
    color: var(--accent-indigo);
    border: 1px solid rgba(255,215,0,0.4);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.stats-headline h2 {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 38px);
    font-weight: 800;
    color: var(--text-black);
    line-height: 1.2;
}

.stats-headline h2 .hl-blue { color: #0A1650; }
.stats-headline h2 .hl-red  { color: var(--accent-red); }

/* 4-column grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-white);
}

.stat-block {
    text-align: center;
    padding: 32px 20px 28px;
    border-right: 1px solid var(--border-light);
    position: relative;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.stat-block:last-child { border-right: none; }

/* Gold-red top bar reveals on hover */
.stat-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-block:hover { background: #FFFBEA; }
.stat-block:hover::before { transform: scaleX(1); }

/* Icon badge */
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    margin: 0 auto 16px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.stat-block:hover .stat-icon {
    background: #FFF5D8;
    border-color: rgba(255,215,0,0.5);
}

.stat-icon i {
    font-size: 18px;
    color: var(--text-soft);
    transition: color 0.25s ease;
}

.stat-block:hover .stat-icon i { color: #0A1650; }

/* Number */
.stat-num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stat-num .counter {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #0A1650;
    line-height: 1;
    transition: color 0.25s ease;
}

/* HOVER → numbers flip to gold */
.stat-block:hover .stat-num .counter { color: var(--accent-gold); }

.stat-num .suffix {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-red);
    transition: color 0.25s ease;
}

.stat-block:hover .stat-num .suffix { color: var(--accent-gold); }

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

@media (max-width: 768px) {
.stats-grid {
    grid-template-columns: repeat(4, 1fr);  /* was repeat(5, 1fr) */
}
    .stat-block:nth-child(2) { border-right: none; }
    .stat-block:nth-child(3) { border-top: 1px solid var(--border-light); }
    .stat-block:nth-child(4) { border-right: none; border-top: 1px solid var(--border-light); }
}
@media (max-width: 580px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-block:nth-child(2) { border-right: none; }
    .stat-block:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
    .stat-block:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
}
/* =====================================
   EXHIBITOR PROFILES — MEMORY LANE
===================================== */
.memory-lane-style {
    background: var(--bg-light);
    padding: 48px 0 44px;
    overflow: hidden;
}

.memory-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 0 5%;
}

.memory-header h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--accent-indigo);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -1px;
}

.memory-header p {
    font-size: 14px;
    color: var(--text-soft);
    margin-top: 8px;
}

.slider-row {
    overflow: hidden;
    margin-bottom: 16px;
}

.memory-track {
    display: flex;
    gap: 14px;
    width: max-content;
}

.track-left  { animation: scrollLeft 38s linear infinite; }
.track-right { animation: scrollRight 38s linear infinite; }

@keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.memory-track:hover { animation-play-state: paused; }

.memory-card {
    position: relative;
    width: 420px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eee;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.memory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(7,9,26,0.18);
}

.memory-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.memory-card:hover img { transform: scale(1.07); }

.memory-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,9,26,0.82), rgba(7,9,26,0.05));
    z-index: 1;
}

.card-title {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.card-title::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--accent-gold);
    margin-bottom: 6px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.memory-card:hover .card-title::before { width: 48px; }

@media (max-width: 768px) {
    .memory-header h2 { font-size: 26px; }
    .memory-card { width: 280px; height: 200px; }
}


/* =====================================
   WHY VISIT
===================================== */
/* =====================================================
   WHY VISIT — Premium Redesign
   Matches: navy #0A1650, gold #FFD700, red #E63B2E
===================================================== */
.why-visit-dark {
    position: relative;
    padding: 80px 5% 64px;
    overflow: hidden;
     background: #0A1650;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Ambient glow orbs ── */
.wv-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.55;
}

.wv-orb-1 {
    width: 480px;
    height: 480px;
    top: -160px;
    left: -120px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.18), transparent 70%);
}

.wv-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(230, 59, 46, 0.15), transparent 70%);
}

.wv-orb-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   background: radial-gradient(circle, rgba(7, 9, 26, 0.5), transparent 70%);
}

/* ── Inner container ── */
.wv-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Header ── */
.wv-header {
    text-align: center;
    margin-bottom: 52px;
}

.wv-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 6px 20px;
    margin-bottom: 20px;
}

.wv-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.wv-hl {
    background: linear-gradient(90deg, #FFD700, #E63B2E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wv-header p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* ── Grid ── */
.wv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

/* ── Card ── */
.wv-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.38s cubic-bezier(0.25, 0.8, 0.25, 1),
                background 0.38s ease,
                border-color 0.38s ease,
                box-shadow 0.38s ease;
}

/* Shine sweep on hover */
.wv-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
    border-radius: 20px;
}

/* ── HOVER — White card ── */
.wv-card:hover {
    background: #ffffff;
    border-color: transparent;
    transform: translateY(-8px) scale(1.015);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        0 4px 16px rgba(10, 22, 80, 0.1);
}

.wv-card:hover::before {
    transform: translateX(100%);
}

/* Icon + number row */
.wv-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Icon */
.wv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.35s ease,
                border-color 0.35s ease;
}

.wv-icon.gold {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.wv-icon.red {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.wv-icon.gold i { color: #ffffff; }
.wv-icon.red i  { color: #ffffff; }

.wv-icon i {
    font-size: 24px;
    transition: color 0.3s ease;
}


/* Hover icon → navy */
.wv-card:hover .wv-icon {
    background: rgba(10, 22, 80, 0.08) !important;
    border-color: rgba(10, 22, 80, 0.2) !important;
    transform: rotate(-8deg) scale(1.1);
}

.wv-card:hover .wv-icon i {
    color: #0A1650 !important;
}

/* Number badge */
.wv-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.15);
    transition: color 0.3s ease;
}

.wv-card:hover .wv-num {
    color: rgba(10, 22, 80, 0.2);
}

/* Heading */
.wv-card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin: 0;
    transition: color 0.3s ease;
}

.wv-card:hover h3 {
    color: #07091A;
}

/* Body */
.wv-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.wv-card p strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    transition: color 0.3s ease;
}

.wv-card:hover p {
    color: rgba(7, 9, 26, 0.6);
}

.wv-card:hover p strong {
    color: #07091A;
}

/* Bottom accent bar */
.wv-bar {
    height: 2px;
    border-radius: 2px;
    width: 32px;
    transition: width 0.4s ease, background 0.3s ease;
    margin-top: 4px;
}

.wv-bar.gold { background: #FFD700; }
.wv-bar.red  { background: #E63B2E; }

.wv-card:hover .wv-bar {
    width: 56px;
    background: #0A1650 !important;
}




/* ── Responsive ── */
@media (max-width: 1024px) {
    .wv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wv-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .why-visit-dark {
        padding: 60px 5% 48px;
    }

    .wv-header {
        margin-bottom: 36px;
    }

    .wv-header h2 {
        font-size: 28px;
    }

    .wv-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wv-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .wv-cta {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .wv-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .why-visit-dark {
        padding: 48px 4% 40px;
    }

    .wv-header h2 {
        font-size: 24px;
    }

    .wv-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
    }

    .wv-icon i {
        font-size: 20px;
    }

    .wv-card {
        padding: 22px 20px 18px;
    }

    .wv-card h3 {
        font-size: 14px;
    }

    .wv-card p {
        font-size: 12.5px;
    }
}
/* ══════════════════════════════
   TEXT BLOCK
══════════════════════════════ */
.why-dtext {
    width: 100%;
}

.why-dtext h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.why-underline {
    width: 28px;
    height: 2px;
    border-radius: 2px;
    margin: 0 auto 10px auto;
    transition: width 0.35s ease, background 0.35s ease;
}

.why-dpanel.gold .why-underline {
    background: #FFD700;
}

.why-dpanel.red .why-underline {
    background: #E63B2E;
}

.why-dtext p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin: 0;
    transition: color 0.3s ease;
}

.why-dtext p b {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    transition: color 0.3s ease;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
    .why-dark-header h2 {
        font-size: 34px;
    }

    .why-dark-grid {
        gap: 16px;
    }

    .why-dpanel {
        padding: 30px 22px;
    }
}

@media (max-width: 768px) {
    .why-visit-dark {
        padding: 60px 5%;
    }

    .why-dark-header h2 {
        font-size: 28px;
    }

    .why-dark-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-dpanel {
        padding: 28px 20px;
    }

    .why-dicon {
        width: 54px;
        height: 54px;
    }

    .why-dicon i {
        font-size: 22px;
    }

    .why-dtext h3 {
        font-size: 15px;
    }

    .why-dpanel:hover {
        transform: translateY(-6px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .why-visit-dark {
        padding: 48px 4%;
    }

    .why-dark-header h2 {
        font-size: 24px;
    }

    .why-dark-header p {
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .why-dpanel {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .why-dicon {
        width: 48px;
        height: 48px;
    }

    .why-dicon i {
        font-size: 20px;
    }

    .why-dtext h3 {
        font-size: 14px;
    }

    .why-dtext p {
        font-size: 12px;
    }
}




/* =====================================
   INNOVATION ZONES
===================================== */
.innovation-zones {
    padding: 52px 5% 48px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
}

.zones-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.zone-card {
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    padding: 32px 28px;
    min-height: 190px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--bg-white);
    transition: all 0.35s ease;
}

.zone-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 100%;
    transition: width 0.4s ease;
}

.zone-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: transparent;
}

.zone-card:hover::after { width: 4px; }

.zone-card.ai::after       { background: linear-gradient(to bottom, var(--accent-gold), var(--accent-red)); }
.zone-card.robotics::after { background: linear-gradient(to bottom, var(--accent-red), var(--accent-magenta)); }
.zone-card.factory::after  { background: linear-gradient(to bottom, #07091A, #2E2979); }
.zone-card.iiot::after     { background: linear-gradient(to bottom, #0EA5E9, #06B6D4); }
.zone-card.twin::after     { background: linear-gradient(to bottom, #10B981, #059669); }
.zone-card.cyber::after    { background: linear-gradient(to bottom, var(--accent-navy), var(--accent-teal)); }

.zone-num {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--text-soft);
    margin-bottom: 14px;
    display: block;
}

.zone-card h3 {
    font-size: clamp(15px, 1.8vw, 20px);
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 8px;
    font-family: var(--font-display);
    line-height: 1.25;
}

.zone-card p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
}


/* =====================================
   SPEAKERS
===================================== */
.speakers-section {
    padding: 52px 5% 48px;
    background: var(--bg-light);
}

.speakers-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.speaker-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.speaker-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(7,9,26,0.12);
}

.speaker-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.speaker-card:hover img { transform: scale(1.05); }

.speaker-content {
    padding: 18px 20px 20px;
    border-top: 1.5px solid var(--border-light);
}

.speaker-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 3px;
    font-family: var(--font-display);
}

.speaker-content span {
    display: block;
    color: var(--accent-red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.speaker-content p {
    color: var(--text-soft);
    font-size: 12px;
}


/* =====================================
   LOGO SLIDER — EXHIBITORS
===================================== */
.exhibitors-section {
    padding: 52px 0 48px;
    background: var(--accent-navy);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.exhibitors-section .section-header { padding: 0 5%; }

.exhibitors-section .section-tag {
    background: rgba(255,215,0,0.12);
    color: var(--accent-gold);
    border: 1px solid rgba(255,215,0,0.28);
}

.exhibitors-section .section-header h2 { color: #fff; }
.exhibitors-section .section-header p  { color: rgba(255,255,255,0.55); }

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 36px;
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before { left: 0;  background: linear-gradient(to right, var(--accent-navy), transparent); }
.logo-slider::after  { right: 0; background: linear-gradient(to left,  var(--accent-navy), transparent); }

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogo 30s linear infinite;
}

.logo-track:hover { animation-play-state: paused; }

.logo-item {
    min-width: 160px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
}

.logo-item:hover {
    color: var(--accent-gold);
    border-color: rgba(255,215,0,0.35);
    background: rgba(255,215,0,0.07);
    transform: translateY(-3px);
}

@keyframes scrollLogo {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* =====================================
   GALLERY
===================================== */
.section-padding {
    padding: 48px 0 44px;
    background: var(--bg-white);
}

.home-heading-center-wrapper {
    text-align: center;
    margin-bottom: 28px;
}

.home-heading-center {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--accent-indigo);
    font-family: var(--font-display);
    display: inline-block;
    text-align: center;
    margin: 0;
    letter-spacing: -0.02em;
}

.custom-bento-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 12vw;
    gap: 10px;
    max-width: 100%;
}

.bento-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #111;
}

.bento-item.tall { grid-row: span 2; }

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.bento-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.bento-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.80);
}

.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,9,26,0.45), transparent);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.bento-item:hover::after { opacity: 1; }

@media (max-width: 1200px) { .custom-bento-gallery { grid-auto-rows: 14vw; } }
@media (max-width: 991px)  { .custom-bento-gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 24vw; } }
@media (max-width: 575px)  { .custom-bento-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 34vw; } }


/* =====================================
   FOOTER
===================================== */
footer {
    background: var(--accent-navy);
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 24px 5%;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.06);
}


/* ==========================
   CONTACT SECTION
========================== */

.contact-wrap{
    max-width:1400px;
    margin:80px auto;
    padding:0 5%;
    display:grid;
    grid-template-columns:48% 52%;
    gap:40px;
    align-items:start;
}

.contact-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:0;
}

.contact-form-area h2{
    font-size:42px;
    font-weight:800;
    color:#08275c;
    margin-bottom:10px;
}

.contact-form-area h4{
    font-size:2rem;
    color:#08275c;
    margin-bottom:25px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.field.full{
    grid-column:1/-1;
}

.field input,
.field textarea{
    width:100%;
    padding:18px 20px;
    border:1px solid #d9d9d9;
    border-radius:12px;
    font-size:16px;
    background:#fff;
}

.field textarea{
    height:120px;
    resize:none;
}

.field input:focus,
.field textarea:focus{
    outline:none;
    border-color:#0056d6;
}

.consent{
    display:flex;
    gap:15px;
    margin:20px 0 30px;
}

.consent input{
    width:22px;
    height:22px;
    margin-top:3px;
}

.consent label{
    font-size:15px;
    line-height:1.6;
    color:#333;
}

.submit-btn{
    width:100%;
    border:none;
    height:62px;
    border-radius:40px;
    color:#fff;
    font-size:20px;
    font-weight:600;
    cursor:pointer;

    background:linear-gradient(
        90deg,
        #7a0077,
        #0d3c8f
    );
}

.submit-btn:hover{
    transform:translateY(-2px);
}

/* MOBILE */

@media(max-width:991px){

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

    .contact-image img{
        height:350px;
    }

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

    .field.full{
        grid-column:auto;
    }

    .contact-form-area h2{
        font-size:2.5rem;
    }
}