/* =============================================================
   Template 20 — Klinik THT / ENT Clinic
   landing.css — Semua section landing page
   Prefix: .tht-
   ============================================================= */

/* ── Shared Utilities ────────────────────────────────────────── */
.tht-section {
    padding: 88px 0;
}

.tht-section--white   { background: #fff; }
.tht-section--light   { background: var(--brand-light); }
.tht-section--mid     { background: var(--brand-mid); }
.tht-section--dark    { background: var(--brand-dark); }
.tht-section--teal    {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
}

.tht-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.tht-h2 {
    font-family: var(--tht-font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--brand-dark);
    margin: 10px 0 14px;
    line-height: 1.22;
    letter-spacing: -0.01em;
}

.tht-h2--light { color: #fff; }

.tht-h2-sub {
    font-size: 0.97rem;
    color: var(--brand-gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.tht-h2-sub--light { color: rgba(255,255,255,0.65); }

.tht-accent       { color: var(--brand-primary); }
.tht-accent-light { color: var(--brand-mid); }

/* Tags */
.tht-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(13,148,136,0.08);
    color: var(--brand-primary);
    font-family: var(--tht-font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tht-tag--light {
    background: rgba(255,255,255,0.14);
    color: #fff;
}

/* Rule */
.tht-rule {
    display: block;
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 3px;
    margin: 14px 0 22px;
}

.tht-rule--center {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.tht-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 100px;
    font-family: var(--tht-font-display);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.24s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.tht-btn-lg  { padding: 14px 30px; font-size: 0.96rem; }
.tht-btn-sm  { padding: 8px 16px; font-size: 0.8rem; }

.tht-btn-primary {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}
.tht-btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,148,136,0.3);
}

.tht-btn-outline {
    background: transparent;
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}
.tht-btn-outline:hover {
    background: var(--brand-primary);
    color: #fff;
}

.tht-btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border-color: rgba(255,255,255,0.25);
}
.tht-btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.tht-btn-white {
    background: #fff;
    color: var(--brand-dark);
    border-color: #fff;
}
.tht-btn-white:hover {
    background: var(--brand-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.tht-btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.tht-btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* Reveal animations */
.tht-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.tht-reveal--left  { transform: translateX(-30px); }
.tht-reveal--right { transform: translateX(30px); }
.tht-reveal.visible {
    opacity: 1;
    transform: none;
}
.tht-delay-1 { transition-delay: 0.08s; }
.tht-delay-2 { transition-delay: 0.18s; }
.tht-delay-3 { transition-delay: 0.28s; }
.tht-delay-4 { transition-delay: 0.38s; }

/* ================================================================
   §1  HERO — 3-Panel Horizontal
   ================================================================ */
.tht-hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Sound wave SVG background */
.tht-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 0;
    line-height: 0;
}

.tht-wave-svg {
    display: block;
    width: 100%;
    height: 160px;
}

.tht-wave-path--1 {
    fill: rgba(13,148,136,0.07);
    animation: thtWaveMove1 6s ease-in-out infinite alternate;
}

.tht-wave-path--2 {
    fill: rgba(20,184,166,0.05);
    animation: thtWaveMove2 9s ease-in-out infinite alternate;
}

@keyframes thtWaveMove1 {
    from { d: path("M0,80 C90,110 180,50 270,80 C360,110 450,50 540,80 C630,110 720,50 810,80 C900,110 990,50 1080,80 C1170,110 1260,50 1350,80 L1440,80 L1440,160 L0,160 Z"); }
    to   { d: path("M0,60 C90,90 180,30 270,60 C360,90 450,30 540,60 C630,90 720,30 810,60 C900,90 990,30 1080,60 C1170,90 1260,30 1350,60 L1440,60 L1440,160 L0,160 Z"); }
}

@keyframes thtWaveMove2 {
    from { d: path("M0,100 C80,60 160,120 240,100 C320,80 400,130 480,100 C560,70 640,120 720,100 C800,80 880,125 960,100 C1040,75 1120,120 1200,100 C1280,80 1360,110 1440,100 L1440,160 L0,160 Z"); }
    to   { d: path("M0,80 C80,50 160,100 240,80 C320,60 400,110 480,80 C560,50 640,100 720,80 C800,60 880,105 960,80 C1040,55 1120,100 1200,80 C1280,60 1360,90 1440,80 L1440,160 L0,160 Z"); }
}

/* 3-panel grid */
.tht-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 28% 1fr 28%;
    min-height: 100vh;
    align-items: stretch;
}

.tht-hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 28px 60px;
}

/* ── Left Panel ─────────────────────────────────────────────── */
.tht-hero-panel--left {
    background: var(--brand-light);
    border-right: 2px solid var(--brand-mid);
    gap: 20px;
}

.tht-hero-panel-label {
    font-family: var(--tht-font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand-primary);
    margin-bottom: 4px;
}

.tht-organ-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tht-organ-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border-radius: var(--tht-radius);
    border: 1.5px solid var(--brand-mid);
    box-shadow: var(--tht-shadow);
    transition: border-color var(--tht-transition), transform var(--tht-transition);
    cursor: default;
}

.tht-organ-stat-card:hover {
    border-color: var(--brand-secondary);
    transform: translateX(4px);
}

.tht-organ-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.tht-organ-stat-name {
    font-family: var(--tht-font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.2;
}

.tht-organ-stat-count {
    font-size: 0.73rem;
    color: var(--brand-gray);
    margin-top: 2px;
}

.tht-hero-numbers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--brand-mid);
}

.tht-hero-number {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tht-hero-number strong {
    font-family: var(--tht-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1;
}

.tht-hero-number span {
    font-size: 0.78rem;
    color: var(--brand-gray);
}

/* ── Center Panel ───────────────────────────────────────────── */
.tht-hero-panel--center {
    border-right: 2px solid var(--brand-mid);
    padding: 80px 40px 60px;
}

.tht-hero-center-inner {
    max-width: 480px;
}

.tht-hero-kota {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(13,148,136,0.08);
    color: var(--brand-primary);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.tht-hero-h1 {
    font-family: var(--tht-font-display);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 6px;
}

.tht-hero-h1-tht {
    color: var(--brand-primary);
    position: relative;
    display: inline-block;
}

/* Underline accent under THT */
.tht-hero-h1-tht::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 2px;
}

.tht-hero-sub {
    font-family: var(--tht-font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--brand-gray);
    letter-spacing: 0.08em;
    margin: 18px 0 10px;
}

.tht-hero-desc {
    font-size: 0.93rem;
    color: #4a6461;
    line-height: 1.75;
    max-width: 420px;
    margin: 0 0 28px;
}

.tht-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.tht-hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tht-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--brand-gray);
    font-weight: 500;
}

.tht-trust-item i {
    color: var(--brand-secondary);
    font-size: 0.8rem;
}

/* ── Right Panel ────────────────────────────────────────────── */
.tht-hero-panel--right {
    background: var(--brand-dark);
    padding: 80px 24px 60px;
}

.tht-schedule-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tht-schedule-card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--tht-font-display);
}

.tht-schedule-card-header i {
    color: var(--brand-secondary);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.tht-schedule-card-header span:nth-child(2) {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.tht-schedule-today-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    display: block !important;
}

.tht-schedule-open {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    font-family: var(--tht-font-display);
}

.tht-schedule-open-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    flex-shrink: 0;
    animation: thtDotPulse 1.5s ease-in-out infinite;
}

@keyframes thtDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.tht-schedule-open strong {
    margin-left: auto;
    color: #4ade80;
    font-size: 0.9rem;
}

.tht-schedule-closed {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 10px;
    font-size: 0.82rem;
    color: rgba(255,130,130,0.8);
}

.tht-schedule-doctors-label {
    font-family: var(--tht-font-display);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
}

.tht-schedule-doctors {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tht-schedule-doctor-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
}

.tht-schedule-doc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(20,184,166,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-secondary);
    font-size: 0.85rem;
    overflow: hidden;
    flex-shrink: 0;
}

.tht-schedule-doc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tht-schedule-doc-info { flex: 1; min-width: 0; }

.tht-schedule-doc-name {
    font-family: var(--tht-font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tht-schedule-doc-spec {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
}

.tht-schedule-doc-btn {
    flex-shrink: 0;
    padding: 5px 10px;
    border-radius: 100px;
    background: var(--brand-secondary);
    color: #fff;
    font-family: var(--tht-font-display);
    font-size: 0.68rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--tht-transition);
    white-space: nowrap;
}

.tht-schedule-doc-btn:hover {
    background: var(--brand-primary);
    color: #fff;
}

.tht-schedule-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    background: var(--brand-secondary);
    color: #fff;
    border-radius: var(--tht-radius);
    font-family: var(--tht-font-display);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--tht-transition);
    margin-top: 4px;
}

.tht-schedule-cta:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* ================================================================
   §2  LAYANAN
   ================================================================ */
.tht-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tht-service-card {
    background: #fff;
    border: 1.5px solid var(--brand-mid);
    border-radius: var(--tht-radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--tht-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
    overflow: hidden;
}

.tht-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.tht-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(13,148,136,0.14);
    border-color: var(--brand-secondary);
}

.tht-service-card:hover::before {
    transform: scaleX(1);
}

.tht-service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(13,148,136,0.08);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 4px;
    transition: background var(--tht-transition);
}

.tht-service-card:hover .tht-service-icon-wrap {
    background: var(--brand-primary);
    color: #fff;
}

.tht-service-img-wrap {
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 4px;
}

.tht-service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tht-service-card:hover .tht-service-img-wrap img {
    transform: scale(1.05);
}

.tht-service-content { flex: 1; }

.tht-service-name {
    font-family: var(--tht-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 6px;
    line-height: 1.3;
}

.tht-service-excerpt {
    font-size: 0.83rem;
    color: var(--brand-gray);
    line-height: 1.65;
    margin: 0;
}

.tht-service-price {
    font-family: var(--tht-font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-top: 8px;
}

.tht-service-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--tht-font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
    margin-top: 10px;
    transition: gap 0.2s;
}

.tht-service-more:hover { gap: 9px; }

/* ================================================================
   §3  PER ORGAN — Tab Section
   ================================================================ */
.tht-organ-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 36px;
    background: #fff;
    border: 1.5px solid var(--brand-mid);
    border-radius: var(--tht-radius-lg);
    overflow: hidden;
    box-shadow: var(--tht-shadow);
}

.tht-organ-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--tht-font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-gray);
    transition: all 0.28s ease;
    border-right: 1px solid var(--brand-mid);
    position: relative;
}

.tht-organ-tab:last-child {
    border-right: none;
}

.tht-organ-tab--active,
.tht-organ-tab:hover {
    background: var(--brand-primary);
    color: #fff;
}

.tht-organ-tab-emoji {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.tht-organ-tab--active .tht-organ-tab-emoji {
    animation: thtOrganBounce 0.4s ease;
}

@keyframes thtOrganBounce {
    0%, 100% { transform: scale(1); }
    40%       { transform: scale(1.35); }
    70%       { transform: scale(0.92); }
}

/* Organ panels */
.tht-organ-panels {
    min-height: 400px;
}

.tht-organ-panel {
    display: none;
    animation: thtOrganFadeIn 0.35s ease;
}

.tht-organ-panel--active {
    display: block;
}

@keyframes thtOrganFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
}

/* Organ visual card */
.tht-organ-visual {
    position: relative;
    border-radius: var(--tht-radius-lg);
    overflow: hidden;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    min-height: 300px;
}

.tht-organ-visual--telinga {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}
.tht-organ-visual--hidung {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}
.tht-organ-visual--tenggorokan {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.tht-organ-illustration {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--brand-primary);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.tht-organ-visual--hidung .tht-organ-illustration { color: #16a34a; }
.tht-organ-visual--tenggorokan .tht-organ-illustration { color: #d97706; }

.tht-organ-visual-label {
    font-family: var(--tht-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.tht-organ-visual-sub {
    font-size: 0.8rem;
    color: var(--brand-gray);
}

/* Condition list */
.tht-organ-title {
    font-family: var(--tht-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.tht-organ-desc {
    font-size: 0.9rem;
    color: var(--brand-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tht-condition-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tht-condition-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(13,148,136,0.07);
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    transition: border-color var(--tht-transition), transform var(--tht-transition);
}

.tht-condition-item:hover {
    border-color: rgba(13,148,136,0.18);
    transform: translateX(4px);
}

.tht-condition-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(13,148,136,0.08);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.tht-condition-name {
    font-family: var(--tht-font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 2px;
}

.tht-condition-desc {
    font-size: 0.77rem;
    color: var(--brand-gray);
    line-height: 1.5;
}

/* ================================================================
   §4  PERALATAN (ALAT)
   ================================================================ */
.tht-alat-scroll-outer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(20,184,166,0.3) transparent;
}

.tht-alat-track {
    display: flex;
    gap: 20px;
    min-width: max-content;
    padding: 4px 4px 4px;
}

.tht-alat-card {
    width: 240px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(20,184,166,0.15);
    border-radius: var(--tht-radius-lg);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.tht-alat-card:hover {
    border-color: var(--brand-secondary);
    background: rgba(20,184,166,0.06);
    transform: translateY(-4px);
}

.tht-alat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tht-alat-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(20,184,166,0.12);
    color: var(--brand-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(20,184,166,0.18);
    transition: background var(--tht-transition);
}

.tht-alat-card:hover .tht-alat-icon {
    background: var(--brand-secondary);
    color: #fff;
}

.tht-alat-badge {
    font-size: 0.63rem;
    font-family: var(--tht-font-display);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--brand-accent);
    background: rgba(125,211,252,0.1);
    border: 1px solid rgba(125,211,252,0.2);
    padding: 3px 9px;
    border-radius: 100px;
    text-transform: uppercase;
}

.tht-alat-name {
    font-family: var(--tht-font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.tht-alat-func {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.tht-alat-available {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.73rem;
    color: rgba(74,222,128,0.7);
    font-weight: 600;
    font-family: var(--tht-font-display);
}

.tht-alat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 7px rgba(74,222,128,0.6);
    animation: thtDotPulse 1.5s ease-in-out infinite;
}

/* ================================================================
   §5  DOKTER
   ================================================================ */
.tht-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tht-doctor-card {
    background: #fff;
    border: 1.5px solid var(--brand-mid);
    border-radius: var(--tht-radius-lg);
    overflow: hidden;
    box-shadow: var(--tht-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
}

.tht-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(13,148,136,0.15);
}

.tht-doctor-photo-area {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--brand-light), var(--brand-mid));
    overflow: hidden;
}

.tht-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tht-doctor-photo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(13,148,136,0.3);
}

.tht-doctor-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--brand-dark);
    color: var(--brand-secondary);
    font-family: var(--tht-font-display);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.03em;
}

.tht-doctor-info {
    padding: 18px 18px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tht-doctor-name {
    font-family: var(--tht-font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
    line-height: 1.3;
}

.tht-doctor-subspec {
    font-size: 0.75rem;
    color: var(--brand-primary);
    font-weight: 500;
    margin: 0;
}

.tht-doctor-edu {
    font-size: 0.73rem;
    color: var(--brand-gray);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tht-doctor-exp {
    font-size: 0.73rem;
    color: var(--brand-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tht-doctor-schedule {
    font-size: 0.73rem;
    color: var(--brand-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.tht-doctor-appt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px;
    background: var(--brand-light);
    color: var(--brand-primary);
    text-decoration: none;
    font-family: var(--tht-font-display);
    font-size: 0.8rem;
    font-weight: 600;
    border-top: 1px solid var(--brand-mid);
    transition: background var(--tht-transition), color var(--tht-transition);
}

.tht-doctor-appt-btn:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* ================================================================
   §6  ABOUT
   ================================================================ */
.tht-about-text {
    font-size: 0.93rem;
    color: #4a6461;
    line-height: 1.8;
    margin-bottom: 28px;
}

.tht-about-text p { margin-bottom: 14px; }

.tht-about-stats-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--brand-mid);
}

.tht-about-stat {
    text-align: center;
}

.tht-about-stat strong {
    display: block;
    font-family: var(--tht-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.tht-about-stat span {
    font-size: 0.78rem;
    color: var(--brand-gray);
}

.tht-about-visual {
    position: relative;
    border-radius: var(--tht-radius-lg);
    overflow: visible;
}

.tht-about-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--tht-radius-lg);
    box-shadow: var(--tht-shadow-lg);
    display: block;
}

.tht-about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--tht-radius-lg);
    background: linear-gradient(135deg, var(--brand-light), var(--brand-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(13,148,136,0.25);
}

.tht-about-deco-card {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--brand-primary);
    color: #fff;
    padding: 14px 20px;
    border-radius: var(--tht-radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--tht-font-display);
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(13,148,136,0.35);
}

.tht-about-deco-card i { font-size: 1rem; }

/* ================================================================
   §7  TESTIMONI — Masonry style
   ================================================================ */
.tht-testi-masonry {
    columns: 3;
    column-gap: 20px;
}

.tht-testi-card {
    break-inside: avoid;
    background: #fff;
    border: 1.5px solid var(--brand-mid);
    border-radius: var(--tht-radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--tht-shadow);
    position: relative;
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.tht-testi-card:hover {
    box-shadow: 0 12px 32px rgba(13,148,136,0.12);
    transform: translateY(-3px);
}

.tht-testi-quote {
    font-size: 3.5rem;
    line-height: 0.7;
    color: var(--brand-mid);
    font-family: Georgia, serif;
    font-weight: 900;
    margin-bottom: 12px;
}

.tht-testi-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.tht-testi-text {
    font-size: 0.88rem;
    color: #4a6461;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 18px;
}

.tht-testi-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tht-testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-mid);
    flex-shrink: 0;
}

.tht-testi-avatar--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-light);
    color: rgba(13,148,136,0.35);
    font-size: 0.85rem;
}

.tht-testi-name {
    font-family: var(--tht-font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.tht-testi-layanan {
    font-size: 0.73rem;
    color: var(--brand-primary);
}

/* ================================================================
   §8  PROMO
   ================================================================ */
.tht-promo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tht-promo-card {
    background: #fff;
    border: 1.5px solid var(--brand-mid);
    border-radius: var(--tht-radius-lg);
    overflow: hidden;
    box-shadow: var(--tht-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.tht-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(13,148,136,0.14);
}

.tht-promo-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.tht-promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tht-promo-card:hover .tht-promo-img {
    transform: scale(1.04);
}

.tht-promo-disc-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: #fff;
    font-size: 0.73rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    font-family: var(--tht-font-display);
}

.tht-promo-body {
    padding: 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.tht-promo-timer {
    font-size: 0.73rem;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.tht-promo-title {
    font-family: var(--tht-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
    line-height: 1.3;
}

.tht-promo-desc {
    font-size: 0.82rem;
    color: var(--brand-gray);
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

.tht-promo-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tht-promo-ori {
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.tht-promo-final {
    font-family: var(--tht-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-primary);
}

/* ================================================================
   §9  JAM OPERASIONAL
   ================================================================ */
.tht-hours-table {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 20px;
}

.tht-hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(13,148,136,0.04);
    font-size: 0.87rem;
    transition: background 0.2s;
}

.tht-hour-row:hover { background: rgba(13,148,136,0.08); }

.tht-hour-today {
    background: rgba(13,148,136,0.08) !important;
    border: 1px solid rgba(13,148,136,0.15);
}

.tht-hour-libur { opacity: 0.45; }

.tht-hour-day {
    font-weight: 500;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tht-today-badge {
    font-size: 0.63rem;
    background: var(--brand-primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
    font-family: var(--tht-font-display);
}

.tht-hour-time {
    font-weight: 700;
    color: var(--brand-primary);
    font-family: var(--tht-font-display);
    font-size: 0.83rem;
}

.tht-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.tht-contact-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--brand-mid);
    border-radius: var(--tht-radius);
    box-shadow: var(--tht-shadow);
}

.tht-contact-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(13,148,136,0.08);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tht-contact-card-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #94a3b8;
    margin-bottom: 3px;
}

.tht-contact-card-val {
    font-size: 0.88rem;
    color: var(--brand-dark);
    font-weight: 500;
    line-height: 1.5;
}

a.tht-link {
    text-decoration: none;
    color: var(--brand-dark);
    transition: color var(--tht-transition);
}

a.tht-link:hover { color: var(--brand-primary); }

/* ================================================================
   §10  APPOINTMENT FORM
   ================================================================ */
.tht-appt-card {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: var(--tht-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

/* Step dots */
.tht-appt-steps-nav {
    display: flex;
    align-items: center;
    padding: 24px 28px 0;
    margin-bottom: 28px;
    gap: 0;
}

.tht-appt-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.tht-step-dot-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tht-font-display);
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tht-appt-step-dot.active .tht-step-dot-num {
    background: var(--brand-secondary);
    border-color: var(--brand-secondary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(20,184,166,0.4);
}

.tht-appt-step-dot.done .tht-step-dot-num {
    background: rgba(20,184,166,0.2);
    border-color: var(--brand-secondary);
    color: var(--brand-secondary);
}

.tht-step-dot-label {
    font-family: var(--tht-font-display);
    font-size: 0.67rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s;
    white-space: nowrap;
}

.tht-appt-step-dot.active .tht-step-dot-label {
    color: rgba(255,255,255,0.85);
}

.tht-step-connector {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 6px;
    margin-bottom: 24px;
    transition: background 0.3s;
    align-self: flex-start;
    margin-top: 16px;
}

.tht-step-connector.done {
    background: var(--brand-secondary);
}

/* Form pane */
.tht-appt-pane {
    padding: 0 28px 28px;
}

.tht-appt-pane-title {
    font-family: var(--tht-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tht-pane-num {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: var(--brand-secondary);
    letter-spacing: 0.1em;
    background: rgba(20,184,166,0.1);
    border: 1px solid rgba(20,184,166,0.2);
    padding: 3px 8px;
    border-radius: 6px;
}

.tht-label {
    display: block;
    font-family: var(--tht-font-display);
    font-size: 0.77rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.03em;
    margin-bottom: 7px;
}

.tht-input,
.tht-select,
.tht-textarea {
    width: 100%;
    padding: 11px 15px;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-family: var(--tht-font-body);
    font-size: 0.88rem;
    transition: border-color 0.25s, background 0.25s;
    appearance: none;
    -webkit-appearance: none;
}

.tht-input:focus,
.tht-select:focus,
.tht-textarea:focus {
    outline: none;
    border-color: var(--brand-secondary);
    background: rgba(20,184,166,0.07);
}

.tht-input::placeholder,
.tht-textarea::placeholder {
    color: rgba(255,255,255,0.22);
}

.tht-select option {
    background: var(--brand-dark);
    color: #fff;
}

.tht-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Organ radio group */
.tht-organ-radio-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.tht-organ-radio-label {
    cursor: pointer;
}

.tht-organ-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tht-organ-radio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: var(--tht-radius);
    background: rgba(255,255,255,0.05);
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
}

.tht-organ-radio-card:hover {
    border-color: rgba(20,184,166,0.4);
    background: rgba(20,184,166,0.06);
}

.tht-organ-radio:checked + .tht-organ-radio-card {
    border-color: var(--brand-secondary);
    background: rgba(20,184,166,0.12);
    box-shadow: 0 0 0 3px rgba(20,184,166,0.15);
}

.tht-organ-radio-emoji {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.tht-organ-radio:checked + .tht-organ-radio-card .tht-organ-radio-emoji {
    transform: scale(1.3);
}

.tht-organ-radio-icon {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.25s;
}

.tht-organ-radio:checked + .tht-organ-radio-card .tht-organ-radio-icon {
    color: var(--brand-secondary);
}

.tht-organ-radio-name {
    font-family: var(--tht-font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    transition: color 0.25s;
}

.tht-organ-radio:checked + .tht-organ-radio-card .tht-organ-radio-name {
    color: #fff;
}

/* Selected organ big display */
.tht-selected-organ-display {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(20,184,166,0.08);
    border: 1px solid rgba(20,184,166,0.2);
    border-radius: var(--tht-radius);
    margin-bottom: 16px;
    animation: thtOrganFadeIn 0.3s ease;
}

.tht-selected-organ-icon {
    font-size: 2rem;
}

.tht-selected-organ-display span {
    font-family: var(--tht-font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

/* Nav */
.tht-appt-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

/* Summary */
.tht-appt-summary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--tht-radius);
    padding: 18px;
    margin-bottom: 18px;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.85;
}

.tht-appt-summary strong {
    color: var(--brand-secondary);
    font-family: var(--tht-font-display);
}

.tht-check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ================================================================
   §11  FAQ
   ================================================================ */
.tht-faq-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tht-faq-item {
    border: 1.5px solid var(--brand-mid);
    border-radius: var(--tht-radius);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--tht-shadow);
    transition: box-shadow 0.25s;
}

.tht-faq-item:hover {
    box-shadow: 0 6px 20px rgba(13,148,136,0.1);
}

.tht-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--tht-font-display);
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--brand-dark);
    transition: color var(--tht-transition);
}

.tht-faq-btn:hover { color: var(--brand-primary); }

.tht-faq-btn[aria-expanded="true"] { color: var(--brand-primary); }

.tht-faq-chevron {
    flex-shrink: 0;
    color: rgba(13,148,136,0.35);
    transition: transform 0.28s ease, color 0.25s;
}

.tht-faq-btn[aria-expanded="true"] .tht-faq-chevron {
    transform: rotate(180deg);
    color: var(--brand-primary);
}

.tht-faq-body {
    display: none;
    padding: 0 22px 16px;
    font-size: 0.875rem;
    color: var(--brand-gray);
    line-height: 1.75;
}

.tht-faq-body.open { display: block; }

/* ================================================================
   §12  ARTIKEL
   ================================================================ */
.tht-article-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tht-article-card {
    background: #fff;
    border: 1.5px solid var(--brand-mid);
    border-radius: var(--tht-radius-lg);
    overflow: hidden;
    box-shadow: var(--tht-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.tht-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(13,148,136,0.13);
}

.tht-article-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-light), var(--brand-mid));
}

.tht-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.tht-article-card:hover .tht-article-img { transform: scale(1.04); }

.tht-article-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(13,148,136,0.25);
}

.tht-article-cat {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--brand-primary);
    padding: 3px 10px;
    border-radius: 100px;
    font-family: var(--tht-font-display);
}

.tht-article-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tht-article-date {
    font-size: 0.73rem;
    color: #94a3b8;
    margin-bottom: 7px;
}

.tht-article-title {
    font-family: var(--tht-font-display);
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.35;
    margin-bottom: 7px;
}

.tht-article-excerpt {
    font-size: 0.81rem;
    color: var(--brand-gray);
    line-height: 1.65;
    flex: 1;
    margin: 0 0 12px;
}

.tht-article-read {
    font-family: var(--tht-font-display);
    font-size: 0.79rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.tht-article-read:hover { gap: 9px; }

/* ================================================================
   §13  CTA
   ================================================================ */
.tht-cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.tht-cta-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.tht-cta-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.tht-cta-inner { position: relative; z-index: 1; }

.tht-cta-h2 {
    font-family: var(--tht-font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin: 20px 0 16px;
    line-height: 1.2;
}

.tht-cta-desc {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 500px;
}

.tht-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

/* WhatsApp FAB */
.tht-wa-fab {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 890;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tht-wa-fab:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1199px) {
    .tht-hero-h1 {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }

    .tht-hero-panel--center {
        padding: 80px 28px 60px;
    }
}

@media (max-width: 991px) {
    .tht-section { padding: 64px 0; }

    /* Hero: stack vertically */
    .tht-hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: unset;
    }

    .tht-hero-panel {
        padding: 48px 20px 36px;
        border-right: none;
        border-bottom: 1px solid var(--brand-mid);
    }

    .tht-hero-panel--left {
        border-bottom: 2px solid var(--brand-mid);
        padding: 36px 20px;
    }

    .tht-hero-panel--center {
        padding: 44px 20px;
    }

    .tht-hero-panel--right {
        border-bottom: none;
        padding: 36px 20px;
    }

    .tht-organ-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tht-organ-stat-card { flex: 1 1 calc(50% - 6px); }

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

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

    .tht-testi-masonry {
        columns: 2;
    }

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

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

    .tht-organ-radio-group {
        grid-template-columns: repeat(2, 1fr);
    }

    .tht-cta-actions {
        align-items: center;
    }
}

@media (max-width: 767px) {
    .tht-section { padding: 48px 0; }

    .tht-services-grid,
    .tht-promo-row,
    .tht-article-strip {
        grid-template-columns: 1fr;
    }

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

    .tht-testi-masonry {
        columns: 1;
    }

    .tht-organ-tabs {
        flex-direction: column;
        border-radius: var(--tht-radius);
    }

    .tht-organ-tab {
        border-right: none;
        border-bottom: 1px solid var(--brand-mid);
    }

    .tht-organ-tab:last-child {
        border-bottom: none;
    }

    .tht-hero-center-inner {
        max-width: 100%;
    }

    .tht-appt-pane {
        padding: 0 16px 20px;
    }

    .tht-appt-steps-nav {
        padding: 16px 16px 0;
    }

    .tht-step-dot-label {
        display: none;
    }
}

@media (max-width: 479px) {
    .tht-hero-actions {
        flex-direction: column;
    }

    .tht-btn-lg {
        width: 100%;
        justify-content: center;
    }

    .tht-organ-stat-card { flex: 1 1 100%; }

    .tht-doctors-grid {
        grid-template-columns: 1fr;
    }
}