/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2d4a86;
    --primary-blue-hover: #223a6c;
    --primary-blue-light: #eff4fb;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --topbar-bg: #2d4a86;
    --topbar-text: #ffffff;
    --border-color: #e2e8f0;
    --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: #f8fafc;
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--topbar-bg);
    color: var(--topbar-text);
    font-size: 0.84rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
}

.top-bar-item .icon {
    width: 15px;
    height: 15px;
    stroke-width: 2.2;
    flex-shrink: 0;
    opacity: 0.9;
}

.top-bar-contacts {
    display: flex;
    align-items: center;
    gap: 28px;
}

.contact-link {
    transition: var(--transition);
}

.contact-link:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-1px);
}

.main-navbar {
    background-color: var(--white);
    padding: 12px 0;
    position: relative;
    z-index: 1001;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 58px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.brand-logo:hover .logo-img {
    transform: scale(1.02);
}

/* Desktop Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.25s ease-in-out;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-blue);
}

/* CTA Button */
.btn-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 11px 26px;
    border-radius: 9999px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(45, 74, 134, 0.22);
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-appointment:hover {
    background-color: var(--primary-blue-hover);
    box-shadow: 0 6px 18px rgba(45, 74, 134, 0.32);
    transform: translateY(-1px);
}

.btn-appointment:active {
    transform: translateY(0);
}

/* --- Hamburger Toggle Button --- */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    z-index: 1002;
    transition: background-color 0.2s ease;
}

.hamburger-btn:hover {
    background-color: var(--primary-blue-light);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    margin: 2.5px 0;
    background-color: var(--primary-blue);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hamburger Active (X Shape) */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Mobile Drawer Menu --- */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-link {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-link:hover,
.mobile-link.active {
    background-color: var(--primary-blue-light);
    color: var(--primary-blue);
}

.mobile-menu-action {
    padding-top: 6px;
}

.btn-appointment.mobile-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
}

/* Mobile Drawer Contact Info */
.mobile-contact-info {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mobile-contact-item .icon {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.mobile-contact-item:hover {
    color: var(--primary-blue);
}

/* Backdrop Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.open {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   Hero Section (Overflowing Portrait Layout)
   ========================================================================== */
.page-content {
    min-height: calc(100vh - 120px);
    padding: 0 0 60px;
    display: flex;
    flex-direction: column;
}

.hero-section {
    position: relative;
    padding-top: 75px; /* Creates top whitespace so portrait can overflow upward */
    padding-bottom: 20px;
    width: 100%;
}

.hero-wrapper {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.hero-bg-banner {
    position: relative;
    background: linear-gradient(135deg, #e4eef9 0%, #d2e4f7 35%, #e6f1fb 70%, #f3f8fe 100%);
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(45, 74, 134, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.85);
    overflow: visible; /* Allows image to pop out / overflow */
    min-height: 380px;
    display: flex;
    align-items: center;
}

/* Blurred Bokeh Highlights */
.bokeh-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(45px);
    pointer-events: none;
    z-index: 1;
}

.bokeh-1 {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.95);
    top: 5%;
    left: 38%;
}

.bokeh-2 {
    width: 320px;
    height: 320px;
    background: rgba(195, 220, 248, 0.55);
    bottom: -15%;
    right: 5%;
}

.bokeh-3 {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.8);
    top: 20%;
    right: 32%;
}

.hero-container {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 50px;
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 380px;
    padding-top: 0;
    padding-bottom: 0;
}

/* Portrait Overflowing Container */
.hero-image-wrapper {
    flex-shrink: 0;
    width: 360px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-left: 20px;
}

.hero-person-img {
    height: 485px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
    margin-top: -105px; /* Extends head & shoulders above the banner */
    display: block;
    filter: drop-shadow(0 18px 30px rgba(25, 45, 85, 0.14));
    transition: transform 0.3s ease;
    z-index: 3;
}

.hero-image-wrapper:hover .hero-person-img {
    transform: translateY(-4px) scale(1.01);
}

/* Hero Typography & CTA */
.hero-text-content {
    flex: 1;
    max-width: 650px;
    padding: 40px 0 40px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}

.hero-subtitle {
    font-family: var(--font-family);
    font-size: 1.35rem;
    font-weight: 600;
    color: #385074;
    letter-spacing: -0.2px;
    margin-bottom: 6px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: #0d1b2e;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 1.05rem;
    color: #4a6382;
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 13px 32px;
    border-radius: 9999px;
    box-shadow: 0 6px 20px rgba(45, 74, 134, 0.28);
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-hero-primary:hover {
    background-color: var(--primary-blue-hover);
    box-shadow: 0 8px 24px rgba(45, 74, 134, 0.38);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--primary-blue);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 9999px;
    border: 1px solid rgba(45, 74, 134, 0.25);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background-color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(45, 74, 134, 0.12);
    transform: translateY(-2px);
}

/* ==========================================================================
   Process Section (4 Steps)
   ========================================================================== */
.process-section {
    padding: 70px 0 90px;
    background-color: #f8fafc;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-title {
    font-family: var(--font-family);
    font-size: 2.35rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: #fbf7f4;
    border-radius: 22px;
    padding: 38px 28px;
    border: 1px solid rgba(230, 218, 206, 0.6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: rgba(45, 74, 134, 0.2);
    box-shadow: 0 16px 36px rgba(45, 74, 134, 0.09);
}

.process-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.process-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    min-width: 24px;
}

.process-card-title {
    font-family: var(--font-family);
    font-size: 1.12rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.process-card-desc {
    font-size: 0.92rem;
    color: #556987;
    line-height: 1.68;
    margin: 0;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
    position: relative;
}

.why-us-header {
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle-tag {
    font-size: 0.82rem;
    font-weight: 700;
    color: #d97706;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.title-wave-line {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.why-us-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: center;
}

/* Left Brand Box */
.why-us-left {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 38px 30px;
    box-shadow: 0 10px 30px rgba(45, 74, 134, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-us-brand {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.why-us-logo {
    height: 54px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.why-us-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.why-us-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Right Feature Grid (6 Items) */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 36px;
}

.why-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    border-radius: 18px;
    background: #fbfcfe;
    border: 1px solid #edf2f7;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-feature-item:hover {
    background: #ffffff;
    border-color: rgba(217, 119, 6, 0.3);
    transform: translateY(-3px) translateX(4px);
    box-shadow: 0 12px 28px rgba(45, 74, 134, 0.08);
}

.feature-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(217, 119, 6, 0.09);
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.28s ease;
}

.why-feature-item:hover .feature-icon-box {
    background: #d97706;
    color: #ffffff;
    transform: scale(1.08) rotate(3deg);
}

.feature-svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.2;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.2px;
}

/* ==========================================================================
   Therapies Slider Section
   ========================================================================== */
.therapies-section {
    padding: 70px 0 90px;
    background-color: #f8fafc;
    position: relative;
}

.therapies-header {
    text-align: center;
    margin-bottom: 44px;
}

.title-divider-line {
    width: 60px;
    height: 3px;
    background-color: #cbd5e1;
    border-radius: 3px;
    margin: 14px auto 0;
}

.therapies-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.slider-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    position: absolute;
    z-index: 10;
    cursor: pointer;
    transition: all 0.25s ease;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.slider-arrow:hover {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(45, 74, 134, 0.28);
}

.prev-arrow {
    left: -23px;
}

.next-arrow {
    right: -23px;
}

.therapies-slider-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 4px;
    width: 100%;
    scroll-behavior: smooth;
}

.therapies-slider-track::-webkit-scrollbar {
    display: none;
}

.therapy-card {
    flex: 0 0 calc((100% - 56px) / 3);
    scroll-snap-align: start;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.therapy-card:hover {
    transform: translateY(-4px);
}

.therapy-card-img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #e2e8f0;
}

.therapy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.therapy-card:hover .therapy-img {
    transform: scale(1.05);
}

.therapy-card-title {
    font-family: var(--font-family);
    font-size: 1.15rem;
    font-weight: 700;
    color: #334155;
    transition: color 0.25s ease;
    margin: 0;
}

.therapy-card:hover .therapy-card-title {
    color: var(--primary-blue);
}

/* Slider Pagination Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.slider-dot.active {
    width: 30px;
    background-color: var(--primary-blue);
    border-radius: 999px;
}

.slider-dot:hover:not(.active) {
    background-color: #94a3b8;
}

.therapies-slider-track,
.reviews-slider-track {
    cursor: grab;
    user-select: none;
}

.therapies-slider-track.grabbing,
.reviews-slider-track.grabbing {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* ==========================================================================
   Google Reviews / Testimonials Section
   ========================================================================== */
.reviews-section {
    padding: 70px 0 85px;
    background: #faf6f2;
    position: relative;
    border-top: 1px solid #f1eae2;
}

.reviews-slider-wrapper {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.reviews-arrow {
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.reviews-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 16px 4px;
    width: 100%;
    scroll-behavior: smooth;
}

.reviews-slider-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0ebe4;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(45, 74, 134, 0.08);
    border-color: rgba(45, 74, 134, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.avatar-blue { background-color: #1a73e8; }
.avatar-green { background-color: #1e8e3e; }
.avatar-orange { background-color: #e8710a; }
.avatar-purple { background-color: #9334e6; }

.reviewer-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-family: var(--font-family);
    font-size: 0.96rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.review-date {
    font-size: 0.76rem;
    color: #94a3b8;
    margin-top: 3px;
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.verified-icon {
    display: inline-block;
    flex-shrink: 0;
}

.review-text {
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.6;
    margin: 0;
}

.google-rating-summary {
    text-align: center;
    margin-top: 32px;
    padding-top: 6px;
}

.google-summary-text {
    font-size: 0.94rem;
    color: #475569;
}

.google-summary-text strong {
    color: #0f172a;
    font-weight: 700;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-section {
    padding: 85px 0 100px;
    background: #ffffff;
    position: relative;
    border-top: 1px solid #f1f5f9;
}

.blog-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.blog-main-title {
    font-family: var(--font-family);
    font-size: 2.4rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.5px;
    margin: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #ffffff;
    border: 1.5px solid #dbeafe;
    border-radius: 20px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 18px rgba(30, 58, 138, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(45, 74, 134, 0.1);
    border-color: #bfdbfe;
}

.blog-img-box {
    width: 200px;
    height: 135px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.06);
}

.blog-content {
    border-left: 2px solid #bfdbfe;
    padding-left: 18px;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    min-height: 125px;
    gap: 14px;
}

.blog-title {
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-title {
    color: #1d4ed8;
}

.blog-arrow-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #e8710a;
    border-radius: 9px;
    color: #e8710a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    align-self: flex-start;
    text-decoration: none;
    background: transparent;
}

.blog-arrow-btn:hover {
    background-color: #e8710a;
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(232, 113, 10, 0.3);
}

.blog-bottom-action {
    text-align: center;
    margin-top: 48px;
}

.btn-outline-blog {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1.5px solid #2d4a86;
    color: #2d4a86;
    background: transparent;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 12px 36px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-blog:hover {
    background-color: #2d4a86;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(45, 74, 134, 0.25);
    transform: translateY(-2px);
}

/* ==========================================================================
   Blog Detail Page Styles
   ========================================================================== */
.blog-detail-hero {
    background: #fbf7f4;
    padding: 45px 0 35px;
    border-bottom: 1px solid #f1eae2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #94a3b8;
}

.blog-category-badge {
    display: inline-block;
    background-color: rgba(45, 74, 134, 0.1);
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    letter-spacing: 0.4px;
}

.blog-detail-title {
    font-family: var(--font-serif);
    font-size: 2.7rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.22;
    margin-bottom: 22px;
    max-width: 900px;
}

.blog-meta-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.88rem;
    color: #64748b;
    flex-wrap: wrap;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-author-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.meta-author-name {
    font-weight: 700;
    color: #1e293b;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding: 50px 0 85px;
    align-items: start;
}

.blog-featured-img-box {
    width: 100%;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    background: #e2e8f0;
}

.blog-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-article-body {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.82;
}

.blog-article-body .blog-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.75;
    margin-bottom: 26px;
}

.blog-article-body h2 {
    font-family: var(--font-family);
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f172a;
    margin: 38px 0 16px;
    line-height: 1.3;
}

.blog-article-body h3 {
    font-family: var(--font-family);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 28px 0 14px;
}

.blog-article-body p {
    margin-bottom: 20px;
}

.blog-article-body ul,
.blog-article-body ol {
    margin-bottom: 26px;
    padding-left: 26px;
}

.blog-article-body li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.blog-quote-box {
    background: #f0f7ff;
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 16px 16px 0;
    padding: 24px 28px;
    margin: 32px 0;
}

.blog-quote-box p {
    font-size: 1.08rem;
    font-weight: 600;
    color: #1e3a8a;
    font-style: italic;
    margin: 0;
    line-height: 1.65;
}

.blog-tags-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 40px 0 30px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.blog-tags-label {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.92rem;
}

.blog-tag-pill {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-tag-pill:hover {
    background: var(--primary-blue);
    color: #ffffff;
}

/* Author Box */
.author-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 40px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.author-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #e2ecf8;
}

.author-card-info {
    flex: 1;
}

.author-card-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px;
}

.author-card-title {
    font-size: 0.88rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.author-card-bio {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

/* Post Navigation (Prev / Next) */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.post-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.post-nav-btn:hover {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.sidebar-widget-title {
    font-family: var(--font-family);
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.sidebar-cta-widget {
    background: linear-gradient(135deg, #1e3a8a 0%, #2d4a86 100%);
    color: #ffffff;
    border: none;
}

.sidebar-cta-widget .sidebar-widget-title {
    color: #ffffff;
}

.sidebar-cta-widget .sidebar-widget-title::after {
    background: #e8710a;
}

.sidebar-cta-text {
    font-size: 0.94rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 22px;
}

.btn-sidebar-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #ffffff;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.btn-sidebar-cta:hover {
    background: #e8710a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Sidebar Recent Posts */
.sidebar-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-post-item {
    display: flex;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    group: hover;
}

.sidebar-post-thumb {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f1f5f9;
}

.sidebar-post-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-post-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    margin: 0;
    transition: color 0.2s ease;
}

.sidebar-post-item:hover .sidebar-post-title {
    color: var(--primary-blue);
}

.sidebar-post-date {
    font-size: 0.76rem;
    color: #94a3b8;
}

/* ==========================================================================
   Contact & Appointment Section
   ========================================================================== */
.contact-section {
    padding: 85px 0 105px;
    background: #fbf7f4;
    position: relative;
    border-top: 1px solid #f1eae2;
}

.contact-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 45px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-cards-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #f0ebe4;
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(45, 74, 134, 0.08);
    border-color: rgba(45, 74, 134, 0.2);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(45, 74, 134, 0.08);
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-box {
    background: var(--primary-blue);
    color: #ffffff;
}

.contact-card-info {
    display: flex;
    flex-direction: column;
}

.contact-card-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 3px;
    display: block;
}

.contact-card-value {
    font-size: 1.02rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.whatsapp-card {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 20px;
    padding: 26px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.25);
}

.whatsapp-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 4px;
    color: #ffffff;
}

.whatsapp-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.5;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #128c7e;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 13px 26px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    background: #f0fdf4;
}

/* Contact Form Column */
.form-wrapper-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 38px 34px;
    border: 1px solid #f0ebe4;
    box-shadow: 0 12px 36px rgba(45, 74, 134, 0.06);
}

.form-header {
    margin-bottom: 26px;
}

.form-title {
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
}

.form-subtitle {
    font-size: 0.92rem;
    color: #64748b;
    margin: 0;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}

.required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid #cbd5e1;
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.25s ease;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(45, 74, 134, 0.1);
}

.form-select {
    cursor: pointer;
}

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

.session-format-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.format-pill input {
    display: none;
}

.format-pill .pill-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.format-pill input:checked + .pill-badge {
    background: rgba(45, 74, 134, 0.1);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 700;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0 24px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.5;
    cursor: pointer;
}

.kvkk-link {
    color: var(--primary-blue);
    text-decoration: underline;
}

.btn-submit-appointment {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-blue);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    padding: 15px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 22px rgba(45, 74, 134, 0.3);
}

.btn-submit-appointment:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(45, 74, 134, 0.4);
}

.form-success-alert {
    display: none;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 14px;
    padding: 18px;
    margin-top: 20px;
    align-items: center;
    gap: 14px;
}

.form-success-alert.show {
    display: flex;
}

.form-success-alert h4 {
    margin: 0 0 4px;
    color: #15803d;
    font-size: 1.05rem;
    font-weight: 700;
}

.form-success-alert p {
    margin: 0;
    color: #166534;
    font-size: 0.9rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Complete Site Footer Styles
   ========================================================================== */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 70px 0 30px;
    border-top: 1px solid #1e293b;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
    gap: 45px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    max-width: 200px;
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1e293b;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #1e293b;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.88rem;
    color: #64748b;
}

.footer-bottom-flex p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-legal-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #94a3b8;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Tablet landscape & small desktop (<= 1100px) */
@media screen and (max-width: 1100px) {
    .hero-container {
        gap: 30px;
    }

    .hero-image-wrapper {
        width: 320px;
        margin-left: 10px;
    }

    .hero-person-img {
        height: 440px;
        margin-top: -85px;
    }

    .hero-title {
        font-size: 3.4rem;
    }
}

/* Tablet (<= 992px) */
@media screen and (max-width: 992px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-section {
        padding-top: 60px;
    }

    .hero-bg-banner {
        border-radius: 20px;
    }

    .hero-container {
        gap: 20px;
    }

    .hero-image-wrapper {
        width: 290px;
    }

    .hero-person-img {
        height: 400px;
        margin-top: -75px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* Process Section Tablet */
    .process-section {
        padding: 50px 0 70px;
    }

    .section-title {
        font-size: 2rem;
    }

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

    /* Why Us Tablet */
    .why-us-section {
        padding: 60px 0 80px;
    }

    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-left {
        max-width: 100%;
        padding: 32px 24px;
    }

    .why-us-grid {
        gap: 20px;
    }

    /* Therapies Tablet */
    .therapy-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .prev-arrow {
        left: -14px;
    }

    .next-arrow {
        right: -14px;
    }

    /* Reviews Tablet */
    .review-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    /* Blog Tablet */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Blog Detail & Footer Tablet */
    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Contact Tablet */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tablet portrait & Mobile (<= 768px) */
@media screen and (max-width: 768px) {
    .main-navbar {
        padding: 10px 0;
    }

    .top-bar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .top-bar-contacts {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-bar-item {
        font-size: 0.78rem;
    }

    .logo-img {
        height: 52px;
        max-width: 220px;
    }

    /* Stack Hero on Mobile */
    .hero-section {
        padding-top: 50px;
    }

    .hero-wrapper {
        padding: 0 16px;
    }

    .hero-bg-banner {
        min-height: auto;
        border-radius: 18px;
    }

    .hero-container {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 0;
        min-height: auto;
    }

    .hero-text-content {
        padding: 36px 16px 20px;
        align-items: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.7rem;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: 0.98rem;
        margin-bottom: 24px;
    }

    .hero-cta-group {
        justify-content: center;
        width: 100%;
    }

    .hero-image-wrapper {
        width: 100%;
        max-width: 320px;
        margin-left: 0;
        margin-top: 10px;
    }

    .hero-person-img {
        height: 380px;
        margin-top: 0;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .section-header {
        margin-bottom: 36px;
    }
}

/* Small mobile devices (<= 640px) */
@media screen and (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    /* Why Us Mobile */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-us-left {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .why-feature-item {
        padding: 14px 16px;
        border-radius: 14px;
        gap: 14px;
    }

    .feature-icon-box {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .feature-svg {
        width: 24px;
        height: 24px;
    }

    .feature-title {
        font-size: 0.98rem;
    }

    /* Therapies Mobile */
    .therapies-section {
        padding: 50px 0 70px;
    }

    .therapy-card {
        flex: 0 0 85%;
    }

    .therapy-card-title {
        font-size: 1.05rem;
    }

    /* Reviews Mobile */
    .reviews-section {
        padding: 50px 0 65px;
    }

    .review-card {
        flex: 0 0 85%;
        padding: 20px 16px;
    }

    .reviews-arrow {
        display: none;
    }

    /* Blog Mobile */
    .blog-section {
        padding: 55px 0 70px;
    }

    .blog-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 14px;
    }

    .blog-img-box {
        width: 100%;
        height: 190px;
    }

    .blog-content {
        border-left: none;
        padding-left: 0;
        padding-right: 0;
        min-height: auto;
        width: 100%;
        gap: 12px;
    }

    /* Blog Detail Mobile */
    .blog-detail-title {
        font-size: 2rem;
    }

    .blog-featured-img-box {
        height: 250px;
        border-radius: 16px;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .post-navigation {
        flex-direction: column;
        gap: 12px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Contact Mobile */
    .contact-section {
        padding: 55px 0 75px;
    }

    .form-wrapper-card {
        padding: 26px 18px;
        border-radius: 20px;
    }

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

    .session-format-group {
        flex-direction: column;
    }

    .format-pill .pill-badge {
        width: 100%;
        text-align: center;
    }

    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Small mobile devices (<= 480px) */
@media screen and (max-width: 480px) {
    .main-navbar {
        padding: 8px 0;
    }

    .top-bar {
        font-size: 0.75rem;
        padding: 6px 0;
    }

    .top-bar-container {
        gap: 4px;
    }

    .top-bar-item.location {
        display: none;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .logo-img {
        height: 48px;
        max-width: 210px;
    }

    .hamburger-btn {
        width: 42px;
        height: 42px;
        padding: 8px;
    }

    .mobile-menu-inner {
        padding: 18px 16px;
    }

    .hero-section {
        padding-top: 40px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-person-img {
        height: 330px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 290px;
    }

    .section-title {
        font-size: 1.55rem;
    }
}
