@font-face {
    font-family: 'Gordita';
    src: url('../assets/fonts/gordita-font/Gordita-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('../assets/fonts/gordita-font/Gordita-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('../assets/fonts/gordita-font/Gordita-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('../assets/fonts/gordita-font/Gordita-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('../assets/fonts/gordita-font/Gordita-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --teal: #5b7e85;
    --teal-dark: #4a6a70;
    --teal-light: #7a9da4;
    --cream: #f7f3ec;
    --cream-dark: #ebe5da;
    --purple: #ab76a2;
    --purple-dark: #8f5f87;
    --purple-light: #c49abb;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-100: #f8f8f8;
    --gray-200: #e8e8e8;
    --gray-300: #d0d0d0;
    --gray-500: #888888;
    --gray-700: #555555;
    --gray-800: #333333;

    --font-family: 'Gordita', 'Segoe UI', sans-serif;
    --max-width: 1280px;
    --nav-height: 80px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-family);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    box-shadow: none;
    height: var(--nav-height);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal);
    background: rgba(91, 126, 133, 0.06);
}

.nav-link .arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--gray-700);
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--teal);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO SLIDER ==================== */
.hero {
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slide {
    min-width: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    bottom: var(--btn-bottom, 12%);
    left: var(--btn-left, 6%);
    right: var(--btn-right, auto);
    top: var(--btn-top, auto);
    z-index: 2;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--teal);
    color: var(--white);
    font-weight: 600;
    font-size: 1.6rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(91, 126, 133, 0.35);
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(91, 126, 133, 0.45);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--white);
    width: 36px;
    border-radius: 6px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray-800);
    z-index: 5;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.hero-arrow:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-arrow.prev {
    left: 20px;
}

.hero-arrow.next {
    right: 20px;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
}

.stats-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 16px;
    line-height: 1.3;
}

.stats-section .section-desc {
    font-size: 1.05rem;
    color: var(--gray-700);
    max-width: 720px;
    margin: 0 auto 48px;
    font-weight: 300;
    line-height: 1.7;
}

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

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.5;
}

/* ==================== PERAWATAN SECTION ==================== */
.perawatan-section {
    padding: 80px 0;
    background: var(--white);
}

.perawatan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.perawatan-img img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.perawatan-content .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 16px;
    line-height: 1.3;
}

.perawatan-content .section-desc {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.7;
}

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

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--cream);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--teal-dark);
    transition: var(--transition);
}

.checklist-item:hover {
    background: var(--cream-dark);
    transform: translateX(4px);
}

.checklist-item .check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ==================== VIDEO SECTION ==================== */
.video-section {
    padding: 80px 0;
    background: var(--cream);
}

.video-wrapper {
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

/* ==================== OUR SERVICES ==================== */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}

.services-info .section-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 12px;
}

.services-info .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 16px;
    line-height: 1.3;
}

.services-info .section-desc {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 28px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--teal);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(91, 126, 133, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(91, 126, 133, 0.4);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--purple);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(171, 118, 162, 0.3);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    padding: 28px 16px;
}

.service-card:hover {
    border-color: var(--teal-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--purple);
    transform: scale(1.05);
}

.service-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* ==================== ASURANSI SECTION ==================== */
.asuransi-section {
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
    overflow: hidden;
}

.asuransi-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 16px;
}

.asuransi-section .section-desc {
    font-size: 1rem;
    color: var(--gray-700);
    max-width: 680px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.cashless-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.5px;
}

.asuransi-track-wrapper {
    overflow: hidden;
    margin-bottom: 8px;
}

.asuransi-track {
    display: flex;
    gap: 24px;
    animation: scrollLogos 40s linear infinite;
    width: max-content;
}

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

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

.asuransi-grid-wrapper {
    position: relative;
}

.asuransi-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    justify-items: center;
}

.asuransi-item {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.asuransi-grid .asuransi-item {
    width: 100%;
    max-width: 160px;
    height: auto;
    aspect-ratio: 1;
}

.asuransi-item:hover {
    border-color: var(--teal-light);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.asuransi-item img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.btn-asuransi-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 12px 32px;
    background: var(--white);
    border: 2px solid var(--teal);
    color: var(--teal);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
}

.btn-asuransi-toggle:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-asuransi-toggle .btn-asuransi-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.btn-asuransi-toggle.expanded .btn-asuransi-icon {
    transform: rotate(180deg);
}

/* ==================== DOCTORS SECTION ==================== */
.doctors-section {
    padding: 80px 0;
    background: var(--cream);
}

.doctors-section .section-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 12px;
}

.doctors-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 16px;
    line-height: 1.3;
}

.doctors-section .section-desc {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 300;
    line-height: 1.7;
}

.doctors-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.doctor-filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--white);
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
}

.doctor-filter-btn:hover {
    border-color: var(--teal-light);
    color: var(--teal);
}

.doctor-filter-btn.active {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.doctor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.doctor-card.hidden {
    display: none;
}

.doctor-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #eef4f5, #dfe8ea);
    position: relative;
}

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

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

.doctor-info {
    padding: 20px 16px;
}

.doctor-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 6px;
    line-height: 1.3;
}

.doctor-type {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--teal);
    background: rgba(91, 126, 133, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.doctor-type-spesialis {
    color: var(--purple);
    background: rgba(171, 118, 162, 0.12);
}

.doctor-type-residen {
    color: #c08840;
    background: rgba(192, 136, 64, 0.12);
}

.doctor-branches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.branch-badge {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--cream);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.reviews-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 48px;
}

.reviews-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.reviews-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 8px;
}

.review-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: left;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review-stars span {
    color: #FFB800;
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.65;
    margin-bottom: 20px;
    font-weight: 300;
}

.review-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.reviews-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.reviews-nav-btn:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.btn-gmaps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--teal);
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-gmaps:hover {
    background: var(--teal);
    color: var(--white);
}

/* ==================== BRANCHES SECTION ==================== */
.branches-section {
    padding: 80px 0;
    background: var(--teal);
    color: var(--white);
    text-align: center;
}

.branches-header {
    margin-bottom: 48px;
}

.branches-header img {
    height: 60px;
    margin: 0 auto 16px;
}

.branches-header .tagline {
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 8px;
}

.branches-header .hours {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.85;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.branch-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    padding-top: 40px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.branch-pin-ornament {
    position: absolute;
    top: -6px;
    right: 20px;
    width: 40px;
    height: 52px;
    background: #e74c3c;
    border-radius: 0 0 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    z-index: 2;
    animation: pinBounce 2s ease-in-out infinite;
}

.branch-pin-ornament i {
    color: var(--white);
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@keyframes pinBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

.branch-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.branch-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.branch-address {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 16px;
}

.branch-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cream);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: var(--transition);
}

.branch-link:hover {
    background: var(--white);
    color: var(--teal);
    border-color: var(--white);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logos img {
    height: 48px;
    margin-bottom: 16px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--cream);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--teal-light);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== FLOATING WHATSAPP ==================== */
.float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ==================== SERVICE PAGE STYLES ==================== */
.service-hero {
    margin-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.service-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    padding: 60px 0;
    background: var(--white);
}

.service-content .container {
    max-width: 800px;
}

.service-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 24px;
    line-height: 1.3;
}

.service-content p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}

.service-why {
    padding: 60px 0;
    background: var(--cream);
}

.service-why .container {
    max-width: 960px;
}

.service-why h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 36px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.6;
}

.why-dentisteam {
    padding: 80px 0;
    background: var(--white);
}

.why-dentisteam .container {
    max-width: 960px;
    text-align: center;
}

.why-dentisteam h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 40px;
}

.why-dentisteam-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

.wd-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.wd-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.wd-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.wd-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.wd-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.5;
}

.service-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    text-align: center;
    color: var(--white);
}

.service-cta-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-cta-section p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 28px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--white);
    color: var(--teal);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr;
    }

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

    .stats-section .section-title,
    .perawatan-content .section-title {
        font-size: 1.8rem;
    }

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

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

    .asuransi-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        gap: 0;
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 0 0 0 16px;
    }

    .dropdown-menu.open {
        display: block;
    }

    .hero {
        margin-top: var(--nav-height);
    }

    .hero-slide img {
        height: auto;
        aspect-ratio: auto;
    }

    .navbar {
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    }

    .hero-arrow {
        display: none;
    }

    .hero-cta {
        padding: 10px 24px;
        font-size: 0.82rem;
    }

    .stats-section {
        padding: 48px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stats-section .section-title {
        font-size: 1.5rem;
    }

    .perawatan-section {
        padding: 48px 0;
    }

    .perawatan-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .perawatan-content .section-title {
        font-size: 1.5rem;
    }

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

    .video-section {
        padding: 48px 0;
    }

    .services-section {
        padding: 48px 0;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

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

    .service-card {
        padding: 20px 12px;
    }

    .service-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .service-card-title {
        font-size: 0.82rem;
    }

    .asuransi-section {
        padding: 48px 0;
    }

    .asuransi-section .section-title {
        font-size: 1.5rem;
    }

    .asuransi-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .asuransi-item {
        width: 90px;
        height: 90px;
        padding: 12px;
    }

    .asuransi-grid .asuransi-item {
        width: 100%;
        height: auto;
    }

    .asuransi-item img {
        max-width: 60px;
        max-height: 60px;
    }

    .doctors-section {
        padding: 48px 0;
    }

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

    .doctors-section .section-title {
        font-size: 1.5rem;
    }

    .doctor-filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    .reviews-section {
        padding: 48px 0;
    }

    .reviews-section .section-title {
        font-size: 1.5rem;
    }

    .reviews-slide {
        grid-template-columns: 1fr;
    }

    .branches-section {
        padding: 48px 0;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .navbar-logo img {
        height: 36px;
    }

    .service-content h1 {
        font-size: 1.6rem;
    }

    .why-dentisteam-grid {
        grid-template-columns: 1fr;
    }

    .services-info .section-title,
    .asuransi-section .section-title,
    .reviews-section .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-cta {
        padding: 8px 18px;
        font-size: 0.7rem;
    }

    .hero-dots {
        bottom: 12px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 24px;
    }

    .hero-cta svg {
        width: 10px;
        height: 10px;
        fill: currentColor;
    }

}