:root {
    --peach: #faeadf;
    --peach-deep: #f3d7ca;
    --pink: #de7ca2;
    --pink-dark: #c75f8b;
    --teal: #075f5a;
    --teal-dark: #053d52;
    --gold: #c7a56a;
    --ink: #1e1b1d;
    --muted: #6d5b58;
    --surface: #ffffff;
    --border: #ead5c9;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.brand-copy strong {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.15;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.top-strip {
    background: var(--peach);
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
    box-shadow: 0 3px 18px rgba(30, 27, 29, 0.08);
    padding: 12px 0;
    font-size: 15px;
}

.top-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.top-link i,
.text-pink {
    color: var(--pink-dark);
}

.social-mini,
.footer-social {
    display: inline-flex;
    gap: 8px;
}

.social-mini a,
.footer-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--teal-dark);
}

.social-mini a:first-child,
.footer-social a:first-child {
    background: #315f9d;
}

.site-nav {
    background: #fff;
    box-shadow: 0 4px 18px rgba(30, 27, 29, 0.05);
}

.brand-logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    color: var(--teal-dark);
    font-size: 28px;
}

.brand-copy small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: #1c1a1b;
    font-weight: 700;
    padding: 10px 14px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--pink-dark);
}

.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 16px 30px rgba(30, 27, 29, 0.12);
}

.dropdown-item:active,
.dropdown-item:hover {
    background: var(--peach);
    color: var(--pink-dark);
}

.btn {
    border-radius: 4px;
    font-weight: 700;
    padding: 11px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-pink {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}

.btn-pink:hover,
.btn-pink:focus {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    color: #fff;
}

.btn-outline-dark:hover {
    background: var(--ink);
    color: #fff;
}

.nav-cta {
    white-space: nowrap;
}

.section-peach {
    background: var(--peach);
}

.section-space {
    padding: 76px 0;
}

.home-hero {
    min-height: 570px;
    display: flex;
    align-items: center;
    padding: 70px 0;
    overflow: hidden;
}

.eyebrow {
    color: var(--teal);
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 13px;
}

.home-hero h1 {
    font-size: clamp(42px, 6vw, 68px);
    max-width: 620px;
}

.hero-lead {
    color: var(--muted);
    max-width: 560px;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-visual {
    width: min(520px, 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: #f7cfc6;
    border: 8px solid #f2c6bc;
    margin-left: auto;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(7, 95, 90, 0.16);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 74% center;
}

.image-rounded {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    min-height: 360px;
    max-height: 560px;
}

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

.section-heading h1,
.section-heading h2,
.section-heading p {
    margin-left: auto;
    margin-right: auto;
}

.section-heading h1,
.section-heading h2 {
    font-size: clamp(30px, 4vw, 42px);
}

.tick-list,
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.tick-list li,
.bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--muted);
}

.tick-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    color: #fff;
    background: #1bbf5c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
}

.service-tile,
.service-card,
.blog-card,
.insta-card,
.gallery-card {
    border-radius: 8px;
    overflow: hidden;
}

.service-tile {
    background: #3a3939;
    color: #fff;
    height: 100%;
    box-shadow: 0 10px 24px rgba(30, 27, 29, 0.12);
}

.service-tile img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.tile-body {
    padding: 16px;
    text-align: center;
}

.tile-body small {
    color: #f2d9d1;
    display: block;
    min-height: 44px;
}

.tile-body h3 {
    font-size: 24px;
    margin: 10px 0 12px;
}

.tile-body a {
    display: block;
    background: var(--pink);
    color: #fff;
    border-radius: 4px;
    padding: 8px;
    font-weight: 700;
}

.doctor-band {
    background: linear-gradient(rgba(43, 42, 37, 0.72), rgba(43, 42, 37, 0.72)), url("../images/gallery/clinic-6.jpeg") center/cover;
    color: #fff;
    padding: 58px 0;
}

.doctor-band h2 {
    text-align: center;
    margin-bottom: 34px;
    font-size: clamp(30px, 4vw, 42px);
}

.doctor-mini {
    display: flex;
    align-items: center;
    gap: 22px;
}

.doctor-mini img {
    width: 132px;
    height: 132px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #d7f3f3;
    flex: 0 0 132px;
}

.doctor-mini h3 {
    font-size: 24px;
    text-decoration: underline;
    margin-bottom: 5px;
}

.doctor-mini strong {
    color: #f8d6de;
}

.doctor-mini p {
    margin: 8px 0 0;
    color: #f8eeee;
}

.insta-card {
    border: 1px solid #e0e0e0;
    background: #fff;
}

.insta-top,
.insta-bottom {
    padding: 10px 12px;
}

.insta-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.insta-top img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid var(--border);
}

.insta-top span {
    font-weight: 800;
}

.insta-top a {
    margin-left: auto;
    background: #4169f6;
    color: #fff;
    border-radius: 3px;
    padding: 5px 9px;
    font-size: 12px;
}

.insta-card > img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.insta-bottom small {
    display: block;
    color: var(--muted);
    margin-top: 7px;
}

.care-grid {
    display: grid;
    grid-template-columns: minmax(230px, 360px) 1fr;
    gap: 44px;
    align-items: center;
}

.care-photo {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #f5cfc5;
}

.care-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.care-items div {
    text-align: center;
    font-weight: 800;
}

.care-items i {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #9be3d8;
    color: var(--teal-dark);
    margin-bottom: 10px;
}

.care-items span {
    display: block;
}

.faq-box {
    max-width: 1050px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.accordion-button {
    font-weight: 700;
}

.accordion-button:not(.collapsed) {
    color: var(--teal-dark);
    background: #fff8f4;
}

.map-box {
    width: 100%;
    height: 330px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-box.tall {
    height: 470px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    height: 100%;
    box-shadow: 0 8px 20px rgba(30, 27, 29, 0.06);
}

.blog-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.blog-card div {
    padding: 18px;
}

.blog-card h3,
.blog-card h2 {
    font-size: 22px;
}

.blog-card p {
    color: var(--muted);
}

.blog-card a {
    color: var(--pink-dark);
    font-weight: 800;
}

.blog-card.large img {
    height: 310px;
}

.inner-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 27, 29, 0.52);
}

.inner-hero .container {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    font-size: clamp(38px, 5vw, 58px);
}

.mission-band {
    background: var(--teal);
    color: #fff;
    padding: 78px 0;
    text-align: center;
}

.mission-band h2 {
    margin-bottom: 48px;
}

.mission-item i {
    width: 54px;
    height: 54px;
    border: 5px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.mission-item h3 {
    font-size: 24px;
}

.mission-item p {
    color: #e1f0ee;
    max-width: 330px;
    margin: 0 auto;
}

.service-category {
    padding-top: 28px;
    margin-bottom: 62px;
    scroll-margin-top: 130px;
}

.service-card {
    background: #e7e7e7;
    padding: 14px;
    height: 100%;
}

.service-card img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: 8px;
}

.service-card-title {
    margin-top: 14px;
    min-height: 62px;
    background: #343434;
    color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: center;
    font-weight: 700;
}

.service-card-title:hover {
    color: #fff;
    background: var(--pink-dark);
}

.gallery-carousel {
    max-width: 860px;
    margin: 0 auto;
}

.gallery-carousel .carousel-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-card {
    border: 0;
    padding: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(30, 27, 29, 0.08);
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.gallery-modal {
    background: transparent;
    border: 0;
}

.gallery-modal .btn-close {
    margin-left: auto;
    background-color: #fff;
    opacity: 1;
    margin-bottom: 10px;
}

.gallery-modal img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-list a,
.contact-list span {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    font-weight: 700;
}

.contact-list i {
    color: var(--pink-dark);
    font-size: 20px;
    margin-top: 2px;
}

.appointment-panel {
    background: var(--peach);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.booking-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 16px 34px rgba(30, 27, 29, 0.08);
}

.booking-form label {
    display: block;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 7px;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.chat-compose input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 12px 13px;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.chat-compose input:focus {
    outline: 3px solid rgba(222, 124, 162, 0.22);
    border-color: var(--pink);
}

.check-row {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
}

.check-row input {
    width: auto;
    margin-top: 5px;
}

.booking-info {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px;
    margin-top: 28px;
}

.booking-info p {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--muted);
    font-weight: 700;
}

.booking-info i {
    color: var(--pink-dark);
}

.thank-you {
    min-height: 58vh;
    display: flex;
    align-items: center;
}

.success-icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #dff4ec;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 22px;
}

.article-wrap {
    max-width: 880px;
}

.article-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.article-wrap h2 {
    font-size: clamp(30px, 4vw, 44px);
}

.article-wrap p {
    color: var(--muted);
    font-size: 18px;
}

.article-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.site-footer {
    background: var(--peach);
    border-top: 12px solid #fff;
    padding: 62px 0;
    color: #675350;
}

.footer-logo {
    width: 230px;
    height: 150px;
    object-fit: contain;
    background: #fff;
    border: 3px solid #e6bd89;
    border-radius: 8px;
    padding: 10px;
}

.footer-note {
    margin-top: 18px;
    font-style: italic;
    font-weight: 600;
}

.site-footer h3,
.site-footer h4 {
    color: #705552;
}

.site-footer h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.site-footer h4 {
    font-size: 24px;
    margin: 22px 0 10px;
}

.small-title {
    font-weight: 800;
    color: #735b58;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    font-weight: 700;
}

.chatbot {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1050;
}

.chat-toggle {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 14px 28px rgba(30, 27, 29, 0.22);
}

.chat-panel {
    position: absolute;
    right: 0;
    bottom: 74px;
    width: min(350px, calc(100vw - 34px));
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(30, 27, 29, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: 0.2s ease;
    overflow: hidden;
}

.chatbot.is-open .chat-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.chat-head {
    background: var(--teal);
    color: #fff;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.chat-head span {
    display: block;
    font-size: 12px;
    color: #d5efeb;
}

.chat-close {
    border: 0;
    background: transparent;
    color: #fff;
}

.chat-body {
    max-height: 330px;
    overflow: auto;
    padding: 14px;
    background: #fbf4f0;
}

.bot-msg,
.user-msg {
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    max-width: 90%;
    font-size: 14px;
}

.bot-msg {
    background: #fff;
    color: var(--muted);
}

.user-msg {
    background: #dcf8c6;
    margin-left: auto;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-replies button {
    border: 1px solid #cfe8df;
    background: #fff;
    color: var(--teal);
    border-radius: 999px;
    padding: 7px 10px;
    font-weight: 700;
    font-size: 13px;
}

.chat-compose {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--border);
}

.chat-compose button {
    width: 46px;
    border: 0;
    border-radius: 6px;
    background: #25d366;
    color: #fff;
}

@media (max-width: 991px) {
    .brand-logo {
        width: 62px;
        height: 62px;
    }

    .brand-copy strong {
        font-size: 24px;
    }

    .home-hero {
        text-align: center;
        min-height: auto;
    }

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

    .hero-visual {
        margin: 0 auto;
    }

    .care-grid {
        grid-template-columns: 1fr;
    }

    .care-photo {
        max-width: 360px;
        margin: 0 auto;
    }

    .appointment-panel {
        display: block;
        text-align: center;
    }

    .appointment-panel .btn {
        margin-top: 18px;
    }
}

@media (max-width: 767px) {
    .top-strip {
        border-radius: 0;
        font-size: 13px;
    }

    .section-space {
        padding: 54px 0;
    }

    .home-hero h1 {
        font-size: 40px;
    }

    .hero-visual {
        width: 320px;
    }

    .doctor-mini {
        display: block;
        text-align: center;
    }

    .doctor-mini img {
        margin: 0 auto 16px;
    }

    .care-items {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-carousel .carousel-item img,
    .map-box,
    .map-box.tall {
        height: 290px;
    }

    .booking-form {
        padding: 20px;
    }

    .footer-logo {
        width: 190px;
    }
}

@media (max-width: 480px) {
    .brand-copy small {
        display: none;
    }

    .hero-visual {
        width: 280px;
    }

    .care-items {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .chatbot {
        right: 14px;
        bottom: 14px;
    }
}
