/* ========== Root & Reset ========== */
:root {
    --primary: #2eb58a;
    --primary-dark: #1f8a68;
    --primary-light: #e6f7f2;
    --grey: #4a4f55;

    --box-shadow: 0 0 4px rgba(46, 181, 138, 0.25);

    --bg: #ffffff;
    --text: #222;
    --subtext: #555;
    --border: #e0e0e0;
    --input-bg: #f9f9f9;
}

body.dark {
    --bg: #1e1e1e;
    --text: #f2f2f2;
    --subtext: #bdbdbd;
    --border: #333;
    --input-bg: #2a2a2a;
    --box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
    --primary-light: #d5e2de;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-weight: 400;
    line-height: 1.7;
}

/* ========= Global Reset ========= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
}

.pt {
    padding: 6rem 0 !important;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
}

.form-check-input:focus {
    background-color: transparent;
    border-color: var(--primary);
}

.form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.form-control,
.form-select {
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    transition: 0.2s ease;
    color: var(--text);
}

.form-control:focus,
.form-select:focus,
.form-date:focus {
    background-color: var(--input-bg);
    border-color: var(--primary);
    box-shadow: var(--box-shadow);
    color: var(--text);
}

.text-primary {
    color: var(--primary) !important;
}
.text-secondary-light {
    color: var(--primary-light) !important;
}

.bg-secondary {
    background-color: var(--primary-light) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}

.btn {
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
}

.create-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
}
.create-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

@media screen and (max-width: 991px) {
    .create-btn {
        min-width: 250px;
        font-size: 16px;
    }

    .btn {
        min-width: 180px;
        font-size: 16px;
    }

    .back-btn {
        min-width: 0px;
        width: 0;
    }

    .theme-toggle-btn {
        min-width: 0px;
        width: 0;
    }
}

@media screen and (max-width: 767px) {
    .create-btn {
        padding: 16px 16px;
        width: 100%;
    }

    .pt {
        padding: 2rem 0 !important;
    }

    .btn {
        padding: 16px 16px;
        width: 100%;
    }

    .back-btn {
        min-width: 0px;
        width: 0;
    }
    .theme-toggle-btn {
        min-width: 0px;
        width: 0;
    }
}

/* Reset browser default styling */
input[type="date"],
input[type="time"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--input-bg) !important;
    border: 1px solid var(--border);
    color: var(--text) !important;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
}

.bg-light {
    background-color: var(--input-bg) !important;
}

.input-group-text {
    background-color: var(--input-bg);
    color: var(--text);
    border-color: var(--border);
}

/* Optional: placeholder style */
input[type="date"]::placeholder,
input[type="time"]::placeholder {
    color: var(--text);
}

.form-check-input {
    width: 1.1em;
    height: 1.1em;
}

/* Focus style */
input[type="date"]:focus,
input[type="time"]:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: var(--box-shadow);
}

/* Remove link styles */
a {
    text-decoration: none !important;
    outline: none !important;
    color: inherit;
}

a:hover,
a:focus,
a:active {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: inherit;
}

/* Buttons reset */
button {
    outline: none !important;
    box-shadow: none !important;
    border: none;
    background: transparent;
}

button:focus,
button:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Input and textarea reset */
input,
textarea,
select {
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--primary);
}

/* List reset */
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Headings and paragraphs */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

.no-scroll {
    overflow: hidden;
}

.page-wrapper {
    min-height: 750px;
}
.button.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

/* Hero buttons */
.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

.btn-outline-primary {
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    color: var(--text) !important;
}

.btn-outline-primary:hover {
    background: none;
    color: var(--text) !important;
}

.btn-outline-white {
    border: 1px solid #fff !important;
    color: var(--text) !important;
}

.btn-outline-white:hover {
    background: none;
    color: var(--text) !important;
}

/* Remove focus ring globally for non-keyboard navigation */
:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.mt-2 {
    margin-top: 2rem;
}

/* Theme toggle button */
.theme-toggle-btn {
    border: none;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.3s;
}

/* NAV */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 80px;
}
.brand img {
    height: 42px;
}

/* center nav */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.main-nav ul {
    display: flex;
    gap: 28px;
    align-items: center;
}
.main-nav a {
    color: var(--text);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.theme-toggle-btn {
    background: transparent;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
}
.create-btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile toggle (hidden on desktop) */
.mobile-toggle {
    display: none;
    background: transparent;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
}
/* Mobile toggle (hidden on desktop) */
.mobile-toggle i {
    color: var(--text);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: var(--bg);
    padding: 40px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 999;
}
.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}
.mobile-close {
    position: absolute;
    right: 18px;
    top: 18px;
    background: transparent;
    border-radius: 6px;
    padding: 8px;
    color: var(--text);
}
.mobile-book {
    display: block;
    margin-top: 24px;
    text-align: center;
}

/* HERO */
.hero {
    background: var(--input-bg);
    color: var(--text);
    padding: 60px 0 100px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 40px;
    align-items: center;
}

/* Floating plus icon on hero image */
.image-plus {
    position: absolute;
    top: -15px;
    left: -15px;
    background: transparent;

    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 20px;
    z-index: 5;
    transition: 0.25s ease;
}
.image-plus i {
    font-size: 3rem;
    font-weight: 800;
}

.hero-title {
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 700;
    color: var(--text);
}
.text-primary {
    color: var(--primary);
}
.hero-sub {
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 22px;
}
.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}
.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-outline {
    border: 1px solid var(--text);
    color: var(--text);
    background: transparent;
}

/* services card */
.services-card {
    background: var(--primary-dark);
    color: var(--primary-light);
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 8px 30px rgba(15, 39, 79, 0.12);
}
.card-row {
    display: flex;
    gap: 18px;
    margin-bottom: 12px;
}
.card-item {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1;
}
.card-item i {
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}
.card-item h6 {
    margin: 0;
    font-size: 14px;
}
.card-item small {
    color: rgba(255, 255, 255, 0.6);
}

/* right arch + image */
.arch {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}
.arch-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 370px;
    height: 480px;
    background: var(--primary-blue);
    border-top-left-radius: 220px;
    border-bottom-left-radius: 220px;
    z-index: 0;
}
.arch img {
    position: relative;
    z-index: 1;
    width: 360px;
    max-width: 80%;

    border-radius: 12px;
}

/* Responsive */
@media (max-width: 1000px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .arch-bg {
        width: 320px;
        height: 380px;
        margin: 0 auto;
        border-radius: 180px;
    }
    .main-nav {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .nav-wrap {
        height: 64px;
    }
    .brand img {
        height: 36px;
    }
    .hero-title {
        font-size: 28px;
    }
    .arch-bg {
        display: none;
    }
    .arch img {
        max-width: 100%;
        width: 100%;
    }
}

/* ---------------------- */
/* Therapy Icons Section     */
/* ---------------------- */

.therapy-icons-section .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    transition: 0.3s ease;
    box-shadow: 0 4px 14px rgba(46, 181, 138, 0.15);
}

.therapy-icons-section .icon-box:hover {
    transform: translateY(-2px);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(46, 181, 138, 0.3);
}

.therapy-icons-section h6 {
    font-size: 0.95rem;
    color: var(--text);
}

.therapy-icons-section p {
    color: var(--subtext);
}

/* Services Overview */
.services-overview .service-card {
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 22px;
    transition: 0.3s ease;
    text-align: left;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.services-overview .icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 16px;
    transition: 0.3s ease;
}

.services-overview .service-card:hover .icon-wrap {
    background: var(--primary);
    color: #fff;
}

.services-overview h5 {
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text);
}

.services-overview p {
    color: var(--subtext);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.services-overview .service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.services-overview .service-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Why Choose Us */
.why-choose .choose-card {
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.why-choose .choose-card:hover {
    transform: translateY(-1px);
    border-color: var(--primary);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.why-choose .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 16px;
    background: var(--primary);
    color: var(--primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 6px 18px rgba(46, 181, 138, 0.15);
    transition: 0.3s ease;
}

.why-choose .choose-card:hover .icon-box {
    transform: scale(1);
}

.why-choose h5 {
    color: var(--text);
    font-weight: 700;
}

.why-choose p {
    color: var(--subtext);
}

/* ---------- Testimonials ---------- */
.testimonial-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(16, 24, 40, 0.06);
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}
.testimonial-card .stars {
    color: #ffb86b;
    font-weight: 700;
    margin-bottom: 12px;
}
.testimonial-card .message {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}
.testimonial-card .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.custom-nav {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

/* Left Button */
.swiper-button-prev.custom-nav {
    left: -60px;
}

/* Right Button */
.swiper-button-next.custom-nav {
    right: -60px;
}

/* Arrow Icons */
.custom-nav::after {
    font-size: 18px;
    color: var(--primary);
}

/* Hover */
.custom-nav:hover {
    background: var(--primary);
}

.custom-nav:hover::after {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .swiper-button-prev.custom-nav {
        left: 0px;
    }

    /* Right Button */
    .swiper-button-next.custom-nav {
        right: 0px;
    }
}

/* on small screens bring them a little closer */
@media (max-width: 768px) {
    .swiper-button-prev.custom-nav {
        left: -8px;
        top: 40%;
        transform: translateY(-40%);
    }
    .swiper-button-next.custom-nav {
        right: -8px;
        top: 40%;
        transform: translateY(-40%);
    }
    .custom-nav {
        width: 40px;
        height: 40px;
    }
}

/* ---------- FAQ ---------- */
.faq-wrapper {
    max-width: 920px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    font-weight: 700;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text);
}
.faq-question .arrow {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}
.faq-answer {
    padding: 0 18px 18px 18px;
    color: var(--subtext);
    display: none;
    line-height: 1.6;
}

/* opened state */
.faq-item.open .faq-answer {
    display: block;
}
.faq-item.open .faq-question .arrow {
    transform: rotate(45deg);
}

/* ---------- Contact Promo ---------- */
.promo-box {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 12px 40px rgba(20, 40, 80, 0.18);
}
.promo-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
}

.promo-box .btn:hover {
    color: var(--text);
}
.promo-box .btn {
    background-color: inherit;
    color: var(--text);
}

/* ---------- Featured / Partners ---------- */
.featured-logo {
    height: 44px;
    margin: 12px 22px;
    opacity: 0.9;
    filter: grayscale(0.07);
}
@media (max-width: 768px) {
    .testimonial-card {
        padding: 22px;
    }
    .featured-logo {
        height: 36px;
        margin: 10px 12px;
    }
}

/* small utility */
.section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text);
}
.section-subtitle {
    color: var(--subtext);
    margin-top: 6px;
}

/* ---------------------- */
/* Footer Section           */
/* ---------------------- */

.footer-section {
    background: var(--input-bg);
    color: var(--text);
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 150.14px;
    height: auto;
    margin-left: -10px;
}

.footer-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.footer-social a:hover {
    color: none;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    display: flex;
    align-items: center;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    color: var(--text);
}

.footer-contact i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.1rem;
}

.footer-divider {
    margin: 2rem 0 1rem;
    border-top: 1px solid var(--subtext);
}

.footer-copy {
    color: var(--subtext);
    font-size: 0.9rem;
}

.contact-info .info-card {
    background: var(--input-bg);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.contact-info .icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
    color: var(--primary);
}

/* FAQ Sidebar & Layout */
.faq-sidebar {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 18px;
}
.faq-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.faq-category-list li {
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 600;
    transition: background 0.18s, color 0.18s, transform 0.12s;
}
.faq-category-list li:hover {
    background: var(--primary-light);
    transform: translateX(4px);
}
.faq-category-list li.active {
    background: var(--primary);
    color: #fff;
}

/* Groups */
.faq-group {
    display: block;
}
.faq-group.hidden {
    display: none !important;
}

/* FAQ item / accordion */
.faq-item {
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    background: transparent;
    border: none;
    text-align: left;
    font-weight: 700;
    cursor: pointer;
    color: var(--text);
}
.faq-question i {
    margin-left: 8px;
    color: var(--primary);
    transition: transform 0.18s ease;
}
.faq-answer {
    display: none;
    padding: 12px 16px 18px 16px;
    color: var(--subtext);
    line-height: 1.6;
}

/* Open state */
.faq-item.open .faq-answer {
    display: block;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

/* Search input */
.faq-search {
    max-width: 720px;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--input-bg);
}

/* Highlight matched text (simple) */
.faq-hit {
    background: rgba(46, 181, 138, 0.12);
    padding: 0 4px;
    border-radius: 3px;
}

/* No results */
.faq-no-results {
    text-align: center;
    color: var(--subtext);
    padding: 18px 0;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .faq-sidebar {
        margin-bottom: 18px;
    }
}

/* ===========================
   ABOUT HERO SECTION
=========================== */

.about-hero-section {
    background: var(--input-bg);
}

.about-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero-section h2 {
    color: var(--text);
    line-height: 1.2;
}

.about-hero-section .lead {
    color: var(--subtext);
    max-width: 520px;
}

/* Hero image */
.hero-about {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: block;
    margin-left: auto;
}

/* ===========================
   ABOUT STORY SECTION
=========================== */

.about-story-section h3 {
    color: var(--text);
}

.about-story-section p {
    color: var(--subtext);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* Story image */
.story-img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* ===========================
   RESPONSIVE TWEAKS
=========================== */

@media (max-width: 991px) {
    .hero-about {
        margin: 0 auto;
        max-width: 420px;
    }

    .about-hero-section h2 {
        font-size: 2rem;
    }

    .about-story-section {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .about-hero-section h2 {
        font-size: 1.75rem;
    }

    .about-hero-section .lead {
        font-size: 1rem;
    }
}

/* Therapy image cards */
.therapy-image-card {
    background: var(--input-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.therapy-image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.therapy-image-card .content {
    padding: 18px;
}

.therapy-image-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.therapy-image-card p {
    color: var(--subtext);
    font-size: 0.95rem;
}

.therapy-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

/* Therapy service cards */
.therapy-service-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 26px 20px;
    text-align: center;
    border: 1px solid var(--border);
    height: 100%;
    transition: 0.3s ease;
}

.therapy-service-card i {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 14px;
}

.therapy-service-card h6 {
    font-weight: 700;
    margin-bottom: 10px;
}

.therapy-service-card p {
    font-size: 0.95rem;
    color: var(--subtext);
}

.therapy-service-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}

/* Therapy approach */
.therapy-points {
    list-style: none;
    padding: 0;
}

.therapy-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
}

.therapy-points i {
    color: var(--primary);
}

/* Services Hero */
.services-hero .hero-subtext {
    max-width: 640px;
    color: var(--subtext);
}

/* Service Cards */
.service-box {
    background: var(--bg);
    border-radius: 18px;
    padding: 26px 22px;
    border: 1px solid var(--border);
    height: 100%;
    transition: 0.3s ease;
}

.service-box i {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 14px;
}

.service-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-box p {
    color: var(--subtext);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.service-box ul {
    padding-left: 18px;
    margin: 0;
}

.service-box ul li {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text);
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

/* CTA */
.services-cta {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
}

/* Booking Section */
.booking-section {
    background: transparent;
}

.booking-card {
    max-width: 820px;
    background: var(--bg);
    border-radius: 22px;
    padding: 40px 32px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.booking-card .form-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.booking-card .form-control {
    border-radius: 8px;
    padding: 12px 14px;
    background: var(--input-bg);
}

.booking-card .form-control::placeholder {
    color: var(--subtext);
}

.booking-card textarea {
    resize: none;
}

.booking-card button {
    border-radius: 8px;
}

.booking-card .form-select {
    border-radius: 8px;
    padding: 12px 14px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    color: var(--text);
}

/* Form Alerts */
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    margin-bottom: 18px;
    border: 1px solid transparent;
}

.form-alert i {
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Success */
.alert-success {
    background: rgba(46, 181, 138, 0.12);
    border-color: rgba(46, 181, 138, 0.35);
    color: var(--primary-dark);
}

/* Danger */
.alert-danger {
    background: rgba(220, 53, 69, 0.12);
    border-color: rgba(220, 53, 69, 0.35);
    color: #b02a37;
}
