/* ─────────────────────────────────────────────────────────
   PAINTECH Expo 2027 — Page-Specific Inline Styles
   Extracted from HTML and consolidated for maintainability
───────────────────────────────────────────────────────── */

/* ═══ CONTACT PAGE ═══════════════════════════════════════ */

.enquiry-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.enquiry-tab {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    border: 2px solid var(--border);
    background: white;
    color: var(--muted);
    transition: var(--transition);
}

.enquiry-tab.active,
.enquiry-tab:hover {
    background: var(--grad);
    color: white;
    border-color: transparent;
}

.venue-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B69 100%);
    padding: 80px 0;
    color: white;
}

.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.venue-left h3 {
    color: white;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 20px;
}

.venue-left p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 24px;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.venue-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.venue-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.venue-detail-text h5 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.venue-detail-text p,
.venue-detail-text a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.venue-detail-text a:hover {
    color: var(--violet);
}

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 360px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
}

.map-placeholder .pin {
    font-size: 4rem;
}

.map-placeholder h4 {
    color: white;
    font-size: 1.1rem;
}

.map-placeholder p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    text-align: center;
    max-width: 280px;
}

.map-placeholder a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-head);
    transition: var(--transition);
}

.map-placeholder a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faqs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.team-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 0.82rem;
    color: var(--violet);
    font-weight: 600;
    margin-bottom: 12px;
    font-family: var(--font-head);
}

.team-card .contact-link {
    color: var(--muted);
    font-size: 0.88rem;
}

.team-card .contact-link:hover {
    color: var(--violet);
}

/* ═══ VISITORS PAGE ═════════════════════════════════════ */

.visit-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.visit-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.visit-stat .n {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visit-stat .l {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    margin-top: 6px;
}

.register-form-section {
    background: linear-gradient(135deg, #EEF2FF 0%, #FFF0F6 100%);
    padding: 80px 0;
}

.register-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.register-info h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 20px;
}

.register-info p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

.reg-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reg-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.reg-perk-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.reg-form {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 48px;
    border: 1px solid var(--border);
}

.reg-form h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.reg-form>p {
    color: var(--muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    font-family: var(--font-head);
}

.agenda-section {
    padding: 80px 0;
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.agenda-day {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.agenda-day-head {
    padding: 24px;
    color: white;
    text-align: center;
}

.agenda-day:nth-child(1) .agenda-day-head {
    background: linear-gradient(135deg, #5B8BDF, #8B5CF6);
}

.agenda-day:nth-child(2) .agenda-day-head {
    background: var(--grad);
}

.agenda-day:nth-child(3) .agenda-day-head {
    background: linear-gradient(135deg, #8B5CF6, #E5177B);
}

.agenda-day-head h4 {
    color: white;
    font-size: 1.1rem;
}

.agenda-day-head .date {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 4px;
}

.agenda-items {
    padding: 24px;
    background: white;
}

.agenda-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    color: var(--text);
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-item .time {
    font-size: 0.78rem;
    color: var(--violet);
    font-weight: 600;
    margin-bottom: 2px;
    font-family: var(--font-head);
}

/* ═══ EXHIBITORS PAGE ════════════════════════════════════ */

.booth-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.booth-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.booth-card:hover {
    transform: translateY(-8px);
}

.booth-card.featured {
    border-color: var(--violet);
}

.booth-header {
    padding: 32px;
    color: white;
    text-align: center;
}

.booth-card:nth-child(1) .booth-header {
    background: linear-gradient(135deg, #5B8BDF, #8B5CF6);
}

.booth-card:nth-child(2) .booth-header {
    background: var(--grad);
    position: relative;
}

.booth-card:nth-child(2) .booth-header::after {
    content: '⭐ MOST POPULAR';
    position: absolute;
    top: 5px;
    right: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
}

.booth-card:nth-child(3) .booth-header {
    background: linear-gradient(135deg, #8B5CF6, #E5177B);
}

.booth-header h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.booth-header .size {
    font-size: 0.85rem;
    opacity: 0.85;
}

.booth-body {
    padding: 28px;
    background: white;
}

.booth-body ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.booth-body ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text);
}

.booth-body ul li::before {
    content: '✓';
    color: var(--violet);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 60px 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    background: var(--grad);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.testimonial-band {
    background: linear-gradient(135deg, #EEF2FF 0%, #F5F0FF 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px;
    margin: 60px 0;
}

.testimonial-band blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-band cite {
    display: block;
    margin-top: 20px;
    font-size: 0.88rem;
    color: var(--violet);
    font-style: normal;
    font-weight: 600;
    text-align: center;
}

/* ═══ INSIGHTS PAGE ═════════════════════════════════════ */

.insights-intro {
    background: linear-gradient(135deg, #EEF2FF 0%, #F5F0FF 50%, #FFF0F6 100%);
    padding: 60px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.insights-intro::before {
    content: '10–12%';
    position: absolute;
    right: -20px;
    top: -20px;
    font-family: var(--font-head);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(91, 139, 223, 0.06);
    line-height: 1;
    pointer-events: none;
}

.insights-intro h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.insights-intro p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 700px;
}

.insights-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.kpi-chip {
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.kpi-chip .n {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kpi-chip .l {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 4px;
}

.demand-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--violet);
    font-family: var(--font-head);
    margin-bottom: 12px;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 60px;
}

.opp-card {
    padding: 24px 18px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.opp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--violet);
}

.opp-card .icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.opp-card .icon img {
    /* height: 80px; */
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
}

.opp-card h4 {
    font-size: 0.88rem;
    color: var(--dark);
    line-height: 1.4;
}

.tn-section {
    background: var(--dark);
    padding: 80px;
    border-radius: var(--radius-lg);
    color: white;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
}

.tn-section::before {
    content: 'TN';
    position: absolute;
    right: -30px;
    bottom: -40px;
    font-family: var(--font-head);
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.tn-section>* {
    position: relative;
    z-index: 1;
}

.tn-section>* {
    position: relative;
    z-index: 1;
}

.tn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tn-left h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: white;
    margin-bottom: 20px;
}

.tn-left p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.tn-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tn-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.tn-point::before {
    content: '→';
    color: var(--violet);
    font-weight: 700;
    flex-shrink: 0;
}

/* ═══ RESPONSIVE ════════════════════════════════════════ */

@media (max-width: 768px) {
    .venue-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .faqs-grid {
        grid-template-columns: 1fr;
    }

    .visit-hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .booth-types {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(1, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .opportunities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .agenda-grid {
        grid-template-columns: 1fr;
    }

    .register-layout {
        grid-template-columns: 1fr;
    }

    .insights-intro {
        padding: 32px;
    }

    .tn-section {
        padding: 40px 28px;
    }

    .tn-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .insights-kpi-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
    }
}