/**
 * Sante Hospital - Patient Services & Guide Navigation Hub
 * Path: assets/css/pages/page-patient-hub.css
 */

/* ========================================================
   SANTE PATIENT SERVICE & INTERACTIVE NAVIGATION HUB
   Quiet Luxury Healthcare Standard v2026.10
   Brand Palette: Sante Navy (#211261), Mint (#059669), Gold (#B89535)
   Multi-Layered Section Background Architecture
   ======================================================== */
.sante-hub-page {
    font-family: 'Lexend', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1E293B;
    line-height: 1.6;
    background-color: #FAFCFB;
}

.sante-hub-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb (Hidden completely on pages) */
.sante-hub-breadcrumb-wrap {
    display: none !important;
}

.sante-hub-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.sante-hub-breadcrumb li a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sante-hub-breadcrumb li a:hover {
    color: #211261;
}

.sante-hub-breadcrumb li.separator {
    color: #CBD5E1;
    font-size: 11px;
}

.sante-hub-breadcrumb li.active {
    color: #211261;
    font-weight: 600;
}

/* ========================================================
   SECTION 1: HERO - "QUIET LUXURY MEDICAL AURORA"
   ======================================================== */
.sante-hub-hero {
    position: relative;
    text-align: center;
    padding: 55px 0 40px;
    background: linear-gradient(180deg, #F0F4F8 0%, #FFFFFF 100%);
    border-bottom: 1px solid #E2E8F0;
    overflow: hidden;
}

/* Ambient Medical Aurora Glow */
.sante-hub-hero-ambient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% -10%, rgba(33, 18, 97, 0.09) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 206, 124, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(184, 149, 53, 0.05) 0%, transparent 50%),
        linear-gradient(to right, rgba(33, 18, 97, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(33, 18, 97, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 36px 36px, 36px 36px;
    pointer-events: none;
}

.sante-hero-content {
    position: relative;
    z-index: 2;
}

.sante-hub-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: #FFFFFF;
    color: #211261;
    border: 1px solid rgba(33, 18, 97, 0.18);
    border-radius: 9999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(33, 18, 97, 0.04);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #059669;
    box-shadow: 0 0 0 rgba(5, 150, 105, 0.4);
    animation: hubPulse 2s infinite;
}

@keyframes hubPulse {
    0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
    100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.sante-hub-hero-title {
    font-size: 36px;
    font-weight: 400;
    color: #211261;
    margin: 0 0 14px;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.sante-hub-hero-desc {
    max-width: 780px;
    margin: 0 auto;
    font-size: 15px;
    color: #64748B;
    line-height: 1.65;
}

/* ========================================================
   SECTION 2: 3-PILLARS TRIAGE - "CRISP WHITE ELEVATION"
   ======================================================== */
.sante-hub-triage-section {
    padding: 45px 0 50px;
    background: #FFFFFF;
}

.sante-triage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.sante-triage-card {
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Individual Pillar Color Styling */
.triage-booking {
    background: linear-gradient(180deg, #FFFFFF 0%, #EEF2FF 100%);
    border: 1px solid #E0E7FF;
    border-top: 3.5px solid #211261;
    box-shadow: 0 6px 24px rgba(33, 18, 97, 0.05);
}

.triage-insurance {
    background: linear-gradient(180deg, #FFFFFF 0%, #ECFDF5 100%);
    border: 1px solid #A7F3D0;
    border-top: 3.5px solid #059669;
    box-shadow: 0 6px 24px rgba(5, 150, 105, 0.06);
}

.triage-feedback {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBEB 100%);
    border: 1px solid #FEF3C7;
    border-top: 3.5px solid #B89535;
    box-shadow: 0 6px 24px rgba(184, 149, 53, 0.05);
}

.sante-triage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(33, 18, 97, 0.09);
}

.triage-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.triage-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.triage-booking .triage-icon-box {
    background: rgba(33, 18, 97, 0.08);
    color: #211261;
}

.triage-insurance .triage-icon-box {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
}

.triage-feedback .triage-icon-box {
    background: rgba(184, 149, 53, 0.14);
    color: #B89535;
}

.triage-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    background: #F1F5F9;
    color: #475569;
    letter-spacing: 0.3px;
}

.triage-title {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 8px;
    line-height: 1.35;
}

.triage-text {
    font-size: 13px;
    color: #64748B;
    line-height: 1.55;
    margin: 0 0 20px;
    flex: 1;
}

.triage-action {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

/* Triage Action Buttons - Option A: Branded Borders & Typography with Rich Hover */
.triage-booking .triage-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 16px;
    border-radius: 10px;
    border: 1.5px solid #211261;
    background: #FFFFFF;
    color: #211261 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.22s ease;
}

.triage-booking .triage-btn-primary:hover {
    background: #211261;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 18, 97, 0.2);
}

.triage-insurance .triage-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 16px;
    border-radius: 10px;
    border: 1.5px solid #059669;
    background: #FFFFFF;
    color: #059669 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.22s ease;
}

.triage-insurance .triage-btn-primary:hover {
    background: #059669;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.22);
}

.triage-call-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    text-decoration: none;
    padding: 3px 0;
}

.triage-call-link:hover {
    color: #211261;
}

.triage-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 16px;
    border-radius: 10px;
    border: 1.5px solid #D97706;
    background: #FFFFFF;
    color: #B45309 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.22s ease;
}

.triage-feedback .triage-btn-outline:hover {
    background: #D97706;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.22);
}

/* ========================================================
   SECTION 3: WAYFINDING BENTO - "ARCHITECTURAL BLUEPRINT MATRIX"
   ======================================================== */
.sante-wayfinding-section {
    padding: 55px 0 65px;
    background-color: #F1F5F9;
    background-image: radial-gradient(#CBD5E1 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: inset 0 8px 16px -8px rgba(33, 18, 97, 0.03), inset 0 -8px 16px -8px rgba(33, 18, 97, 0.03);
}

.sante-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
}

.sante-sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 16px;
    border-radius: 9999px;
    background: rgba(0, 206, 124, 0.12);
    color: #059669;
    border: 1px solid rgba(0, 206, 124, 0.25);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.sante-section-title {
    font-size: 28px;
    font-weight: 400;
    color: #211261;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.sante-section-desc {
    font-size: 14px;
    color: #334155;
    margin: 0;
}

.sante-wayfinding-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: stretch;
}

.wayfinding-routes-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 8px 28px rgba(33, 18, 97, 0.05);
    display: flex;
    flex-direction: column;
}

.wayfinding-card-header {
    margin-bottom: 18px;
}

.wayfinding-card-title {
    font-size: 17.5px;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.wayfinding-gate-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.badge-gate1 {
    background: rgba(33, 18, 97, 0.08);
    color: #211261;
}

.badge-gate2 {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.gate-routes-view {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gate-routes-view.fade-in {
    animation: fadeInRoutes 0.25s ease-out;
}

@keyframes fadeInRoutes {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.route-tabs-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.route-tab-item {
    background: #F8FAFC;
    border: 1px solid #EEF2F6;
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.2s ease;
}

.route-tab-item:hover {
    border-color: #CBD5E1;
    background: #FFFFFF;
    box-shadow: 0 4px 14px rgba(33, 18, 97, 0.04);
}

.route-tab-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
}

.route-badge-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #211261;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11.5px;
    font-weight: 700;
    flex-shrink: 0;
}

.route-badge-num.text-emerald {
    background: #059669;
    color: #FFFFFF;
}

.route-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #1E293B;
}

.route-sub {
    font-size: 11px;
    color: #64748B;
    margin-top: 2px;
}

.route-tab-body p {
    font-size: 12.5px;
    color: #475569;
    margin: 0;
    line-height: 1.55;
    padding-left: 34px;
}

/* Traffic Flow Notice */
.traffic-flow-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #FFFBEB;
    border: 1px solid #FEF3C7;
    font-size: 12px;
    color: #92400E;
    line-height: 1.5;
    margin-bottom: 0;
}

.traffic-flow-tip i {
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Gate Triage Visual Banner (Inside Map Card) */
.gate-triage-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 20px;
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
    margin-top: 0;
}

.gate-triage-box {
    padding: 16px;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: all 0.2s ease;
}

.gate-triage-box:hover {
    border-color: #CBD5E1;
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.gate-triage-box.c1-box.is-active {
    background: #FFFFFF;
    border-color: #211261;
    box-shadow: 0 0 0 2px rgba(33, 18, 97, 0.12), 0 6px 20px rgba(33, 18, 97, 0.05);
}

.gate-triage-box.c2-box.is-active {
    background: #FFFFFF;
    border-color: #00CE7C;
    box-shadow: 0 0 0 2px rgba(0, 206, 124, 0.18), 0 6px 20px rgba(0, 206, 124, 0.05);
}

.gate-box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
}

.gate-active-badge {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 700;
    color: #211261;
    background: rgba(33, 18, 97, 0.08);
    padding: 3px 8px;
    border-radius: 6px;
}

.gate-active-badge.text-emerald {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
}

.gate-triage-box.is-active .gate-active-badge {
    display: inline-flex;
}

.gate-address-line {
    font-size: 11.5px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 6px;
}

.gate-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 0;
}

.pill-c1 {
    background: #211261;
    color: #FFFFFF;
}

.pill-c2 {
    background: #059669;
    color: #FFFFFF;
}

.gate-desc {
    font-size: 12px;
    color: #475569;
    line-height: 1.45;
    margin-bottom: 10px;
    flex: 1;
}

.gate-map-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    color: #211261;
    text-decoration: none;
    min-height: 28px;
}

.gate-map-action:hover {
    text-decoration: underline;
}

.gate-map-action.text-emerald {
    color: #059669;
}

/* Map Card */
.wayfinding-map-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(33, 18, 97, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.map-card-header {
    padding: 14px 20px;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.map-status {
    font-size: 13px;
    font-weight: 700;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 6px;
}

.map-landmarks-pill {
    font-size: 11px;
    color: #64748B;
    background: #FFFFFF;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.map-iframe-container {
    flex: 1;
    min-height: 280px;
}

.map-iframe-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
}

/* Single Verified Navigation Action */
.map-smart-actions {
    padding: 14px 20px 18px;
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
}

.smart-transit-btn.maps-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 18px;
    border-radius: 10px;
    background: #211261;
    color: #FFFFFF !important;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(33, 18, 97, 0.2);
    transition: all 0.2s ease;
}

.smart-transit-btn.maps-btn-primary:hover {
    background: #3B2396;
    color: #FFFFFF !important;
    box-shadow: 0 6px 18px rgba(33, 18, 97, 0.3);
    transform: translateY(-1px);
}

/* ========================================================
   SECTION 3: PATIENT EXPERIENCE JOURNEY (CONNECTED CLINICAL PROCESS)
   Quiet Luxury Medical Standard v2026.10 - 4-STEP CARE PATHWAY
   ======================================================== */
.sante-patient-journey-section {
    padding: 72px 0 84px;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

/* ========================================================
   COMBINED PATIENT APPOINTMENT & 4-STEP CLINICAL JOURNEY
   Elevated Asymmetric 2-Column (440px Stepper : 1fr Form Portal)
   ======================================================== */
.sante-hub-form-section {
    padding: 72px 0 84px;
    background: radial-gradient(120% 120% at 50% 10%, #FFFFFF 0%, #EFF6FF 50%, #F8FAFC 100%);
    position: relative;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.sante-form-layout-wrap {
    display: grid;
    grid-template-columns: minmax(380px, 395px) 1fr;
    gap: 32px;
    align-items: stretch;
}

/* Left Column: 4-Step Clinical Journey Stepper Panel */
.sante-journey-column {
    display: flex;
}

.sante-journey-stepper-panel {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-top: 4px solid #211261;
    border-radius: 18px;
    padding: 24px 20px;
    color: #1E293B;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 28px -4px rgba(33, 18, 97, 0.07), 0 2px 8px -1px rgba(15, 23, 42, 0.03);
    width: 100%;
}

.stepper-header {
    margin-bottom: 14px;
}

.stepper-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #211261;
    background: #EEF2FF;
    border: 1px solid #E0E7FF;
    padding: 3px 8px;
    border-radius: 9999px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.text-sante {
    color: #211261;
}

.stepper-title {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.3;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.stepper-sub {
    font-size: 12.5px;
    color: #64748B;
    line-height: 1.45;
    margin: 0;
}

/* Vertical Steps Track - Compact & Natural Gap */
.sante-vertical-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    margin-bottom: 16px;
}

.stepper-item {
    display: flex;
    gap: 12px;
    position: relative;
    padding-bottom: 0;
}

.stepper-item.is-last {
    padding-bottom: 0;
}

/* Connecting gradient line */
.stepper-item:not(.is-last)::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 14px;
    bottom: -12px;
    width: 2px;
    background: linear-gradient(180deg, #211261 0%, #2563EB 40%, #D97706 75%, #059669 100%);
    border-radius: 2px;
}

.stepper-node {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11.5px;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.node-step-1 {
    background: #EEF2FF;
    border: 2px solid #211261;
    color: #211261;
}

.node-step-2 {
    background: #EFF6FF;
    border: 2px solid #2563EB;
    color: #2563EB;
}

.node-step-3 {
    background: #FFFBEB;
    border: 2px solid #D97706;
    color: #D97706;
}

.node-step-4 {
    background: #ECFDF5;
    border: 2px solid #059669;
    color: #059669;
}

.stepper-item:hover .stepper-node {
    transform: scale(1.08);
}

.stepper-content {
    flex-grow: 1;
}

/* Structured Step Box - Compact */
.stepper-step-surface {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 9px;
    padding: 7px 11px;
    transition: all 0.25s ease;
    width: 100%;
}

.stepper-step-surface:hover {
    background: #FFFFFF;
    border-color: #CBD5E1;
    transform: translateX(2px);
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
}

.stepper-step-surface.is-highlight {
    background: linear-gradient(135deg, #FFFFFF 0%, #ECFDF5 100%);
    border-color: #A7F3D0;
}

.stepper-step-surface.is-highlight:hover {
    border-color: #059669;
    box-shadow: 0 3px 12px rgba(5, 150, 105, 0.08);
}

.stepper-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 2px;
}

.stepper-step-title {
    font-size: 13px;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
    line-height: 1.3;
}

.stepper-time-pill {
    font-size: 10px;
    font-weight: 600;
    color: #64748B;
    background: #EEF2FF;
    padding: 1px 5px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.stepper-time-pill.pill-live {
    color: #047857;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
}

.stepper-desc {
    font-size: 11.5px;
    color: #64748B;
    line-height: 1.4;
    margin: 0;
}

/* Bottom Hotline Strip - Compact */
.stepper-hotline-strip {
    border-top: 1px solid #E2E8F0;
    padding-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: auto;
}

.strip-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    min-height: 46px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 0;
}

.strip-link:hover {
    background: #FFFFFF;
    border-color: #CBD5E1;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.05);
}

.strip-icon-wrap {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 6px;
    background: #EEF2FF;
    color: #211261;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.strip-icon-wrap.wrap-emergency {
    background: #FEE2E2;
    color: #DC2626;
}

.strip-text-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.strip-micro-tag {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #64748B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.strip-micro-tag.tag-emergency {
    color: #DC2626;
}

.strip-phone-num {
    font-size: 11.5px;
    font-weight: 800;
    color: #211261;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: -0.25px;
}

.strip-phone-num.phone-emergency {
    color: #DC2626;
}

/* Right Column: Interactive Smart Booking Suite */
.sante-form-column {
    display: flex;
}

.sante-form-portal-panel {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-top: 4px solid #00CE7C;
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 10px 28px -4px rgba(33, 18, 97, 0.07), 0 2px 8px -1px rgba(15, 23, 42, 0.03);
    width: 100%;
}

.form-portal-top {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F1F5F9;
}

.form-portal-header {
    text-align: left;
}

.portal-title {
    font-size: 20px;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.portal-desc {
    font-size: 13px;
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}

/* Form Layout */

/* Form Layout */
.sante-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-bottom: 12px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-field-group.full-width {
    grid-column: 1 / -1;
}

.form-field-group label {
    font-size: 11.5px;
    font-weight: 600;
    color: #334155;
    margin: 0;
}

.form-field-group label .req {
    color: #DC2626;
}

.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrap i {
    position: absolute;
    left: 13px;
    color: #94A3B8;
    font-size: 13px;
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 2;
}

.input-icon-wrap .textarea-icon {
    top: 13px;
}

.input-icon-wrap input,
.input-icon-wrap select,
.input-icon-wrap textarea {
    width: 100% !important;
    background: #F8FAFC !important;
    border: 1px solid #CBD5E1 !important;
    border-radius: 8px !important;
    padding: 8px 12px 8px 36px !important;
    color: #1E293B !important;
    font-size: 13px !important;
    font-family: inherit !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    text-align: left !important;
    box-shadow: none !important;
}

.input-icon-wrap select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2364748B' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 18px !important;
    padding-right: 38px !important;
    cursor: pointer;
}

.input-icon-wrap textarea {
    min-height: 60px;
    resize: vertical;
}

.input-icon-wrap input:focus,
.input-icon-wrap select:focus,
.input-icon-wrap textarea:focus {
    border-color: #211261 !important;
    box-shadow: 0 0 0 3px rgba(33, 18, 97, 0.08) !important;
}

/* Consent */
.sante-hub-consent {
    margin-bottom: 14px;
}

.hub-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
    font-size: 11.5px;
    color: #64748B;
    line-height: 1.45;
}

.hub-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.hub-checkbox-box {
    width: 16px;
    height: 16px;
    border: 1.5px solid #CBD5E1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.2s ease;
    background: #FFFFFF;
}

.hub-checkbox-label input[type="checkbox"]:checked ~ .hub-checkbox-box {
    background: #211261;
    border-color: #211261;
}

.hub-checkbox-label input[type="checkbox"]:checked ~ .hub-checkbox-box::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.hub-consent-text a {
    color: #211261;
    text-decoration: underline;
    font-weight: 600;
}

/* Action Row */
.sante-hub-action-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sante-hub-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 12px 24px;
    min-height: 48px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #211261 0%, #160B40 100%);
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(33, 18, 97, 0.2);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
}

.sante-hub-submit-btn:hover {
    background: linear-gradient(135deg, #160B40 0%, #211261 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(33, 18, 97, 0.32);
}

.sante-hub-submit-btn:active {
    transform: translateY(0);
}

.sante-hub-submit-btn .btn-icon {
    font-size: 13px;
}

.hub-privacy-trust {
    font-size: 12px;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Alert Box */
.sante-hub-alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    animation: hubAlertSlide 0.3s ease;
}

@keyframes hubAlertSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.sante-hub-alert.alert-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.sante-hub-alert.alert-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

/* ========================================================
   RESPONSIVE ADJUSTMENTS FOR JOURNEY & CONCIERGE
   ======================================================== */
@media (max-width: 1024px) {
    .sante-journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sante-form-layout-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 767px) {
    .sante-journey-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sante-concierge-panel {
        padding: 26px 20px;
    }

    .sante-form-portal-panel {
        padding: 26px 20px;
    }

    .form-tabs-switcher {
        flex-direction: column;
        gap: 6px;
    }

    .sante-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sante-hub-action-row {
        flex-direction: column;
        align-items: stretch;
    }

    .sante-hub-submit-btn {
        width: 100%;
    }

    .hub-privacy-trust {
        justify-content: center;
        text-align: center;
    }
}

/* ========================================================
   SECTION 5: PATIENT FAQ ACCORDION - "DEEP SOOTHING SLATE"
   ======================================================== */
.sante-hub-faq-section {
    padding: 50px 0 60px;
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%);
    border-top: 1px solid #E2E8F0;
}

.sante-faq-accordion-grid {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sante-faq-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(33, 18, 97, 0.03);
}

.sante-faq-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 6px 18px rgba(33, 18, 97, 0.06);
}

.sante-faq-item[open] {
    border-color: #211261;
    box-shadow: 0 8px 24px rgba(33, 18, 97, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-size: 14.5px;
    font-weight: 700;
    color: #1E293B;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    color: #94A3B8;
    font-size: 13px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.sante-faq-item[open] .faq-arrow {
    transform: rotate(180deg);
    color: #211261;
}

.sante-faq-item[open] .faq-answer {
    display: block !important;
}

.sante-faq-item:not([open]) .faq-answer {
    display: none !important;
}

.faq-answer {
    padding: 0 24px 20px;
    border-top: 1px solid #F1F5F9;
    margin-top: 4px;
    padding-top: 14px;
}

.faq-answer p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* ========================================================
   RESPONSIVE BREAKPOINTS (SANTE PATIENT HUB)
   ======================================================== */
@media (max-width: 1100px) {
    .sante-triage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sante-form-layout-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sante-fluid-timeline-track::before {
        display: none;
    }

    .sante-wayfinding-bento {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sante-hub-hero {
        padding: 32px 0 20px;
        min-height: auto;
    }

    .sante-hub-triage-section {
        padding: 24px 0 36px;
    }

    .sante-hub-hero-title {
        font-size: 24px;
    }

    .sante-hub-hero-desc {
        font-size: 13.5px;
    }

    .sante-triage-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sante-section-title {
        font-size: 22px;
    }

    .wayfinding-routes-card {
        padding: 20px 16px;
    }

    .gate-triage-banner {
        grid-template-columns: 1fr;
    }

    .sante-journey-stepper-panel {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .stepper-hotline-strip {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .strip-divider {
        display: none;
    }

    .sante-form-portal-panel {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .portal-title {
        font-size: 20px;
    }

    .form-tabs-switcher {
        flex-direction: column;
    }

    .form-tab-btn {
        width: 100%;
        justify-content: center;
    }

    .sante-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sante-hub-submit-btn {
        width: 100%;
    }

    .sante-hub-action-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hub-privacy-trust {
        justify-content: center;
    }

    .faq-question {
        font-size: 13.5px;
        padding: 14px 16px;
    }

    .faq-answer {
        padding: 0 16px 16px;
        font-size: 13px;
    }
}





