* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

section {
    scroll-margin-top: 80px;
}

.container-hero {
    background: linear-gradient(to right, #255C4F, #042021);
}

.navbar {
    background: transparent;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-pill {
    justify-self: center;
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 180px;
    display: flex;
    gap: 20px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.nav-pill a {
    text-decoration: none;
    color: #0f3d34;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.nav-pill a.active {
    padding-top: 10px;
    background: #9fd3b9;
    color: #0f3d34;
}

.nav-pill a:hover {
    background: rgba(159, 211, 185, 0.35);
}

.nav-menu a {
    margin: 0 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
}

.nav-menu a.active {
    background: #9fd3b9;
    color: #ffffff;
}

.nav-action .login-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    background: #ffffff;
    color: #0f3d34;
    font-weight: 600;
    cursor: pointer;
}

.logo {
    font-weight: 700;
    font-size: 20px;
}

.logo img {
    width: 173px;
    height: auto;
    margin-left: 100px;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

nav a.active {
    background: #9fd3b9;
    color: #0f3d34;
    padding: 6px 16px;
    border-radius: 20px;
}

.container {
    position: relative;
    padding-top: 0px;
    max-width: 100vw;
    height: 70vh;
    padding-bottom: 900px;
    padding-left: 10px;
    margin-left: 30px;
    top: 0px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 span {
    color: #9fd3b9;
}

p {
    font-size: 17px;
    color: #d5efe4;
    line-height: 1.6;
    margin-bottom: 32px;
    width: 45vw;
}

.buttons button {
    padding: 14px 24px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    margin-right: 12px;
}

.btn-primary {
    background: #97BFA4;
    color: #ffffff;
}

.btn-secondary a {
    border: 2px solid #9fd3b9;
    color: black;
}

.btn-primary,
.btn-secondary a {
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.btn-primary:active,
.btn-secondary:active {
    transform: scale(0.95);
}

.doctor-card {
    position: relative;
    padding: 40px;
    text-align: right;
    margin-right: 50px;
}

.doctor-card img {
    width: 468.5px;
    border-radius: 20px;
}

.testimonial {
    position: absolute;
    background: #ffffff;
    color: #1f2d2a;
    padding: 5px 15px;
    border-radius: 20px;
    width: 355px;
    height: 90px;
    line-height: 1.6;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}


.testi-header {
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
}

.testimonial p {
    width: 335px;
    margin-left: 0px;
    font-size: 11px;
    color: black;
    text-align: left;
}

.t1 {
    top: 20%;
    left: -40px;
}

.t2 {
    bottom: 20%;
    left: -60px;
}

.t3 {
    bottom: 10%;
    right: -40px;
}

.emergency {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding-top: 20px;
    display: inline-block;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.emergency:active {
    transform: scale(0.92);
}

.emergency:hover {
    transform: scale(1.05);
}

.stats {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(to bottom, #FAFFFA, #96BCA3);
    padding: 40px 20px;
    text-align: center;
}

.stat b {
    font-size: 20px;
    color: black;
}

.stat strong {
    text-align: center;
    font-size: 40px;
    display: block;
    color: #97BFA4;
    padding-left: 2px;
}

.stat span {
    font-size: 15px;
    text-align: center;
    width: 20px;
    color: black;
}

.services {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #398050, #153F35);
}

.services h2 {
    font-size: 48px;
    margin-bottom: 12px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 202px);
    gap: 32px;
}

.service-card {
    background: linear-gradient(to bottom, #509157, #96B9A1);
    border-radius: 16px;
    width: 202px;
    height: 248px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;

    box-sizing: border-box;
}

.service-wrapper {
    display: flex;
    justify-content: center;
}

.colum2 {
    padding-top: 32px;
    padding-left: 220px;
}

.service-card img {
    width: 86px;
    height: 86px;
}

.service-card p {
    margin: 0;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
}

.service-card img {
    transition: transform 0.25s ease;
}

.service-card p {
    transition: transform 0.25s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover p {
    transform: translateY(4px);
}

.gappp {
    height: 162px;
    background: linear-gradient(to top, #FAFFFA, #96BCA3);
}

.profile {
    background: linear-gradient(to bottom, #95BCA2, #153F35);
    padding-top: 80px;
}

.profile h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px
}

.step-container {
    position: relative;
    width: 100%;
    height: 120px;
}

.step-line {
    position: absolute;
    padding-left: 0px;
    top: 50%;
    left: 0;
    right: 0;
    height: 10px;
    width: 100%;
    background: #97BFA4;
}

.step {
    position: absolute;
    top: 50%;
    width: 70px;
    height: 70px;
    background: #8fb8a2;
    border: 4px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.step-1 {
    left: 20%;
}

.step-2 {
    left: 50%;
}

.step-3 {
    left: 80%;
}

.info-section {
    padding: 18px 150px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 150px;
    max-width: 100%;
    margin: 0 auto;
}

.info-item {
    position: relative;
}

.info-badge {
    background: #a8cbb5;
    border-radius: 18px;
    padding: 10px 28px;
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    width: 430px;
    height: 69px;
}

.info-badge h2 {
    margin: 0;
    font-size: 16px;
    text-align: center;
    padding-top: 10px;
}

.info-badge span {
    display: block;
    font-size: 14px;
    opacity: 1.9;
    margin-top: 4px;
}

.info-card {
    background: rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    padding: 32px 28px;
    color: #ffffff;
    line-height: 1.6;
    width: 430px;
    height: 461px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 17px;
    text-align: center;
}

.info-card p {
    margin: 0;
    font-size: 15px;
    text-align: center;
    width: 380px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto
}

.profile-card {
    background: #5f8f7a;
    color: #fff;
    padding: 24px;
    border-radius: 20px;
    position: relative
}

.profile-card .step {
    position: absolute;
    top: -14px;
    left: 20px;
    background: #fff;
    color: #0f3d34;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.why-header {
    display: grid;
    grid-template-columns: 50vw 50vw;
}

.why-header-left {
    background: #1B453A;
    width: 950 px;
    align-items: start;
}

.why-header-right {
    background: #94BCA2;
    width: 941px;
    align-items: start;
}

.why-header h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
}

.why-header-left h2 {
    color: #ffffff;
    padding-right: 8px;
    text-align: right;
    padding-top: 50px;
}

.why-header-right h2 {
    color: #1B453A;
    padding-left: 8px;
    padding-top: 50px;
}

.why-card-left {
    align-items: start;
    position: relative;
    height: 807px;
    background-color: #E0F2E2;
    margin-top: 40px;
    margin-left: 30px;
    margin-bottom: 30px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    width: 927px;
}

.why-card-right {
    height: 807px;
    position: relative;
    right: 10px;
    margin-top: 40px;
    margin-bottom: 30px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    width: 910px;
    border: 10px solid #E0F2E2;
}

.why-card-clide {
    background: #1B453A;
    height: 740px;
    margin-top: 25px;
    position: relative;
    right: 0px;
    margin-bottom: 30px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    width: 865px;
}

.why-card-clide h2 {
    color: #CFF6DD;
    text-align: center;
    font-size: 29px;
}

.card-clide {
    margin-left: 40px;
    margin-top: 40px;
}

.card-atas {
    width: 188.14px;
    height: 123.81px;
    background-color: #FFFFFF;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

.card-bawah {
    width: 188.14px;
    height: 277.97px;
    background-color: #E0F2E2;
}

.card-bawah h4, .card-bawah p {
    color: #000;
    padding: 10px;
    width: 188.14px;
}

.btn {
    color: #000;
    background-color: #97BFA4;
    height: 40px;
    width: 160px;
    border: white;
    border-radius: 20px;
}

.card-bawah-tombol {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    position: relative;
    top: -30px;
}

.wrapper-left {
    padding: 40px;
    /* max-width: 900px; */
}

.item-left {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.left {
    position: relative;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000000;
}

.left h2 {
    font-size: 42px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    color: #000000;
}

.content-left h3 {
    margin: 0;
    font-size: 29px;
    color: #000000;
}

.content-left p {
    font-size: 16px;
    margin-top: 6px;
    color: #000000;
    line-height: 1.5;
}

.cta {
    position: relative;
    height: 120vh;
    background: linear-gradient(135deg, #255C4F, #042021);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    padding: 0px;
    padding-left: 40px;
    overflow: hidden;
}

.text-cta {
    color: #ffffff;
}

.text-1 {
    display: flex;
    gap: 18px;
    align-items: center;
    font-style: italic;
    font-size: 20px;
    margin-bottom: 28px;
}

.text-1 .item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 6px;
}

.check {
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check svg {
    width: 14px;
    height: 14px;
    fill: #0d5c4d;
}

.text-2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
}

.text-3 {
    margin-top: 90px;
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    opacity: 0.9;
}

.cta-btn {
    margin-top: 62px;
    padding: 14px 30px;
    border-radius: 999px;
    border: none;
    background: #97BFA4;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
}

.cta-btn a {
    text-decoration: none;
    color: #fff;
}

.image {
    justify-content: end;
    align-items: center;
}

.image img {
    width: 100%;
    height: 100%;
}

.step-cards {
    position: absolute;
    right: 700px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 190px;
}

.step-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    padding: 50px;
    border-radius: 16px;
    width: 332px;
    height: 177;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 600;
    color: #0e3f34;
    line-height: 1.4;
    text-align: center;
}

.footer {
    background: #1f4d42;
    color: #ffffff;
    padding: 40px 0 0;
    font-size: 14px;
}

.footer-container {
    max-width: 960px;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 500px 500px 700px;
    gap: 12px;
}


.footer-logo {
    font-size: 36px;
    margin-bottom: 2px;
}

.footer-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.footer-col img {
    width: 170px;
}

.footer-col h4 {
    font-size: 15px;
    margin-bottom: 2px;
    padding-top: 10px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-col a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
    margin-left: 10px;
}

.footer-col ul {
    list-style: disc;
    padding-left: 18px;
}

.footer-col ul li {
    margin-bottom: 8px;
    line-height: 1.5;
    opacity: 0.9;
}

.hubungi-follow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 20px;
}

.hubungi-follow h4 {
    padding-top: 0;
}

.footer-location {
    margin-top: 14px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    opacity: 0.9;
}

.map-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.map-icon {
    font-size: 18px;
}

.map-svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.footer-bottom {
    padding-top: 60px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 15px;
    opacity: 0.85;
}

.hp {
    display: none;
}

.destop {
    display: block;
}