* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0B4750;
    --dark: #111111;
    --text: #1a1a1a;
    --muted: #5f5f5f;
    --bg: #f6f6f4;
    --light-blue: #D4E5E5;
    --white: #ffffff;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: "Oswald", sans-serif;
    color: var(--text);
    line-height: 1.4;
}

html {
    scroll-behavior: smooth;
}

p {
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: transparent;
    border: none;
}

.section-title {
    color: #252525;
    font-family: Oswald;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    /* 93.75% */
    text-transform: uppercase;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    border-radius: 999px;
    background: var(--primary);
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    background: #026B7A;
}

/* Header */
.site-header {
    padding: 20px 36px 0;
    position: absolute;
    z-index: 99;
    width: 100%;
}

.header-content {
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.90);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 18px 15px 26px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-logo img {
    width: 232px;
    height: auto;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    color: #252525;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.mobile-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero */


.hero-wrap {
    position: relative;
    height: 100vh;
    border-radius: 0 0 34px 34px;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)),
        url("../images/home-banner.png") center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 36px 36px 36px 50px;
}

.hero-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.hero-left h1 {
    color: #FFF;
    font-family: Oswald;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    line-height: 68px;
    /* 97.143% */
    letter-spacing: -2.1px;
    text-transform: uppercase;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;

}

.hero-side-card {
    width: 28vh;
    height: 42vh;
    flex-shrink: 0;
    border-radius: 40vw;
    background: #D9D9D9;
    margin-right: 40px;
}

.hero-side-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40vw;
}

/* Treatments */
.treatments {
    padding: 70px 36px;
}

.treatments .section-title {
    margin-bottom: 70px;
}

.treatment-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    display: flex;
    align-items: flex-end;
    background: #ddd;
    box-shadow: var(--shadow);
    z-index: 9;
}

.treatment-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.treatment-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.76) 100%);
    z-index: 1;
}

.treatment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(11, 71, 80, 0.08) 0%,
            rgba(11, 71, 80, 0.92) 100%);
    z-index: 2;
    transform: translateY(100%);
    transition: ease all 0.3s;
}

.treatment-card:hover::after {
    transform: translateY(0);
}

.treatment-content {
    position: absolute;
    inset: 0;
    z-index: 9;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
}

.treatment-content h3 {
    color: #FFF;
    font-family: Oswald;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    /* 127.778% */
    text-transform: uppercase;
}

.treatment-content p {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 6px 0 24px;
}

.book-btn {
    display: flex;
    padding: 16px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 56px;
    background: #FFF;
    color: #0B4750;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
    border: 1px solid #fff;
}

.treatments .splide__arrows {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-top: 50px;
}

.treatments .splide__arrows .splide__arrow {
    position: static;
    transform: none;
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    background: transparent;
    border: 1px solid #000;
    opacity: 1;
}

.treatments .splide__arrows .splide__arrow svg {
    width: auto;
    height: 26px;
}

/* Insurance */
.insurance {
    padding: 0 12px 50px;
}

.insurance>p {
    color: #252525;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    max-width: 813px;
    margin: 15px auto 36px;
}

.insurance-box {
    border-radius: 30px;
    background: #F6F6F6;
    padding: 50px 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 248px;
}

.timeline {
    position: relative;
    display: flex;
    gap: 24px;
}

.timeline:first-of-type {
    align-items: flex-end;
}

.step {
    position: relative;
    text-align: center;
    z-index: 2;
}

.step.top::after {
    content: "";
    position: absolute;
    width: 165px;
    height: 116px;
    background-image: url('../images/top-2.png');
    background-size: cover;
    background-repeat: no-repeat;
    bottom: -130px;
    left: -42px;
}

.step-1.top::after {
    width: 143px;
    background-image: url('../images/top.png');
}

.step-1.top::after {
    left: -42px;
}

.step-1 {
    margin-left: 52px;
}

.step-3.top::after {
    left: 5px;
}

.step-3 {
    margin-left: 44px;
}

.step-5.top::after {
    left: -13px;
}

.step-5 {
    margin-left: 24px;
}

.step-7.top::after {
    left: -8px;
}

.step-7 {
    margin-left: 3px;
}

.step.bottom::before {
    content: "";
    position: absolute;
    width: 165px;
    height: 130px;
    background-image: url('../images/bottom.png');
    background-size: cover;
    background-repeat: no-repeat;
    top: -136px;
    left: -63px;
}

.step-2 {
    margin-left: 207px;
}

.step-4.step.bottom::before {
    left: -50px;
}

.step-4 {
    margin-left: 101px;
}

.step-6.step.bottom::before {
    left: -20px;
}

.step-6 {
    margin-left: 44px;
}

.step-8.step.bottom::before {
    left: -50px;
}

.step-8 {
    margin-left: 38px;
}

.step-8::after {
    content: "";
    position: absolute;
    width: 143px;
    height: 23px;
    background-image: url('../images/last.png');
    background-size: cover;
    background-repeat: no-repeat;
    top: -142px;
    left: 110px;
}




.step-1 p,
.step-2 p {
    max-width: 180px;
}

.step-3 p,
.step-5 p,
.step-6 p {
    max-width: 287px;
}

.step-7 p {
    max-width: 257px;
}

.step-4 p,
.step-8 p {
    max-width: 220px;
}


.step h4 {
    color: #0B4750;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
    margin-bottom: 10px;

}

.step p {
    color: #252525;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    margin-inline: auto;
}


.insurance-responsive {
    display: none;
}

/* Team */
.team {
    background: var(--light-blue);
    padding: 60px 20px;
}

.team-wrapper {
    display: flex;
    gap: 130px;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
}

.team-member img {
    width: 285px;
    height: 285px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
}

.team-member h3 {
    color: #252525;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 75% */
    margin: 24px 0 16px;
}

.team-member span {
    color: rgba(37, 37, 37, 0.70);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

/* Map */
.map-section {
    width: 100%;
    padding: 50px 36px;
}

.map-section iframe {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* Appointment */
.appointment {
    background:
        linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)),
        url("../images/appointment-bg.png") center/cover no-repeat;
    padding: 54px 100px 54px 36px;
}

.appointment-wrap {
    display: flex;
    gap: 34px;
    align-items: center;
    justify-content: space-between;
}

.appointment-wrap>div {
    width: 100%;
}

.appointment-left {
    max-width: 566px;
}

.appointment-left h2 {
    color: #FFF;
    font-family: Oswald;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    /* 100% */
    text-transform: capitalize;
}

.appointment-form {
    max-width: 489px;
}

.appointment-form form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    padding: 20px 24px;
    color: rgba(0, 0, 0, 0.50);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.50);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.appointment-form textarea {
    min-height: 200px;
    resize: none;
}

.appointment-form .book-btn {
    transition: ease all 0.3s;
    cursor: pointer;
}

.appointment-form .book-btn:hover {
    background: transparent;
    color: #fff;
}

.floating-call-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #d4e5e5 !important;
    color: #000;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-call-btn .call-icon {
    font-size: 16px;
    line-height: 1;
}

.floating-call-btn span {
    font-size: 15px;
    line-height: 17px;
    color: #0b4750;
}

.floating-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
    color: #000 !important;
}

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
}

.whatsapp-btn svg {
    height: 50px;
    width: 50px;
}

/* Footer */
.site-footer {
    background: var(--light-blue);
    padding-top: 60px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 32px;
    align-items: center;
    padding-inline: 36px;
    padding-bottom: 70px;
}

.footer-title {
    color: #252525;
    font-family: Oswald;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    /* 166.667% */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-text,
.footer-right p,
.footer-right a {
    color: #252525;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.footer-right .footer-title {
    margin-top: 18px;
}

.footer-right .footer-title:first-of-type {
    margin-top: 0;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 251px;
    height: auto;
    margin: 0 auto;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.socials a {
    display: flex;
    width: 52px;
    height: 52px;
    padding: 11px;
    align-items: center;
    border-radius: 26px;
    background: #0B4750;
}

.socials a img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.footer-right {
    text-align: right;
}

.copyright {
    width: 100%;
    background: rgba(255, 255, 255, 0.70);
    padding: 25px 20px;
}

.copyright p,
.copyright p a {
    color: rgba(37, 37, 37, 0.70);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    text-align: center;
}