/* RESET & BASE */
* {
    box-sizing: border-box;
}

:root {
    --primary: #0f3d5e;   /* Navy medical */
    --secondary: #1da1a8; /* Teal */
    --soft: #f0f7f8;
}


body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */

/* ========================= */
/* HERO 2 COLUMN CENTERED */
/* ========================= */

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: #f8f6f3;
}

/* COMMON COLUMN */
.hero-col {
    display: flex;
    align-items: center;      /* CENTER VERTIKAL */
    justify-content: center;  /* CENTER HORIZONTAL */
    padding: 40px;
}

/* LEFT IMAGE */
.hero-left {
    background: #f8f6f3;
}

.hero-image {
    max-width: 420px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* RIGHT TEXT */
.hero-right {
    text-align: center;
    flex-direction: column;
    gap: 24px;
    max-width: 520px;
    margin: auto;
}

/* TITLE */
.hero-title {
    font-size: 1.5rem;
    font-weight: 600;
    /*padding: 14px 22px;*/
    /*border: 2px solid #000;*/
    display: inline-block;
}

/* QUOTE */
.hero-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    /*padding: 18px 22px;*/
    /*border: 1.5px solid #000;*/
    /*background: #fff;*/
}

/* BUTTON */
.hero-btn {
    padding: 10px 26px;
    border: 1.5px solid #000;
    font-size: 0.9rem;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #000;
    color: #fff;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-col {
        padding: 50px 30px;
    }

    .hero-image {
        max-width: 360px;
    }
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 600px) {

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-quote {
        font-size: 0.75rem;
    }

    .hero-image {
        max-width: 280px;
    }
}



/* DOCTOR */
.doctor {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.doctor img {
    width: 220px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #2b7cff;
    color: #2b7cff;
    padding: 10px 22px;
    border-radius: 6px;
    margin-top: 10px;
}

/* SECTION */
section {
    padding: 60px 20px;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* GRID */
.service-grid,
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /*gap: 25px;*/
    max-width: 1200px;
    margin: auto;
}

.box {
    background: #fff;
    padding: 50px 50px;
    /*border-radius: 12px;*/
    text-align: center;
    font-weight: 600;
    border: 1px solid #e2e2e2;
    transition: 0.3s;
}

.box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TEAM */
.team {
    text-align: center;
    background: #f0f5ff;
}

.team img {
    max-width: 800px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* FOOTER */
footer {
    background: #1f2933;
    color: #ddd;
    padding: 50px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

footer h3 {
    margin-bottom: 15px;
    color: #fff;
}

footer a {
    color: #ccc;
    margin-bottom: 8px;
    display: block;
}

/* ============================= */
/* 📱 MOBILE (HP) */
/* ============================= */
@media (max-width: 767px) {

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.95rem;
}