/* ==============================
   BASIC
============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #142B4A;
    background: white;
}

a {
    text-decoration: none;
}

.section-label {
    color: #F2766B;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}


/* ==============================
   NAVIGATION
============================== */

nav {
    height: 75px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.logo span,
.footer-logo span {
    color: #F2766B;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #142B4A;
    font-size: 15px;
}

.nav-links a:hover {
    color: #F2766B;
}

.nav-button {
    background: #F2766B;
    color: white !important;
    padding: 11px 20px;
    border-radius: 5px;
}


/* ==============================
   HERO
============================== */

.hero {
    min-height: calc(100vh - 75px);
    padding: 70px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    width: 55%;
    max-width: 650px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.08;
    margin-bottom: 25px;
}

.hero h1 span,
.about-heading h2 span,
.why-us-intro h2 span,
.contact-intro h2 span {
    color: #F2766B;
}

.hero p {
    max-width: 570px;
    margin-bottom: 35px;
    color: #53657A;
    font-size: 19px;
    line-height: 1.7;
}

.hero-button {
    display: inline-block;
    padding: 15px 28px;
    margin-right: 12px;
    background: #142B4A;
    color: white;
    border-radius: 5px;
    font-weight: bold;
}

.hero-button:hover {
    background: #F2766B;
}

.secondary-button {
    color: #142B4A;
    font-weight: bold;
}

.secondary-button:hover {
    color: #F2766B;
}


/* Hero visual */
.hero {
    grid-template-columns: 42% 58%;
}

.hero-visual {
    min-height: 650px;
}

.hero-visual {
    width: 80%;
    min-height: 400px;
    background: #F4F7FA;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.circle {
    width: 280px;
    height: 280px;
    background: #F2766B;
    border-radius: 50%;
    position: absolute;
    right: -70px;
    top: -70px;
}

.circle-two {
    width: 180px;
    height: 180px;
    background: #142B4A;
    border-radius: 50%;
    position: absolute;
    left: -50px;
    bottom: -50px;
}

.visual-card {
    width: 70%;
    padding: 10px;
    position: absolute;
    left: 15%;
    top: 60%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(20,43,74,.12);
}

.visual-card h3 {
    margin-bottom: 12px;
    margin-left: 10px;
    font-size: 22px;
    align-content: center;
}

.visual-card p {
    color: #53657A;
    font-size: 15px;
    line-height: 1.6;
}

.accent-line {
    width: 50px;
    height: 4px;
    margin-bottom: 20px;
    background: #F2766B;
}


    .hero-visual {
        position: relative;
        overflow: hidden;
    }

    .hero-doctor-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;

    }

    .hero-visual .visual-card {
        position: absolute;
        z-index: 2;
    }

/* ==============================
   ABOUT
============================== */

.about {
    padding: 100px 7%;
    background: #F4F7FA;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 70px;
}

.about-heading h2 {
    font-size: 44px;
    line-height: 1.15;
}

.about-heading h2 span {
    display: block;
}

.about-content {
    max-width: 650px;
}

.about-content p {
    color: #53657A;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-content .about-intro {
    color: #142B4A;
    font-size: 21px;
}

.about-points {
    margin-top: 40px;
    border-top: 1px solid #D8E0E8;
}

.about-point {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #D8E0E8;
}

.point-number {
    min-width: 30px;
    color: #F2766B;
    font-weight: bold;
}

.about-point h3 {
    margin-bottom: 6px;
    font-size: 17px;
}

.about-point p {
    font-size: 15px !important;
    margin: 0 !important;
}


/* ==============================
   WHY US
============================== */

.why-us {
    padding: 110px 7%;
    background: white;
}

.why-us-container {
    max-width: 1200px;
    margin: auto;
}

.why-us-intro {
    max-width: 720px;
    margin-bottom: 65px;
}

.why-us-intro h2 {
    margin-bottom: 25px;
    font-size: 44px;
    line-height: 1.15;
}

.why-us-description {
    max-width: 650px;
    color: #53657A;
    font-size: 18px;
    line-height: 1.7;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 20px;
}

.why-card {
    min-height: 230px;
    padding: 35px;
    background: #F4F7FA;
    border-left: 4px solid transparent;
    border-radius: 10px;
    transition: .3s;
}

.why-card:hover {
    background: #142B4A;
    border-left-color: #F2766B;
    transform: translateY(-4px);
}

.why-number {
    margin-bottom: 25px;
    color: #F2766B;
    font-size: 14px;
    font-weight: bold;
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 21px;
}

.why-card p {
    color: #53657A;
    font-size: 15px;
    line-height: 1.7;
}

.why-card:hover h3,
.why-card:hover p {
    color: white;
}

.why-us-statement {
    margin-top: 65px;
    padding-top: 35px;
    border-top: 1px solid #D8E0E8;
    text-align: center;
}

.why-us-statement p {
    color: #142B4A;
    font-size: 24px;
}

.why-us-statement span {
    color: #F2766B;
    font-weight: bold;
}


/* ==============================
   CONTACT
============================== */

.contact {
    padding: 110px 7%;
    background: #F4F7FA;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 70px;
}

.contact-intro h2 {
    margin-bottom: 25px;
    font-size: 46px;
    line-height: 1.15;
}

.contact-intro h2 span {
    display: block;
}

.contact-description {
    max-width: 500px;
    margin-bottom: 45px;
    color: #53657A;
    font-size: 18px;
    line-height: 1.7;
}

.contact-details {
    border-top: 1px solid #D8E0E8;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #D8E0E8;
}

.contact-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #142B4A;
    color: #F2766B;
    border-radius: 50%;
}

.contact-detail h3 {
    margin-bottom: 4px;
    font-size: 14px;
}

.contact-detail a {
    color: #53657A;
    font-size: 15px;
}

.contact-detail a:hover {
    color: #F2766B;
}


/* Contact form */

.contact-form-box {
    padding: 45px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(20,43,74,.08);
}

.contact-form-box h3 {
    margin-bottom: 8px;
    font-size: 26px;
}

.contact-form-box > p {
    margin-bottom: 30px;
    color: #53657A;
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #D8E0E8;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F2766B;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-box button {
    width: 100%;
    padding: 15px;
    border: 0;
    border-radius: 5px;
    background: #142B4A;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form-box button:hover {
    background: #F2766B;
}


/* ==============================
   FOOTER
============================== */

footer {
    padding: 45px 7% 25px;
    background: #142B4A;
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand p {
    margin-top: 8px;
    color: #C5D0DB;
    font-size: 14px;
}

.footer-logo {
    font-size: 21px;
    font-weight: bold;
}

.footer-links,
.social-icons {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    font-size: 14px;
}

.footer-links a:hover {
    color: #F2766B;
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    color: white;
}

.social-icons a:hover {
    background: #F2766B;
    border-color: #F2766B;
}

.footer-bottom {
    max-width: 1200px;
    margin: 35px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.footer-bottom p {
    color: #9EADBC;
    font-size: 12px;
}


/* ==============================
   MOBILE
============================== */

@media (max-width: 800px) {

    nav {
        padding: 0 5%;
    }

    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-text,
    .hero-visual {
        width: 100%;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .about,
    .why-us,
    .contact {
        padding: 75px 5%;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-heading h2,
    .why-us-intro h2,
    .contact-intro h2 {
        font-size: 36px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 30px 25px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}
