/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary: #6FB89A;
    --primary-hover: #5AA787;
    --secondary: #E6B84C;
    --accent: #E6B84C;
    --light-accent: #F5F9F7;
    --bg-color: #F7F8F9;
    --white: #ffffff;
    --text-dark: #1F2933;
    --text-light: #6B7280;
    --border-color: #E6E9EC;
    --icon-bg: #EAF5F1;

    --font-primary: 'seougeo', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

/* ==========================================================================
   CSS Reset & Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

::selection {
    background: var(--primary);
    color: #ffffff;
}

::-moz-selection {
    background: var(--primary);
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

iframe {
    width: 100%;
}

strong {
    font-weight: 600;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-accent {
    color: var(--accent);
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-color);
}

.mt-5 {
    margin-top: 3rem;
}

/* ==========================================================================
   Layout System
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section__desc {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.call-icon {
    color: #ffd675;
    margin-right: 10px;
}

/* ==========================================================================
   Components
   ========================================================================== */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn--primary {
    background-color: var(--primary);
    color: #ffffff;
}

.btn--primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: var(--white);
    color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.btn--secondary:hover {
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    color: var(--accent);
}

.btn--full {
    width: 100%;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(111, 184, 154, 0.2);
}

/* ==========================================================================
   Header Top
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header__logo,
.footer__logo img {
    width: 180px !important;
}

.header__logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.header__logo span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
}

.header__menu {
    display: flex;
    gap: 1.5rem;
}

.header__menu a {
    font-weight: 500;
    color: var(--text-dark);
}

.header__menu a:hover {
    color: var(--primary);
}

.header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.header__menu a {
    position: relative;
    padding-bottom: 4px;
}

.header__menu a.active {
    color: var(--primary);
    /* use your theme highlight */
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 0;
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero__content {
    flex: 0 0 55%;
    padding: 8rem 4rem 5rem 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background-color: var(--icon-bg);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero__title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 1.5rem;
}

.hero__image-wrapper {
    width: auto;
    height: auto;
    max-height: 576px;
    z-index: 0;
    margin-top: 2.5rem;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.fa-brands,
.fab {
    font-size: 22px;
}

/* ==========================================================================
   About / Clinic Introduction Section
   ========================================================================== */
.about__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;

}

.about__subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    color: #2bc485;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about__text {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about__info {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--bg-color);
    padding: 1rem;
    border-radius: 8px;
}

.info-badge__icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.about__image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   About the Founder Section
   ========================================================================== */
.founder {
    background-color: var(--white);
    margin-bottom: 5rem;
}

.founder__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.founder__image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.founder__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.founder__subtitle {
    font-size: 1.25rem;
    color: var(--primary);
    color: #2bc485;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.founder__text {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.founder__text strong {
    color: var(--text-dark);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: var(--icon-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
    background-color: var(--primary);
    color: var(--white);
}

.feature-card__title {
    font-size: 1.125rem;
    font-weight: 600;
}

/* ==========================================================================
   Conditions We Treat Section
   ========================================================================== */
.conditions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.condition-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.condition-card:hover {
    background-color: #f4fffa;
    /* color: var(--white); */
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.condition-card__icon {
    font-size: 1.5rem;
    color: var(--secondary);
}

.condition-card:hover .condition-card__icon {
    color: var(--accent);
}

.condition-card__title {
    font-size: 1rem;
    font-weight: 500;
}












.physio-benefits {
    padding: 80px 20px;
}

.physio-benefits__intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.physio-benefits__intro .section__title {
    font-size: 36px;
    margin-bottom: 20px;
}

.physio-benefits__text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.physio-benefits__grid {
    display: flex;
    gap: 40px;
}

.physio-benefits__col {
    background-color: var(--white);
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.physio-benefits__col:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.physio-benefits__subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.physio-benefits__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.physio-benefits__list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    transition: transform 0.2s ease;
}

.physio-benefits__list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -3px;
    color: var(--primary);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.physio-benefits__col:hover .physio-benefits__list li::before {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .physio-benefits {
        padding: 60px 20px;
    }

    .physio-benefits__intro .section__title {
        font-size: 28px;
    }

    .physio-benefits__text {
        font-size: 16px;
    }

    .physio-benefits__grid {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .physio-benefits {
        padding: 40px 16px;
    }

    .physio-benefits__intro .section__title {
        font-size: 26px;
    }

    .physio-benefits__col {
        padding: 24px;
    }
}











/* ==========================================================================
   Services Section
   ========================================================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card__image {
    height: 300px;
    overflow: hidden;
    background-color: #ddd;
    /* fallback */
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__content {
    padding: 2rem;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-card__text {
    color: var(--text-light);
}

.service-card__subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.service-card__list {
    margin-bottom: 1rem;
}

.service-card__list li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.service-card__list li i {
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

.service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.service-tag {
    background-color: var(--icon-bg);
    color: #5e9c82;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.mob-num {
    font-weight: 600;
}

.info-badge__text {
    font-weight: 600;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.gallery__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    background-color: #ddd;
    /* fallback */
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(111, 184, 154, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--icon-bg);
    font-family: serif;
}

.testimonial-card__rating {
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial-card__text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--icon-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-card__author-info h4 {
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-card__author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ==========================================================================
   Contact / Location Section
   ========================================================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact__subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact__item:last-child {
    margin-bottom: 0;
}

.contact__icon {
    width: 50px;
    height: 50px;
    background-color: var(--icon-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact__item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact__item p {
    color: var(--text-light);
}

.contact__expect {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact__expect h4 {
    margin-bottom: 1rem;
}

.contact__expect-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.contact__form-wrap {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.contact__form-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.appointment-content p:last-child {
    color: #ffd675;
}

i.fas.fa-phone-alt {
    transform: scaleX(-1);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background-color: #1a202c;
    color: #a0aec0;
    padding: 5rem 0 0;
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer__logo {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    filter: brightness(1.5);

}

.footer__desc {
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.footer__social a:hover {
    background: var(--primary);
}

.footer__title {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer__contact li {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.footer__contact i {
    color: var(--primary);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}



/* ==========================================================================
   Appointment CTA Section
   ========================================================================== */

/* CTA Section */

.appointment-cta {
    background: #208258;
    padding: 80px 0;
    color: white;
}

.appointment-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1%;
    flex-wrap: wrap;
    width: 100%;
}

/* LEFT SIDE */

.appointment-content {
    max-width: 520px;
}

.appointment-content h2 {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.appointment-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: .95;
}

.cta-benefits {
    list-style: none;
    padding: 0;
}

.cta-benefits li {
    margin-bottom: 10px;
    font-size: 1rem;
    opacity: .95;
}


/* RIGHT CARD */

.appointment-card {
    background: white;
    color: #222;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-width: 48%;
    text-align: center;
}

.cta-btn-parent {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.cta-btn-parent a {
    margin: 0;
    width: 100%;
}

.appointment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.appointment-subtext {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: #555;
}

.appointment-content {
    max-width: 48%;
}


/* BUTTONS */

.cta-btn {
    display: block;
    padding: 14px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 14px;
    transition: 0.25s;
}

.call-btn {
    background: #f3f3f3;
    color: #222;
}

.call-btn:hover {
    background: #e5e5e5;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

.availability {
    font-size: 0.85rem;
    color: #777;
    margin-top: 10px;
}


/* MOBILE */

@media (max-width:768px) {

    .appointment-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .appointment-content {
        max-width: 100%;
    }

}




/* light box css starts */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 9999;
}

#lightbox.active {
    opacity: 1;
    visibility: visible;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    transform: scale(.85);
    transition: transform .35s ease;
}

#lightbox.active img {
    transform: scale(1);
}

.gallery__overlay {
    pointer-events: none;
}

#lightbox {
    backdrop-filter: blur(6px);
}

.header__nav {
    transition: all .3s ease;
    opacity: 1;
    visibility: visible;
    transform: none;
    position: static;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1200px) {
    .hero__title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {


    .header__menu li {
        transform: translateY(8px);
        opacity: 0;
        transition: all .35s ease;
    }

    .header__nav.active .header__menu li {
        transform: translateY(0);
        opacity: 1;
    }


    .hero {
        min-height: auto;
    }

    .hero__container {
        flex-direction: column;
        padding-top: 5rem;
    }

    .hero__content {
        flex: 0 0 100%;
        padding: 3rem 2rem;
        order: 2;
    }

    .hero__image-wrapper {
        position: relative;
        width: 100%;
        height: 50vw;
        min-height: 250px;
        max-height: 350px;
        order: 1;
    }

    .about__container,
    .founder__container,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .conditions__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .header__mobile-toggle {
        display: block;
    }

    .header__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .header__cta {
        display: none;
    }

    .header__nav.active .header__menu {
        display: flex;
    }

    .header__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .header__menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .appointment-wrapper {
        flex-direction: column;
    }

    .appointment-content,
    .appointment-card {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .appointment-card {
        max-width: 70%;
        margin-top: 31px;
    }

    .header__cta.appointment-cta-btn {
        display: block;
    }

    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;

        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;

        transition:
            transform .35s ease,
            opacity .35s ease,
            visibility .35s;

        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    }

    .hero__image-wrapper {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .header__nav.active .header__menu {
        display: flex;
    }

    .header__menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .header__cta {
        display: none;
    }

    .header__mobile-toggle {
        display: block;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__actions {
        flex-direction: row;
    }

    .services__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .contact__form-wrap {
        padding: 2rem;
    }

    .info-badge {
        width: 100%;
    }

}

@media (max-width: 576px) {

    .features__grid,
    .conditions__grid,
    .gallery__grid,
    .footer__container {
        grid-template-columns: 1fr;
    }

    .features__grid,
    .conditions__grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 3rem 0;
    }

    .section__title {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .contact__grid {
        gap: 0;
    }

    .appointment-card {
        max-width: 100%;
    }

}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .contact__grid {
        gap: 3rem;
    }

    .features__grid,
    .conditions__grid {
        grid-template-columns: 1fr;
    }

    .info-badge {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

}

/* ==========================================================================
   Lucide SVG Stylings
   ========================================================================== */
.feature-card__icon svg,
.condition-card__icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2px;
}

/* Ensure CTA SVG is properly sized within the button */
.appointment-cta-btn svg {
    width: 24px;
    height: 24px;
}