@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --teal: #0F6E56;
    --teal-dark: #0a4f3e;
    --salmon: #D85A30;
    --bg: #E8EDE8;
    --white: #ffffff;
    --text: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--bg); overflow-x: hidden; }

/* ===== NAVBAR ===== */
.navbar {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}
.nav-menu li { position: relative; }
.nav-menu a {
    color: #085041;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.2s;
    border-radius: 2px;
}
.nav-menu a:hover { color: var(--teal); }
.nav-menu a:hover::after { transform: scaleX(1); }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 0.5rem 0;
    list-style: none;
    border: 1px solid #e5e7eb;
}
.dropdown-menu li a {
    padding: 0.6rem 1.2rem;
    border-radius: 0;
    color: #085041;
    font-size: 0.8rem;
}
.dropdown-menu li a::after { display: none; }
.dropdown-menu li a:hover { background: #f0f7f4; }
.nav-menu li:hover .dropdown-menu { display: block; }
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.btn-booking {
    background: #5BBFB5;
    color: #ffffff;
    padding: 8px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-booking:hover { background: #4aada3; box-shadow: 0 4px 12px rgba(91,191,181,0.4); }
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #085041; border-radius: 2px; transition: all 0.3s; }

/* ===== HERO SLIDER ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.hero-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
}
.hero-slide {
    min-width: 100%;
    position: relative;
    line-height: 0;
}
.slide-full-img {
    width: 100%;
    height: calc(100vh - 68px);
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Slide 2 Custom */
.slide-2-custom {
    background: #185E60;
    min-width: 100%;
    height: calc(100vh - 68px);
    display: flex;
    align-items: center;
}
.slide2-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 2rem;
    align-items: center;
}
.slide2-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 2.5rem;
}
.slide2-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.slide2-stat {
    background: rgba(95, 183, 168, 0.35);
    border: 1px solid rgba(95, 183, 168, 0.5);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.slide2-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.slide2-lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    line-height: 1.3;
}
.slide2-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: calc(100vh - 68px);
}
.slide2-right img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
}
.hero-slide-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-text { z-index: 1; }
.hero-badge {
    display: inline-block;
    background: var(--salmon);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--teal-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.hero-title span { color: var(--salmon); }
.hero-desc {
    color: #3a5a52;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 500px;
}
.btn-reservasi {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-dark);
    color: var(--white);
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(10,79,62,0.3);
}
.btn-reservasi:hover { background: var(--teal); transform: translateY(-2px); }

/* Before-After Stack (Slide 1) */
.hero-visual { position: relative; }
.ba-stack { display: flex; flex-direction: column; gap: 0.75rem; }
.ba-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.ba-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    position: relative;
}
.ba-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.ba-card-main img { height: 220px; }
.ba-card-sm img { height: 140px; }
.ba-card-full img { height: 420px; }
.before-after-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: var(--salmon);
    color: var(--white);
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}
.hero-visual-single .ba-card-full { border-radius: 16px; }

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.85);
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--teal-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-arrow:hover { background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.hero-arrow-left { left: 1.5rem; }
.hero-arrow-right { right: 1.5rem; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.6);
}
.hero-dot.active { background: var(--white); width: 28px; border-radius: 5px; }



/* WhatsApp Float */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 1001;
    transition: all 0.3s;
}
.wa-float:hover { transform: scale(1.1); }

/* ===== TREATMENT ===== */
.treatment {
    background: #ffffff;
    position: relative;
    padding: 4rem 2rem 5rem;
}
.section-title { text-align: center; font-size: 2.5rem; font-weight: 800; color: var(--teal-dark); margin-bottom: 3rem; }
.treatment-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.treatment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 1rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.treatment-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px rgba(15,110,86,0.18);
}
.treatment-icon { width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; }
.treatment-icon img { width: 80px; height: 80px; object-fit: contain; }
.treatment-label {
    background: #e8ede8;
    color: var(--teal-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
}

/* ===== PERAWATAN RAMBUT ===== */
.perawatan-section {
    background: #F5F0E8;
    padding: 80px 20px 80px;
}
.perawatan-header {
    text-align: center;
    margin-bottom: 48px;
}
.perawatan-h1 {
    font-size: 46px;
    font-weight: 700;
    color: #085041;
    line-height: 1.2;
    margin-bottom: 16px;
}
.perawatan-sub {
    font-size: 18px;
    font-weight: 400;
    color: #4A6860;
}
.perawatan-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px;
    overflow: hidden;
}
.perawatan-inner {
    display: grid;
    grid-template-columns: 20% 28% 52%;
    gap: 24px;
    align-items: start;
    -webkit-user-select: none;
    user-select: none;
}
.perawatan-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.sidebar-item {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
    transition: background 0.2s;
    line-height: 1.4;
}
.sidebar-item:hover { background: #F0F0F0; }
.sidebar-item.active { background: #5BBFB5; color: #ffffff; }
.perawatan-foto {
    overflow: hidden;
    min-width: 0;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}
.perawatan-foto:active { cursor: grabbing; }
.perawatan-foto img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.perawatan-konten {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}
.treatment-h2 {
    font-size: 24px;
    font-weight: 700;
    color: #085041;
    margin-bottom: 10px;
}
.treatment-desc {
    font-size: 14px;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.treatment-sub-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 6px;
}
.treatment-checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}
.treatment-checklist li {
    font-size: 14px;
    color: #333333;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.treatment-checklist li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #4BBFB5;
    font-weight: 700;
}
@media (max-width: 768px) {
    .perawatan-section { padding: 48px 20px; }
    .perawatan-h1 { font-size: 28px; }
    .perawatan-inner { grid-template-columns: 1fr; }
    .perawatan-sidebar { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 8px; }
    .sidebar-item { white-space: nowrap; flex-shrink: 0; }
    .perawatan-foto img { height: 280px; }
}

/* ===== PROSEDUR ===== */
.prosedur-section {
    background: #ffffff;
    padding: 64px 20px;
}
.prosedur-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.prosedur-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0F6E56;
    text-align: center;
    margin-bottom: 8px;
}
.prosedur-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 40px;
}
.prosedur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.prosedur-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}
.prosedur-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}
.prosedur-content {
    padding: 1rem 0;
}
.prosedur-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E1F5EE;
    color: #0F6E56;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px 4px 4px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.prosedur-num {
    background: #0F6E56;
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.prosedur-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.2s;
}
.prosedur-card:hover .prosedur-card-title {
    color: #0F6E56;
}
.prosedur-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.65;
}

/* ===== ABOUT ===== */
.about { background: #faf9f6; padding: 5rem 2rem; }
.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-subtitle {
    color: var(--salmon);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}
.about-title { font-size: 1.6rem; font-weight: 700; color: var(--teal-dark); line-height: 1.4; margin-bottom: 1.5rem; }
.about-text { color: #666; font-size: 0.88rem; line-height: 1.8; margin-bottom: 1rem; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    object-fit: cover;
    height: 480px;
}
.about-img-placeholder {
    width: 100%;
    height: 480px;
    border-radius: 16px;
    background: linear-gradient(135deg, #d0e8e0, #b0d4c8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    gap: 0.5rem;
}
.about-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--teal-dark);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== STATS ===== */
.stats { background: var(--teal-dark); padding: 4rem 2rem; }
.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item { padding: 1rem; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.2); }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--salmon); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; }

/* ===== TAHAPAN ===== */
.tahapan-section {
    background: #F5F0E8;
    padding: 72px 20px;
    -webkit-user-select: none;
    user-select: none;
}
.tahapan-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.tahapan-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1D4B3E;
    text-align: center;
    margin-bottom: 8px;
}
.tahapan-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}
.tahapan-foto-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
}
.tahapan-foto-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}
.tahapan-foto-item {
    position: relative;
    flex-shrink: 0;
    width: calc((100% - 40px) / 3);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 12px 12px 0 12px;
}
.tahapan-foto-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    pointer-events: none;
    -webkit-user-drag: none;
}
.tahapan-foto-num {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: #1D9E75;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.tahapan-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #1D9E75;
    background: rgba(255,255,255,0.9);
    color: #1D9E75;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}
.tahapan-arrow:hover { background: #1D9E75; color: #fff; }
.tahapan-arrow-left { left: 12px; }
.tahapan-arrow-right { right: 12px; }
.tahapan-foto-content {
    padding: 1rem;
}
.tahapan-kartu-wrap {
    overflow: hidden;
}
.tahapan-kartu-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}
.tahapan-kartu {
    flex-shrink: 0;
    width: 340px;
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
}
.tahapan-kartu-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}
.tahapan-kartu-waktu {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #1D9E75;
    margin-bottom: 12px;
    font-weight: 500;
}
.tahapan-kartu-list {
    list-style: disc;
    padding-left: 18px;
}
.tahapan-kartu-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}
.tahapan-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.tahapan-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s;
}
.tahapan-dot.active { background: #1D9E75; }

/* ===== VIDEO ===== */
.video-section { background: var(--bg); padding: 5rem 2rem; }
.video-inner { max-width: 1100px; margin: 0 auto; }
.video-subtitle {
    text-align: center;
    color: var(--salmon);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.video-title { text-align: center; font-size: 2rem; font-weight: 800; color: var(--teal-dark); margin-bottom: 3rem; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.video-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    aspect-ratio: 16/9;
    background: #1a1a1a;
}
.video-wrap iframe { width: 100%; height: 100%; border: none; }

/* ===== PERUBAHAN ===== */
.perubahan-section {
    background: #1E6B61;
    padding: 60px 0;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
}
.perubahan-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.perubahan-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}
.perubahan-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.perubahan-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}
.perubahan-slider-wrap {
    position: relative;
    overflow: hidden;
}
.perubahan-track {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.4s ease;
    padding: 40px 0;
    will-change: transform;
}
.perubahan-kartu {
    flex-shrink: 0;
    width: 480px;
    background: #D6D3CC;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    opacity: 0.45;
    transform: scale(0.85);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.perubahan-kartu.active {
    opacity: 1;
    transform: scale(1);
}
.perubahan-kartu-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A2B2B;
    margin-bottom: 4px;
}
.perubahan-kartu-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
}
.perubahan-foto-wrap {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.perubahan-foto-wrap img {
    width: 48%;
    height: 480px;
    object-fit: cover;
    background: #f4f6f8;
    border-radius: 12px;
    pointer-events: none;
    -webkit-user-drag: none;
}
.perubahan-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1D9E75;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}
.perubahan-arrow:hover { background: #158a63; }
.perubahan-arrow-left { left: 16px; }
.perubahan-arrow-right { right: 16px; }
.perubahan-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.perubahan-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s;
}
.perubahan-dot.active {
    background: #1D9E75;
    width: 12px;
    height: 12px;
}

/* ===== FAQ ===== */
.faq { background: var(--white); padding: 5rem 2rem; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-title { text-align: center; font-size: 2rem; font-weight: 800; color: var(--teal-dark); margin-bottom: 2.5rem; }
.faq-item {
    border: 1px solid #e0e8e4;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-item.open { border-color: var(--teal); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--teal-dark);
    background: var(--white);
    transition: background 0.2s;
    -webkit-user-select: none;
    user-select: none;
}
.faq-item.open .faq-question { background: #f0f7f4; }
.faq-icon {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    flex-shrink: 0;
    line-height: 1;
}
.faq-item.open .faq-icon { color: #1a1a1a; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 1.5rem;
    font-size: 0.87rem;
    color: #666;
    line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.25rem; }

/* ===== VIDEO TESTIMONI ===== */
.vidtes-section {
    background: #f4f6f8;
    padding: 70px 20px 80px;
    position: relative;
    overflow: hidden;
}
.vidtes-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26,158,143,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.vidtes-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(232,131,106,0.09) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.vidtes-header {
    text-align: center;
    margin-bottom: 48px;
}
.vidtes-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a7a6e;
    margin-bottom: 8px;
}
.vidtes-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #555;
    font-weight: 400;
}
.vidtes-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.vidtes-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}
.vidtes-kartu {
    flex-shrink: 0;
    width: calc((100% - 40px) / 3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: relative;
    cursor: pointer;
}
.vidtes-thumb img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
}
.vidtes-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a2b2b;
    pointer-events: none;
}
.vidtes-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 24px 12px 10px;
    pointer-events: none;
}
.vidtes-thumb-wrap {
    position: relative;
    cursor: pointer;
    line-height: 0;
}
.vidtes-thumb-wrap img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
}
.vidtes-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a2b2b;
    pointer-events: none;
    transition: background 0.2s;
}
.vidtes-thumb-wrap:hover .vidtes-play { background: #fff; }
.vidtes-embed iframe {
    width: 100%;
    height: 230px;
    border: none;
    display: block;
}
.vidtes-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a9e8f;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}
.vidtes-arrow:hover { background: #158a7c; }
.vidtes-arrow-left { left: 0; }
.vidtes-arrow-right { right: 0; }
.vidtes-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.vidtes-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s;
}
.vidtes-dot.active { background: #1a9e8f; }

.lokasi-terdekat { border: 2px solid #1a9e8f !important; box-shadow: 0 4px 20px rgba(26,158,143,0.25) !important; }
.lokasi-terdekat .lokasi-nama { color: #1a9e8f !important; }

/* ===== LOKASI ===== */
.lokasi-section {
    background: #ffffff;
    padding: 70px 20px 80px;
    position: relative;
    overflow: hidden;
}
.lokasi-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(26,158,143,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.lokasi-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(26,107,99,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.lokasi-header {
    text-align: center;
    margin-bottom: 48px;
}
.lokasi-h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a7a6e;
    margin-bottom: 8px;
}
.lokasi-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
}
.lokasi-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.lokasi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}
.lokasi-kartu {
    flex-shrink: 0;
    width: calc((100% - 48px) / 3);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.lokasi-kartu img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
}
.lokasi-konten {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.lokasi-nama-wrap {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.lokasi-nama {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a7a6e;
    text-transform: uppercase;
    line-height: 1.4;
}
.lokasi-alamat-wrap {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex: 1;
}
.lokasi-alamat {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.lokasi-btn {
    display: block;
    width: 100%;
    height: 44px;
    background: #1a9e8f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    line-height: 44px;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 4px;
}
.lokasi-btn:hover { background: #158a7c; }
.lokasi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a9e8f;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}
.lokasi-arrow:hover { background: #158a7c; }
.lokasi-arrow-left { left: 0; }
.lokasi-arrow-right { right: 0; }

/* ===== BOOKING ===== */
.booking-section {
    background: #1a6b63;
    padding: 70px 20px 80px;
    position: relative;
    overflow: hidden;
}
.booking-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 440px;
    height: 440px;
    border: 70px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}
.booking-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border: 50px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}
.booking-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
    align-items: start;
    width: 100%;
}
.booking-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.booking-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
}
.booking-title span { color: #7dd4c8; }
.booking-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 28px;
}
.booking-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.booking-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    padding-left: 24px;
    position: relative;
}
.booking-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7dd4c8;
    font-weight: 700;
}
.booking-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 100%;
    min-width: 0;
}
.booking-card-header {
    background: #1D5C52;
    padding: 1.25rem;
    text-align: center;
}
.booking-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.booking-card-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}
.booking-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.booking-card-body form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.booking-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.booking-field label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}
.booking-field input,
.booking-field select,
.booking-field textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    border: 1px solid #D8DBE0;
    border-radius: 8px;
    padding: 10px 14px;
    color: #333;
    outline: none;
    transition: border 0.2s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.booking-field input::placeholder,
.booking-field textarea::placeholder { color: #AAAAAA; }
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus { border-color: #1D9E75; box-shadow: 0 0 0 2px rgba(29,158,117,0.15); }
.booking-field textarea { height: 100px; resize: vertical; }
.booking-btn {
    width: 100%;
    height: 52px;
    background: #E8744A;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.booking-btn:hover { background: #D4633A; }
.booking-secure {
    font-size: 12px;
    color: #888;
    text-align: center;
}
.booking-contact {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #555;
    text-align: center;
}
.booking-contact span {
    color: #1D9E75;
    font-weight: 600;
}
@media (max-width: 768px) {
    .booking-inner { grid-template-columns: 1fr; }
    .booking-row { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer { background: #0d7a70; padding: 0 3rem; color: #ffffff; }
.footer-inner { display: none; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}
.footer-bottom-logos { display: flex; align-items: center; gap: 14px; }
.footer-copy { font-size: 13px; color: #ffffff; font-weight: 400; margin: 0; }

/* ===== TIMELINE HASIL ===== */
.timeline-section {
    background: #ffffff;
    padding: 70px 70px 80px;
    position: relative;
    overflow: hidden;
}
.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e8836a, #1a9e8f, #1a6b63);
}
.timeline-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(26,158,143,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.timeline-header { text-align: center; margin-bottom: 48px; }
.timeline-label { display: block; font-size: 12px; font-weight: 600; color: #e8836a; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.timeline-title { font-size: 32px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.timeline-title span { color: #1a7a6e; }
.timeline-desc { font-size: 16px; color: #666; font-weight: 400; margin-bottom: 0; }
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.timeline-card { background: #ffffff; border: 1px solid #e0e4e8; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.timeline-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.timeline-img { width: 100%; height: 350px; object-fit: cover; object-position: top; display: block; transition: transform 0.4s ease; }
.timeline-card:hover .timeline-img { transform: scale(1.06); }
.timeline-card-body { padding: 24px; }
.timeline-num { width: 38px; height: 38px; border-radius: 50%; background: #1a6b63; color: #ffffff; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.timeline-time { display: block; font-size: 12px; font-weight: 600; color: #e8836a; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.timeline-name { font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.timeline-desc-card { font-size: 15px; color: #666; line-height: 1.75; margin: 0; }

/* ===== 3 FASE UTAMA ===== */
.fase-section {
    background: #1a6b63;
    padding: 70px 70px 80px;
    position: relative;
    overflow: hidden;
}
.fase-section::before {
    content: '';
    position: absolute;
    left: -140px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    border: 60px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}
.fase-section::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    border: 40px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}
.fase-header { text-align: center; margin-bottom: 48px; }
.fase-label { display: block; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.fase-title { font-size: 32px; font-weight: 700; color: #ffffff; margin-bottom: 0; }
.fase-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
.fase-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; overflow: hidden; transition: background 0.25s; }
.fase-card:hover { background: rgba(255,255,255,0.14); }
.fase-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.fase-card-body { padding: 28px; }
.fase-num { font-size: 30px; font-weight: 700; color: #e8836a; display: block; margin-bottom: 16px; }
.fase-name { font-size: 17px; font-weight: 700; color: #ffffff; margin-bottom: 10px; }
.fase-desc { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.75); line-height: 1.75; margin: 0; }

/* ===== HERO CONTENT ===== */
.heroc-section {
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 140px 70px 90px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.heroc-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(26,158,143,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.heroc-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232,131,106,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.heroc-badge { display: inline-block; border: 1px solid #e8836a; background: #fff; color: #e8836a; font-size: 13px; font-weight: 500; padding: 6px 16px; border-radius: 20px; margin-bottom: 24px; }
.heroc-title { font-size: 48px; font-weight: 800; color: #1a1a1a; line-height: 1.12; margin-bottom: 22px; }
.heroc-title span { color: #1a7a6e; }
.heroc-desc { font-size: 16px; color: #555; line-height: 1.85; margin-bottom: 36px; max-width: 520px; }
.heroc-btns { display: flex; gap: 16px; margin-bottom: 28px; }
.heroc-btn-primary { background: #e8836a; color: #fff; font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 8px; text-decoration: none; border: none; }
.heroc-btn-primary:hover { background: #d4724f; }
.heroc-btn-secondary { background: transparent; border: 1.5px solid #1a1a1a; color: #1a1a1a; font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 8px; text-decoration: none; }
.heroc-btn-secondary:hover { background: #f4f6f8; }
.heroc-proof { background: #f4f6f8; border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.heroc-avatars { display: flex; }
.heroc-av { width: 32px; height: 32px; border-radius: 50%; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; margin-left: -8px; flex-shrink: 0; }
.heroc-avatars .heroc-av:first-child { margin-left: 0; }
.heroc-proof-names { font-size: 14px; font-weight: 700; color: #1a1a1a; margin: 0 0 2px; }
.heroc-proof-sub { font-size: 13px; color: #1a9e8f; margin: 0; }
.heroc-statbox { background: #e8f5f2; border-radius: 16px; padding: 24px; }
.heroc-slider { border-radius: 16px; overflow: hidden; position: relative; width: 100%; }
.heroc-slider-track { display: flex; transition: transform 0.5s ease; }
.heroc-slide { min-width: 100%; }
.heroc-slide img { width: 100%; height: 420px; object-fit: cover; display: block; }
.heroc-slider-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.heroc-sdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.3s; }
.heroc-sdot.active { background: #fff; }
.heroc-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.heroc-stat { background: #ffffff; border-radius: 12px; padding: 20px; text-align: center; }
.heroc-stat-num { font-size: 28px; font-weight: 700; color: #1a6b63; margin: 0 0 4px; }
.heroc-stat-lbl { font-size: 14px; color: #666; margin: 0; }
.heroc-banner { background: #1a6b63; border-radius: 12px; padding: 18px; text-align: center; }
.heroc-banner-sub { font-size: 13px; color: rgba(255,255,255,0.75); margin: 0 0 4px; }
.heroc-banner-main { font-size: 16px; font-weight: 700; color: #ffffff; margin: 0; }

/* ===== STATS SECTION ===== */
.stats-section {
    background: #e8f5f2;
    padding: 48px 70px;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26,107,99,0.22) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
.stats-card { background: #ffffff; border-radius: 14px; padding: 32px 20px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.stats-num { font-size: 36px; font-weight: 800; color: #1a6b63; margin: 0 0 8px; }
.stats-lbl { font-size: 15px; color: #666; margin: 0; font-weight: 500; }
.stats-banner { background: #1a6b63; border-radius: 12px; padding: 22px; text-align: center; margin-bottom: 0; }
.stats-banner-sub { font-size: 14px; color: rgba(255,255,255,0.75); margin: 0 0 4px; }
.stats-banner-main { font-size: 18px; font-weight: 700; color: #ffffff; margin: 0; }
.stats-slider-wrap { display: none; }

/* ===== STRIP KEUNGGULAN & PUBLIC FIGURE ===== */
.strip-keunggulan { background: #f8f9fa; height: 60px; display: flex; justify-content: center; align-items: center; gap: 44px; padding: 0 60px; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.strip-item { display: flex; align-items: center; gap: 8px; font-size: 15px; color: #444; white-space: nowrap; }
.strip-check { width: 20px; height: 20px; border-radius: 50%; background: #1a9e8f; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.strip-pubfig { background: #1a6b63; display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 40px 60px; }
.strip-pubfig-label { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 3.5px; text-transform: uppercase; margin: 0; }
.strip-pubfig-list { display: flex; justify-content: center; align-items: flex-end; gap: 0; }
.strip-fig { text-align: center; padding: 0 40px; }
.fig-photo { width: 230px; height: 300px; object-fit: cover; object-position: top; border-radius: 0; margin: 0 auto 12px; display: block; }
.fig-name { font-size: 15px; font-weight: 700; color: #ffffff; margin: 0 0 2px; white-space: nowrap; }
.fig-job { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; white-space: nowrap; }
.strip-divider { width: 1px; height: 150px; background: rgba(255,255,255,0.2); flex-shrink: 0; align-self: center; }

/* ===== TESTIMONI ===== */
.testi-section {
    background: #eaf4f1;
    padding: 70px 70px 80px;
    position: relative;
    overflow: hidden;
}
.testi-section::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 50px;
    font-size: 300px;
    font-family: Georgia, serif;
    color: rgba(26,107,99,0.1);
    line-height: 1;
    pointer-events: none;
    font-weight: 700;
}
.testi-section::after {
    content: '\201D';
    position: absolute;
    bottom: -40px;
    right: 50px;
    font-size: 300px;
    font-family: Georgia, serif;
    color: rgba(26,107,99,0.1);
    line-height: 1;
    pointer-events: none;
    font-weight: 700;
}
.testi-header { text-align: center; margin-bottom: 48px; }
.testi-label { display: block; font-size: 12px; font-weight: 600; color: #e8836a; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.testi-title { font-size: 32px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.testi-title span { color: #1a7a6e; }
.testi-desc { font-size: 16px; color: #999; font-weight: 400; margin-bottom: 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: #ffffff; border: 1px solid #e0e4e8; border-radius: 16px; padding: 32px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 20px; transition: box-shadow 0.3s; }
.testi-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.testi-stars { color: #f5a623; font-size: 20px; letter-spacing: 2px; }
.testi-quote { font-size: 15px; color: #444; line-height: 1.85; font-style: italic; margin: 0; flex: 1; }
.testi-profile { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid #f0f2f5; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; font-weight: 700; flex-shrink: 0; }
.testi-name { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0 0 2px; }
.testi-job { font-size: 14px; color: #888; margin: 0 0 4px; }
.testi-verified { font-size: 13px; color: #1a9e8f; margin: 0; }

/* ===== DOKTER ===== */
.dokter-section {
    background: #f4f6f8;
    padding: 80px 70px 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.dokter-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(26,107,99,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.dokter-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 30%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(232,131,106,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.dokter-left { background: #eaf4f1; border: 1px solid #d0e8e4; border-radius: 16px; overflow: hidden; }
.dokter-photo-box { height: 550px; }
.dokter-photo { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; background: #eaf4f1; }
.dokter-name { font-size: 17px; font-weight: 700; color: #1a1a1a; text-align: center; margin-bottom: 6px; padding: 0 28px; margin-top: 20px; }
.dokter-title { font-size: 14px; color: #1a9e8f; text-align: center; margin-bottom: 20px; padding: 0 28px; }
.dokter-achievements { list-style: none; padding: 0 28px 28px; }
.dokter-achievements li { font-size: 14px; color: #444; line-height: 1.8; padding-left: 20px; position: relative; }
.dokter-achievements li::before { content: '✓'; position: absolute; left: 0; color: #1a9e8f; font-weight: 700; }
.dokter-label { display: block; font-size: 12px; font-weight: 600; color: #e8836a; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.dokter-title-main { font-size: 30px; font-weight: 700; color: #1a1a1a; line-height: 1.3; margin-bottom: 16px; }
.dokter-title-main span { color: #1a7a6e; }
.dokter-desc { font-size: 16px; color: #666; line-height: 1.8; margin-bottom: 32px; }
.dokter-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dokter-stat { background: #ffffff; border: 1px solid #e0e4e8; border-radius: 12px; padding: 20px; transition: box-shadow 0.2s; }
.dokter-stat:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.dokter-stat-icon { font-size: 20px; display: block; margin-bottom: 10px; }
.dokter-stat-text { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0; }

/* ===== LAYANAN PERAWATAN ===== */
.layanan-section {
    background: #f4f6f8;
    padding: 70px 70px 80px;
    position: relative;
    overflow: hidden;
}
.layanan-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26,158,143,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.layanan-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232,131,106,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.layanan-header { text-align: center; margin-bottom: 48px; }
.layanan-label { display: block; font-size: 12px; font-weight: 600; color: #e8836a; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.layanan-title { font-size: 32px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.layanan-title span { color: #1a7a6e; }
.layanan-desc { font-size: 16px; color: #666; font-weight: 400; margin-bottom: 0; }
.layanan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.layanan-card { background: #ffffff; border: 1px solid #e0e4e8; border-radius: 16px; padding: 32px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }
.layanan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.layanan-featured { border: 2px solid #e8836a; }
.layanan-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.layanan-badge { background: #fdf0eb; color: #e8836a; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; }
.layanan-icon { font-size: 24px; }
.layanan-name { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.layanan-desc-card { font-size: 15px; color: #666; line-height: 1.75; margin-bottom: 16px; flex: 1; }
.layanan-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.layanan-tag { background: #f0f2f5; color: #555; font-size: 13px; padding: 4px 12px; border-radius: 20px; }
.layanan-link { color: #e8836a; font-weight: 600; font-size: 15px; text-decoration: none; padding-top: 16px; border-top: 1px solid #f0f2f5; margin-top: auto; }
.layanan-link:hover { text-decoration: underline; }

/* ===== FAQ ===== */
.faq-section {
    background: #f4f6f8;
    padding: 70px 2rem 80px;
    position: relative;
    overflow: hidden;
}
.faq-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: rgba(26,107,99,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.faq-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: rgba(26,107,99,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.faq-wave-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 180px;
    pointer-events: none;
    opacity: 0.07;
}
.faq-wave-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 180px;
    pointer-events: none;
    opacity: 0.07;
}
.faq-inner { max-width: 860px; margin: 0 auto; padding: 0; position: relative; z-index: 1; }
.faq-label { display: block; font-size: 12px; font-weight: 600; color: #e8836a; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; text-align: center; }
.faq-title { font-size: 32px; font-weight: 700; color: #1a1a1a; text-align: center; margin-bottom: 12px; }
.faq-title span { color: #1a7a6e; }
.faq-desc { font-size: 16px; color: #999; text-align: center; margin-bottom: 48px; }
.faq-list { border-top: 1px solid #e0e4e8; }
.faq-item { border-bottom: 1px solid #e0e4e8; padding: 0; }
.faq-q { width: 100%; background: none; border: none; display: flex; align-items: center; gap: 12px; padding: 18px 0; cursor: pointer; font-family: inherit; font-size: 16px; font-weight: 600; color: #1a1a1a; text-align: left; }
.faq-icon { font-size: 18px; font-weight: 700; color: #1a1a1a; flex-shrink: 0; width: 20px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { font-size: 15px; color: #555; line-height: 1.85; padding: 0 0 22px 38px; margin: 0; }
.faq-item.faq-open .faq-a { max-height: 300px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .treatment-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .btn-booking { display: none; }
    .nav-hamburger { display: flex; }
    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 1rem;
        gap: 0.25rem;
        z-index: 1001;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    .nav-menu.open .btn-booking { display: inline-flex; margin-top: 0.5rem; }
    .hero-slide-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-title { font-size: 2rem; }
    .ba-card-main img { height: 160px; }
    .ba-card-sm img { height: 110px; }
    .ba-card-full img { height: 260px; }
    .hero-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
    .hero-arrow-left { left: 0.75rem; }
    .hero-arrow-right { right: 0.75rem; }
    .treatment-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { grid-template-columns: 1fr; }
    .about-img-wrap img, .about-img-placeholder { height: 300px; }
    .stats-inner { grid-template-columns: 1fr; }
    .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 2rem; }
    .video-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .section-title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .stat-number { font-size: 2.2rem; }
}

/* ===== GALLERY ===== */
.gallery { background: #faf9f6; padding: 5rem 2rem; }
.gallery-inner { max-width: 1100px; margin: 0 auto; }
.gallery-subtitle {
    text-align: center;
    color: var(--salmon);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.gallery-title { text-align: center; font-size: 2rem; font-weight: 800; color: var(--teal-dark); margin-bottom: 2.5rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.gallery-item {
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT PAGE ===== */
body.contact-body {
    background: #F5F5F0;
}
.contact-page {
    min-height: 60vh;
    padding: 2.5rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-breadcrumb {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 1.5rem;
}
.contact-breadcrumb a { color: var(--teal); text-decoration: none; }
.contact-breadcrumb a:hover { text-decoration: underline; }
.contact-breadcrumb span { margin: 0 6px; }
.contact-header {
    background: transparent;
    padding: 2rem 0;
    margin-bottom: 2rem;
}
.contact-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #085041;
    text-align: center;
    line-height: 1.4;
}
.contact-block {
    background: transparent;
    border: none;
    border-radius: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}
.contact-watermark {
    position: absolute;
    inset: 0;
    background-image: url('../images/logo-farmanina.png');
    background-repeat: no-repeat;
    background-position: center right 10%;
    background-size: 180px auto;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}
.contact-info {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}
.contact-info-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}
.contact-info-item { display: flex; flex-direction: column; gap: 2px; }
.contact-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    letter-spacing: 1px;
}
.contact-value { font-size: 0.9rem; color: #444; }
.contact-locations { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-loc-name {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}
.contact-loc-item p { font-size: 0.82rem; color: #555; line-height: 1.7; }
.contact-img {
    position: relative;
    z-index: 1;
}
.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.contact-img-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #e0e0e0;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .contact-block { grid-template-columns: 1fr; }
    .contact-img img { height: 260px; }
    .contact-img-placeholder { min-height: 260px; }
    .contact-header h1 { font-size: 1.3rem; }
}

/* ===== HAIR TRANSPLANT PAGE ===== */
.ht-hero { background: #ffffff; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px 70px; align-items: center; }
.ht-badge { display: inline-block; border: 1px solid #e8836a; color: #e8836a; font-size: 13px; font-weight: 500; padding: 6px 16px; border-radius: 20px; margin-bottom: 24px; }
.ht-hero-title { font-size: 46px; font-weight: 800; color: #1a1a1a; line-height: 1.15; margin-bottom: 20px; }
.ht-hero-title span { color: #1a7a6e; }
.ht-hero-desc { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 32px; }
.ht-hero-btns { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.ht-btn-primary { background: #e8836a; color: #fff; font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 8px; text-decoration: none; }
.ht-btn-primary:hover { background: #d4724f; }
.ht-btn-secondary { background: transparent; border: 1.5px solid #1a1a1a; color: #1a1a1a; font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 8px; text-decoration: none; }
.ht-btn-secondary:hover { background: #f4f6f8; }
.ht-hero-stats { display: flex; align-items: center; gap: 24px; }
.ht-stat { text-align: center; }
.ht-stat-num { display: block; font-size: 24px; font-weight: 800; color: #1a6b63; }
.ht-stat-lbl { display: block; font-size: 12px; color: #666; }
.ht-stat-div { width: 1px; height: 36px; background: #e0e4e8; }
.ht-hero-imgbox { position: relative; border-radius: 16px; overflow: hidden; }
.ht-hero-img { width: 100%; height: 480px; object-fit: cover; display: block; }
.ht-hero-chip { position: absolute; bottom: 16px; left: 16px; background: #1a6b63; color: #fff; font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 20px; }

.ht-about { background: #f4f6f8; padding: 70px 70px; }
.ht-about-inner { max-width: 1100px; }
.ht-section-label { display: block; font-size: 11px; font-weight: 600; color: #e8836a; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.ht-section-title { font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; line-height: 1.3; }
.ht-section-title span { color: #1a7a6e; }
.ht-section-desc { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 40px; }
.ht-compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ht-compare-card { background: #fff; border: 1px solid #e0e4e8; border-radius: 12px; padding: 28px; }
.ht-compare-featured { border: 2px solid #1a6b63; }
.ht-compare-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.ht-compare-head h3 { font-size: 20px; font-weight: 800; color: #1a1a1a; margin: 0; }
.ht-compare-badge { background: #1a6b63; color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.ht-compare-list { list-style: none; padding: 0; margin: 0; }
.ht-compare-list li { font-size: 14px; color: #1a6b63; font-weight: 600; line-height: 2; }
.ht-compare-list-muted li { color: #888; font-weight: 400; }

.ht-prosedur { background: #1a6b63; padding: 70px 70px; }
.ht-prosedur .ht-section-label { color: rgba(255,255,255,0.6); }
.ht-prosedur .ht-section-title { color: #fff; }
.ht-prosedur .ht-section-title span { color: #7dd4c8; }
.ht-prosedur-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.ht-prosedur-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; overflow: hidden; }
.ht-prosedur-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.ht-prosedur-body { padding: 24px; }
.ht-prosedur-num { font-size: 28px; font-weight: 800; color: #e8836a; display: block; margin-bottom: 12px; }
.ht-prosedur-body h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.ht-prosedur-body p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0; }

.ht-kandidat { background: #ffffff; padding: 70px 70px; }
.ht-kandidat-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ht-kandidat-list { list-style: none; padding: 0; margin: 0; }
.ht-kandidat-list li { font-size: 15px; color: #1a6b63; font-weight: 600; line-height: 2.2; }
.ht-kandidat-box { background: #f4f6f8; border-radius: 16px; padding: 28px; }
.ht-kandidat-box-label { font-size: 11px; font-weight: 600; color: #e8836a; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 20px; }
.ht-kandidat-items { display: flex; flex-direction: column; gap: 20px; }
.ht-kandidat-item { display: flex; align-items: flex-start; gap: 14px; }
.ht-kandidat-icon { font-size: 22px; flex-shrink: 0; }
.ht-ki-title { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0 0 4px; }
.ht-ki-desc { font-size: 13px; color: #666; margin: 0; }

.ht-cta { background: #1a6b63; padding: 70px; text-align: center; }
.ht-cta-title { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.ht-cta-desc { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.ht-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.ht-btn-white { background: #fff; color: #1a6b63; font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 8px; text-decoration: none; }
.ht-btn-white:hover { background: #f0f0f0; }
.ht-btn-outline-white { background: transparent; border: 2px solid #fff; color: #fff; font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 8px; text-decoration: none; }
.ht-btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ===== ARTIKEL HAIR TRANSPLANT ===== */
.artikel-wrap { max-width: 1100px; margin: 0 auto; padding: 60px 60px 80px; }
.artikel-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 56px; }
.artikel-hero-title { font-size: 34px; font-weight: 800; color: #1a6b63; margin-bottom: 20px; }
.artikel-hero-left p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 16px; }
.artikel-carousel { position: relative; border-radius: 16px; overflow: hidden; height: 380px; width: 380px; }
.artikel-carousel-track { display: flex; height: 100%; transition: transform 0.4s ease; }
.artikel-carousel-img { min-width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; }
.artikel-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.85); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 20px; cursor: pointer; color: #1a1a1a; display: flex; align-items: center; justify-content: center; z-index: 2; }
.artikel-arrow-left { left: 10px; }
.artikel-arrow-right { right: 10px; }
.artikel-body { margin-bottom: 56px; }
.artikel-body h2 { font-size: 22px; font-weight: 700; color: #1a6b63; margin: 36px 0 12px; }
.artikel-body p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 16px; }
.artikel-list { padding-left: 20px; margin-bottom: 16px; }
.artikel-list li { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 6px; }
.artikel-cta { text-align: center; padding: 40px 0 0; border-top: 1px solid #e0e4e8; }
.artikel-cta-title { font-size: 18px; font-weight: 700; color: #1a6b63; margin-bottom: 8px; }
.artikel-cta-sub { font-size: 14px; color: #666; margin-bottom: 12px; }
.artikel-cta-action { font-size: 15px; font-weight: 700; color: #1a6b63; margin-bottom: 0; }

/* ===== EVOLUTIONS ===== */
.evo-section { background: #ffffff; padding: 60px 0 0; }
.evo-title { font-size: 42px; font-weight: 800; color: #1a6b63; text-align: center; margin-bottom: 10px; }
.evo-sub { font-size: 17px; font-weight: 700; color: #1a7a6e; text-align: center; margin-bottom: 32px; }
.evo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 0 60px; margin-bottom: 0; }
.evo-img { width: 100%; height: 310px; object-fit: contain; background: #f4f6f8; border-radius: 12px; display: block; }
.evo-banner { background: #1a6b63; padding: 28px 60px; display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.evo-banner-text { font-size: 22px; font-weight: 700; color: #ffffff; margin: 0; }
.evo-banner-btn { background: #f5d020; color: #1a1a1a; font-size: 15px; font-weight: 800; text-transform: uppercase; padding: 16px 32px; border-radius: 8px; text-decoration: none; border: none; white-space: nowrap; }
.evo-banner-btn:hover { background: #e6c400; }

/* ===== VIDEO & DISCLAIMER ===== */
.vid-section { background: #ffffff; padding: 60px 0 0; }
.vid-title { font-size: 38px; font-weight: 800; color: #1a6b63; text-align: center; margin-bottom: 10px; }
.vid-sub { font-size: 16px; font-weight: 700; color: #555; text-align: center; margin-bottom: 28px; }
.vid-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 60px; }
.vid-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.vid-wrap .vidtes-thumb-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.vid-wrap .vidtes-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vid-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.vid-disclaimer { padding: 40px 60px 60px; }
.vid-disclaimer-title { font-size: 24px; font-weight: 700; color: #1a6b63; margin-bottom: 16px; }
.vid-disclaimer p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 16px; }
.vid-disclaimer strong { font-weight: 700; color: #444; }

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-left"] { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate="fade-in"] { transform: scale(0.97); }
[data-animate].animated {
    opacity: 1;
    transform: none;
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }
[data-animate-delay="6"] { transition-delay: 0.6s; }

/* ===== MOBILE RESPONSIVE TAMBAHAN ===== */
@media (max-width: 768px) {

    /* Hero Content */
    .heroc-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 100px 1.25rem 2.5rem;
    }
    .heroc-title { font-size: 1.9rem; }
    .heroc-btns { flex-direction: column; }
    .heroc-btn-primary, .heroc-btn-secondary { text-align: center; }
    .heroc-stat-grid { grid-template-columns: 1fr 1fr; }

    /* Strip Keunggulan */
    .strip-keunggulan {
        flex-direction: column;
        height: auto;
        gap: 0.75rem;
        padding: 1.25rem;
        align-items: flex-start;
    }
    .strip-pubfig {
        height: auto;
        padding: 1.25rem;
        gap: 1rem;
    }
    .strip-pubfig-list {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    .strip-divider { display: none; }

    /* Layanan */
    .layanan-section { padding: 3rem 1.25rem; }
    .layanan-grid { grid-template-columns: 1fr; }

    /* Perawatan */
    .perawatan-section { padding: 3rem 1.25rem; }
    .perawatan-h1 { font-size: 1.6rem; }
    .perawatan-card { padding: 1.25rem; }
    .perawatan-inner { grid-template-columns: 1fr; }
    .perawatan-sidebar { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 8px; }
    .sidebar-item { white-space: nowrap; flex-shrink: 0; }
    .perawatan-foto img { height: 240px; }

    /* Fase */
    .fase-section { padding: 3rem 1.25rem; }
    .fase-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .fase-title { font-size: 1.5rem; }

    /* Timeline */
    .timeline-section { padding: 3rem 1.25rem; }
    .timeline-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .timeline-title { font-size: 1.6rem; }
    .timeline-img { height: 300px; }

    /* Testimoni */
    .testi-section { padding: 3rem 1.25rem; }
    .testi-grid { grid-template-columns: 1fr; }
    .testi-title { font-size: 1.6rem; }

    /* Dokter */
    .dokter-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.25rem;
    }
    .dokter-photo-box { height: 320px; }
    .dokter-stats { grid-template-columns: 1fr 1fr; }
    .dokter-title-main { font-size: 1.5rem; }

    /* Perubahan */
    .perubahan-section { padding: 3rem 0; }
    .perubahan-h1 { font-size: 1.6rem; }
    .perubahan-kartu { width: calc(100vw - 60px); }
    .perubahan-foto-wrap img { height: 220px; object-fit: contain; background: #f4f6f8; }
    .perubahan-foto-single img { height: 220px; }

    /* Booking */
    .booking-section { padding: 3rem 1.25rem; }
    .booking-inner { grid-template-columns: 1fr; gap: 2rem; }
    .booking-row { grid-template-columns: 1fr; }
    .booking-title { font-size: 1.5rem; }
    .booking-card { border-radius: 12px; }
    .booking-card-header { padding: 1rem; }
    .booking-card-title { font-size: 16px; }
    .booking-card-body { padding: 1.25rem; }
    .booking-field input, .booking-field select, .booking-field textarea { font-size: 16px; }
    .booking-btn { font-size: 15px; height: 48px; }

    /* Lokasi */
    .lokasi-section { padding: 3rem 1.25rem; }
    .lokasi-h1 { font-size: 1.6rem; }
    .lokasi-kartu { width: 280px; }

    /* Video Testimoni */
    .vidtes-section { padding: 3rem 1.25rem; }
    .vidtes-h1 { font-size: 1.7rem; }
    .vidtes-kartu { width: 280px; }
    .vidtes-thumb img, .vidtes-embed iframe { height: 180px; }

    /* FAQ */
    .faq-section { padding: 3rem 1.25rem; }
    .faq-title { font-size: 1.6rem; }
    .faq-inner { padding: 0; }

    /* Timeline & Fase */
    .timeline-section { padding: 3rem 1.25rem; }
    .fase-section { padding: 3rem 1.25rem; }

    /* Contact */
    .contact-block { flex-direction: column; }
    .contact-img { width: 100%; }
    .contact-info { padding: 1.25rem; }

    /* Gallery */
    .gallery { padding: 3rem 1.25rem; }
}

@media (max-width: 480px) {
    .heroc-title { font-size: 1.6rem; }
    .heroc-stat-grid { grid-template-columns: 1fr 1fr; }
    .timeline-grid { grid-template-columns: 1fr; }
    .dokter-stats { grid-template-columns: 1fr; }
    .perubahan-kartu { width: 260px; }
    .perubahan-foto-wrap img { height: 180px; }
    .perubahan-foto-single img { height: 180px; }
    .lokasi-kartu { width: 260px; }
    .vidtes-kartu { width: 260px; }
    .fase-title { font-size: 1.2rem; }
    .perawatan-h1 { font-size: 1.3rem; }
    .contact-header h1 { font-size: 1.1rem; }
}

/* ===== TRANSPLANT PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
    .artikel-wrap { padding: 2rem 1.25rem; }

    .artikel-hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .artikel-hero-title { font-size: 1.6rem; }
    .artikel-carousel { width: 100%; height: 240px; }

    .artikel-body h2 { font-size: 1.2rem; }
    .artikel-body p, .artikel-list li { font-size: 0.9rem; }

    .evo-section { padding: 3rem 0; }
    .evo-title { font-size: 1.8rem; }
    .evo-sub { font-size: 0.9rem; padding: 0 1.25rem; }
    .evo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 1.25rem;
    }
    .evo-img { height: 180px; }
    .evo-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1.25rem;
        text-align: center;
    }
    .evo-banner-text { font-size: 1rem; }

    .vid-section { padding: 3rem 0; }
    .vid-title { font-size: 1.8rem; }
    .vid-sub { font-size: 0.9rem; padding: 0 1.25rem; }
    .vid-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 1.25rem;
    }
    .vid-disclaimer { padding: 2rem 1.25rem; }
    .vid-disclaimer-title { font-size: 1.2rem; }
    .vid-disclaimer p { font-size: 0.88rem; }
}

@media (max-width: 480px) {
    .evo-grid { grid-template-columns: 1fr; }
    .evo-img { height: 220px; }
    .vid-grid { grid-template-columns: 1fr; }
    .artikel-carousel { height: 200px; }
}

/* ===== PERUBAHAN FOTO SINGLE ===== */
.perubahan-foto-single { display: flex; flex: 1; }
.perubahan-foto-single img { width: 100%; height: 480px; object-fit: cover; border-radius: 12px; background: #f4f6f8; display: block; }

@media (max-width: 768px) {
    .perubahan-foto-single img { height: 220px; }
}
@media (max-width: 480px) {
    .perubahan-foto-single img { height: 180px; }
}

/* ===== POPUP BOOKING ===== */
.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; align-items: center; justify-content: center; }
.popup-overlay.active { display: flex; }
.popup-box { background: #fff; border-radius: 16px; padding: 40px 36px; max-width: 420px; width: 90%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.2); animation: popupIn 0.3s ease; }
@keyframes popupIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-icon { font-size: 48px; margin-bottom: 16px; }
.popup-title { font-size: 22px; font-weight: 700; color: #1a6b63; margin-bottom: 12px; }
.popup-msg { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 24px; }
.popup-close { background: #1a6b63; color: #fff; border: none; padding: 12px 32px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; }
.popup-close:hover { background: #155a52; }

/* ===== BUTTON SPINNER ===== */
.btn-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; vertical-align: middle; margin-right: 6px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== STEP INDICATOR ===== */
.step-indicator { display:flex; align-items:center; gap:0; margin-bottom:1.5rem; }
.step-item { display:flex; flex-direction:column; align-items:center; gap:4px; flex:1; }
.step-circle { width:32px; height:32px; border-radius:50%; background:#e0e0e0; color:#999; font-size:14px; font-weight:700; display:flex; align-items:center; justify-content:center; transition:all .3s; }
.step-item span { font-size:11px; color:#999; font-weight:500; }
.step-item.active .step-circle { background:#1D9E75; color:#fff; }
.step-item.active span { color:#1D9E75; }
.step-item.done .step-circle { background:#0a4f3e; color:#fff; }
.step-line { flex:1; height:2px; background:#e0e0e0; margin:0 8px; margin-bottom:18px; }

/* ===== GPS BUTTON ===== */
.gps-btn { background:none; border:1px solid #1D9E75; color:#1D9E75; font-size:11px; font-weight:600; padding:2px 8px; border-radius:20px; cursor:pointer; margin-left:8px; transition:all .2s; }
.gps-btn:hover { background:#1D9E75; color:#fff; }
.gps-info { font-size:12px; color:#1D9E75; margin-top:4px; display:block; }

/* ===== PHONE INPUT ===== */
.phone-input-wrap { display: flex; align-items: center; border: 1px solid #e0e4e8; border-radius: 8px; overflow: hidden; background: #fff; }
.phone-input-wrap:focus-within { border-color: #1a6b63; box-shadow: 0 0 0 3px rgba(26,107,99,0.1); }
.phone-prefix { background: #f4f6f8; color: #1a6b63; font-weight: 700; font-size: 14px; padding: 0 12px; border-right: 1px solid #e0e4e8; height: 100%; display: flex; align-items: center; white-space: nowrap; }
.phone-input-wrap input { border: none !important; box-shadow: none !important; border-radius: 0 !important; flex: 1; padding: 12px; font-size: 14px; outline: none; }
.phone-error { display: none; font-size: 12px; color: #e8836a; margin-top: 4px; }
.phone-error.show { display: block; }

/* ===== REQUIRED FIELD ===== */
.required { color: #e8836a; font-weight: 700; margin-left: 2px; }

/* ===== STATS SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    .stats-section { padding: 2rem 1.25rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
    .stats-card { padding: 20px 12px; }
    .stats-num { font-size: 26px; }
    .stats-lbl { font-size: 12px; }
    .stats-banner { padding: 16px; }
    .stats-banner-main { font-size: 15px; }
}
