/* ================================
   MINDHAVEN - MAIN CSS
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7fbfa;
    color: #1e293b;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

button,
a {
    transition: 0.3s ease;
}


/* ================================
   HEADER
================================ */

.header {
    width: 100%;
    min-height: 78px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 6%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}


/* LOGO */

.logo {
    font-size: 30px;
    font-weight: 800;
    color: #172033;
    letter-spacing: -1px;
}

.logo span {
    color: #0a9f8c;
}


/* DESKTOP MENU */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn {
    display: inline-block;
    padding: 10px 16px;
    background: #eef8f6;
    color: #1e293b;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.nav-btn:hover {
    background: #0a9f8c;
    color: white;
    transform: translateY(-2px);
}

.nav-btn.active {
    background: #0a9f8c;
    color: white;
}


/* MOBILE MENU BUTTON */

.menu-btn {
    display: none;
    border: none;
    background: #0a9f8c;
    color: white;
    font-size: 26px;
    width: 48px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
}


/* MOBILE NAVIGATION */

.mobile-nav {
    display: none;
    background: white;
    padding: 15px;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.mobile-nav a {
    display: block;
    background: #eef8f6;
    color: #1e293b;
    margin: 8px 0;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
}

.mobile-nav a:hover {
    background: #0a9f8c;
    color: white;
}


/* ================================
   HERO / BANNER
================================ */

.hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 70px 7%;
    background:
        linear-gradient(
            90deg,
            rgba(9, 71, 68, 0.96) 0%,
            rgba(10, 126, 116, 0.90) 50%,
            rgba(10, 159, 140, 0.75) 100%
        );
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    right: -120px;
    top: -100px;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-small {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 700;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.12;
    color: white;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #c8fff4;
}

.hero-text {
    max-width: 630px;
    font-size: 19px;
    color: #e7fffb;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* ================================
   MAIN BUTTONS
================================ */

.main-btn {
    display: inline-block;
    background: #0a9f8c;
    color: white;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
    border: 2px solid #0a9f8c;
}

.main-btn:hover {
    background: #087d70;
    border-color: #087d70;
    transform: translateY(-2px);
}

.hero .main-btn {
    background: white;
    color: #087d70;
    border-color: white;
}

.hero .main-btn:hover {
    background: #e9fffa;
}

.second-btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
    color: white;
    border: 2px solid white;
}

.second-btn:hover {
    background: white;
    color: #087d70;
}


/* ================================
   SECTION HEADING
================================ */

.conditions-section,
.consultation {
    padding: 75px 6%;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px;
}

.section-heading > p {
    color: #0a9f8c;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.section-heading h2 {
    font-size: 40px;
    color: #172033;
    margin-bottom: 10px;
}

.section-heading span {
    color: #64748b;
    font-size: 17px;
}


/* ================================
   CONDITIONS CARDS
================================ */

.conditions-section {
    background: #f8fbfb;
}

.conditions-grid {
    max-width: 1350px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 26px;
}

.condition-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8eeee;
    transition: 0.3s ease;
}

.condition-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}


/* TEMPORARY IMAGE AREA */

.image-placeholder {
    height: 230px;
    width: 100%;
    background:
        linear-gradient(
            135deg,
            #dcefeb,
            #b9e1db
        );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25645c;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    padding: 15px;
}


/* CARD CONTENT */

.card-content {
    padding: 24px;
}

.card-content h3 {
    color: #172033;
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.card-content p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 18px;
}

.card-btn {
    display: inline-block;
    background: #eef8f6;
    color: #087d70;
    font-size: 14px;
    font-weight: 800;
    padding: 9px 15px;
    border-radius: 7px;
}

.card-btn:hover {
    background: #0a9f8c;
    color: white;
}


/* VIEW ALL BUTTON */

.view-all {
    text-align: center;
    margin-top: 45px;
}


/* ================================
   CONSULTATION
================================ */

.consultation {
    background: white;
}

.consultation-boxes {
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.consult-box {
    background: #f1faf8;
    padding: 38px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #d8ebe7;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.consult-box h3 {
    font-size: 26px;
    color: #172033;
    margin-bottom: 12px;
}

.consult-box p {
    color: #64748b;
    margin-bottom: 23px;
}


/* ================================
   FOOTER
================================ */

footer {
    background: #12202c;
    padding: 45px 6% 25px;
    text-align: center;
}

.footer-logo {
    color: white;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 22px;
}

.footer-logo span {
    color: #34d5be;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.footer-buttons a {
    background: #1c3441;
    color: white;
    padding: 9px 15px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}

.footer-buttons a:hover {
    background: #0a9f8c;
}

footer > p {
    color: #9fb1ba;
    font-size: 14px;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1000px) {

    .desktop-nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 46px;
    }

    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =====================================
   MOBILE VIEW
   IMPORTANT:
   2 CARDS PER ROW
===================================== */

@media (max-width: 600px) {

    .header {
        min-height: 68px;
        padding: 10px 4%;
    }

    .logo {
        font-size: 25px;
    }

    .menu-btn {
        width: 44px;
        height: 42px;
        font-size: 23px;
    }

    .mobile-nav {
        top: 68px;
    }


    /* BANNER */

    .hero {
        min-height: 470px;
        padding: 55px 5%;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero-small {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .main-btn,
    .second-btn {
        padding: 11px 16px;
        font-size: 13px;
    }


    /* SECTION */

    .conditions-section,
    .consultation {
        padding: 52px 3%;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .section-heading span {
        font-size: 14px;
    }


    /* VERY IMPORTANT:
       2 CONDITION CARDS SIDE BY SIDE */

    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .condition-card {
        border-radius: 11px;
    }

    .image-placeholder {
        height: 125px;
        font-size: 12px;
        padding: 8px;
    }

    .card-content {
        padding: 12px 10px 14px;
    }

    .card-content h3 {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .card-content p {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 11px;
    }

    .card-btn {
        font-size: 11px;
        padding: 7px 10px;
        width: 100%;
        text-align: center;
    }


    /* CONSULTATION */

    .consultation-boxes {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .consult-box {
        padding: 25px 15px;
    }

    .consult-box h3 {
        font-size: 22px;
    }


    /* FOOTER */

    .footer-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-buttons a {
        text-align: center;
    }
}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 380px) {

    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .image-placeholder {
        height: 110px;
    }

    .card-content {
        padding: 10px 8px;
    }

    .card-content h3 {
        font-size: 14px;
    }

    .card-content p {
        font-size: 10px;
    }
}
@media (max-width: 1000px) {

    .mobile-nav.show {
        display: block;
    }

}
/* =====================================
   DOCTOR IMAGE IN HERO BANNER
===================================== */

.hero {
    justify-content: space-between;
    gap: 45px;
}

.hero-content {
    flex: 1 1 58%;
}

.hero-image {
    flex: 1 1 38%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    max-width: 390px;
    height: 460px;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    border: 6px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}


/* TABLET */

@media (max-width: 1000px) {

    .hero {
        gap: 25px;
    }

    .hero-content {
        flex: 1 1 55%;
    }

    .hero-image {
        flex: 1 1 40%;
    }

    .hero-image img {
        max-width: 320px;
        height: 400px;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .hero {
        flex-direction: column;
        gap: 28px;
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .hero-content {
        width: 100%;
        order: 1;
    }

    .hero-image {
        width: 100%;
        order: 2;
    }

    .hero-image img {
        width: 82%;
        max-width: 300px;
        height: 340px;
        border-radius: 20px;
    }
}


/* SMALL MOBILE */

@media (max-width: 380px) {

    .hero-image img {
        width: 88%;
        height: 300px;
    }
}
/* CONDITION CARD IMAGES */

.condition-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* Mobile - two cards per row */
@media (max-width: 600px) {
    .condition-image {
        height: 125px;
    }
}

@media (max-width: 380px) {
    .condition-image {
        height: 110px;
    }
}
/* CONDITION CARD IMAGES */

.condition-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* Mobile - two cards per row */
@media (max-width: 600px) {
    .condition-image {
        height: 125px;
    }

}

@media (max-width: 380px) {
    .condition-image {
        height: 110px;
    }
}
/* =====================================
   CONDITIONS PAGE
===================================== */

.conditions-page-hero {
    background: #eef8f6;
    text-align: center;
    padding: 65px 6% 50px;
}

.conditions-page-hero > p {
    color: #0a9f8c;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.conditions-page-hero h1 {
    color: #172033;
    font-size: 44px;
    margin-bottom: 14px;
}

.conditions-page-hero span {
    display: block;
    max-width: 800px;
    margin: auto;
    color: #64748b;
    font-size: 17px;
}


/* MAIN CONDITIONS AREA */

.conditions-page {
    padding: 55px 6% 70px;
    background: #f8fbfb;
}


/* PAGINATION */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 45px;
}

.page-btn {
    min-width: 46px;
    min-height: 44px;
    padding: 9px 14px;
    border: 1px solid #d6e7e4;
    background: white;
    color: #172033;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}

.page-btn:hover {
    background: #e3f5f1;
}

.page-btn.active-page {
    background: #0a9f8c;
    border-color: #0a9f8c;
    color: white;
}

.page-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}


/* APPOINTMENT SECTION */

.conditions-appointment {
    background: white;
    text-align: center;
    padding: 60px 5%;
}

.conditions-appointment h2 {
    font-size: 34px;
    color: #172033;
    margin-bottom: 10px;
}

.conditions-appointment p {
    color: #64748b;
    margin-bottom: 24px;
}


/* =====================================
   MOBILE CONDITIONS PAGE
===================================== */

@media (max-width: 600px) {

    .conditions-page-hero {
        padding: 45px 4% 35px;
    }

    .conditions-page-hero h1 {
        font-size: 29px;
    }

    .conditions-page-hero span {
        font-size: 14px;
    }

    .conditions-page {
        padding: 35px 3% 50px;
    }

    /* 2 CARDS PER ROW ON MOBILE */
    .conditions-page .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .pagination {
        gap: 5px;
        margin-top: 30px;
    }

    .page-btn {
        min-width: 39px;
        min-height: 40px;
        padding: 7px 9px;
        font-size: 12px;
    }

    .conditions-appointment h2 {
        font-size: 27px;
    }
}
/* =====================================
   APPOINTMENT PAGE
===================================== */

.appointment-hero {
    background: #eef8f6;
    text-align: center;
    padding: 65px 6% 50px;
}

.appointment-hero > p {
    color: #0a9f8c;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.appointment-hero h1 {
    font-size: 44px;
    color: #172033;
    margin-bottom: 14px;
}

.appointment-hero span {
    display: block;
    max-width: 760px;
    margin: auto;
    color: #64748b;
    font-size: 17px;
}


/* MAIN APPOINTMENT AREA */

.appointment-page {
    background: #f8fbfb;
    padding: 60px 6% 75px;
}

.appointment-layout {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
    align-items: start;
}


/* LEFT INFO */

.appointment-info {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 7px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid #e3eeee;
}

.appointment-info h2 {
    font-size: 30px;
    color: #172033;
    margin-bottom: 10px;
}

.appointment-info > p {
    color: #64748b;
    margin-bottom: 28px;
}

.appointment-option {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f1faf8;
    border: 1px solid #dbeeea;
    border-radius: 14px;
    margin-bottom: 18px;
}

.appointment-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: #0a9f8c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.appointment-option h3 {
    color: #172033;
    font-size: 21px;
    margin-bottom: 6px;
}

.appointment-option p {
    color: #64748b;
    font-size: 14px;
}

.privacy-note {
    margin-top: 25px;
    padding: 18px;
    border-left: 4px solid #0a9f8c;
    background: #eef8f6;
    border-radius: 8px;
}

.privacy-note strong {
    color: #172033;
}

.privacy-note p {
    color: #64748b;
    margin-top: 6px;
    font-size: 14px;
}


/* FORM BOX */

.appointment-form-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 7px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid #e3eeee;
}

.appointment-form-box h2 {
    font-size: 30px;
    color: #172033;
    margin-bottom: 6px;
}

.form-intro {
    color: #64748b;
    margin-bottom: 25px;
}


/* FORM */

.appointment-form {
    width: 100%;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: #172033;
    font-weight: 700;
    margin-bottom: 7px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #cfdedb;
    border-radius: 9px;
    background: #ffffff;
    padding: 12px 13px;
    font-size: 15px;
    color: #172033;
    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0a9f8c;
    box-shadow: 0 0 0 3px rgba(10, 159, 140, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}


/* SUBMIT BUTTON */

.appointment-submit-btn {
    width: 100%;
    border: none;
    background: #0a9f8c;
    color: white;
    padding: 14px 18px;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.appointment-submit-btn:hover {
    background: #087d70;
    transform: translateY(-2px);
}

.form-small-note {
    text-align: center;
    color: #64748b;
    font-size: 12px;
    margin-top: 13px;
}


/* =====================================
   MOBILE APPOINTMENT PAGE
===================================== */

@media (max-width: 700px) {

    .appointment-hero {
        padding: 45px 4% 35px;
    }

    .appointment-hero h1 {
        font-size: 30px;
    }

    .appointment-hero span {
        font-size: 14px;
    }

    .appointment-page {
        padding: 35px 4% 50px;
    }

    .appointment-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .appointment-info,
    .appointment-form-box {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .appointment-info h2,
    .appointment-form-box h2 {
        font-size: 24px;
    }

    .appointment-option {
        padding: 15px;
    }

    .appointment-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }

    .appointment-option h3 {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .appointment-submit-btn {
        min-height: 48px;
    }
}
/* =====================================
   CONTACT PAGE
===================================== */

.contact-hero {
    background: #eef8f6;
    text-align: center;
    padding: 65px 6% 50px;
}

.contact-hero > p {
    color: #0a9f8c;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-hero h1 {
    font-size: 44px;
    color: #172033;
    margin-bottom: 14px;
}

.contact-hero span {
    display: block;
    max-width: 760px;
    margin: auto;
    color: #64748b;
    font-size: 17px;
}


/* MAIN CONTACT AREA */

.contact-page {
    background: #f8fbfb;
    padding: 60px 6% 75px;
}

.contact-layout {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
    align-items: start;
}


/* CONTACT INFORMATION */

.contact-info-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px;
    border: 1px solid #e3eeee;
    box-shadow: 0 7px 24px rgba(0, 0, 0, 0.07);
}

.contact-info-box h2 {
    font-size: 30px;
    color: #172033;
    margin-bottom: 8px;
}

.contact-intro {
    color: #64748b;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f3faf9;
    border: 1px solid #deeeeb;
    border-radius: 13px;
    padding: 17px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 11px;
    background: #0a9f8c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
}

.contact-item h3 {
    font-size: 19px;
    color: #172033;
    margin-bottom: 4px;
}

.contact-item p {
    color: #64748b;
    font-size: 14px;
}

.contact-note {
    margin-top: 25px;
    background: #eef8f6;
    border-left: 4px solid #0a9f8c;
    border-radius: 9px;
    padding: 19px;
}

.contact-note strong {
    display: block;
    color: #172033;
    margin-bottom: 7px;
}

.contact-note p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 18px;
}


/* CONTACT FORM */

.contact-form-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    border: 1px solid #e3eeee;
    box-shadow: 0 7px 24px rgba(0, 0, 0, 0.07);
}

.contact-form-box h2 {
    font-size: 30px;
    color: #172033;
    margin-bottom: 6px;
}

.contact-form-intro {
    color: #64748b;
    margin-bottom: 25px;
}

.contact-form {
    width: 100%;
}

.contact-submit-btn {
    width: 100%;
    border: none;
    background: #0a9f8c;
    color: white;
    padding: 14px 18px;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-submit-btn:hover {
    background: #087d70;
    transform: translateY(-2px);
}


/* =====================================
   MOBILE CONTACT PAGE
===================================== */

@media (max-width: 700px) {

    .contact-hero {
        padding: 45px 4% 35px;
    }

    .contact-hero h1 {
        font-size: 30px;
    }

    .contact-hero span {
        font-size: 14px;
    }

    .contact-page {
        padding: 35px 4% 50px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 24px;
    }

    .contact-item {
        padding: 14px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 19px;
    }

    .contact-submit-btn {
        min-height: 48px;
    }
}
/* =====================================
   FLOATING WHATSAPP BUTTON
===================================== */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #25d366;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    text-decoration: none;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);

    z-index: 2000;

    cursor: pointer;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}


/* MOBILE */

@media (max-width: 600px) {

    .whatsapp-float {
        width: 52px;
        height: 52px;

        right: 15px;
        bottom: 18px;

        font-size: 25px;
    }
}
@media (max-width: 600px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 15px;
        bottom: 18px;
        font-size: 25px;
    }
}

/* OUR PSYCHOLOGISTS */
.psychologists-section {
    padding: 80px 6%;
    background: #ffffff;
}

.psychologists-section .section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.psychologists-section .section-heading p {
    color: #0aa58f;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.psychologists-section .section-heading h2 {
    font-size: 40px;
    color: #102033;
    margin-bottom: 12px;
}

.psychologists-section .section-heading span {
    color: #637287;
    font-size: 17px;
    line-height: 1.7;
}

.psychologists-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1250px;
    margin: 0 auto;
}

.psychologist-card {
    flex: 0 1 300px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.psychologist-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.psychologist-content {
    padding: 22px 18px 25px;
}

.psychologist-content h3 {
    font-size: 22px;
    color: #102033;
    margin-bottom: 5px;
}

.psychologist-content p {
    color: #0a9f8b;
    font-weight: 600;
    margin-bottom: 18px;
}

.psychologist-btn {
    display: inline-block;
    padding: 11px 20px;
    background: #0aa58f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .psychologist-card {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .psychologists-section {
        padding: 50px 15px;
    }

    .psychologists-grid {
        gap: 12px;
    }

    .psychologist-card {
        flex: 0 1 calc(50% - 6px);
    }

    .psychologist-content {
        padding: 14px 8px 16px;
    }

    .psychologist-content h3 {
        font-size: 16px;
    }

    .psychologist-content p {
        font-size: 13px;
    }

    .psychologist-btn {
        font-size: 12px;
        padding: 9px 10px;
    }
}

    
/* ==================================
   ABOUT PAGE - PSYCHOLOGIST PROFILES
================================== */
.about-team-intro {
    padding: 80px 6% 45px;
    background: #f7fbfb;
    text-align: center;
}

.about-team-intro .section-heading {
    max-width: 800px;
    margin: 0 auto;
}

.about-team-intro .section-heading p {
    color: #0aa58f;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-team-intro .section-heading h1 {
    font-size: 44px;
    color: #102033;
    margin-bottom: 15px;
}

.about-team-intro .section-heading span {
    color: #637287;
    font-size: 17px;
    line-height: 1.7;
}


/* INDIVIDUAL PROFILE */

.psychologist-profile {
    max-width: 1180px;
    margin: 45px auto;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 45px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    scroll-margin-top: 120px;
}

.psychologist-profile:nth-of-type(even) {
    flex-direction: row-reverse;
}

.profile-image {
    flex: 0 0 330px;
}

.profile-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 16px;
}

.profile-details {
    flex: 1;
    padding: 10px 5px;
}

.profile-details h2 {
    font-size: 32px;
    color: #102033;
    margin-bottom: 6px;
}

.profile-details h3 {
    color: #0aa58f;
    font-size: 19px;
    margin-bottom: 22px;
    line-height: 1.5;
}

.profile-details h4 {
    color: #102033;
    font-size: 21px;
    margin: 25px 0 12px;
}

.profile-details p {
    color: #53657a;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* EMAIL / WHATSAPP */

.profile-contact {
    margin-top: 24px;
    padding: 18px 20px;
    background: #eef9f7;
    border-left: 4px solid #0aa58f;
    border-radius: 10px;
}

.profile-contact p {
    margin: 5px 0;
    color: #243447;
    word-break: break-word;
}


/* SUPPORT LIST */

.support-list {
    margin: 10px 0 22px 22px;
    color: #53657a;
}

.support-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}


/* ABOUT APPOINTMENT CTA */

.about-appointment-cta {
    max-width: 1100px;
    margin: 70px auto;
    padding: 55px 30px;
    text-align: center;
    background: #eef9f7;
    border-radius: 20px;
}

.about-appointment-cta h2 {
    font-size: 36px;
    color: #102033;
    margin-bottom: 12px;
}

.about-appointment-cta p {
    max-width: 650px;
    margin: 0 auto 25px;
    color: #637287;
    font-size: 17px;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 900px) {

    .psychologist-profile,
    .psychologist-profile:nth-of-type(even) {
        flex-direction: column;
        max-width: 700px;
    }

    .profile-image {
        width: 100%;
        max-width: 350px;
        flex: none;
        margin: 0 auto;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .about-team-intro {
        padding: 55px 18px 30px;
    }

    .about-team-intro .section-heading h1 {
        font-size: 32px;
    }

    .about-team-intro .section-heading span {
        font-size: 15px;
    }

    .psychologist-profile,
    .psychologist-profile:nth-of-type(even) {
        margin: 22px 15px;
        padding: 18px;
        gap: 20px;
        flex-direction: column;
    }

    .profile-image {
        max-width: 100%;
    }

    .profile-details h2 {
        font-size: 25px;
    }

    .profile-details h3 {
        font-size: 16px;
    }

    .profile-details p {
        font-size: 15px;
        line-height: 1.7;
    }

    .profile-contact {
        padding: 15px;
    }

    .about-appointment-cta {
        margin: 40px 15px;
        padding: 40px 20px;
    }

    .about-appointment-cta h2 {
        font-size: 28px;
    }
}
/* =====================================
   HEADER FIX - DESKTOP + MOBILE
===================================== */

.site-header {
    background: #ffffff;
    width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 34px;
    font-weight: 800;
    color: #102033;
    text-decoration: none;
}

.logo span {
    color: #0aa58f;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav a {
    color: #102033;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 18px;
    border-radius: 10px;
    background: #eef8f6;
    transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
    background: #0aa58f;
}

.menu-toggle {
    display: none;
    border: none;
    background: #0aa58f;
    color: #ffffff;
    font-size: 25px;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    cursor: pointer;
}


/* MOBILE HEADER */

@media (max-width: 768px) {

    .nav-container {
        padding: 14px 20px;
        position: relative;
    }

    .logo {
        font-size: 28px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        text-align: center;
        padding: 13px 12px;
    }
}

