/*
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 {
    --blue-primary: #0A84C6;
    --blue-dark: #075985;
    --blue-gradient-start: #0A84C6;
    --blue-gradient-end: #0B3D91;
    --gradient-main: linear-gradient(230deg, #0A84C6 11%, #0B3D91 89%);
    --gradient-banner: linear-gradient(120deg, #0A84C6 0%, #0B3D91 82%);
    --bg-white: #ffffff;
    --bg-light: #fcfcfc;
    --bg-lighter: #fbfbfb;
    --bg-blue-tint: #EEF7FF;
    --bg-dark-footer: #565656;
    --bg-darkest: #3a3a3a;
    --text-body: #1e1e1e;
    --text-muted: #54595f;
    --text-white: #ffffff;
    --text-blue: #0A84C6;
    --text-dark-blue: #075985;
    --border-light: #eeeeee;
    --border-blue: #0A84C6;
    --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-card-hover: 0 8px 32px rgba(10,132,198,0.2);
    --shadow-blue-btn: 0 6px 20px rgba(7,89,133,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(--blue-primary); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--blue-dark); }
ul, ol { list-style: none; }

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--text-dark-blue); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; color: var(--text-blue); 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(--blue-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(--blue-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(--blue-dark); }
.oddo-breadcrumbs a:hover { color: var(--blue-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-blue-btn); transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(7,89,133,0.4); color: #fff; }

.btn-outline {
    background: transparent; color: var(--blue-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(--blue-primary);
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
}
.btn-outline:hover { background: var(--blue-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-blue-tint); border-bottom: 1px solid #D6EAF8; 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(--blue-primary);
    color: #fff; margin-right: 6px; font-size: 0.8rem; transition: var(--transition);
}
.topbar-social a:hover { background: var(--blue-dark); transform: scale(1.1); }
.topbar-right { display: flex; align-items: center; gap: 16px; font-weight: 500; color: var(--text-dark-blue); }
.topbar-phone { font-weight: 600; color: var(--blue-dark); display: flex; align-items: center; gap: 4px; }
.topbar-phone svg { color: var(--blue-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(--blue-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(--blue-dark); letter-spacing: -1px; }
.site-logo .logo-clinic { font-size: 0.58rem; font-weight: 600; letter-spacing: 4px; color: var(--blue-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(--blue-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(--blue-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(--blue-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(--blue-primary);
}
.primary-nav ul .sub-menu a::after { display: none; }

.header-cta {
    background: var(--blue-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-blue-btn); transition: var(--transition) !important;
    display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
}
.header-cta:hover { background: var(--blue-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(7,89,133,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(--blue-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(--blue-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(--blue-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(--blue-primary); box-shadow: 0 0 0 3px rgba(10,132,198,0.12);
}
.iti {
    position: relative;
    display: block;
    width: 100%;
}
.iti * {
    box-sizing: border-box;
}
.iti__hide {
    display: none;
}
.iti__a11y-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.iti__country-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.iti__selected-country {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    color: var(--text-body);
    font: inherit;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.iti__selected-country-primary {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 6px;
    padding: 0 8px 0 12px;
}
.iti__selected-dial-code {
    margin-left: 4px;
    color: var(--text-muted);
    white-space: nowrap;
}
.iti__arrow {
    margin-left: 6px;
}
.iti__flag {
    display: block;
    flex: 0 0 auto;
}
.iti input[type="tel"],
.iti input[type="text"] {
    width: 100%;
    padding-left: 104px !important;
}
.iti input.iti__tel-input {
    position: relative;
    z-index: 1;
    margin-bottom: 0 !important;
}
.hero-form-card .iti {
    margin-bottom: 14px;
}
.iti__dropdown-content {
    border-color: var(--border-light);
    box-shadow: var(--shadow-card);
    font-family: var(--font-body);
    z-index: 10000;
    overflow: hidden;
}
.iti__search-input {
    width: 100%;
    height: 44px;
    border: 0;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: 0;
    padding: 0 14px !important;
}
.iti__country-list {
    font-size: 0.9rem;
    max-height: 220px;
}
.iti__country {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.35;
    padding: 9px 12px;
}
.iti__country-name {
    min-width: 0;
    flex: 1 1 auto;
}
.iti__dial-code {
    color: var(--text-muted);
    flex: 0 0 auto;
    white-space: nowrap;
}
.iti__country.iti__highlight {
    background: var(--bg-blue-tint);
}
.oddo-iti.iti {
    display: block !important;
    min-height: 43px !important;
    width: 100% !important;
    position: relative !important;
}
.oddo-iti.iti--container {
    z-index: 2147483647 !important;
}
.oddo-iti .iti__country-container {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    padding: 0 !important;
    z-index: 5 !important;
}
.oddo-iti .iti__selected-country {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    height: 100% !important;
    min-height: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--text-body) !important;
    cursor: pointer !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    text-align: left !important;
    text-decoration: none !important;
    text-transform: none !important;
    transform: none !important;
}
.oddo-iti .iti__selected-country-primary {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    height: 100% !important;
    padding: 0 8px 0 12px !important;
}
.oddo-iti .iti__selected-dial-code {
    color: var(--text-muted) !important;
    display: inline-block !important;
    margin: 0 !important;
    white-space: nowrap !important;
}
.oddo-iti .iti__arrow {
    margin-left: 2px !important;
}
.oddo-iti input.iti__tel-input,
.oddo-iti input.iti__tel-input[type="text"],
.oddo-iti input.iti__tel-input[type="tel"] {
    margin: 0 !important;
    padding-left: 104px !important;
    position: relative !important;
    z-index: 1 !important;
}
.oddo-iti .iti__dropdown-content {
    background: #fff !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 3px !important;
    box-shadow: 0 14px 32px rgba(7, 89, 133, 0.18) !important;
    color: var(--text-body) !important;
    font-family: var(--font-body) !important;
    font-size: 0.92rem !important;
    margin-top: 3px !important;
    overflow: hidden !important;
    z-index: 2147483647 !important;
}
.oddo-iti .iti__search-input {
    background: #fff !important;
    border: 0 !important;
    border-bottom: 1px solid var(--border-light) !important;
    box-shadow: none !important;
    color: var(--text-body) !important;
    display: block !important;
    height: 44px !important;
    line-height: 44px !important;
    margin: 0 !important;
    outline: 0 !important;
    padding: 0 14px !important;
    text-align: left !important;
    width: 100% !important;
}
.oddo-iti .iti__country-list {
    background: #fff !important;
    color: var(--text-body) !important;
    display: block !important;
    list-style: none !important;
    margin: 0 !important;
    max-height: 220px !important;
    overflow-y: auto !important;
    padding: 0 !important;
}
.oddo-iti .iti__country {
    align-items: center !important;
    background: #fff !important;
    color: var(--text-body) !important;
    display: flex !important;
    gap: 8px !important;
    justify-content: flex-start !important;
    line-height: 1.35 !important;
    min-height: 38px !important;
    padding: 9px 12px !important;
    text-align: left !important;
    width: 100% !important;
}
.oddo-iti .iti__country.iti__highlight,
.oddo-iti .iti__country:hover {
    background: var(--bg-blue-tint) !important;
}
.oddo-iti .iti__country-name {
    color: var(--text-body) !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
}
.oddo-iti .iti__dial-code {
    color: var(--text-muted) !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
    white-space: nowrap !important;
}
.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(--blue-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-blue); 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; grid-template-columns: repeat(3, 1fr); }

.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(11,61,145,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(10,132,198,0.9) 0%, transparent 100%); }
.treatments-more { text-align: center; margin-top: 34px; }

.treatment-archive-hero {
    background: var(--bg-blue-tint); padding: 72px 0 64px; border-bottom: 1px solid #D6EAF8;
}
.treatment-archive-hero .container { max-width: 860px; }
.treatment-archive-hero h1 { margin: 8px 0 14px; color: var(--text-dark-blue); }
.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(--blue-dark); font-size: 0.84rem; font-weight: 600; white-space: nowrap;
}
.treatment-category-link:hover { color: var(--blue-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-blue-tint); border-radius: var(--radius-md);
}
.treatment-empty h2 { color: var(--text-dark-blue); margin-bottom: 8px; }

.single-treatment-hero { background: var(--bg-blue-tint); padding: 70px 0; border-bottom: 1px solid #D6EAF8; }
.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(--blue-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-blue); }
.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-layout > *,
.single-treatment-sidebar { min-width: 0; }
.single-treatment-body p { margin-bottom: 1.5rem; }
.single-treatment-body h2 { color: var(--text-dark-blue); 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(--blue-primary); padding: 1rem 1.5rem; margin: 1.5rem 0;
    background: var(--bg-blue-tint); font-style: italic;
}
.treatment-gallery-section { margin-bottom: 34px; }
.single-treatment-sidebar .treatment-gallery-section { margin-bottom: 0; }
.treatment-gallery {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-blue-tint);
    box-shadow: var(--shadow-card);
}
.treatment-gallery .swiper-wrapper,
.treatment-gallery .swiper-slide {
    min-width: 0;
    max-width: 100%;
}
.treatment-gallery .swiper-slide a { display: block; }
.treatment-gallery__image {
    display: block;
    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(--blue-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(--blue-primary); opacity: 1; }
.treatment-tabs-section { margin-top: 42px; }
.treatment-tabs {
    border: 1px solid var(--blue-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(--blue-primary);
    background: transparent;
    color: var(--text-dark-blue);
    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(--blue-primary);
    border-right-color: var(--blue-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(--blue-primary);
    padding-left: 14px;
}
.treatment-itinerary-item strong { color: var(--text-dark-blue); }
.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-blue);
    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-blue); margin-bottom: 8px; }
.treatment-consult-box p { font-size: 0.9rem; margin-bottom: 18px; }
.treatment-term-list h3 { color: var(--text-dark-blue); 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(--blue-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(10,132,198,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-blue-tint); flex-shrink: 0;
}
.testimonial-card .avatar-placeholder {
    width: 48px; height: 48px; border-radius: 50%; background: var(--blue-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-blue); font-weight: 600; }
.testimonial-card .author-procedure { font-size: 0.78rem; color: var(--blue-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(--blue-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(--blue-dark); transition: var(--transition);
}
.testimonials-section .swiper-button-prev:hover,
.testimonials-section .swiper-button-next:hover { background: var(--blue-primary); border-color: var(--blue-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(--blue-dark) 0%, #082F49 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-blue); }
.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-blue-tint); }
.feature-item .icon-wrap {
    width: 64px; height: 64px; background: var(--bg-blue-tint); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
    color: var(--blue-primary); font-size: 1.5rem; transition: var(--transition);
}
.feature-item:hover .icon-wrap { background: var(--blue-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-blue-tint); }
.feature-item.cta-item h4 { color: var(--blue-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(--blue-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(--blue-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(10,132,198,0.25), 0 4px 16px rgba(10,132,198,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(10,132,198,0.35), 0 6px 24px rgba(10,132,198,0.5);
}
.journey-step .step-line {
    width: 60%; height: 3px;
    background: linear-gradient(90deg, var(--blue-primary), rgba(10,132,198,0.3));
    border-radius: 2px;
    margin: 12px 0;
}
.journey-step .step-content {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(10,132,198,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(10,132,198,0.12);
    border-color: var(--blue-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(--blue-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-blue); }
.certificate-img { max-width: 400px; margin: 2rem auto 0; border-radius: var(--radius-sm); box-shadow: var(--shadow-card); }

/* ═══════════════════════════════════════════════════
   PARTNER LOGOS
   ═══════════════════════════════════════════════════ */
.partner-logos-section { background: #fff; padding-top: 0; }
.partner-logos-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.partner-logos-head h2 { color: var(--text-dark-blue); }
.partner-logos-grid {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
    gap: 24px; max-width: 1000px; margin: 0 auto;
}
.partner-logo-item {
    flex: 1 1 220px; max-width: 260px; min-height: 120px;
    background: #fff; border: 1px solid #eef1f5; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card); display: flex; align-items: center; justify-content: center;
    padding: 22px 28px; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.partner-logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(11,61,145,0.14);
    border-color: rgba(11,61,145,0.15);
}
.partner-logo-item a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.partner-logo-item img {
    max-width: 100%; max-height: 64px; width: auto; height: auto; object-fit: contain;
    filter: grayscale(100%); opacity: 0.75;
    transition: filter 0.35s ease, opacity 0.35s ease;
}
.partner-logo-item:hover img { filter: grayscale(0%); opacity: 1; }
@media (max-width: 640px) {
    .partner-logo-item { flex: 1 1 45%; min-height: 100px; padding: 16px 18px; }
    .partner-logo-item img { max-height: 48px; }
}

/* ═══════════════════════════════════════════════════
   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(--blue-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(--blue-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(--blue-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(--blue-primary);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--blue-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(--blue-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(--blue-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(--blue-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: #0A84C6; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.5rem; box-shadow: 0 6px 20px rgba(10,132,198,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(10,132,198,0.6); color: #fff; }
@keyframes wp-pulse { 0%, 100% { box-shadow: 0 6px 20px rgba(10,132,198,0.45); } 50% { box-shadow: 0 6px 36px rgba(10,132,198,0.7); } }

.back-to-top {
    position: fixed; bottom: 92px; right: 28px; width: 40px; height: 40px;
    background: var(--blue-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(--blue-primary); }

/* ═══════════════════════════════════════════════════
   BLOG / ARCHIVE
   ═══════════════════════════════════════════════════ */
.archive-hero {
    background: var(--bg-blue-tint);
    border-bottom: 1px solid #D6EAF8;
    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-blue); }
.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(--blue-primary); box-shadow: 0 0 0 3px rgba(10,132,198,0.14); }
.oddo-search-form button {
    height: 46px;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0 18px;
    background: var(--blue-dark);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.oddo-search-form button:hover { background: var(--blue-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-blue-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(--blue-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(--blue-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(--blue-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-blue); 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(--blue-primary); color: #fff; border-color: var(--blue-primary); font-weight: 600; }
.pagination-wrap .page-numbers:hover:not(.current):not(.dots) { border-color: var(--blue-primary); color: var(--blue-primary); }

/* ═══════════════════════════════════════════════════
   SINGLE / PAGE
   ═══════════════════════════════════════════════════ */
.page-hero,
.single-post-hero {
    background: var(--bg-blue-tint);
    border-bottom: 1px solid #D6EAF8;
    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-blue); 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: 920px; 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(--blue-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 > *:first-child,
.page-body > *:first-child { margin-top: 0; }
.single-body p,
.page-body p { margin-bottom: 1.15rem; }
.single-body h2, .page-body h2 {
    color: var(--text-dark-blue);
    margin-top: 2.4rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid #D6EAF8;
}
.single-body h3, .page-body h3 { margin-top: 1.6rem; margin-bottom: 0.55rem; color: var(--blue-dark); }
.single-body ul, .page-body ul { padding-left: 1.5rem; margin-bottom: 1.15rem; list-style: disc; }
.single-body ol, .page-body ol { padding-left: 1.5rem; margin-bottom: 1.15rem; list-style: decimal; }
.single-body li,
.page-body li { margin-bottom: 0.35rem; }
.single-body blockquote, .page-body blockquote { border-left: 4px solid var(--blue-primary); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--bg-blue-tint); font-style: italic; }
.single-body img,
.page-body img,
.doctor-bio-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    margin: 1rem 0 1.6rem;
}
.single-body a,
.page-body a,
.doctor-bio-content a { color: var(--blue-dark); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.single-treatment-body a[href*="wa.me"],
.single-body a[href*="wa.me"],
.page-body a[href*="wa.me"],
.doctor-bio-content a[href*="wa.me"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    margin: 0.65rem 0.75rem 1rem 0;
    border-radius: var(--radius-pill);
    background: var(--gradient-main);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: var(--shadow-blue-btn);
    transition: var(--transition);
}
.single-treatment-body a[href*="wa.me"]:hover,
.single-body a[href*="wa.me"]:hover,
.page-body a[href*="wa.me"]:hover,
.doctor-bio-content a[href*="wa.me"]:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(7,89,133,0.4);
}
.single-treatment-body a[href*="wa.me"] br,
.single-body a[href*="wa.me"] br,
.page-body a[href*="wa.me"] br,
.doctor-bio-content a[href*="wa.me"] br {
    display: none;
}
.page-body table,
.single-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: inset 0 0 0 1px var(--border-light);
}
.page-body th,
.page-body td,
.single-body th,
.single-body td { padding: 12px 14px; border-bottom: 1px solid var(--border-light); text-align: left; vertical-align: top; }
.page-body th,
.single-body th { color: var(--text-dark-blue); background: var(--bg-blue-tint); }
.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(--blue-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-blue); margin-bottom: 10px; }
.sidebar-card p { margin-bottom: 20px; }
.page-title { font-size: 2rem; font-weight: 700; margin-bottom: 2rem; }

.contact-hero {
    background: linear-gradient(120deg, #EEF7FF 0%, #fff 58%, #E6F3FF 100%);
    border-bottom: 1px solid #D6EAF8;
    padding: 72px 0;
}
.contact-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 44px;
    align-items: center;
}
.contact-hero__content p {
    max-width: 680px;
    margin-top: 14px;
    font-size: 1rem;
}
.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.contact-hero__panel {
    background: #fff;
    border: 1px solid #D6EAF8;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-card);
}
.contact-hero__panel span {
    display: block;
    color: var(--blue-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.contact-hero__panel strong {
    display: block;
    color: var(--text-dark-blue);
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 10px;
}
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 34px;
    align-items: start;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.contact-info-card {
    min-height: 178px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
}
.contact-info-card--wide { grid-column: 1 / -1; }
.contact-info-card__icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-blue-tint);
    color: var(--blue-dark);
    margin-bottom: 16px;
}
.contact-info-card h2 {
    color: var(--text-dark-blue);
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.contact-info-card a {
    color: var(--blue-dark);
    font-weight: 700;
    overflow-wrap: anywhere;
}
.contact-info-card p { margin: 0; }
.contact-form-card {
    position: sticky;
    top: 108px;
    background: #fff;
    border: 1px solid #D6EAF8;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-card);
}
.contact-form-card__header { margin-bottom: 20px; }
.contact-form-card__header h2 {
    color: var(--text-dark-blue);
    font-size: 1.45rem;
}
.contact-whatsapp-form {
    display: grid;
    gap: 14px;
}
.contact-whatsapp-form label {
    display: grid;
    gap: 6px;
}
.contact-whatsapp-form label span {
    color: var(--text-body);
    font-size: 0.78rem;
    font-weight: 700;
}
.contact-whatsapp-form input,
.contact-whatsapp-form select,
.contact-whatsapp-form textarea {
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 13px 14px;
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-whatsapp-form textarea { resize: vertical; min-height: 120px; }
.contact-whatsapp-form input:focus,
.contact-whatsapp-form select:focus,
.contact-whatsapp-form textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(10,132,198,0.14);
}
.contact-whatsapp-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}
.contact-page-content {
    padding: 0 0 70px;
}
.contact-map-section {
    padding: 0 0 90px;
}
.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}
.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.about-hero {
    background: linear-gradient(120deg, #EEF7FF 0%, #fff 56%, #E6F3FF 100%);
    border-bottom: 1px solid #D6EAF8;
    padding: 74px 0 64px;
}
.about-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 48px;
    align-items: center;
}
.about-hero__content p {
    max-width: 690px;
    margin-top: 14px;
    font-size: 1rem;
}
.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.about-hero__media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    min-height: 360px;
}
.about-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}
.about-hero__badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(10,132,198,0.28);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.about-hero__badge span {
    display: block;
    color: var(--blue-primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-hero__badge strong {
    display: block;
    color: var(--text-dark-blue);
    font-size: 1rem;
    line-height: 1.25;
    margin-top: 4px;
}
.about-stats {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
}
.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}
.about-stat {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 24px;
    border-right: 1px solid var(--border-light);
}
.about-stat:last-child { border-right: 0; }
.about-stat strong {
    color: var(--text-dark-blue);
    font-size: 1.8rem;
    line-height: 1.1;
}
.about-stat span {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 8px;
}
.about-intro { background: #fff; }
.about-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 38px;
    align-items: start;
}
.about-intro__content {
    min-width: 0;
}
.about-body {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.9;
}
.about-body > h2:first-child { display: none; }
.about-body p { margin-bottom: 1.15rem; }
.about-body a {
    color: var(--blue-dark);
    font-weight: 700;
}
.about-body a[role="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    margin: 0.6rem 0.6rem 0.6rem 0;
    border-radius: var(--radius-pill);
    background: var(--gradient-main);
    color: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-blue-btn);
}
.about-side {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 16px;
}
.about-side-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
}
.about-side-card h2 {
    color: var(--text-dark-blue);
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.about-side-card p { margin: 0; }
.about-side-card--blue {
    background: var(--gradient-main);
    border-color: transparent;
}
.about-side-card--blue h2,
.about-side-card--blue p { color: #fff; }
.about-side-card--blue a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #fff;
    font-weight: 700;
}
.about-values {
    background: var(--bg-light);
}
.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.about-value-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-card);
    min-height: 240px;
}
.about-value-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-blue-tint);
    color: var(--blue-dark);
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 18px;
}
.about-value-card h3 {
    color: var(--text-dark-blue);
    font-size: 1.08rem;
    margin-bottom: 10px;
}
.about-cta {
    background: var(--gradient-banner);
    padding: 54px 0;
}
.about-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.about-cta .section-eyebrow { color: rgba(255,255,255,0.85); }
.about-cta h2 {
    color: #fff;
    max-width: 720px;
}

.not-found-hero {
    min-height: 62vh;
    background: var(--bg-blue-tint);
    border-bottom: 1px solid #D6EAF8;
    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-blue-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 { 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,
    .contact-hero__inner,
    .contact-layout,
    .about-hero__inner,
    .about-intro__grid { grid-template-columns: 1fr; }
    .archive-hero__search { max-width: 520px; }
    .single-sidebar { position: static; }
    .contact-form-card { position: static; }
    .about-side { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-values__grid { grid-template-columns: 1fr; }
    .treatments-grid { 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); }
    .single-treatment-sidebar > * { min-width: 0; }
    .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 { display: none; }
    .header-cta-nav { display: flex !important; }
    .header-cta-nav .header-cta { display: none; }
    .hamburger { display: block; }
    .archive-hero,
    .page-hero,
    .single-post-hero,
    .not-found-hero { padding: 52px 0 46px; }
    .contact-hero { padding: 52px 0 46px; }
    .about-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 { 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; flex-direction: column; width: 100%; }
    .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(--blue-primary), rgba(10,132,198,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; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-form-card { padding: 24px 20px; }
    .contact-map iframe { min-height: 330px; }
    .about-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-stat { border-right: 0; border-bottom: 1px solid var(--border-light); }
    .about-stat:nth-child(odd) { border-right: 1px solid var(--border-light); }
    .about-side { grid-template-columns: 1fr; }
    .about-hero__media,
    .about-hero__media img { min-height: 280px; }
    .about-cta__inner { align-items: flex-start; flex-direction: column; }
    .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; }
    .about-stats__grid { grid-template-columns: 1fr; }
    .about-stat,
    .about-stat:nth-child(odd) { border-right: 0; }
    .about-hero__actions { flex-direction: column; align-items: stretch; }
    .about-hero__actions .btn-primary,
    .about-hero__actions .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(--blue-primary); }
    .treatment-card { aspect-ratio: auto; min-height: 200px; }
}

/* ═══════════════════════════════════════════════════
   DOCTOR SINGLE
   ═══════════════════════════════════════════════════ */

/* Hero */
.doctor-hero {
    background: var(--bg-blue-tint);
    border-bottom: 1px solid #D6EAF8;
    padding: 72px 0 64px;
    overflow: hidden;
}
.doctor-hero__inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: center;
}
.doctor-hero__content h1 {
    color: var(--text-dark-blue);
    margin: 10px 0 12px;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
.doctor-institution {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}
.doctor-institution a {
    color: var(--blue-dark);
}
.doctor-intro {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 24px;
}
.doctor-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.doctor-hero__photo {
    position: relative;
    display: flex;
    justify-content: center;
}
.doctor-hero__photo .doctor-photo {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(7,89,133,0.22);
}
.doctor-photo-badge {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    box-shadow: var(--shadow-blue-btn);
}

/* Layout */
.doctor-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;
    align-items: start;
    padding: 60px 0 80px;
}
.doctor-body { min-width: 0; }
.doctor-sidebar { position: sticky; top: 112px; display: flex; flex-direction: column; gap: 20px; }

/* Tabs — reuse .treatment-tabs styles */
.doctor-tabs-section { margin-top: 0; }

/* Bio content */
.doctor-bio-content { font-size: 1rem; line-height: 1.9; color: var(--text-muted); }
.doctor-bio-content h2 { color: var(--text-dark-blue); margin-top: 2rem; margin-bottom: 0.5rem; }
.doctor-bio-content h3 { margin-top: 1.5rem; margin-bottom: 0.4rem; }
.doctor-bio-content p { margin-bottom: 1rem; }
.doctor-bio-content ul,
.doctor-bio-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.doctor-bio-content ul { list-style: disc; }
.doctor-bio-content ol { list-style: decimal; }

/* Timeline (education & experience) */
.doctor-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 4px 0;
    position: relative;
}
.doctor-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--blue-primary) 0%, rgba(10,132,198,0.15) 100%);
    border-radius: 2px;
}
.doctor-timeline-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 16px 0;
    position: relative;
}
.timeline-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-main);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--blue-primary);
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    z-index: 1;
}
.timeline-content { flex: 1; min-width: 0; }
.timeline-year {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue-primary);
    background: rgba(10,132,198,0.1);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 6px;
}
.timeline-place {
    display: block;
    font-size: 0.98rem;
    color: var(--text-body);
    margin-bottom: 3px;
}
.timeline-detail {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* Skills */
.doctor-skills {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.skill-group {
    background: var(--bg-blue-tint);
    border: 1px solid #D6EAF8;
    border-radius: var(--radius-md);
    padding: 18px 20px;
}
.skill-group-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue-dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #D6EAF8;
}
.skill-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.skill-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.skill-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-primary);
    flex-shrink: 0;
}

/* Publications */
.doctor-publications-list {
    list-style: decimal;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.doctor-publications-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: 6px;
}

/* Sidebar cards */
.doctor-consult-box {
    background: var(--gradient-main);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-blue-btn);
}
.consult-box__icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
}
.doctor-consult-box h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.doctor-consult-box p {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.7;
}
.doctor-consult-box .btn-primary {
    background: rgba(255,255,255,0.18);
    box-shadow: none;
    border: 2px solid rgba(255,255,255,0.5);
}
.doctor-consult-box .btn-primary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.doctor-info-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 22px 22px 16px;
    box-shadow: var(--shadow-card);
}
.doctor-info-card h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}
.doctor-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.doctor-info-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.info-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--blue-primary);
    font-weight: 700;
}
.info-value {
    font-size: 0.88rem;
    color: var(--text-body);
    font-weight: 500;
}
.info-value a { color: var(--blue-dark); }

.doctor-back-link {
    text-align: center;
}
.doctor-back-link a {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}
.doctor-back-link a:hover { color: var(--blue-primary); }

/* ═══════════════════════════════════════════════════
   DOCTOR ARCHIVE
   ═══════════════════════════════════════════════════ */
.doctor-archive-hero {
    background: var(--bg-blue-tint);
    border-bottom: 1px solid #D6EAF8;
    padding: 66px 0 58px;
}
.doctor-archive-hero h1 { color: var(--text-dark-blue); margin: 10px 0 14px; }
.doctor-archive-hero p { max-width: 680px; font-size: 1rem; color: var(--text-muted); }

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.doctor-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}
.doctor-card__photo-link { display: block; overflow: hidden; }
.doctor-card__photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}
.doctor-card:hover .doctor-card__photo { transform: scale(1.04); }
.doctor-card__placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--bg-blue-tint), #fff);
    display: flex;
    align-items: center;
    justify-content: center;
}
.doctor-card__placeholder span {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}
.doctor-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.doctor-card__specialty {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue-primary);
    margin-bottom: 6px;
}
.doctor-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark-blue);
    margin: 0 0 6px;
    line-height: 1.3;
}
.doctor-card__name a { color: inherit; text-decoration: none; }
.doctor-card__name a:hover { color: var(--blue-primary); }
.doctor-card__institution {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.doctor-card__excerpt {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 14px;
}
.doctor-card__link {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--blue-dark);
    text-decoration: none;
    transition: color 0.2s;
    margin-top: auto;
}
.doctor-card__link:hover { color: var(--blue-primary); }

/* WPForms consultation form */
#wpforms-form-203 .wpforms-field-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
#wpforms-form-203 .wpforms-field {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}
#wpforms-form-203 #wpforms-203-field_1-container {
    display: none !important;
}
#wpforms-form-203 #wpforms-203-field_3-container {
    overflow: visible !important;
    z-index: 30;
}
#wpforms-form-203 #wpforms-203-field_3-container > .wpforms-field-label,
#wpforms-form-203 #wpforms-203-field_3-container > .wpforms-label-hide {
    display: none !important;
    height: 0 !important;
    line-height: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
}
#wpforms-form-203 .iti {
    display: block !important;
    height: 43px !important;
    min-height: 43px !important;
    width: 100% !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 30;
}
#wpforms-form-203 .iti__country-container {
    align-items: center !important;
    display: flex !important;
    height: 43px !important;
    left: 0 !important;
    position: absolute !important;
    top: 0 !important;
    z-index: 40 !important;
}
#wpforms-form-203 .iti__selected-country {
    align-items: center !important;
    display: flex !important;
    height: 43px !important;
    min-height: 43px !important;
    position: relative !important;
    top: 0 !important;
}
#wpforms-form-203 .iti__dropdown-content {
    position: absolute !important;
    top: calc(100% + 3px) !important;
    left: 0 !important;
    width: min(100%, 360px) !important;
    min-width: min(320px, 100vw - 24px) !important;
    z-index: 999999 !important;
}
#wpforms-form-203 .iti input.iti__tel-input {
    display: block !important;
    height: 43px !important;
    line-height: 43px !important;
    margin: 0 !important;
    padding-left: 104px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    position: relative !important;
    top: 0 !important;
}
#wpforms-form-203 .wpforms-field input,
#wpforms-form-203 .wpforms-field select,
#wpforms-form-203 .wpforms-field textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}
#wpforms-form-203 .wpforms-submit-container {
    padding-top: 16px;
    position: relative;
    z-index: 1;
}
#wpforms-form-203 .wpforms-submit {
    width: 100%;
    min-height: 50px;
    background: var(--gradient-main) !important;
    border: 0 !important;
    border-radius: var(--radius-pill) !important;
    color: #fff !important;
    box-shadow: var(--shadow-blue-btn);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0;
    padding: 14px 30px !important;
    transition: var(--transition);
}
#wpforms-form-203 .wpforms-submit:hover,
#wpforms-form-203 .wpforms-submit:focus {
    background: var(--gradient-main) !important;
    box-shadow: 0 10px 28px rgba(7,89,133,0.4);
    color: #fff !important;
    transform: translateY(-2px);
}
#wpforms-form-203 .wpforms-submit:focus-visible {
    outline: 2px solid var(--blue-primary);
    outline-offset: 3px;
}

/* Doctor responsive */
@media (max-width: 1024px) {
    .doctor-hero__inner,
    .doctor-layout { grid-template-columns: 1fr; }
    .doctor-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }
    .doctor-back-link { grid-column: 1 / -1; }
    .doctors-grid { grid-template-columns: repeat(2, 1fr); }
    #wpforms-form-203 .wpforms-field-container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .doctor-hero { padding: 52px 0 44px; }
    .doctor-hero__photo .doctor-photo { max-width: 260px; }
    .doctor-layout { padding: 44px 0 56px; }
    .doctor-sidebar { grid-template-columns: 1fr; }
    .doctors-grid { grid-template-columns: 1fr; }
    .doctor-skills { grid-template-columns: 1fr; }
    .doctor-hero__actions { flex-direction: column; }
    .doctor-hero__actions .btn-primary,
    .doctor-hero__actions .btn-outline { justify-content: center; }
    .page-content.post-68 .page-body > h2:first-child {
        margin-left: 16px;
        margin-right: 16px;
    }
    #wpforms-form-203 {
        padding-left: 16px;
        padding-right: 16px;
    }
    #wpforms-form-203 .wpforms-field-container { grid-template-columns: 1fr; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
:focus-visible { outline: 2px solid var(--blue-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; }
}
