/*
Theme Name: ODDO Clinic
Theme URI: https://oddoclinic.com
Author: ODDO Clinic
Author URI: https://oddoclinic.com
Description: Premium WordPress theme for ODDO Clinic — Health Tourism Agency, Izmir, Turkey.
Version: 4.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: oddo-clinic
*/

:root {
    --green-primary: #8dc63f;
    --green-dark: #3f693a;
    --green-gradient-start: #8dc63f;
    --green-gradient-end: #225122;
    --gradient-main: linear-gradient(230deg, #8dc63f 11%, #225122 89%);
    --gradient-banner: linear-gradient(120deg, #8dc63f 0%, #225122 82%);
    --bg-white: #ffffff;
    --bg-light: #fcfcfc;
    --bg-lighter: #fbfbfb;
    --bg-green-tint: #f4faea;
    --bg-dark-footer: #565656;
    --bg-darkest: #3a3a3a;
    --text-body: #1e1e1e;
    --text-muted: #54595f;
    --text-white: #ffffff;
    --text-green: #8dc63f;
    --text-dark-green: #3f693a;
    --border-light: #eeeeee;
    --border-green: #8dc63f;
    --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-card-hover: 0 8px 32px rgba(141,198,63,0.2);
    --shadow-green-btn: 0 6px 20px rgba(63,105,58,0.35);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-pill: 50px;
    --transition: all 0.3s ease;
    --font-body: 'Poppins', sans-serif;
    --max-w: 1280px;
    --header-h: 76px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body); font-size: 15px; font-weight: 400; line-height: 1.75;
    color: var(--text-body); background: var(--bg-white);
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-primary); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--green-dark); }
ul, ol { list-style: none; }

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--text-dark-green); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; color: var(--text-green); line-height: 1.25; }
h3 { font-size: 1.15rem; font-weight: 600; color: var(--text-body); }
h4 { font-size: 1rem; font-weight: 600; color: var(--text-body); }
p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 90px 0; }

/* ─── EYEBROW ─── */
.section-eyebrow {
    display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--green-primary); margin-bottom: 10px;
}
.section-header { text-align: center; margin-bottom: 50px; max-width: 660px; margin-left: auto; margin-right: auto; }
.section-header p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-top: 12px; }
.section-title { color: var(--green-primary) !important; }
.gold-line { display: block; width: 50px; height: 3px; background: var(--gradient-main); margin: 14px auto 0; border-radius: 2px; }

.oddo-breadcrumbs {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}
.oddo-breadcrumbs ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.oddo-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
}
.oddo-breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: #b8b8b8;
}
.oddo-breadcrumbs a { color: var(--green-dark); }
.oddo-breadcrumbs a:hover { color: var(--green-primary); }
.oddo-breadcrumbs span[aria-current="page"] { color: var(--text-muted); }

/* WordPress alignment */
.alignwide { margin-left: -80px; margin-right: -80px; max-width: calc(100% + 160px); }
.alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); max-width: 100vw; }
.wp-block-embed { margin: 2rem 0; }

/* ─── BUTTONS ─── */
.btn-primary {
    background: var(--gradient-main); color: #fff; padding: 14px 30px; border-radius: var(--radius-pill);
    font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: var(--shadow-green-btn); transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(63,105,58,0.4); color: #fff; }

.btn-outline {
    background: transparent; color: var(--green-dark); padding: 13px 28px; border-radius: var(--radius-pill);
    font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; border: 2px solid var(--green-primary);
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
}
.btn-outline:hover { background: var(--green-primary); color: #fff; }

.btn-white {
    background: rgba(255,255,255,0.15); color: #fff; padding: 13px 32px; border-radius: var(--radius-pill);
    font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; border: 2px solid rgba(255,255,255,0.6);
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    backdrop-filter: blur(4px); transition: var(--transition);
}
.btn-white:hover { background: rgba(255,255,255,0.25); color: #fff; }

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════ */
.site-topbar { background: var(--bg-green-tint); border-bottom: 1px solid #e5f3d0; padding: 8px 0; font-size: 0.8rem; }
.site-topbar .container { display: flex; align-items: center; justify-content: space-between; }
.topbar-left { display: flex; align-items: center; gap: 8px; }
.topbar-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%; background: var(--green-primary);
    color: #fff; margin-right: 6px; font-size: 0.8rem; transition: var(--transition);
}
.topbar-social a:hover { background: var(--green-dark); transform: scale(1.1); }
.topbar-right { display: flex; align-items: center; gap: 16px; font-weight: 500; color: var(--text-dark-green); }
.topbar-phone { font-weight: 600; color: var(--green-dark); display: flex; align-items: center; gap: 4px; }
.topbar-phone svg { color: var(--green-primary); }
.lang-switcher { display: flex; gap: 6px; align-items: center; cursor: pointer; }
.lang-switcher img { width: 24px; height: 16px; border-radius: 2px; opacity: 0.7; transition: var(--transition); }
.lang-switcher img:hover, .lang-switcher img.active { opacity: 1; }

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
    background: #fff; position: sticky; top: 0; z-index: 1000; padding: 0;
    border-bottom: 2px solid var(--green-primary); transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

/* Logo */
.site-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.site-logo img.custom-logo { max-height: 60px; width: auto; display: block; }
.site-logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.site-logo .logo-oddo { font-size: 1.8rem; font-weight: 800; color: var(--green-dark); letter-spacing: -1px; }
.site-logo .logo-clinic { font-size: 0.58rem; font-weight: 600; letter-spacing: 4px; color: var(--green-primary); text-transform: uppercase; }

/* Nav */
.primary-nav ul { display: flex; gap: 0; list-style: none; margin: 0; padding: 0; }
.primary-nav ul li a {
    display: block; padding: 10px 16px; font-size: 0.85rem; font-weight: 500;
    color: var(--text-body); text-decoration: none; position: relative; transition: color 0.25s;
}
.primary-nav ul li a::after {
    content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
    height: 2px; background: var(--green-primary); transform: scaleX(0); transform-origin: center; transition: transform 0.3s ease;
}
.primary-nav ul li a:hover, .primary-nav ul li.current-menu-item > a { color: var(--green-primary); }
.primary-nav ul li a:hover::after, .primary-nav ul li.current-menu-item > a::after { transform: scaleX(1); }

/* Dropdown */
.primary-nav ul li.menu-item-has-children { position: relative; }
.primary-nav ul .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 245px;
    padding: 4px 0;
    background: var(--green-primary);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 0;
    box-shadow: 0 12px 26px rgba(0,0,0,0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 100;
}
.primary-nav ul .sub-menu .sub-menu {
    top: -4px;
    left: 100%;
    min-width: 210px;
    transform: translateX(8px);
}
.primary-nav ul li.menu-item-has-children:hover > .sub-menu,
.primary-nav ul li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.primary-nav ul .sub-menu li.menu-item-has-children:hover > .sub-menu,
.primary-nav ul .sub-menu li.menu-item-has-children:focus-within > .sub-menu {
    transform: translateX(0);
}
.primary-nav ul .sub-menu li { position: relative; }
.primary-nav ul .sub-menu a {
    padding: 11px 20px;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.25;
    color: #fff;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.55);
}
.primary-nav ul .sub-menu li:last-child > a { border-bottom: 0; }
.primary-nav ul .sub-menu a:hover,
.primary-nav ul .sub-menu li.current-menu-item > a,
.primary-nav ul .sub-menu li.menu-item-has-children:hover > a,
.primary-nav ul .sub-menu li.menu-item-has-children:focus-within > a {
    background: #fff;
    color: var(--green-primary);
}
.primary-nav ul .sub-menu a::after { display: none; }

.header-cta {
    background: var(--green-primary); color: #fff !important; padding: 10px 22px !important;
    border-radius: var(--radius-pill) !important; font-weight: 600 !important; font-size: 0.82rem !important;
    white-space: nowrap; box-shadow: var(--shadow-green-btn); transition: var(--transition) !important;
    display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
}
.header-cta:hover { background: var(--green-dark) !important; color: #fff !important; transform: translateY(-1px); }
.header-cta::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-body); margin: 5px 0; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu-overlay {
    position: fixed; inset: 0; background: rgba(63,105,58,0.97); z-index: 999;
    display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-overlay nav { text-align: center; overflow-y: auto; max-height: 65vh; margin-bottom: 2rem; }
.mobile-menu-overlay ul { display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-menu-overlay li { position: relative; }
.mobile-menu-overlay ul a { font-size: 1.3rem; color: #fff; font-weight: 500; transition: color 0.2s; }
.mobile-menu-overlay ul a:hover { color: var(--green-primary); }
.mobile-menu-overlay .menu-item-has-children {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 10px;
    width: min(320px, 82vw);
}
.mobile-menu-overlay .menu-item-has-children > a {
    justify-self: center;
    grid-column: 1 / 3;
    grid-row: 1;
}
.mobile-submenu-toggle {
    width: 30px;
    height: 30px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.mobile-submenu-toggle span {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-1px, -1px);
    transition: var(--transition);
}
.mobile-menu-overlay .submenu-open > .mobile-submenu-toggle span {
    transform: rotate(225deg) translate(-1px, -1px);
}
.mobile-menu-overlay ul .sub-menu {
    grid-column: 1 / 3;
    padding: 0; margin: 0;
    list-style: none;
    display: none;
    flex-direction: column;
    flex-basis: 100%;
    width: 100%;
    box-sizing: border-box;
    gap: 0;
}
.mobile-menu-overlay ul .submenu-open > .sub-menu {
    display: flex;
    margin-top: 10px;
}
.mobile-menu-overlay ul .sub-menu li {
    display: list-item;
    list-style: none;
    flex: none;
    width: 100%;
}
.mobile-menu-overlay ul .sub-menu a {
    font-size: 1rem; opacity: 0.75; display: block; padding: 8px 0;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero-section {
    background: var(--bg-white); padding: 70px 40px 80px;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
    max-width: var(--max-w); margin: 0 auto;
}
.hero-left .eyebrow { color: var(--green-primary); }
.hero-left h1 { margin: 12px 0 20px; }
.hero-left p { font-size: 1rem; max-width: 500px; margin-bottom: 32px; }
.hero-right { display: flex; flex-direction: column; justify-content: center; }

.hero-stats {
    display: flex; gap: 32px; margin-bottom: 36px; padding: 20px 0;
    border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.stat-item .stat-number { font-size: 1.8rem; font-weight: 800; color: var(--green-dark); display: block; line-height: 1; }
.stat-item .stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero form card */
.hero-form-card {
    background: #fff; border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1); overflow: hidden;
}
.hero-form-card .card-header {
    background: var(--gradient-main); padding: 24px 32px; color: #fff;
}
.hero-form-card .card-header h3 { color: #fff; font-size: 1.1rem; margin: 0; }
.hero-form-card .card-header p { color: rgba(255,255,255,0.85); font-size: 0.82rem; margin: 6px 0 0; }
.hero-form-card .card-body { padding: 32px; }

.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
    width: 100%; padding: 13px 16px; border: 1px solid var(--border-light);
    border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.88rem;
    color: var(--text-body); background: #fff; margin-bottom: 14px; transition: border-color 0.25s; box-sizing: border-box;
}
.hero-form-card input:focus, .hero-form-card select:focus {
    outline: none; border-color: var(--green-primary); box-shadow: 0 0 0 3px rgba(141,198,63,0.12);
}
.hero-form-card button[type="submit"] {
    width: 100%; background: var(--gradient-main); color: #fff; padding: 15px;
    border: none; border-radius: var(--radius-sm); font-family: var(--font-body);
    font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.hero-form-card button[type="submit"]:hover { opacity: 0.92; transform: translateY(-1px); }

.form-error { font-size: 0.72rem; color: #e74c3c; min-height: 0; }
.form-success { text-align: center; padding: 2rem 1rem; }
.form-success .success-icon {
    width: 52px; height: 52px; background: var(--green-primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; margin: 0 auto 1rem;
}
.form-success h4 { color: var(--text-dark-green); margin-bottom: 0.25rem; }
.form-success p { color: var(--text-muted); font-size: 0.88rem; }

/* ═══════════════════════════════════════════════════
   CTA BANNER (gradient strip)
   ═══════════════════════════════════════════════════ */
.cta-banner {
    background: var(--gradient-banner); padding: 60px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner h2 { color: #fff; font-size: 1.6rem; margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════
   TREATMENTS
   ═══════════════════════════════════════════════════ */
.treatments-section { background: var(--bg-lighter); padding: 90px 0; }
.treatments-grid { display: grid; gap: 0; }
.treatments-grid.row-3 { grid-template-columns: repeat(3, 1fr); }
.treatments-grid.row-4 { grid-template-columns: repeat(4, 1fr); margin-top: 0; }

.treatment-card {
    position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; text-decoration: none; display: block;
}
.treatment-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.treatment-card:hover img { transform: scale(1.07); }
.treatment-card .card-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(34,81,34,0.85) 0%, transparent 100%);
    color: #fff; padding: 42px 20px 18px; font-size: 0.95rem; font-weight: 600; text-align: center;
    transition: background 0.3s;
}
.treatment-card .card-label span {
    display: block; font-size: 0.68rem; font-weight: 600; line-height: 1.2;
    opacity: 0.82; text-transform: uppercase; margin-bottom: 4px;
}
.treatment-card .card-label strong { display: block; font-size: 0.98rem; line-height: 1.35; }
.treatment-card:hover .card-label { background: linear-gradient(to top, rgba(141,198,63,0.9) 0%, transparent 100%); }
.treatments-more { text-align: center; margin-top: 34px; }

.treatment-archive-hero {
    background: var(--bg-green-tint); padding: 72px 0 64px; border-bottom: 1px solid #e5f3d0;
}
.treatment-archive-hero .container { max-width: 860px; }
.treatment-archive-hero h1 { margin: 8px 0 14px; color: var(--text-dark-green); }
.treatment-archive-hero p { max-width: 680px; font-size: 1rem; }
.treatment-category-block { margin-bottom: 56px; }
.treatment-category-block:last-child { margin-bottom: 0; }
.treatment-category-head {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
    margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light);
}
.treatment-category-head p { margin-top: 6px; max-width: 680px; }
.treatment-category-link {
    color: var(--green-dark); font-size: 0.84rem; font-weight: 600; white-space: nowrap;
}
.treatment-category-link:hover { color: var(--green-primary); }
.treatment-archive-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.treatment-archive-grid .treatment-card { border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.treatment-empty {
    max-width: 620px; margin: 0 auto; padding: 56px 24px; text-align: center;
    background: var(--bg-green-tint); border-radius: var(--radius-md);
}
.treatment-empty h2 { color: var(--text-dark-green); margin-bottom: 8px; }

.single-treatment-hero { background: var(--bg-green-tint); padding: 70px 0; border-bottom: 1px solid #e5f3d0; }
.single-treatment-hero__inner {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr); gap: 48px; align-items: center;
}
.single-treatment-term {
    display: inline-block; color: var(--green-primary); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}
.single-treatment-hero h1 { margin-bottom: 16px; color: var(--text-dark-green); }
.single-treatment-hero p { max-width: 620px; font-size: 1rem; }
.single-treatment-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.single-treatment-hero__image { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.single-treatment-hero__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.single-treatment-layout {
    display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 44px; padding-top: 72px; padding-bottom: 72px;
}
.single-treatment-body {
    font-size: 1.02rem; line-height: 1.9; color: var(--text-muted);
}
.single-treatment-body p { margin-bottom: 1.5rem; }
.single-treatment-body h2 { color: var(--text-dark-green); margin-top: 2rem; margin-bottom: 0.8rem; }
.single-treatment-body h3 { margin-top: 1.5rem; margin-bottom: 0.6rem; }
.single-treatment-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.single-treatment-body ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.single-treatment-body blockquote {
    border-left: 4px solid var(--green-primary); padding: 1rem 1.5rem; margin: 1.5rem 0;
    background: var(--bg-green-tint); font-style: italic;
}
.treatment-gallery-section { margin-bottom: 34px; }
.single-treatment-sidebar .treatment-gallery-section { margin-bottom: 0; }
.treatment-gallery {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-green-tint);
    box-shadow: var(--shadow-card);
}
.treatment-gallery .swiper-slide a { display: block; }
.treatment-gallery__image {
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 320px;
    object-fit: cover;
}
.single-treatment-sidebar .treatment-gallery__image {
    aspect-ratio: 4/5;
    min-height: 260px;
}
.treatment-gallery .swiper-button-prev,
.treatment-gallery .swiper-button-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--green-dark);
    box-shadow: var(--shadow-card);
}
.treatment-gallery .swiper-button-prev::after,
.treatment-gallery .swiper-button-next::after { font-size: 15px; font-weight: 700; }
.treatment-gallery .swiper-pagination-bullet { background: #fff; opacity: 0.8; }
.treatment-gallery .swiper-pagination-bullet-active { background: var(--green-primary); opacity: 1; }
.treatment-tabs-section { margin-top: 42px; }
.treatment-tabs {
    border: 1px solid var(--green-primary);
    background: #fff;
}
.treatment-tabs__nav {
    display: flex;
    align-items: stretch;
    background: var(--bg-lighter);
    overflow-x: auto;
}
.treatment-tabs__nav button {
    min-width: 160px;
    border: 0;
    border-right: 1px solid transparent;
    border-bottom: 1px solid var(--green-primary);
    background: transparent;
    color: var(--text-dark-green);
    padding: 18px 26px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}
.treatment-tabs__nav button.active {
    background: #fff;
    color: var(--green-primary);
    border-right-color: var(--green-primary);
    border-bottom-color: #fff;
}
.treatment-tabs__panel {
    display: none;
    padding: 26px 30px 30px;
}
.treatment-tabs__panel.active { display: block; }
.treatment-facts-list {
    list-style: disc;
    padding-left: 1.3rem;
    margin: 0;
}
.single-treatment-body .treatment-facts-list { margin-bottom: 0; }
.treatment-facts-list li { margin-bottom: 4px; }
.treatment-itinerary-list {
    display: grid;
    gap: 14px;
}
.treatment-itinerary-item {
    border-left: 3px solid var(--green-primary);
    padding-left: 14px;
}
.treatment-itinerary-item strong { color: var(--text-dark-green); }
.treatment-itinerary-item p { margin: 3px 0 0; }
.treatment-faq-list details {
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
}
.treatment-faq-list details:first-child { padding-top: 0; }
.treatment-faq-list details:last-child { border-bottom: 0; padding-bottom: 0; }
.treatment-faq-list summary {
    color: var(--text-dark-green);
    cursor: pointer;
    font-weight: 700;
}
.treatment-faq-list p { margin-top: 8px; }
.single-treatment-sidebar { display: flex; flex-direction: column; gap: 18px; }
.treatment-consult-box,
.treatment-term-list {
    background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md);
    box-shadow: var(--shadow-card); padding: 24px;
}
.treatment-consult-box h2 { font-size: 1.2rem; color: var(--text-dark-green); margin-bottom: 8px; }
.treatment-consult-box p { font-size: 0.9rem; margin-bottom: 18px; }
.treatment-term-list h3 { color: var(--text-dark-green); margin-bottom: 12px; }
.treatment-term-list a {
    display: block; padding: 9px 0; color: var(--text-muted); font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}
.treatment-term-list a:last-child { border-bottom: 0; }
.treatment-term-list a:hover { color: var(--green-primary); }
.related-treatments { background: var(--bg-lighter); padding: 76px 0; }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials-section {
    background: var(--bg-light); position: relative; overflow: hidden;
}
.testimonials-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 0% 100%, rgba(141,198,63,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.testimonials-slider { overflow: hidden; padding: 0 48px 3rem; position: relative; z-index: 1; }

.testimonial-card {
    background: #fff; border-radius: var(--radius-md); padding: 2rem 1.75rem;
    box-shadow: var(--shadow-card); height: 100%;
}
.testimonial-card .stars { display: flex; gap: 3px; margin-bottom: 1rem; color: #f5b800; }
.testimonial-card blockquote { font-size: 0.95rem; line-height: 1.85; color: var(--text-muted); font-style: italic; margin: 0 0 1.5rem; }
.testimonial-card .author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-card .avatar {
    width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--bg-green-tint); flex-shrink: 0;
}
.testimonial-card .avatar-placeholder {
    width: 48px; height: 48px; border-radius: 50%; background: var(--green-primary); color: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-card .author-name { font-size: 0.92rem; color: var(--text-dark-green); font-weight: 600; }
.testimonial-card .author-procedure { font-size: 0.78rem; color: var(--green-primary); font-style: italic; }

.testimonials-section .swiper-pagination-bullet { background: var(--border-light); opacity: 1; width: 10px; height: 10px; }
.testimonials-section .swiper-pagination-bullet-active { background: var(--green-primary); transform: scale(1.2); }
.testimonials-section .swiper-button-prev,
.testimonials-section .swiper-button-next {
    width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1px solid var(--border-light);
    color: var(--green-dark); transition: var(--transition);
}
.testimonials-section .swiper-button-prev:hover,
.testimonials-section .swiper-button-next:hover { background: var(--green-primary); border-color: var(--green-primary); color: #fff; }
.testimonials-section .swiper-button-prev::after,
.testimonials-section .swiper-button-next::after { font-size: 14px; font-weight: 700; }

/* ═══════════════════════════════════════════════════
   WELCOME
   ═══════════════════════════════════════════════════ */
.welcome-section { background: #fff; text-align: center; }
.welcome-inner { max-width: 760px; margin: 0 auto; }
.welcome-inner h2 { margin-bottom: 1rem; }
.welcome-text { font-size: 1.02rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════
   PACKAGE BANNER
   ═══════════════════════════════════════════════════ */
.package-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1a3a1a 100%);
    padding: 2.5rem 0; text-align: center; position: relative; overflow: hidden;
}
.package-banner p { color: #fff; font-size: 1.05rem; font-weight: 500; max-width: 850px; margin: 0 auto; line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   FEATURES (Why Choose Us)
   ═══════════════════════════════════════════════════ */
.features-section { background: var(--bg-light); }
.features-section .section-header h2 { color: var(--text-green); }
.features-section .section-intro { text-align: center; max-width: 700px; margin: 0 auto 50px; color: var(--text-muted); }

.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--border-light); max-width: 1200px; margin: 0 auto;
    border: 1px solid var(--border-light);
}
.feature-item {
    background: #fff; padding: 36px 28px; text-align: center; transition: var(--transition); position: relative;
}
.feature-item:hover { background: var(--bg-green-tint); }
.feature-item .icon-wrap {
    width: 64px; height: 64px; background: var(--bg-green-tint); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
    color: var(--green-primary); font-size: 1.5rem; transition: var(--transition);
}
.feature-item:hover .icon-wrap { background: var(--green-primary); color: #fff; }
.feature-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; color: var(--text-body); }
.feature-item p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.feature-item.cta-item { background: var(--bg-green-tint); }
.feature-item.cta-item h4 { color: var(--green-dark); font-size: 1.1rem; }
.feature-item.cta-item .btn-primary { margin-top: 16px; font-size: 0.82rem; padding: 11px 22px; }

/* ═══════════════════════════════════════════════════
   JOURNEY STEPS (overlay)
   ═══════════════════════════════════════════════════ */
.journey-section { position: relative; padding: 90px 0; background: #555; }
.journey-section::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65));
    z-index: 1;
}
.journey-section .container { position: relative; z-index: 2; }
.journey-section .section-header h2 { color: #fff; }
.journey-section .section-eyebrow { color: var(--green-primary) !important; }

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}
.journey-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px 20px;
}
.journey-step .step-number {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--green-primary); color: #fff;
    font-size: 1.1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 4px rgba(141,198,63,0.25), 0 4px 16px rgba(141,198,63,0.35);
    position: relative; z-index: 2;
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}
.journey-step:hover .step-number {
    transform: scale(1.12);
    box-shadow: 0 0 0 6px rgba(141,198,63,0.35), 0 6px 24px rgba(141,198,63,0.5);
}
.journey-step .step-line {
    width: 60%; height: 3px;
    background: linear-gradient(90deg, var(--green-primary), rgba(141,198,63,0.3));
    border-radius: 2px;
    margin: 12px 0;
}
.journey-step .step-content {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(141,198,63,0.25);
    border-radius: var(--radius-md);
    padding: 18px 14px 16px;
    backdrop-filter: blur(6px);
    transition: var(--transition);
    flex: 1;
    width: 100%;
}
.journey-step:hover .step-content {
    background: rgba(141,198,63,0.12);
    border-color: var(--green-primary);
}
.journey-step .step-content h4 { color: #fff; font-size: 0.95rem; margin-bottom: 8px; }
.journey-step .step-content p { color: rgba(255,255,255,0.7); font-size: 0.78rem; line-height: 1.6; margin: 0; }
.journey-step .step-arrow {
    position: absolute;
    right: -14px;
    top: 38px;
    z-index: 3;
    color: var(--green-primary);
    background: #555;
    border-radius: 50%;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.journey-step:nth-child(4n) .step-arrow { display: none; }

/* ═══════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════ */
.cta-final {
    background: var(--gradient-main); padding: 70px 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-final h3 { color: #fff; font-size: 1.8rem; font-weight: 700; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════
   CERTIFICATE
   ═══════════════════════════════════════════════════ */
.certificate-section { background: #fff; }
.certificate-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.certificate-inner h2 { color: var(--text-dark-green); }
.certificate-img { max-width: 400px; margin: 2rem auto 0; border-radius: var(--radius-sm); box-shadow: var(--shadow-card); }

/* ═══════════════════════════════════════════════════
   HOMEPAGE SLIDER
   ═══════════════════════════════════════════════════ */
.homepage-slider { position: relative; margin-top: 28px; }
.homepage-slider .swiper {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.homepage-slider .swiper-slide { overflow: hidden; }
.homepage-slider .swiper-slide img {
    width: 100%; height: auto; display: block;
    min-height: 300px; object-fit: cover;
}

.homepage-slider .swiper-button-prev,
.homepage-slider .swiper-button-next {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.85); color: var(--green-dark);
    transition: var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.homepage-slider .swiper-button-prev:hover,
.homepage-slider .swiper-button-next:hover {
    background: var(--green-primary); color: #fff;
}
.homepage-slider .swiper-button-prev::after,
.homepage-slider .swiper-button-next::after { font-size: 16px; font-weight: 700; }

.homepage-slider .swiper-pagination-bullet {
    width: 10px; height: 10px; background: rgba(255,255,255,0.5);
    opacity: 1; transition: var(--transition);
}
.homepage-slider .swiper-pagination-bullet-active {
    background: var(--green-primary); transform: scale(1.2);
}

@media (max-width: 768px) {
    .homepage-slider { margin-top: 16px; }
    .homepage-slider .swiper-slide img { min-height: 200px; }
    .homepage-slider .swiper-button-prev,
    .homepage-slider .swiper-button-next { display: none; }
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer { background: var(--bg-dark-footer); color: rgba(255,255,255,0.8); padding: 70px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
    max-width: 1200px; margin: 0 auto; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-col .logo-oddo { color: #fff; font-size: 1.6rem; font-weight: 800; }
.footer-logo-col .logo-clinic { color: rgba(255,255,255,0.5); font-size: 0.55rem; letter-spacing: 4px; }
.footer-logo-col .custom-logo-link { display: block; margin-bottom: 12px; }
.footer-logo-col img.custom-logo { max-height: 48px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-about { font-size: 0.83rem; color: rgba(255,255,255,0.55); margin: 16px 0; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%; background: var(--green-primary);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--green-dark); }

.footer-col h5 { color: #fff; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.83rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green-primary); }

.footer-contact-list { list-style: none; margin: 0; padding: 0; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.83rem; color: rgba(255,255,255,0.55); }
.footer-contact-item .icon { color: var(--green-primary); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-item a:hover { color: var(--green-primary); }

.footer-bottom {
    background: var(--bg-darkest); text-align: center; padding: 18px 40px;
    font-size: 0.78rem; color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOAT + BACK TO TOP
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px;
    background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.5rem; box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    z-index: 9999; text-decoration: none; transition: var(--transition);
    animation: wp-pulse 2.2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 28px rgba(37,211,102,0.6); color: #fff; }
@keyframes wp-pulse { 0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); } 50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); } }

.back-to-top {
    position: fixed; bottom: 92px; right: 28px; width: 40px; height: 40px;
    background: var(--green-dark); color: #fff; border: none; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    opacity: 0; pointer-events: none; transition: var(--transition); z-index: 9998;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--green-primary); }

/* ═══════════════════════════════════════════════════
   BLOG / ARCHIVE
   ═══════════════════════════════════════════════════ */
.archive-hero {
    background: var(--bg-green-tint);
    border-bottom: 1px solid #e5f3d0;
    padding: 66px 0 58px;
}
.archive-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: end;
}
.archive-hero h1 { margin-bottom: 12px; color: var(--text-dark-green); }
.archive-hero p { max-width: 720px; font-size: 1rem; }
.archive-hero__search {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-card);
}
.oddo-search-form { display: flex; gap: 8px; width: 100%; }
.oddo-search-form input {
    min-width: 0;
    flex: 1;
    height: 46px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0 14px;
    font-family: var(--font-body);
    color: var(--text-body);
    outline: none;
}
.oddo-search-form input:focus { border-color: var(--green-primary); box-shadow: 0 0 0 3px rgba(141,198,63,0.14); }
.oddo-search-form button {
    height: 46px;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0 18px;
    background: var(--green-dark);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.oddo-search-form button:hover { background: var(--green-primary); }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.post-card__img { width: 100%; height: 200px; object-fit: cover; }
.post-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: linear-gradient(135deg, var(--bg-green-tint), #fff);
}
.post-card__placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}
.post-card__body { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__body h3 { font-family: var(--font-body); font-size: 1.05rem; margin-bottom: 0.4rem; }
.post-card__body h3 a { color: var(--text-body); }
.post-card__body h3 a:hover { color: var(--green-primary); }
.post-card__meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.6rem; display: flex; flex-wrap: wrap; gap: 8px; }
.post-card__meta a { color: var(--green-dark); }
.post-card__excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.post-card__readmore { margin-top: auto; padding-top: 1rem; color: var(--green-dark); font-size: 0.85rem; font-weight: 700; }
.archive-empty {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    padding: 42px 28px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}
.archive-empty h2 { color: var(--text-dark-green); margin-bottom: 8px; }
.archive-empty .oddo-search-form { margin: 22px auto 0; max-width: 460px; }
.archive-empty .btn-outline { margin-top: 20px; }

.pagination-wrap { text-align: center; margin-top: 2.5rem; }
.pagination-wrap .page-numbers {
    display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px;
    border-radius: var(--radius-sm); border: 1px solid var(--border-light); margin: 0 3px;
    font-size: 0.84rem; font-weight: 500; color: var(--text-muted); transition: all 0.2s;
}
.pagination-wrap .page-numbers.current { background: var(--green-primary); color: #fff; border-color: var(--green-primary); font-weight: 600; }
.pagination-wrap .page-numbers:hover:not(.current):not(.dots) { border-color: var(--green-primary); color: var(--green-primary); }

/* ═══════════════════════════════════════════════════
   SINGLE / PAGE
   ═══════════════════════════════════════════════════ */
.page-hero,
.single-post-hero {
    background: var(--bg-green-tint);
    border-bottom: 1px solid #e5f3d0;
    padding: 64px 0;
}
.page-hero__inner,
.single-post-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 44px;
    align-items: center;
}
.page-hero h1,
.single-post-hero h1 { color: var(--text-dark-green); margin-bottom: 14px; }
.page-hero p { max-width: 640px; font-size: 1rem; }
.page-hero__image,
.single-post-hero__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.page-hero__image img,
.single-post-hero__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.single-layout {
    display: grid;
    grid-template-columns: minmax(0, 800px) 320px;
    gap: 42px;
    align-items: start;
}
.single-content, .page-content { max-width: 800px; margin: 0 auto; width: 100%; }
.single-header { margin-bottom: 1.5rem; }
.single-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.single-meta a { color: var(--green-dark); }
.single-title { font-size: 2rem; font-weight: 700; line-height: 1.2; }
.single-image { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 2rem; box-shadow: var(--shadow-card); }
.single-image img { width: 100%; }
.single-body, .page-body { font-size: 1.02rem; line-height: 1.9; color: var(--text-muted); }
.single-body h2, .page-body h2 { color: var(--text-dark-green); margin-top: 2rem; }
.single-body h3, .page-body h3 { margin-top: 1.5rem; }
.single-body ul, .page-body ul { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.single-body ol, .page-body ol { padding-left: 1.5rem; margin-bottom: 1rem; list-style: decimal; }
.single-body blockquote, .page-body blockquote { border-left: 4px solid var(--green-primary); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--bg-green-tint); font-style: italic; }
.single-footer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); font-size: 0.85rem; }
.single-nav { display: flex; justify-content: space-between; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
.single-nav a { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; transition: color 0.2s; }
.single-nav a:hover { color: var(--green-primary); }
.single-sidebar { position: sticky; top: 112px; }
.sidebar-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-card);
}
.sidebar-card h3 { color: var(--text-dark-green); margin-bottom: 10px; }
.sidebar-card p { margin-bottom: 20px; }
.page-title { font-size: 2rem; font-weight: 700; margin-bottom: 2rem; }

.not-found-hero {
    min-height: 62vh;
    background: var(--bg-green-tint);
    border-bottom: 1px solid #e5f3d0;
    display: flex;
    align-items: center;
    padding: 78px 0;
}
.not-found-hero__inner { max-width: 740px; text-align: center; }
.not-found-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    font-weight: 800;
    font-size: 1.7rem;
    box-shadow: var(--shadow-green-btn);
}
.not-found-hero h1 { margin-bottom: 12px; }
.not-found-actions { margin-top: 28px; }
.not-found-actions .oddo-search-form { max-width: 520px; margin: 0 auto; }
.not-found-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 18px; }

/* ═══════════════════════════════════════════════════
   COMMENTS
   ═══════════════════════════════════════════════════ */
.comments-area { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border-light); }
.comments-title { font-size: 1.2rem; margin-bottom: 1.25rem; }
.comment-list { padding: 0; }
.comment { padding: 1.25rem 0; border-bottom: 1px solid var(--border-light); }
.comment-body { display: flex; gap: 1rem; }
.comment-author img { border-radius: 50%; }
.comment-meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.comment-content { font-size: 0.92rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1280px) {
    .treatments-grid.row-4 { grid-template-columns: repeat(3, 1fr); }
    .treatment-archive-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .hero-section { grid-template-columns: 1fr; padding: 50px 24px; min-height: auto; }
    .hero-left p { max-width: 100%; }
    .archive-hero__inner,
    .page-hero__inner,
    .single-post-hero__inner,
    .single-layout { grid-template-columns: 1fr; }
    .archive-hero__search { max-width: 520px; }
    .single-sidebar { position: static; }
    .treatments-grid.row-3, .treatments-grid.row-4 { grid-template-columns: repeat(2, 1fr); }
    .treatment-archive-grid { grid-template-columns: repeat(2, 1fr); }
    .single-treatment-hero__inner,
    .single-treatment-layout { grid-template-columns: 1fr; }
    .single-treatment-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .journey-timeline { grid-template-columns: repeat(2, 1fr); }
    .journey-step .step-arrow { display: none; }
    .journey-step:nth-child(4n) .step-arrow { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .site-topbar { display: none; }
    .site-header { top: 0 !important; }
    .header-inner { padding: 14px 20px; }
    .primary-nav, .header-cta-nav { display: none; }
    .hamburger { display: block; }
    .archive-hero,
    .page-hero,
    .single-post-hero,
    .not-found-hero { padding: 52px 0 46px; }
    .archive-hero__inner,
    .page-hero__inner,
    .single-post-hero__inner,
    .single-layout { gap: 28px; }
    .hero-section { padding: 46px 18px 58px; gap: 34px; }
    .hero-left h1 { margin-bottom: 16px; }
    .hero-left p { margin-bottom: 24px; }
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 28px;
        padding: 16px 0;
    }
    .stat-item { min-width: 0; }
    .stat-item .stat-number { font-size: 1.55rem; }
    .stat-item .stat-label { font-size: 0.68rem; }
    .treatments-grid.row-3, .treatments-grid.row-4 { grid-template-columns: 1fr; }
    .treatment-archive-hero { padding: 52px 0 46px; }
    .treatment-category-head { display: block; }
    .treatment-category-link { display: inline-block; margin-top: 10px; }
    .treatment-archive-grid { grid-template-columns: 1fr; }
    .single-treatment-hero { padding: 50px 0; }
    .single-treatment-layout { padding-top: 48px; padding-bottom: 48px; }
    .single-treatment-sidebar { display: flex; }
    .treatment-gallery__image { min-height: 220px; }
    .treatment-gallery .swiper-button-prev,
    .treatment-gallery .swiper-button-next { display: none; }
    .treatment-tabs__nav button { min-width: 142px; padding: 15px 20px; }
    .treatment-tabs__panel { padding: 22px 22px 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .journey-timeline { grid-template-columns: 1fr; }
    .journey-step .step-arrow { display: none; }
    .journey-step .step-line { width: 3px; height: 24px; background: linear-gradient(180deg, var(--green-primary), rgba(141,198,63,0.3)); }
    .journey-step { flex-direction: column; padding: 16px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cta-banner { padding: 40px 20px; }
    .testimonials-slider { padding: 0 0 2.5rem; }
    .testimonials-section .swiper-button-prev,
    .testimonials-section .swiper-button-next { display: none; }
    .posts-grid { grid-template-columns: 1fr; }
    .single-nav { flex-direction: column; gap: 0.75rem; }
    .footer-bottom { padding: 18px 20px; }
    .back-to-top { bottom: 90px; right: 16px; }
    .whatsapp-float { bottom: 20px; right: 16px; }
}
@media (max-width: 480px) {
    .hero-section { padding: 32px 16px 46px; }
    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 24px;
        padding: 14px 0;
    }
    .stat-item .stat-number { font-size: 1.35rem; }
    .stat-item .stat-label { font-size: 0.64rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline { width: 100%; min-height: 54px; }
    .hero-form-card .card-body { padding: 24px 20px; }
    .oddo-search-form { flex-direction: column; }
    .oddo-search-form button { width: 100%; }
    .not-found-buttons { flex-direction: column; }
    .not-found-buttons .btn-primary,
    .not-found-buttons .btn-outline { justify-content: center; }
    .treatment-tabs__nav { display: grid; grid-template-columns: 1fr; }
    .treatment-tabs__nav button { width: 100%; border-right: 0; }
    .treatment-tabs__nav button.active { border-right: 0; border-bottom-color: var(--green-primary); }
    .treatment-card { aspect-ratio: auto; min-height: 200px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
:focus-visible { outline: 2px solid var(--green-primary); outline-offset: 2px; border-radius: 2px; }

@media print {
    .site-topbar, .site-header, .hamburger, .mobile-menu-overlay, .whatsapp-float, .back-to-top { display: none !important; }
    body, .single-body, .page-body { font-size: 12pt; color: #000; }
    a { color: #000; text-decoration: underline; }
}
