/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #172b3a;
    background: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.section {
    padding: 90px 0;
}


/* =====================================================
   COLORS
===================================================== */

:root {

    --primary: #087f8c;

    --primary-dark: #05626c;

    --secondary: #0d3445;

    --accent: #36b7a8;

    --light: #eef9f8;

    --text: #172b3a;

    --muted: #6c7b85;

    --white: #ffffff;

    --border: #e2ebed;

    --shadow:
        0 20px 60px rgba(8, 80, 90, 0.10);

}


/* =====================================================
   TOP BAR
===================================================== */

.topbar {
    background: var(--secondary);
    color: #fff;
    font-size: 13px;
}

.topbar-inner {

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 25px;
}

.topbar a {
    margin-left: 5px;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    background: #fff;

    position: sticky;

    top: 0;

    z-index: 1000;

    border-bottom: 1px solid #edf1f2;
}

.nav-inner {

    height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {

    display: flex;

    align-items: center;

    gap: 10px;
}

.logo-icon {

    width: 44px;

    height: 44px;

    border-radius: 12px;

    background: var(--primary);

    color: white;

    display: grid;

    place-items: center;

    font-size: 22px;
}

.logo strong {

    display: block;

    font-size: 21px;

    color: var(--secondary);

    line-height: 1;
}

.logo small {

    display: block;

    font-size: 11px;

    color: var(--primary);

    font-weight: 700;

    letter-spacing: 1px;

    margin-top: 4px;
}

nav {

    display: flex;

    align-items: center;

    gap: 26px;
}

nav a {

    font-size: 14px;

    font-weight: 600;

    color: #435762;

    transition: 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.nav-btn {

    background: var(--primary);

    color: #fff !important;

    padding: 12px 20px;

    border-radius: 7px;
}

.nav-btn:hover {
    background: var(--primary-dark);
}

.menu-btn {

    display: none;

    background: none;

    border: none;

    font-size: 25px;

    color: var(--secondary);

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 680px;

    position: relative;

    background:

        linear-gradient(
            90deg,
            rgba(5, 48, 63, 0.96) 0%,
            rgba(5, 48, 63, 0.86) 45%,
            rgba(5, 48, 63, 0.35) 100%
        ),

        url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=2000&q=85");

    background-size: cover;

    background-position: center;

    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-container {

    min-height: 680px;

    display: grid;

    grid-template-columns: 1.1fr 0.75fr;

    align-items: center;

    gap: 70px;

    position: relative;

    z-index: 2;
}

.hero-content {
    padding: 50px 0;
}

.hero-tag {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.20);

    border-radius: 50px;

    font-size: 13px;

    margin-bottom: 22px;
}

.hero h1 {

    font-size: clamp(42px, 5vw, 66px);

    line-height: 1.08;

    max-width: 680px;

    margin-bottom: 25px;

    letter-spacing: -2px;
}

.hero h1 span {
    color: #62d6c6;
}

.hero p {

    max-width: 610px;

    font-size: 18px;

    color: #e3eeee;

    margin-bottom: 32px;
}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 23px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s;
}

.btn-primary {

    background: var(--primary);

    color: #fff;
}

.btn-primary:hover {

    background: var(--accent);

    transform: translateY(-2px);
}

.btn-light {

    background: #fff;

    color: var(--secondary);
}

.btn-light:hover {
    transform: translateY(-2px);
}

.hero-trust {

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

    margin-top: 35px;

    font-size: 13px;
}

.hero-trust i {

    color: #62d6c6;

    margin-right: 5px;
}


/* =====================================================
   HERO FORM
===================================================== */

.hero-form {

    background: white;

    color: var(--text);

    padding: 28px;

    border-radius: 16px;

    box-shadow:
        0 25px 70px rgba(0,0,0,0.25);
}

.form-header {

    display: flex;

    gap: 13px;

    align-items: center;

    margin-bottom: 20px;
}

.form-icon {

    width: 45px;

    height: 45px;

    border-radius: 10px;

    background: var(--light);

    color: var(--primary);

    display: grid;

    place-items: center;

    font-size: 19px;
}

.form-header h3 {

    font-size: 19px;
}

.form-header p {

    color: var(--muted);

    font-size: 12px;
}

.input-group {
    margin-bottom: 13px;
}

.input-group label {

    display: block;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 5px;

    color: #4d6069;
}

.input-box {
    position: relative;
}

.input-box > i {

    position: absolute;

    left: 13px;

    top: 50%;

    transform: translateY(-50%);

    color: #8ba0a7;

    font-size: 13px;

    z-index: 2;
}

.input-box input {

    width: 100%;

    border: 1px solid #dce6e8;

    border-radius: 6px;

    padding: 11px 12px 11px 37px;

    font-size: 13px;

    outline: none;

    background: #fbfdfd;

    transition: 0.3s;
}

.input-box input:focus {

    border-color: var(--primary);

    background: #fff;
}


/* =====================================================
   MEDICAL PROBLEM TEXTAREA
===================================================== */

.textarea-box {
    position: relative;
}

.textarea-box > i {

    top: 16px;

    transform: none;
}

.textarea-box textarea {

    width: 100%;

    height: 75px;

    border: 1px solid #dce6e8;

    border-radius: 6px;

    padding: 11px 12px 11px 37px;

    font-size: 13px;

    outline: none;

    background: #fbfdfd;

    resize: none;

    transition: 0.3s;
}

.textarea-box textarea:focus {

    border-color: var(--primary);

    background: #fff;
}

.textarea-box textarea::placeholder {
    color: #8c999e;
}


/* =====================================================
   FORM SUBMIT
===================================================== */

.form-submit {

    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 6px;

    background: var(--primary);

    color: white;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.form-submit:hover {
    background: var(--primary-dark);
}

.privacy {

    text-align: center;

    color: #8b999f;

    font-size: 10px;

    margin-top: 10px;
}

.privacy i {
    margin-right: 4px;
}


/* =====================================================
   STATS
===================================================== */

.stats {

    background: #fff;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.04);

    position: relative;

    z-index: 5;
}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.stat {

    padding: 30px 20px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 14px;

    border-right: 1px solid var(--border);
}

.stat:last-child {
    border-right: none;
}

.stat-icon {

    width: 48px;

    height: 48px;

    border-radius: 10px;

    background: var(--light);

    color: var(--primary);

    display: grid;

    place-items: center;

    font-size: 20px;
}

.stat strong {

    font-size: 24px;

    color: var(--secondary);
}

.stat > div > span {

    color: var(--primary);

    font-weight: 800;
}

.stat p {

    font-size: 11px;

    color: var(--muted);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {

    text-align: center;

    max-width: 720px;

    margin: 0 auto 55px;
}

.section-tag {

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.section-heading h2,
.about-content h2,
.why-content h2 {

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.15;

    margin: 12px 0 16px;

    color: var(--secondary);
}

.section-heading h2 span,
.about-content h2 span,
.why-content h2 span {
    color: var(--primary);
}

.section-heading p {
    color: var(--muted);
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: #fff;
}

.about-grid {

    display: grid;

    grid-template-columns: 0.9fr 1fr;

    align-items: center;

    gap: 75px;
}

.about-image {
    position: relative;
}

.about-image img {

    width: 100%;

    height: 520px;

    object-fit: cover;

    border-radius: 18px;
}

.experience-card {

    position: absolute;

    bottom: 25px;

    right: -25px;

    background: white;

    padding: 18px 22px;

    border-radius: 12px;

    box-shadow: var(--shadow);

    display: flex;

    gap: 12px;

    align-items: center;
}

.experience-card > i {

    color: var(--primary);

    font-size: 27px;
}

.experience-card strong,
.experience-card span {

    display: block;
}

.experience-card strong {
    font-size: 14px;
}

.experience-card span {

    font-size: 11px;

    color: var(--muted);
}

.about-content > p {

    color: var(--muted);

    margin-bottom: 15px;
}

.about-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px;

    margin: 25px 0 30px;
}

.about-points div {

    font-size: 13px;

    font-weight: 600;
}

.about-points i {

    color: var(--primary);

    margin-right: 6px;
}


/* =====================================================
   SPECIALITIES
===================================================== */

.specialities {
    background: #f5fbfb;
}

.speciality-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.speciality-card {

    background: white;

    padding: 25px;

    border-radius: 12px;

    border: 1px solid #e8f0f1;

    transition: 0.3s;
}

.speciality-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.speciality-icon {

    width: 53px;

    height: 53px;

    border-radius: 12px;

    background: var(--light);

    color: var(--primary);

    display: grid;

    place-items: center;

    font-size: 21px;

    margin-bottom: 20px;
}

.speciality-card h3 {

    font-size: 17px;

    margin-bottom: 8px;
}

.speciality-card p {

    color: var(--muted);

    font-size: 12px;

    margin-bottom: 18px;
}

.speciality-card a {

    color: var(--primary);

    font-size: 12px;

    font-weight: 700;
}

.speciality-card a i {
    margin-left: 4px;
}


/* =====================================================
   SERVICES
===================================================== */

.service-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {

    position: relative;

    padding: 30px;

    border-radius: 14px;

    background: white;

    border: 1px solid var(--border);

    overflow: hidden;

    transition: 0.3s;
}

.service-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.service-card > i {

    color: var(--primary);

    font-size: 27px;

    margin-bottom: 18px;
}

.service-card h3 {

    font-size: 18px;

    margin-bottom: 8px;
}

.service-card p {

    color: var(--muted);

    font-size: 13px;
}

.service-number {

    position: absolute;

    right: 20px;

    top: 15px;

    font-size: 42px;

    font-weight: 800;

    color: #edf5f5;
}


/* =====================================================
   PROCESS
===================================================== */

.process {
    background: #f5fbfb;
}

.process-grid {

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr
        auto
        1fr
        auto
        1fr;

    align-items: center;
}

.process-card {
    text-align: center;
}

.process-icon {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: white;

    color: var(--primary);

    display: grid;

    place-items: center;

    font-size: 25px;

    margin: auto auto 15px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.06);
}

.process-card > span {

    color: var(--primary);

    font-weight: 800;

    font-size: 11px;
}

.process-card h3 {

    font-size: 15px;

    margin: 5px 0;
}

.process-card p {

    font-size: 11px;

    color: var(--muted);

    max-width: 180px;

    margin: auto;
}

.process-line {

    width: 50px;

    height: 1px;

    border-top: 2px dashed #a8d5d2;
}


/* =====================================================
   WHY US
===================================================== */

.why-grid {

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 70px;
}

.why-content > p {

    color: var(--muted);

    margin-bottom: 28px;
}

.why-list {

    display: grid;

    gap: 18px;
}

.why-item {

    display: flex;

    gap: 13px;
}

.why-item > span {

    min-width: 34px;

    height: 34px;

    border-radius: 50%;

    background: var(--light);

    color: var(--primary);

    display: grid;

    place-items: center;
}

.why-item h3 {

    font-size: 14px;
}

.why-item p {

    font-size: 12px;

    color: var(--muted);
}

.why-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 18px;
}


/* =====================================================
   CTA
===================================================== */

.cta {

    padding: 65px 0;

    background:

        linear-gradient(
            120deg,
            var(--secondary),
            var(--primary)
        );

    color: white;
}

.cta-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.cta span {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.cta h2 {

    font-size: 36px;

    margin: 8px 0;
}

.cta p {
    opacity: 0.85;
}

.cta-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.btn-whatsapp {

    background: #25d366;

    color: white;
}


/* =====================================================
   FAQ
===================================================== */

.faq {
    background: white;
}

.faq-container {

    max-width: 800px;

    margin: auto;
}

.faq-item {

    border-bottom: 1px solid var(--border);
}

.faq-question {

    width: 100%;

    background: none;

    border: none;

    padding: 22px 5px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    text-align: left;

    font-size: 15px;

    font-weight: 700;

    color: var(--secondary);
}

.faq-question i {

    color: var(--primary);

    transition: 0.3s;
}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.faq-answer p {

    color: var(--muted);

    font-size: 13px;

    padding: 0 5px 20px;
}

.faq-item.active .faq-question i {

    transform: rotate(45deg);
}


/* =====================================================
   FOOTER
===================================================== */

footer {

    background: #092936;

    color: white;
}

.footer-grid {

    padding: 65px 0;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr;

    gap: 50px;
}

.footer-logo strong {
    color: white;
}

.footer-about > p {

    color: #a6b8be;

    font-size: 13px;

    max-width: 310px;

    margin: 20px 0;
}

.socials {

    display: flex;

    gap: 8px;
}

.socials a {

    width: 35px;

    height: 35px;

    border-radius: 6px;

    background: rgba(255,255,255,0.08);

    display: grid;

    place-items: center;

    transition: 0.3s;
}

.socials a:hover {

    background: var(--primary);
}

footer h3 {

    font-size: 15px;

    margin-bottom: 20px;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 11px;
}

footer li a,
footer li {

    color: #a6b8be;

    font-size: 12px;
}

footer li a:hover {
    color: white;
}

.contact-list i {

    color: var(--accent);

    width: 20px;
}

.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,0.1);
}

.footer-bottom .container {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {

    color: #839da5;

    font-size: 11px;
}

.footer-bottom div {

    display: flex;

    gap: 20px;
}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-float {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 56px;

    height: 56px;

    border-radius: 50%;

    background: #25d366;

    color: white;

    display: grid;

    place-items: center;

    font-size: 27px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.2);

    z-index: 999;

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {

        box-shadow:
            0 0 0 0 rgba(37,211,102,0.5);

    }

    70% {

        box-shadow:
            0 0 0 15px rgba(37,211,102,0);

    }

    100% {

        box-shadow:
            0 0 0 0 rgba(37,211,102,0);

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    nav {
        gap: 14px;
    }

    nav a {
        font-size: 12px;
    }

    .hero-container {
        gap: 35px;
    }

    .speciality-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================================
   850PX
===================================================== */

@media (max-width: 850px) {


    .menu-btn {
        display: block;
    }


    nav {

        position: absolute;

        top: 78px;

        left: 0;

        width: 100%;

        background: white;

        display: none;

        flex-direction: column;

        padding: 25px;

        box-shadow:
            0 15px 30px rgba(0,0,0,0.1);
    }


    nav.active {
        display: flex;
    }


    .hero-container {

        grid-template-columns: 1fr;

        padding: 60px 0;
    }


    .hero {

        min-height: auto;
    }


    .hero-container {

        min-height: auto;
    }


    .hero-content {
        padding: 0;
    }


    .hero-form {

        max-width: 600px;

        width: 100%;

        margin: auto;
    }


    .stats-grid {

        grid-template-columns: repeat(2, 1fr);
    }


    .stat:nth-child(2) {
        border-right: none;
    }


    .stat:nth-child(3),
    .stat:nth-child(4) {

        border-top:
            1px solid var(--border);
    }


    .about-grid,
    .why-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .service-grid {

        grid-template-columns: repeat(2, 1fr);
    }


    .process-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .process-line {
        display: none;
    }


    .cta-inner {

        flex-direction: column;

        align-items: flex-start;
    }


    .footer-grid {

        grid-template-columns: 1fr 1fr;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {


    .topbar-inner {

        justify-content: center;

        flex-wrap: wrap;

        gap: 10px;

        padding: 8px 0;
    }


    .nav-inner {
        height: 68px;
    }


    nav {
        top: 68px;
    }


    .hero h1 {

        font-size: 40px;

        letter-spacing: -1px;
    }


    .hero p {
        font-size: 15px;
    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .stats-grid {

        grid-template-columns: 1fr;
    }


    .stat {

        border-right: none;

        border-bottom:
            1px solid var(--border);
    }


    .stat:last-child {
        border-bottom: none;
    }


    .about-points {

        grid-template-columns: 1fr;
    }


    .speciality-grid,
    .service-grid {

        grid-template-columns: 1fr;
    }


    .about-image img,
    .why-image img {

        height: 380px;
    }


    .experience-card {

        right: 10px;

        bottom: 10px;
    }


    .cta h2 {
        font-size: 29px;
    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-bottom .container {

        flex-direction: column;

        justify-content: center;

        padding: 20px 0;
    }


    .footer-bottom div {

        flex-wrap: wrap;

        justify-content: center;
    }

}