:root {
  --primary: #1B6CA8;
  --primary-dark: #114C7A;
  --primary-light: #E4F0F9;
  --accent: #C9A96A;
  --accent-dark: #A98A45;
  --accent-light: #F7F1E3;
  --bg: #FFFFFF;
  --bg-alt: #F4F8FB;
  --text: #22313A;
  --text-muted: #5A6B76;
  --border: #DCE8F1;
  --success: #2E8B57;
  --danger: #C0392B;
  --warning: #B8860B;
  --info: #2C7DA0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(27, 108, 168, .1);
  --shadow-lg: 0 22px 55px rgba(27, 108, 168, .16);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--primary-dark); margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; cursor: pointer; transition: all .22s ease;
  text-decoration: none; font-family: var(--font-body); line-height: 1.2;
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-gold { background: linear-gradient(135deg, var(--accent), #D9BE85); color: #fff; box-shadow: 0 8px 20px rgba(201, 169, 106, .35); }
.btn-gold:hover { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201, 169, 106, .45); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); border-color: var(--border); }
.btn-white:hover { background: var(--primary-light); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1EB65A; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(37, 211, 102, .4); }
.btn-ghost { background: transparent; color: var(--text-muted); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 9px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ---------- Header ---------- */
#site-header { display: contents; }
.site-header { position: sticky; top: 0; z-index: 60; background: #fff; box-shadow: 0 2px 20px rgba(17,76,122,.09); }
.site-header::after { content: ""; display: block; height: 2px; background: linear-gradient(90deg, var(--accent) 0%, #E7CF9A 30%, var(--primary) 55%, #E7CF9A 80%, var(--accent) 100%); }
.topbar { background: linear-gradient(90deg, var(--primary-dark) 0%, #0E5A96 100%); color: rgba(255,255,255,.85); font-size: 12.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; height: 36px; }
.tb-item { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.85); text-decoration: none; white-space: nowrap; }
.tb-item svg { width: 14px; height: 14px; color: var(--accent); }
.tb-item:hover { color: #fff; }
.tb-right { display: flex; align-items: center; gap: 18px; }
.tb-item.social { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.12); display: inline-grid; place-items: center; }
.tb-item.social svg { width: 12px; height: 12px; color: #fff; fill: currentColor; }
.tb-item.social:hover { background: var(--accent); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; flex: 0 0 auto; }
.brand-mark { position: relative; width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); display: grid; place-items: center; box-shadow: 0 6px 16px rgba(27,108,168,.32), inset 0 0 0 2px rgba(255,255,255,.16); }
.brand-mark::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid var(--accent); opacity: .6; }
.brand-mark svg { width: 25px; height: 25px; fill: #fff; }
.brand-text { display: grid; gap: 0; line-height: 1.18; }
.brand-eyebrow { font-size: 9.5px; letter-spacing: 2.6px; color: var(--accent-dark); text-transform: uppercase; font-weight: 700; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--primary-dark); letter-spacing: .2px; }
.brand-sub { font-size: 9px; letter-spacing: 3.6px; color: var(--text-muted); text-transform: uppercase; font-weight: 600; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > a, .nav-item > a { padding: 10px 15px; border-radius: 9px; font-size: 14.5px; font-weight: 500; color: var(--text); position: relative; text-decoration: none; transition: color .2s; }
.main-nav > a::after, .nav-item > a::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .22s; }
.main-nav > a:hover, .nav-item > a:hover { color: var(--primary); }
.main-nav > a:hover::after, .nav-item > a:hover::after, .main-nav > a.active::after, .nav-item > a.active::after { transform: scaleX(1); }
.main-nav > a.active, .nav-item > a.active { color: var(--primary); font-weight: 700; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-caret-btn { background: none; border: 0; cursor: pointer; color: var(--accent-dark); padding: 8px 4px; display: grid; place-items: center; transition: transform .22s; }
.nav-caret-btn svg { width: 15px; height: 15px; }
.nav-item.open .nav-caret-btn { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 300px; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 10px; display: none; z-index: 70; }
.nav-item:hover .dropdown, .nav-item.open .dropdown { display: grid; }
.dropdown a { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; font-size: 13.5px; font-weight: 500; color: var(--text); text-decoration: none; transition: .18s; }
.dropdown a svg { width: 17px; height: 17px; color: var(--primary); flex: 0 0 auto; }
.dropdown a:hover { background: var(--primary-light); color: var(--primary); }
.dropdown .dd-all { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 10px; font-weight: 700; color: var(--accent-dark); }
.dropdown .dd-all:hover { color: var(--primary); }
.main-nav > a.account { margin-left: 6px; padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--primary-light); color: var(--primary); font-weight: 600; white-space: nowrap; }
.main-nav > a.account::after { display: none; }
.main-nav > a.account:hover { background: var(--primary-light); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--primary-dark); font-size: 14px; text-decoration: none; white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary-dark); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(165deg, #F5FAFE 0%, #E7F2FA 58%, #FFFFFF 100%); color: var(--text); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 55% at 90% 8%, rgba(201,169,106,.16), transparent 60%); pointer-events: none; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 88px 0 96px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(27,108,168,.08); border: 1px solid rgba(27,108,168,.16); padding: 8px 16px; border-radius: 999px; font-size: 13px; letter-spacing: 1px; color: var(--primary); margin-bottom: 22px; }
.hero h1 { color: var(--primary-dark); font-size: clamp(34px, 4.6vw, 58px); margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--accent-dark); }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 34px; flex-wrap: wrap; }
.trust-item .num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--primary); }
.trust-item .lbl { font-size: 13px; color: var(--text-muted); }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: #fff; }
.hero-badge { position: absolute; background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); display: flex; gap: 12px; align-items: center; min-width: 200px; }
.hero-badge .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-light); display: grid; place-items: center; color: var(--primary); }
.hero-badge .t { font-weight: 700; color: var(--primary-dark); font-size: 14px; }
.hero-badge .s { font-size: 12px; color: var(--text-muted); }
.hero-badge.b1 { top: 24px; left: -26px; }
.hero-badge.b2 { bottom: 30px; right: -18px; }

/* ---------- Section headers ---------- */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.sec-head.left { text-align: left; margin-left: 0; }
.sec-tag { display: inline-block; color: var(--accent-dark); font-weight: 700; letter-spacing: 3px; font-size: 12px; text-transform: uppercase; margin-bottom: 12px; }
.sec-head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.sec-head p { color: var(--text-muted); font-size: 17px; }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.service-card { padding: 30px; display: block; color: inherit; }
.service-card .ico { width: 62px; height: 62px; border-radius: 16px; background: var(--primary-light); color: var(--primary); display: grid; place-items: center; margin-bottom: 18px; transition: .25s; }
.service-card .ico svg { width: 30px; height: 30px; }
.service-card:hover .ico { background: var(--primary); color: #fff; }
.service-card h3 { font-size: 20px; }
.service-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; }
.service-card .link { font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; font-size: 14px; }
.service-card .link svg { width: 16px; height: 16px; transition: .2s; }
.service-card:hover .link svg { transform: translateX(4px); }

.cat-card { padding: 28px; display: block; color: inherit; position: relative; }
.cat-card .ico { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(140deg, var(--primary), var(--primary-dark)); color: #fff; display: grid; place-items: center; margin-bottom: 16px; }
.cat-card .ico svg { width: 26px; height: 26px; }
.cat-card h3 { font-size: 18px; margin-bottom: 12px; }
.cat-card ul { list-style: none; padding: 0; margin: 0 0 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
.cat-card ul li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }
.cat-card ul li::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--gold); }
.cat-card .link { font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; font-size: 14px; }
.cat-card .link svg { width: 16px; height: 16px; transition: .2s; }
.cat-card:hover .link svg { transform: translateX(4px); }

.gal-cell { cursor: default; }
.gal-cell .gal-img { position: relative; overflow: hidden; }
.gal-cell .gal-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.gal-cell .gal-cat { position: absolute; left: 12px; top: 12px; background: rgba(14,75,92,.88); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.gal-cell .gal-body { padding: 12px 16px; font-size: 14px; }

.gal-pick { flex: 0 1 300px; min-width: 260px; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 36px 28px; border: 1.5px solid var(--border); border-radius: 18px; background: #fff; cursor: pointer; text-align: center; transition: .25s; box-shadow: var(--shadow); font-family: var(--font-body); }
.gal-pick:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow-lg); }
.gal-pick-ico { font-size: 36px; line-height: 1; }
.gal-pick b { font-size: 20px; color: var(--primary-dark); font-family: var(--font-display); }
.gal-pick small { color: var(--text-muted); font-size: 13px; }
.gal-back { grid-column: 1 / -1; display: flex; justify-content: center; margin-bottom: 6px; }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--primary-dark); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 44px 0; }
.stat-cell { text-align: center; }
.stat-cell .num { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--accent); }
.stat-cell .lbl { font-size: 14px; color: rgba(255,255,255,.72); }

/* ---------- Doctor ---------- */
.doctor-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.doctor-photo { position: relative; }
.doctor-photo img { width: 100%; border-radius: 28px; box-shadow: var(--shadow-lg); }
.doctor-photo .frame { position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--accent); border-radius: 28px; z-index: -1; }
.doctor-meta { display: flex; gap: 14px; margin: 18px 0; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 7px; background: var(--accent-light); color: var(--accent-dark); font-weight: 600; padding: 8px 14px; border-radius: 999px; font-size: 13px; }
.chip svg { width: 15px; height: 15px; }
.check-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list li::before { content: ""; width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; background: var(--primary-light); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E4B5C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); background-size: 12px; background-position: center; background-repeat: no-repeat; }

/* ---------- Before / After ---------- */
.ba-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ba-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: col-resize; user-select: none; aspect-ratio: 4/3; }
.ba-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-card .after { clip-path: inset(0 0 0 50%); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; box-shadow: 0 0 12px rgba(0,0,0,.3); }
.ba-handle::after { content: "⇔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 34px; height: 34px; background: #fff; border-radius: 50%; display: grid; place-items: center; color: var(--primary); font-weight: 700; box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.ba-label { position: absolute; top: 12px; padding: 4px 12px; font-size: 11px; font-weight: 700; letter-spacing: 1px; border-radius: 999px; color: #fff; background: rgba(14,75,92,.75); }
.ba-label.after-lbl { right: 12px; }

/* ---------- Testimonials ---------- */
.tst-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 44px; }
.tst-head-txt { max-width: 560px; }
.tst-head-txt .sec-tag { display: inline-block; }
.tst-head-txt h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 10px; }
.tst-head-txt p { color: var(--text-muted); font-size: 17px; margin: 0; }
.tst-google { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 16px 24px; box-shadow: var(--shadow); }
.tst-google .tst-g { width: 42px; height: 42px; font-size: 21px; box-shadow: 0 6px 16px rgba(66,133,244,.3); }
.tst-google .rate { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--primary-dark); line-height: 1.15; }
.tst-google .stars { color: #F5B301; letter-spacing: 2px; font-size: 14px; line-height: 1.5; }
.tst-google .n { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.tst-g { width: 26px; height: 26px; border-radius: 50%; background: #4285F4; color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 700; flex: 0 0 auto; }
.tst-grid-prof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst-card { position: relative; display: flex; flex-direction: column; gap: 13px; padding: 26px; background: #fff; border: 1px solid var(--border); border-radius: 18px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.tst-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #D4C49A; }
.tst-q { position: absolute; top: 6px; right: 18px; font-family: var(--font-display); font-size: 60px; line-height: 1; color: var(--primary-light); pointer-events: none; }
.tst-top { display: flex; align-items: center; gap: 12px; }
.tst-top .avatar { outline: 2px solid var(--border); outline-offset: 2px; }
.tst-top .who { flex: 1; min-width: 0; }
.tst-top .nm { font-weight: 700; color: var(--primary-dark); font-size: 14.5px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.tst-top .tx { font-size: 12px; color: var(--text-muted); }
.verified { font-size: 10.5px; color: var(--success); background: rgba(46,139,87,.1); border: 1px solid rgba(46,139,87,.25); padding: 2px 8px; border-radius: 999px; font-weight: 600; white-space: nowrap; }
.tst-top .date { font-size: 11.5px; color: var(--text-muted); white-space: nowrap; }
.tst-stars-row { display: flex; align-items: center; gap: 9px; }
.tst-stars-row .tst-stars { color: #F5B301; letter-spacing: 2px; margin: 0; font-size: 15px; }
.tst-stars-row span.rate-num { font-size: 12px; font-weight: 700; color: var(--text-muted); }
.tst-text { position: relative; color: var(--text-muted); font-size: 14.5px; line-height: 1.75; margin: 0; flex: 1; }
.tst-text::before { content: "“"; font-family: var(--font-display); position: absolute; left: -6px; top: -4px; font-size: 34px; color: var(--accent); opacity: .5; }
.tst-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--border); padding-top: 14px; }
.tst-tag { font-size: 12px; font-weight: 600; color: var(--primary); background: var(--primary-light); padding: 5px 12px; border-radius: 999px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tst-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--success); }
.tst-badge .g { width: 20px; height: 20px; border-radius: 50%; background: #4285F4; color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 16px; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; background: none; border: 0; padding: 18px 20px; text-align: left; font-family: var(--font-body); font-weight: 700; font-size: 15.5px; color: var(--primary-dark); display: flex; justify-content: space-between; align-items: center; gap: 14px; cursor: pointer; }
.faq-q .chev { width: 26px; height: 26px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: grid; place-items: center; flex: 0 0 auto; transition: .25s; }
.faq-q .chev svg { width: 14px; height: 14px; transition: .25s; }
.faq-item.open .chev svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; color: var(--text-muted); font-size: 14.5px; }
.faq-item.open .faq-a { display: block; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { display: block; color: inherit; }
.post-card img { width: 100%; height: 210px; object-fit: cover; }
.post-body { padding: 22px; }
.post-cat { font-size: 11px; letter-spacing: 2px; color: var(--accent-dark); font-weight: 700; text-transform: uppercase; }
.post-card h3 { font-size: 19px; margin: 8px 0 10px; }
.post-card p { color: var(--text-muted); font-size: 14px; }
.post-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 14px; margin-top: 14px; }

/* ---------- Contact / map ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-cell { display: flex; gap: 16px; margin-bottom: 22px; }
.info-cell .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--primary-light); color: var(--primary); display: grid; place-items: center; flex: 0 0 auto; }
.info-cell .ico svg { width: 24px; height: 24px; }
.info-cell h4 { font-size: 16px; margin-bottom: 4px; }
.info-cell p { color: var(--text-muted); font-size: 14px; margin: 0; }
.map-frame { border: 0; width: 100%; height: 100%; display: block; }
.map-wrap { position: relative; height: 420px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ---------- Contact ---------- */
.c-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.c-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; gap: 15px; align-items: flex-start; transition: transform .22s, box-shadow .22s; }
.c-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.c-card .ico { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; display: grid; place-items: center; flex: 0 0 auto; box-shadow: 0 6px 14px rgba(27,108,168,.28); }
.c-card .ico svg { width: 23px; height: 23px; }
.c-card h4 { font-size: 15px; margin-bottom: 5px; }
.c-card .cb { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.c-card .cb a { font-weight: 600; color: var(--primary); }
.contact-cta { display: flex; gap: 12px; margin-top: 22px; }
.contact-cta .btn { flex: 1; }
.fc-head { margin-bottom: 22px; }
.fc-head .sec-tag { margin-bottom: 8px; }
.contact-grid .form-card { position: relative; overflow: hidden; }
.contact-grid .form-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); }
.map-card { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
  .map-card .map-wrap { border-radius: 0; box-shadow: none; height: 460px; }
.map-pill { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); background: #fff; border-radius: 999px; padding: 11px 18px; box-shadow: var(--shadow-lg); display: flex; gap: 9px; align-items: center; font-size: 13.5px; font-weight: 600; color: var(--primary-dark); max-width: calc(100% - 40px); }
.map-pill .ico { color: var(--accent-dark); }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 13.5px; color: var(--primary-dark); margin-bottom: 7px; }
.field label .req { color: var(--danger); }
.input, select.input, textarea.input {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; background: #fff; color: var(--text); transition: .2s;
}
.input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(14,75,92,.12); }
textarea.input { min-height: 110px; resize: vertical; }
.field .hint { font-size: 12px; color: var(--text-muted); margin-top: 5px; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text-muted); }
.checkbox input { margin-top: 3px; }
.error-msg { color: var(--danger); font-size: 13px; margin-top: 5px; display: none; }
.field.invalid .input { border-color: var(--danger); }
.field.invalid .error-msg { display: block; }
.form-note { font-size: 13px; color: var(--text-muted); }

/* ---------- Slots ---------- */
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 10px; }
.slot-btn { padding: 12px 8px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: #fff; font-weight: 700; color: var(--primary-dark); cursor: pointer; font-size: 14px; transition: .18s; }
.slot-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent-dark); }
.slot-btn.selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.slot-btn:disabled { opacity: .4; text-decoration: line-through; cursor: not-allowed; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; display: flex; gap: 6px; flex-wrap: wrap; }
.crumb a { color: var(--primary); }

/* ---------- Process timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; }
.step .n { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 18px; margin-bottom: 14px; }
.step h4 { font-size: 16px; }
.step p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: linear-gradient(150deg, #F5FAFE, #E7F2FA 70%); color: var(--text); padding: 66px 0; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(201,169,106,.14); }
.page-hero h1 { color: var(--primary-dark); font-size: clamp(30px, 4vw, 46px); }
.page-hero p { color: var(--text-muted); max-width: 640px; }

/* ---------- Timeline for service detail ---------- */

/* ---------- Alert ---------- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 18px; display: flex; gap: 12px; align-items: flex-start; }
.alert-success { background: #EAF6EE; color: #1E6B42; border: 1px solid #BFE5CC; }
.alert-info { background: #EAF3F8; color: #1E5871; border: 1px solid #BFD9E6; }
.alert-warn { background: #FBF5E6; color: #7A5A12; border: 1px solid #EBD9A8; }
.alert-danger { background: #FCEFED; color: #922B1F; border: 1px solid #F0C9C2; }

/* ---------- Modal ---------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(9,40,50,.55); backdrop-filter: blur(4px); z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.open { display: flex; }
.modal { background: #fff; border-radius: 22px; max-width: 520px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 34px; position: relative; animation: pop .25s ease; }
.modal-lg { max-width: 720px; }
@keyframes pop { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--bg-alt); color: var(--text-muted); font-size: 18px; cursor: pointer; }
.modal-close:hover { background: var(--danger); color: #fff; }
.modal h3 { font-size: 22px; }

/* ---------- Toast ---------- */
#toast-wrap { position: fixed; top: 90px; right: 20px; z-index: 120; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.toast { background: #fff; border-left: 4px solid var(--success); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start; animation: slideIn .3s ease; font-size: 14px; }
.toast.toast-error { border-left-color: var(--danger); }
.toast.toast-info { border-left-color: var(--info); }
.toast.toast-warn { border-left-color: var(--warning); }
.toast .t-ico { color: var(--success); }
.toast.toast-error .t-ico { color: var(--danger); }
.toast.toast-info .t-ico { color: var(--info); }
.toast b { display: block; color: var(--primary-dark); }
@keyframes slideIn { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 80; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45); color: #fff; }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float .pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }

/* ---------- AI chat ---------- */
.chat-float { position: fixed; bottom: 96px; right: 26px; z-index: 81; width: 52px; height: 52px; border-radius: 50%; background: var(--primary); display: grid; place-items: center; box-shadow: var(--shadow-lg); cursor: pointer; color: #fff; }
.chat-float svg { width: 26px; height: 26px; }
.chat-box { position: fixed; bottom: 96px; right: 26px; width: 360px; max-width: calc(100vw - 40px); height: 480px; max-height: calc(100vh - 160px); background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); z-index: 82; display: none; flex-direction: column; overflow: hidden; }
.chat-box.open { display: flex; }
.chat-head { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.chat-head .nm { font-weight: 700; }
.chat-head .st { font-size: 12px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 5px; }
.chat-head .st::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #3FE08A; }
.chat-msgs { flex: 1; overflow-y: auto; padding: 16px; background: var(--bg-alt); display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 80%; padding: 11px 14px; border-radius: 16px; font-size: 14px; line-height: 1.45; }
.chat-msg.bot { background: #fff; border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--primary); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 10px; }
.chat-quick button { font-size: 12px; border: 1px solid var(--border); background: #fff; color: var(--primary); border-radius: 999px; padding: 6px 12px; cursor: pointer; }
.chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); background: #fff; }
.chat-input input { flex: 1; border: 1px solid var(--border); border-radius: 999px; padding: 11px 16px; font-size: 14px; }
.chat-input input:focus { outline: none; border-color: var(--primary); }
.chat-input button { width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--primary); color: #fff; cursor: pointer; }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--primary-dark); color: #fff; padding: 18px 0; box-shadow: 0 -8px 24px rgba(0,0,0,.15); display: none; }
.cookie-banner.show { display: block; }
.cookie-inner { display: flex; gap: 20px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cookie-inner p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,.85); flex: 1; min-width: 260px; }
.cookie-inner .btns { display: flex; gap: 10px; }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: linear-gradient(180deg, #0F4268 0%, #0A2E4C 100%); color: rgba(255,255,255,.75); margin-top: 0; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), #E7CF9A 45%, var(--accent)); }
.footer-top { border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 36px 0; flex-wrap: wrap; }
.f-cta-txt { display: grid; gap: 6px; }
.f-cta-title { font-family: var(--font-display); color: #fff; font-size: 23px; font-weight: 700; }
.f-cta-sub { font-size: 14px; color: rgba(255,255,255,.62); }
.f-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .9fr 1.1fr 1.2fr; gap: 40px; padding: 52px 0 46px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; }
.footer-mark { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--accent), #D9BE85); display: grid; place-items: center; color: #fff; box-shadow: 0 8px 18px rgba(0,0,0,.25); }
.footer-mark svg { width: 26px; height: 26px; }
.footer-logo-txt { display: grid; gap: 2px; }
.footer-logo-txt b { font-family: var(--font-display); color: #fff; font-size: 17px; line-height: 1.15; }
.footer-logo-txt i { font-style: normal; font-size: 10px; letter-spacing: 3px; color: var(--accent); text-transform: uppercase; font-weight: 700; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.62); max-width: 340px; }
.footer-contact { display: grid; gap: 10px; margin-top: 18px; }
.footer-contact > span { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,.75); }
.footer-contact > span i { font-style: normal; }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: var(--accent); }
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), #E7CF9A); }
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--accent); }
.site-footer .f-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; font-size: 14px; }
.site-footer .f-links > li > a { transition: color .2s, padding-left .2s; }
.site-footer .f-links > li > a:hover { padding-left: 6px; color: #E7CF9A; }
.f-hr { display: flex; gap: 12px; align-items: flex-start; }
.f-hr-ico { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: var(--accent); flex: 0 0 auto; }
.f-hr-ico svg { width: 16px; height: 16px; }
.f-hr > span:last-child { display: grid; }
.f-hr b { color: #fff; font-size: 13.5px; font-weight: 700; }
.f-hr a { font-size: 13px; color: rgba(255,255,255,.6); }
.f-hr a:hover { color: var(--accent); padding-left: 0; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #fff; transition: all .22s; }
.socials a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); color: #fff; }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.55); }
.footer-bottom .fb-links { display: inline-flex; gap: 10px; align-items: center; }
.footer-bottom .fb-links i { font-style: normal; opacity: .5; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Badges ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge-pending { background: #FBF5E6; color: #7A5A12; }
.badge-approved { background: #EAF3F8; color: #1E5871; }
.badge-completed { background: #EAF6EE; color: #1E6B42; }
.badge-cancelled { background: #FCEFED; color: #922B1F; }
.badge-admin { background: var(--primary-light); color: var(--primary); }
.badge-patient { background: var(--accent-light); color: var(--accent-dark); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14px; background: #fff; }
.tbl th { text-align: left; padding: 12px 14px; background: var(--bg-alt); color: var(--text-muted); font-size: 12px; letter-spacing: .5px; text-transform: uppercase; border-bottom: 1px solid var(--border); }
.tbl td { padding: 13px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.tbl tr:hover td { background: #FBFCFD; }
.tbl .actions { display: flex; gap: 6px; flex-wrap: wrap; }
.tbl .actions .btn { padding: 6px 10px; font-size: 12px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--accent-dark); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 36px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 36px; }
.d-none { display: none !important; }
.flex { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.advantages { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.advantages li { display: flex; gap: 12px; align-items: flex-start; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14.5px; }
.advantages li .chk { color: var(--success); flex: 0 0 auto; margin-top: 2px; }

/* ---------- Service detail ---------- */
.sv-hero { position: relative; background: linear-gradient(160deg, #F5FAFE 0%, #E7F2FA 55%, #FFFFFF 100%); overflow: hidden; border-bottom: 1px solid var(--border); }
.sv-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 50% at 88% 8%, rgba(201,169,106,.18), transparent 62%); pointer-events: none; }
.sv-hero-inner { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: 52px; align-items: center; padding: 62px 0 70px; }
.sv-hero h1 { font-size: clamp(30px, 3.8vw, 46px); margin-bottom: 14px; }
.sv-lead { font-size: 17.5px; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.sv-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 26px; }
.sv-chips .chip { background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 12px rgba(27,108,168,.08); }
.sv-cta { flex-wrap: wrap; }
.sv-img-frame { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: #fff; }
.sv-img-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sv-img-tag { position: absolute; top: 16px; left: 16px; background: rgba(17,76,122,.92); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; }

.sv-quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 34px 0 6px; }
.sv-quick-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; display: flex; gap: 15px; align-items: center; box-shadow: 0 8px 22px rgba(27,108,168,.06); }
.sv-quick-item .ico { width: 46px; height: 46px; border-radius: 14px; background: var(--primary-light); color: var(--primary); display: grid; place-items: center; flex: 0 0 auto; }
.sv-quick-item .ico svg { width: 23px; height: 23px; }
.sv-quick-item .v { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--primary-dark); line-height: 1.2; }
.sv-quick-item .l { font-size: 12.5px; color: var(--text-muted); }

.sv-sec-head { display: flex; align-items: center; gap: 14px; margin: 58px 0 26px; }
.sv-sec-head::before { content: ""; width: 6px; height: 32px; border-radius: 4px; background: linear-gradient(180deg, var(--accent), var(--accent-dark)); }
.sv-sec-head .t { font-size: clamp(23px, 2.6vw, 30px); margin: 0; }

.sv-about { max-width: 780px; }
.sv-about p { font-size: 16px; }
.sv-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.sv-adv { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sv-adv li { display: flex; gap: 12px; align-items: flex-start; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; font-size: 14.5px; }
.sv-adv li .chk { color: var(--accent-dark); flex: 0 0 auto; margin-top: 2px; }
.sv-adv li .chk svg { width: 18px; height: 18px; }

.sv-timeline { position: relative; margin: 0; }
.sv-timeline::before { content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(180deg, var(--accent), var(--primary)); opacity: .35; }
.sv-tl-item { position: relative; padding: 0 0 30px 64px; }
.sv-tl-item:last-child { padding-bottom: 0; }
.sv-tl-n { position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 16px; box-shadow: 0 6px 14px rgba(201,169,106,.4); }
.sv-tl-item h4 { font-size: 17px; margin-bottom: 5px; }
.sv-tl-item p { font-size: 14px; color: var(--text-muted); margin: 0; max-width: 640px; }

.cta-panel { position: relative; overflow: hidden; border-radius: 24px; background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; padding: 54px 40px; margin: 64px 0 0; text-align: center; }
.cta-panel::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 15% 0%, rgba(201,169,106,.3), transparent 55%); pointer-events: none; }
.cta-panel > * { position: relative; }
.cta-panel h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.cta-panel p { color: rgba(255,255,255,.88); font-size: 16px; max-width: 620px; margin: 0 auto 28px; }
.cta-panel .flex { justify-content: center; }
.cta-panel .btn { box-shadow: 0 12px 26px rgba(0,0,0,.2); }

/* ---------- Responsive ---------- */
@media (max-width: 1340px) {
  .header-phone { display: none; }
  .main-nav > a, .nav-item > a { padding: 10px 11px; font-size: 14px; }
  .brand-name { font-size: 17px; }
  .header-inner { gap: 14px; }
  .main-nav { gap: 0; }
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 0 70px; }
  .hero-visual { max-width: 520px; }
  .hero-badge.b1 { left: 0; } .hero-badge.b2 { right: 0; }
  .doctor-grid { grid-template-columns: 1fr; }
  .doctor-photo { max-width: 440px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-wrap { grid-template-columns: 1fr 1fr; }
  .tst-grid-prof, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .sv-quick { grid-template-columns: 1fr 1fr; }
  .contact-grid, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 78px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; gap: 2px; box-shadow: var(--shadow); border-bottom: 1px solid var(--border);
    transform: translateY(-140%); transition: .3s; z-index: 55;
  }
  .main-nav.open { transform: none; }
  .main-nav > a, .nav-item > a { padding: 13px 14px; }
  .main-nav > a::after, .nav-item > a::after { display: none; }
  .nav-item { flex-direction: column; align-items: stretch; }
  .nav-item > a { display: flex; }
  .nav-caret-btn { position: absolute; right: 10px; top: 10px; }
  .dropdown { position: static; display: none; min-width: 0; box-shadow: none; border: 0; padding: 0 0 4px 18px; }
  .nav-item.open .dropdown, .nav-item:hover .dropdown { display: grid; }
  .dropdown .dd-all { margin-top: 2px; border-top: 1px solid var(--border); }
  .main-nav > a.account { border: 0; padding: 13px 14px; border-radius: 9px; }
  .header-phone { display: none; }
  .section { padding: 52px 0; }
  .hero h1 { font-size: 32px; }
  .ba-wrap, .tst-grid-prof, .blog-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-badge { min-width: 150px; padding: 10px 12px; }
  .hero-badge .t { font-size: 12px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .sv-hero-inner { grid-template-columns: 1fr; gap: 34px; padding: 46px 0 54px; }
  .sv-adv { grid-template-columns: 1fr; }
  .cta-panel { padding: 42px 24px; }
}
@media (max-width: 480px) {
  .btn-lg { padding: 14px 22px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-mark svg { width: 22px; height: 22px; }
  .brand-name { font-size: 15px; }
  .brand-sub, .brand-eyebrow { letter-spacing: 2px; }
  .sv-quick { grid-template-columns: 1fr; }
  .c-card-grid { grid-template-columns: 1fr; }
  .contact-cta { flex-direction: column; }
  .map-pill { width: calc(100% - 40px); justify-content: center; text-align: center; }
}

/* ============================================================
   MOBILE (premium) — 320px–768px
   Masaüstü stillerine dokunulmaz; yalnızca mobil deneyim.
   ============================================================ */

@media (max-width: 768px) {
  /* ---- Overflow & genel ---- */
  html { scroll-padding-top: 72px; }
  html, body { overflow-x: clip; }
  @supports not (overflow: clip) { html, body { overflow-x: hidden; } }
  body { font-size: 15.5px; }
  body.menu-open { overflow: hidden; }
  .container { padding: 0 18px; }
  .section { padding: 44px 0; }
  img, svg, iframe, table, pre { max-width: 100%; }
  a, button, .btn, .slot-btn, .faq-q, .tst-card, .ba-card, .nav-caret-btn, .chip, select.input, .checkbox input { touch-action: manipulation; }

  /* ---- Başlıklar / tipografi ---- */
  .sec-head { margin: 0 auto 30px; }
  .sec-head h2 { font-size: 26px; }
  .sec-head p { font-size: 15px; }
  .sec-tag { letter-spacing: 2.5px; font-size: 11px; }
  .page-hero { padding: 42px 0; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 15px; }
  .crumb { margin-bottom: 14px; }

  /* ---- Butonlar ---- */
  .btn { min-height: 48px; padding: 12px 22px; border-radius: 13px; }
  .btn svg { width: 18px; height: 18px; }
  .btn-sm { min-height: 40px; padding: 8px 14px; font-size: 12.5px; border-radius: 10px; }
  .btn-lg { min-height: 52px; padding: 15px 28px; }
  .btn:active, .nav-toggle:active, .slot-btn:active, .faq-q:active { transform: scale(.97); }

  /* ---- Header ---- */
  .header-inner { height: 64px; gap: 10px; }
  .brand { gap: 10px; min-width: 0; }
  .brand-mark { width: 42px; height: 42px; flex: 0 0 auto; }
  .brand-mark svg { width: 22px; height: 22px; }
  .brand-eyebrow { display: none; }
  .brand-name { font-size: 16px; white-space: nowrap; }
  .brand-sub { letter-spacing: 2.4px; font-size: 8.5px; }
  .header-cta { gap: 8px; }
  .header-cta .btn-gold { min-height: 0; padding: 10px 15px; font-size: 13px; border-radius: 11px; white-space: nowrap; }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border-radius: 12px; border: 1.5px solid var(--border); background: #fff; }
  .nav-toggle svg { width: 22px; height: 22px; stroke: var(--primary-dark); stroke-width: 2; }
  .nav-toggle:active { background: var(--primary-light); }

  /* ---- Mobil menü paneli ---- */
  .main-nav {
    inset: 64px 12px auto 12px; padding: 8px 12px 14px; border-radius: 0 0 20px 20px;
    border: 1px solid var(--border); border-top: 0; box-shadow: 0 26px 55px rgba(17,76,122,.28);
    transform: translateY(-135%); transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .22s;
    opacity: 0; max-height: calc(100vh - 78px); max-height: calc(100dvh - 78px); overflow-y: auto;
    overscroll-behavior: contain;
  }
  .main-nav::before { content: ""; position: absolute; top: 0; left: 18px; right: 18px; height: 3px; border-radius: 0 0 3px 3px; background: linear-gradient(90deg, var(--accent), #E7CF9A 40%, var(--primary) 75%, var(--accent)); }
  .main-nav.open { transform: none; opacity: 1; }
  .main-nav > * { opacity: 0; transform: translateY(10px); transition: opacity .28s ease, transform .28s ease; }
  .main-nav.open > * { opacity: 1; transform: none; }
  .main-nav.open > *:nth-child(1) { transition-delay: .03s; }
  .main-nav.open > *:nth-child(2) { transition-delay: .06s; }
  .main-nav.open > *:nth-child(3) { transition-delay: .09s; }
  .main-nav.open > *:nth-child(4) { transition-delay: .12s; }
  .main-nav.open > *:nth-child(5) { transition-delay: .15s; }
  .main-nav.open > *:nth-child(6) { transition-delay: .18s; }
  .main-nav.open > *:nth-child(7) { transition-delay: .21s; }
  .main-nav > a, .nav-item > a { padding: 15px 16px; font-size: 16px; border-radius: 12px; display: flex; align-items: center; }
  .main-nav > a:hover, .nav-item > a:hover, .main-nav > a.active, .nav-item > a.active { background: var(--primary-light); color: var(--primary); }
  .main-nav > a::after, .nav-item > a::after { display: none; }
  .nav-caret-btn { width: 40px; height: 40px; top: 6px; right: 6px; }
  .nav-item.open .dropdown, .nav-item:hover .dropdown { display: grid; }
  .dropdown a { padding: 13px 12px; font-size: 14.5px; }
  .dropdown .dd-all { padding: 13px 12px; }
  .main-nav > a.account { margin: 8px 0 2px; border: 0; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; justify-content: center; font-weight: 700; }
  .main-nav > a.account:hover { background: var(--primary-dark); color: #fff; }
  .site-header:has(.main-nav.open)::before { content: ""; position: fixed; inset: 64px 0 0 0; background: rgba(9,40,50,.4); z-index: 50; }

  /* ---- Hero ---- */
  .hero-inner { grid-template-columns: 1fr; padding: 40px 0 44px; gap: 28px; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero h1 { font-size: 30px; line-height: 1.24; }
  .hero-sub { font-size: 15.5px; max-width: 100%; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; margin-bottom: 28px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { justify-content: center; gap: 22px; }
  .trust-item .num { font-size: 22px; }
  .trust-item .lbl { font-size: 12px; }
  .hero-visual { max-width: 100%; }
  .hero-visual img { border-radius: 18px; }

  /* ---- Kartlar / gridler ---- */
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  #galleryGrid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card { padding: 24px; }
  .service-card .ico { width: 56px; height: 56px; border-radius: 14px; }
  .service-card .ico svg { width: 27px; height: 27px; }
  .cat-card { padding: 24px; }
  .cat-card ul { gap: 8px 10px; }
  .post-card img { height: 190px; }
  .post-body { padding: 18px; }
  .post-card h3 { font-size: 18px; }

  /* ---- Stats ---- */
  .stats-grid { padding: 34px 0; gap: 26px 12px; }
  .stat-cell .num { font-size: 30px; }
  .stat-cell .lbl { font-size: 13px; }

  /* ---- Doktor ---- */
  .doctor-grid { gap: 32px; }
  .doctor-photo { max-width: 380px; margin: 0 auto; }
  .doctor-photo .frame { inset: 12px -10px -10px 12px; border-radius: 22px; }
  .doctor-photo img { border-radius: 22px; }
  .doctor-meta { gap: 8px; }
  .chip { padding: 7px 12px; font-size: 12.5px; }

  /* ---- Before / After ---- */
  .ba-wrap { gap: 16px; }
  .ba-card { border-radius: 18px; }

  /* ---- Yorumlar: yatay kaydırmalı ---- */
  .tst-head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
  .tst-head-txt h2 { font-size: 26px; }
  .tst-google { width: 100%; justify-content: space-between; padding: 14px 18px; }
  .tst-grid-prof { grid-auto-flow: column; grid-auto-columns: minmax(270px, 84%); grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding: 2px 2px 18px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .tst-grid-prof::-webkit-scrollbar { display: none; }
  .tst-card { scroll-snap-align: start; padding: 22px; border-radius: 16px; }
  .tst-card:hover { transform: none; }

  /* ---- SSS ---- */
  .faq-q { padding: 15px 16px; font-size: 15px; }
  .faq-a { padding: 0 16px 16px; font-size: 14px; }

  /* ---- Formlar ---- */
  .form-card { padding: 26px 20px; border-radius: 18px; }
  .input, select.input, textarea.input { font-size: 16px; padding: 14px 16px; }
  textarea.input { min-height: 96px; }
  .field label { font-size: 14px; }
  .field { margin-bottom: 16px; }
  .slots { grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 9px; }
  .slot-btn { padding: 13px 8px; font-size: 13.5px; }

  /* ---- Service detay ---- */
  .sv-hero-inner { padding: 38px 0 46px; gap: 28px; }
  .sv-lead { font-size: 16px; }
  .sv-chips { margin: 16px 0 22px; }
  .sv-quick { gap: 12px; margin: 26px 0 4px; }
  .sv-quick-item { padding: 16px 18px; }
  .sv-quick-item .ico { width: 42px; height: 42px; }
  .sv-quick-item .v { font-size: 17px; }
  .sv-sec-head { margin: 42px 0 20px; }
  .sv-sec-head .t { font-size: 24px; }
  .sv-panel { padding: 22px 18px; }
  .sv-about p { font-size: 15.5px; }
  .sv-tl-item { padding: 0 0 26px 56px; }
  .sv-tl-n { width: 42px; height: 42px; font-size: 15px; }
  .cta-panel { margin: 46px 0 0; padding: 34px 20px; border-radius: 20px; }
  .cta-panel h2 { font-size: 24px; }
  .cta-panel p { font-size: 14.5px; }

  /* ---- Contact ---- */
  .contact-grid { gap: 26px; }
  .c-card { padding: 18px; }
  .map-card { border-radius: 16px; }
  .map-card .map-wrap { height: 330px; }
  .map-pill { padding: 10px 16px; font-size: 12.5px; }

  /* ---- Adımlar / süreç ---- */
  .step { padding: 22px 18px; }
  .step .n { width: 38px; height: 38px; font-size: 16px; }

  /* ---- Modal / Toast ---- */
  .modal-backdrop { padding: 0; align-items: flex-end; }
  .modal { padding: 28px 20px 26px; border-radius: 24px 24px 0 0; max-height: 90dvh; animation: sheetUp .32s cubic-bezier(.2,.8,.2,1); }
  .modal h3 { font-size: 20px; }
  .modal-close { top: 14px; right: 14px; }
  #toast-wrap { left: 14px; right: 14px; top: 78px; max-width: none; }
  @keyframes sheetUp { from { transform: translateY(56px); opacity: 0; } to { transform: none; opacity: 1; } }

  /* ---- Yüzen butonlar ---- */
  .wa-float { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
  .chat-float { right: 16px; bottom: calc(80px + env(safe-area-inset-bottom)); }
  .chat-box { left: 10px; right: 10px; bottom: calc(84px + env(safe-area-inset-bottom)); width: auto; max-width: none; height: 74dvh; max-height: none; border-radius: 18px; }
  .chat-msgs { padding: 12px; }

  /* ---- Footer ---- */
  .footer-cta { flex-direction: column; align-items: flex-start; gap: 18px; padding: 30px 0; }
  .f-cta-title { font-size: 20px; }
  .f-cta-actions { width: 100%; flex-direction: column; }
  .f-cta-actions .btn { width: 100%; }
  .footer-grid { gap: 30px; padding: 40px 0 34px; }
  .socials { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom .fb-links { justify-content: center; flex-wrap: wrap; }
  .footer-contact { gap: 9px; }
  .cookie-inner { padding: 4px 0; }
  .cookie-inner .btns { width: 100%; }
  .cookie-inner .btns .btn { flex: 1; }

  @media (prefers-reduced-motion: reduce) {
    .main-nav, .main-nav > * { transition: none; }
  }
}

/* ---- Küçük telefonlar ---- */
@media (max-width: 480px) {
  .brand-name { font-size: 15px; }
  .brand-sub { display: none; }
  .hero h1 { font-size: 27px; }
  .hero-trust { gap: 18px; }
  #galleryGrid { gap: 10px; }
  .sv-quick { grid-template-columns: 1fr; }
  .c-card-grid { grid-template-columns: 1fr; }
  .contact-cta { flex-direction: column; }
  .map-pill { width: calc(100% - 36px); justify-content: center; text-align: center; }
  .tst-grid-prof { grid-auto-columns: minmax(250px, 86%); }
  .chat-box { height: 70dvh; }
}

/* ---- 360px ve altı (320px) ---- */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .header-cta .btn-gold { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 14px; }
  .hero h1 { font-size: 25px; }
  #galleryGrid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell .num { font-size: 26px; }
  .main-nav { left: 8px; right: 8px; }
}

/* ============================================================
   MOBİL ANA SAYFA — kısa & premium (yalnızca mobil, 320–768px)
   Masaüstü görünümüne dokunulmaz.
   ============================================================ */
.mob-only { display: none; }

@media (max-width: 768px) {

  /* ---- Tek sütun düzen + bölüm sıralaması (yalnızca ana sayfa) ----
     :has(.hero) ile ana sayfaya özel; iç sayfalarda header/hero doğal akışta kalır. */
  body:has(.hero) { display: flex; flex-direction: column; }
  .site-header { order: 10; }
  .hero { order: 20; }
  .stats-strip { order: 30; display: none; }
  .section:has(#homeServices) { order: 40; }
  .section:has(#homeBA) { order: 50; display: none; }
  .section:has(#homeSpecialties) { order: 60; display: none; }
  .section:has(#homeDoctor) { order: 70; }
  .mob-why { order: 80; display: block; }
  .section:has(#homeTestimonials) { order: 90; }
  .mob-cta { order: 100; display: block; }
  .section:has(#homeFAQ) { order: 105; padding: 36px 0; }
  #homeFAQ .faq-item:nth-child(n+5) { display: none; }
  .section:has(#homeMap) { order: 110; }
  #site-footer { order: 120; }

  /* ---- Footer: premium mobil v2 ---- */
  .site-footer { background: linear-gradient(180deg, #0B3757 0%, #061F34 100%); }
  .site-footer::before { height: 4px; }
  .site-footer::after { content: ""; position: absolute; top: -90px; right: -70px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,106,.18), transparent 70%); pointer-events: none; }

  /* CTA paneli */
  .footer-top { border: 0; }
  .footer-cta { position: relative; overflow: hidden; align-items: center; text-align: center; gap: 12px; margin: 22px 0 0; padding: 30px 22px; border-radius: 20px; border: 1px solid rgba(201,169,106,.30); background: linear-gradient(120deg, rgba(201,169,106,.14) 0%, rgba(255,255,255,.02) 55%, rgba(27,108,168,.14) 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 34px rgba(0,0,0,.28); }
  .footer-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 70% at 85% 10%, rgba(201,169,106,.16), transparent 55%); pointer-events: none; }
  .footer-cta > * { position: relative; }
  .f-cta-txt { justify-items: center; gap: 8px; }
  .f-cta-txt::before { content: "RANDEVU & \0130LET\0130\015E\0130M"; font-size: 10.5px; font-weight: 700; letter-spacing: 3px; color: var(--accent); }
  .f-cta-title { font-size: 22px; line-height: 1.3; }
  .f-cta-sub { font-size: 13.5px; line-height: 1.65; }
  .f-cta-actions { gap: 10px; }
  .f-cta-actions .btn { width: 100%; min-height: 52px; border-radius: 14px; font-size: 15px; box-shadow: 0 8px 22px rgba(0,0,0,.25); }

  /* Marka bloğu */
  .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 22px; padding: 30px 0 26px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; padding: 4px 0 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-logo { justify-content: center; gap: 14px; }
  .footer-mark { width: 54px; height: 54px; border-radius: 16px; box-shadow: 0 10px 24px rgba(201,169,106,.35); }
  .footer-mark svg { width: 28px; height: 28px; }
  .footer-logo-txt b { font-size: 18px; }
  .footer-logo-txt i { font-size: 9.5px; letter-spacing: 3.5px; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 320px; margin: 14px auto 0; }
  .footer-contact { margin-top: 16px; display: grid; gap: 8px; }
  .footer-contact > span { justify-content: center; font-size: 13px; }
  .footer-contact svg { width: 17px; height: 17px; margin-top: 0; }
  .socials { justify-content: center; margin-top: 18px; }
  .socials a { width: 42px; height: 42px; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
  .socials a:hover { transform: translateY(-2px); }

  /* Link kolonları */
  .footer-col h4 { font-size: 12.5px; letter-spacing: 2px; margin-bottom: 16px; padding-bottom: 10px; }
  .footer-col h4::after { width: 26px; height: 2.5px; }
  .footer-col .f-links { gap: 8px; font-size: 13.5px; }
  .footer-col .f-links > li > a { display: inline-flex; align-items: center; transition: color .2s, transform .2s; }
  .footer-col .f-links > li > a:hover { padding-left: 0; color: #E7CF9A; transform: translateX(4px); }
  .footer-col:nth-child(2), .footer-col:nth-child(3) { text-align: center; }
  .footer-col:nth-child(2) h4, .footer-col:nth-child(3) h4 { text-align: center; }
  .footer-col:nth-child(2) h4::after, .footer-col:nth-child(3) h4::after { left: 50%; transform: translateX(-50%); }
  .footer-col:nth-child(2) .f-links, .footer-col:nth-child(3) .f-links { justify-items: center; }

  /* Randevu & çalışma paneli */
  .footer-col:last-child { grid-column: 1 / -1; margin-top: 2px; padding: 20px 18px 18px; border: 1px solid rgba(255,255,255,.10); border-radius: 18px; background: rgba(255,255,255,.04); }
  .footer-col:last-child h4 { margin-bottom: 14px; }
  .footer-col:last-child .f-links { grid-template-columns: 1fr 1fr; gap: 10px 20px; }
  .f-hr { align-items: center; gap: 11px; }
  .f-hr-ico { width: 36px; height: 36px; border-radius: 11px; background: rgba(201,169,106,.12); border-color: rgba(201,169,106,.22); color: var(--accent); }
  .f-hr-ico svg { width: 17px; height: 17px; }
  .f-hr b { font-size: 13px; color: #fff; }
  .f-hr a { font-size: 12.5px; }

  /* Alt bar */
  .footer-bottom { flex-direction: column; gap: 12px; padding: 18px 0 calc(20px + env(safe-area-inset-bottom)); }
  .footer-bottom .fb-links { gap: 8px; }
  .footer-bottom .fb-links i { opacity: .4; }

  /* ---- Hero: ilk ekranın %70–80'i ---- */
  .hero { min-height: calc(78vh - 64px); min-height: calc(78dvh - 64px); display: flex; }
  .hero-inner { min-height: calc(78vh - 64px); min-height: calc(78dvh - 64px); justify-content: center; padding: 36px 0 40px; gap: 22px; }
  .hero-eyebrow { display: none; }
  .hero-trust { display: none; }
  .hero-actions { margin-bottom: 0; }
  .hero-actions .btn { min-height: 52px; }
  .hero-actions .btn-outline { display: none; }
  .hero-visual img { border-radius: 18px; }

  /* ---- Hizmetler: kompakt, yalnızca ikon + başlık ---- */
  .section:has(#homeServices) { padding-bottom: 40px; }
  .section:has(#homeServices) .sec-head p { display: none; }
  .section:has(#homeServices) .sec-head { margin-bottom: 22px; }
  #homeServices { grid-template-columns: 1fr 1fr; gap: 12px; }
  #homeServices .service-card { padding: 18px 12px 16px; text-align: center; border-radius: 15px; }
  #homeServices .service-card .ico { width: 46px; height: 46px; border-radius: 13px; margin: 0 auto 10px; }
  #homeServices .service-card .ico svg { width: 23px; height: 23px; }
  #homeServices .service-card h3 { font-size: 14.5px; line-height: 1.3; margin-bottom: 0; }
  #homeServices .service-card p { display: none; }
  #homeServices .service-card .link { display: none; }
  .section:has(#homeServices) .text-center { margin-top: 18px; }
  .section:has(#homeServices) .text-center .btn { font-size: 0; min-height: 50px; padding: 14px 26px; }
  .section:has(#homeServices) .text-center .btn::after { content: "Tüm Hizmetleri Gör"; font-size: 15px; }

  /* ---- Doktor: kısa tanıtım ---- */
  .section:has(#homeDoctor) { padding: 40px 0; }
  .section:has(#homeDoctor) .doctor-grid { gap: 24px; }
  .section:has(#homeDoctor) .doctor-photo { max-width: 240px; }
  .section:has(#homeDoctor) .doctor-photo .frame { display: none; }
  .section:has(#homeDoctor) .sec-tag { display: block; text-align: center; }
  .section:has(#homeDoctor) h2 { font-size: 26px !important; text-align: center; }
  .section:has(#homeDoctor) p.text-muted { text-align: center; font-size: 14.5px; }
  .section:has(#homeDoctor) .doctor-meta { display: none; }
  .section:has(#homeDoctor) .check-list { display: none; }
  .section:has(#homeDoctor) .flex { flex-direction: column; align-items: stretch; gap: 10px; }
  .section:has(#homeDoctor) .flex .btn { width: 100%; min-height: 50px; }
  .section:has(#homeDoctor) .flex .btn-gold { font-size: 0; }
  .section:has(#homeDoctor) .flex .btn-gold::after { content: "Detaylı Özgeçmiş"; font-size: 15px; }

  /* ---- Neden Bizi Tercih Etmelisiniz ---- */
  .mob-why { background: #fff; padding: 40px 0; }
  .mob-why .sec-head { margin-bottom: 24px; }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px 12px 18px; text-align: center; box-shadow: var(--shadow); }
  .why-ico { width: 48px; height: 48px; margin: 0 auto 11px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(27,108,168,.32); }
  .why-ico svg { width: 24px; height: 24px; }
  .why-card b { display: block; font-size: 14.5px; color: var(--primary-dark); margin-bottom: 3px; line-height: 1.3; }
  .why-lbl { font-size: 12px; color: var(--text-muted); }

  /* ---- Yorumlar: en iyi 3 + buton ---- */
  .section:has(#homeTestimonials) { padding: 44px 0 40px; }
  #homeTestimonials .tst-card:nth-child(n+4) { display: none; }
  .tst-more { display: block; text-align: center; margin-top: 2px; }
  .tst-more .btn { min-height: 48px; padding: 12px 28px; }

  /* ---- Hasta Yorumları: premium mobil ---- */
  .section:has(#homeTestimonials) {
    padding: 46px 0 42px;
    background:
      radial-gradient(90% 60% at 100% 0%, rgba(201,169,106,.14), transparent 55%),
      radial-gradient(80% 55% at 0% 100%, rgba(27,108,168,.10), transparent 60%),
      #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .section:has(#homeTestimonials) .tst-head { align-items: center; text-align: center; gap: 14px; margin-bottom: 24px; }
  .section:has(#homeTestimonials) .tst-head-txt { max-width: 100%; }
  .section:has(#homeTestimonials) .tst-head-txt h2 { font-size: 25px; margin-bottom: 8px; }
  .section:has(#homeTestimonials) .tst-head-txt p { font-size: 14px; }
  .section:has(#homeTestimonials) .tst-google {
    width: auto; justify-content: center; gap: 12px; padding: 12px 20px; border-radius: 999px;
    border-color: rgba(201,169,106,.45); box-shadow: 0 8px 22px rgba(27,108,168,.10);
  }
  .section:has(#homeTestimonials) .tst-google .tst-g { width: 36px; height: 36px; font-size: 18px; }
  .section:has(#homeTestimonials) .tst-google .rate { font-size: 19px; }
  .section:has(#homeTestimonials) .tst-google .stars { font-size: 13px; }
  .section:has(#homeTestimonials) .tst-google .n { font-size: 11.5px; }
  .section:has(#homeTestimonials) #homeTestimonials {
    grid-auto-columns: minmax(268px, 80%);
    gap: 16px; padding: 6px 6px 22px;
  }
  .section:has(#homeTestimonials) .tst-card {
    position: relative; overflow: hidden;
    padding: 26px 22px 20px; border-radius: 20px;
    border: 1px solid rgba(27,108,168,.14);
    background: linear-gradient(180deg, #FFFFFF 0%, #FBFDFF 100%);
    box-shadow: 0 14px 34px rgba(27,108,168,.12);
    scroll-snap-align: start;
  }
  .section:has(#homeTestimonials) .tst-card::before {
    content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, #EBD6A5 50%, var(--accent) 100%);
    border-radius: 0 0 4px 4px;
  }
  .section:has(#homeTestimonials) .tst-card .tst-q { display: none; }
  .section:has(#homeTestimonials) .tst-card .tst-top { align-items: flex-start; }
  .section:has(#homeTestimonials) .tst-card .tst-top .who { overflow: hidden; }
  .section:has(#homeTestimonials) .tst-card .tst-top .date { display: none; }
  .section:has(#homeTestimonials) .tst-card .tst-top .avatar { width: 46px; height: 46px; font-size: 17px; box-shadow: 0 4px 12px rgba(27,108,168,.18); }
  .section:has(#homeTestimonials) .tst-card .tst-top .nm { font-size: 14.5px; }
  .section:has(#homeTestimonials) .tst-card .tst-top .date { font-size: 11px; }
  .section:has(#homeTestimonials) .tst-card .tst-stars-row .tst-stars { font-size: 16px; letter-spacing: 2.5px; }
  .section:has(#homeTestimonials) .tst-card .tst-text { font-size: 14px; line-height: 1.72; color: #41525E; }
  .section:has(#homeTestimonials) .tst-card .tst-foot { padding-top: 13px; }
  .section:has(#homeTestimonials) .tst-card .tst-tag { font-size: 11.5px; padding: 4px 11px; }
  .tst-dots { display: flex; justify-content: center; gap: 8px; margin: -4px 0 18px; }
  .tst-dots .dot { width: 7px; height: 7px; border-radius: 999px; background: #C4D6E4; transition: all .25s ease; }
  .tst-dots .dot.active { width: 22px; background: linear-gradient(90deg, var(--accent), #E7CF9A); }
  .tst-more .btn {
    min-height: 50px; padding: 13px 32px; border-radius: 999px;
    border-color: rgba(201,169,106,.65); color: var(--accent-dark); font-weight: 700;
    background: linear-gradient(135deg, rgba(201,169,106,.10), rgba(201,169,106,.02));
    box-shadow: 0 8px 20px rgba(201,169,106,.18);
  }

  /* ---- Randevu çağrısı ---- */
  .mob-cta { padding: 8px 0 44px; }
  .mob-cta-card { position: relative; overflow: hidden; border-radius: 22px; background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; padding: 34px 26px; text-align: center; }
  .mob-cta-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 15% 0%, rgba(201,169,106,.32), transparent 55%); pointer-events: none; }
  .mob-cta-card > * { position: relative; }
  .mob-cta-card h2 { color: #fff; font-size: 23px; margin-bottom: 10px; }
  .mob-cta-card p { color: rgba(255,255,255,.9); font-size: 14.5px; margin-bottom: 22px; }
  .mob-cta-card .btn { min-height: 52px; padding: 13px 30px; }

  /* ---- İletişim: tek kart + küçük harita ---- */
  .section:has(#homeMap) { padding: 40px 0 44px; }
  .section:has(#homeMap) .contact-grid { gap: 16px; }
  .section:has(#homeMap) .contact-grid > div:first-child { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 16px 14px 18px; box-shadow: var(--shadow); }
  .section:has(#homeMap) .sec-head.left { grid-column: 1 / -1; text-align: center; margin: 0 0 8px !important; }
  .section:has(#homeMap) .sec-head.left h2 { font-size: 24px; }
  .section:has(#homeMap) .info-cell { margin: 0; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .section:has(#homeMap) .info-cell .ico { width: 40px; height: 40px; border-radius: 12px; font-size: 17px; }
  .section:has(#homeMap) .info-cell h4 { font-size: 12px; margin-bottom: 2px; }
  .section:has(#homeMap) .info-cell p { font-size: 12px; line-height: 1.4; margin: 0; }
  .section:has(#homeMap) .map-wrap { height: 240px; }
  #homeWaBtn { grid-column: 1 / -1; display: flex; min-height: 48px; }

  /* ---- Performans: alt bölümler lazily render edilir ---- */
  .section, .mob-why, .mob-cta { content-visibility: auto; contain-intrinsic-size: auto 480px; }
}

/* ============================================================
   İÇ SAYFALAR (premium mobil) — 320px–768px
   Ana sayfa & masaüstü görünümüne dokunulmaz.
   ============================================================ */

@media (max-width: 768px) {

  /* ---- Page hero: kompakt, ortalanmış, dekoratif ---- */
  .page-hero { text-align: center; padding: 38px 0 44px; overflow: hidden; }
  .page-hero > .container { position: relative; display: flex; flex-direction: column; align-items: center; }
  .page-hero::before { content: ""; position: absolute; left: -70px; bottom: -100px; width: 210px; height: 210px; border-radius: 50%; background: radial-gradient(circle, rgba(27,108,168,.14), transparent 70%); }
  .page-hero::after { width: 210px; height: 210px; right: -60px; top: -70px; opacity: .85; }
  .page-hero h1 { font-size: 27px; line-height: 1.26; margin-bottom: 12px; }
  .page-hero h1::after { content: ""; display: block; width: 52px; height: 3px; margin: 12px auto 0; border-radius: 2px; background: linear-gradient(90deg, var(--accent), #E7CF9A); }
  .page-hero p { font-size: 14.5px; line-height: 1.7; max-width: 92%; margin: 0 auto; }
  .page-hero .sec-tag { margin-bottom: 10px; }
  .page-hero .crumb { margin-bottom: 12px; }

  /* ---- Breadcrumb: chip stili ---- */
  .crumb { font-size: 12px; gap: 4px; padding: 7px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 12px rgba(27,108,168,.07); }
  .crumb a, .crumb span { white-space: nowrap; }

  /* ---- Filtreler: kaydırılabilir hap butonlar ---- */
  #svcFilter, #galCats { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; gap: 8px; margin: 0 -18px 18px; padding: 4px 18px 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  #svcFilter::-webkit-scrollbar, #galCats::-webkit-scrollbar { display: none; }
  #svcFilter .btn, #galCats .btn { flex: 0 0 auto; border-radius: 999px; padding: 9px 16px; font-size: 12.5px; }
  #svcFilter .btn.active, #galCats .btn.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 6px 14px rgba(27,108,168,.28); }
  .filter-bar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 18px; }
  #blogCats { display: flex; gap: 6px; flex-wrap: wrap; }
  .blog-filter { border-radius: 999px; }
  .blog-filter.active { background: var(--primary); color: #fff; border-color: var(--primary); }
  .filter-bar .search-box { width: 100%; }
  .filter-bar .search-box input { min-width: 0 !important; width: 100%; }

  /* ---- Hizmetler: ikon + başlık listesi ---- */
  #servicesGrid { gap: 12px; }
  #servicesGrid .service-card { position: relative; display: flex; align-items: center; gap: 16px; padding: 16px 46px 16px 16px; border-radius: 16px; box-shadow: 0 8px 20px rgba(27,108,168,.08); }
  #servicesGrid .service-card:hover { transform: none; }
  #servicesGrid .service-card .ico { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px; margin: 0; }
  #servicesGrid .service-card .ico svg { width: 25px; height: 25px; }
  #servicesGrid .service-card h3 { font-size: 16px; margin-bottom: 2px; }
  #servicesGrid .service-card p { margin: 0; font-size: 13px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
  #servicesGrid .service-card .link { display: none; }
  #servicesGrid .service-card::after { content: "›"; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: grid; place-items: center; font-size: 19px; font-weight: 700; line-height: 1; }

  /* ---- Galeri: 2 sütun premium kartlar ---- */
  #galleryGrid { grid-template-columns: 1fr 1fr; gap: 12px; }
  #galleryGrid .gal-cell { border-radius: 14px; box-shadow: 0 8px 20px rgba(27,108,168,.10); }
  #galleryGrid .gal-cell:hover { transform: none; }
  #galleryGrid .gal-img img { aspect-ratio: 4/3; }
  #galleryGrid .gal-cat { left: 8px; top: 8px; font-size: 10px; padding: 3px 9px; }
  #galleryGrid .gal-body { padding: 9px 11px 11px; }
  #galleryGrid .gal-body b { font-size: 12.5px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

  /* ---- Blog: premium kart listesi ---- */
  #blogGrid { gap: 16px; }
  #blogGrid .post-card { border-radius: 16px; box-shadow: 0 10px 24px rgba(27,108,168,.09); }
  #blogGrid .post-card:hover { transform: none; }
  #blogGrid .post-card img { height: 200px; }
  #blogGrid .post-card h3 { font-size: 18.5px; line-height: 1.35; }
  #blogGrid .post-card p { font-size: 14px; line-height: 1.6; }

  /* ---- Hizmet detay ---- */
  .sv-hero-inner { padding: 34px 0 42px; gap: 26px; text-align: center; }
  .sv-hero-txt { display: flex; flex-direction: column; align-items: center; }
  .sv-hero h1 { font-size: 27px; line-height: 1.28; }
  .sv-lead { font-size: 15.5px; }
  .sv-chips { justify-content: center; gap: 8px; margin: 14px 0 20px; }
  .sv-chips .chip { font-size: 12px; padding: 7px 12px; }
  .sv-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .sv-cta .btn { width: 100%; }
  .sv-img-frame { border-radius: 18px; }
  .sv-img-frame img { aspect-ratio: 4/3; }
  .sv-quick { grid-template-columns: 1fr 1fr; gap: 12px; margin: 26px 0 2px; }
  .sv-quick-item { flex-direction: column; align-items: flex-start; padding: 18px; border-radius: 16px; }
  .sv-quick-item .ico { width: 42px; height: 42px; border-radius: 13px; }
  .sv-quick-item .ico svg { width: 21px; height: 21px; }
  .sv-quick-item .v { font-size: 17px; }
  .sv-quick-item .l { font-size: 12px; }
  .sv-sec-head { margin: 40px 0 18px; }
  .sv-sec-head .t { font-size: 23px; }
  .sv-panel { padding: 20px 16px; border-radius: 16px; }
  .sv-adv { gap: 10px; }
  .sv-adv li { padding: 13px 14px; border-radius: 12px; font-size: 14px; }
  .sv-tl-item { padding: 0 0 26px 52px; }
  .sv-tl-n { width: 40px; height: 40px; font-size: 15px; }
  .sv-tl-item h4 { font-size: 16px; }
  .cta-panel { margin: 44px 0 0; padding: 32px 20px; }
  .cta-panel .flex { flex-direction: column; align-items: stretch; }
  .cta-panel .flex .btn { width: 100%; }

  /* ---- Blog yazısı (post) ---- */
  #postContent h1 { font-size: 25px !important; line-height: 1.32; }
  #postContent .post-meta { font-size: 12px; flex-wrap: wrap; }
  #postContent p.text-muted { font-size: 15.5px !important; line-height: 1.8; }
  #postContent img { border-radius: 16px; }
  #postContent .flex { flex-direction: column; align-items: stretch; }
  #postContent .flex .btn { width: 100%; }

  /* ---- Doktor sayfası ---- */
  body:has(.page-hero) .doctor-grid { gap: 26px; text-align: center; }
  body:has(.page-hero) .doctor-grid > div:last-child { text-align: center; }
  body:has(.page-hero) .doctor-grid h2 { font-size: 28px !important; }
  body:has(.page-hero) .doctor-grid > div:last-child > p.text-muted { margin: 0 auto; text-align: center; font-size: 15px; }
  body:has(.page-hero) .doctor-photo { max-width: 300px; margin: 0 auto; }
  body:has(.page-hero) .doctor-photo .frame { inset: 12px -10px -10px 12px; border-radius: 20px; }
  body:has(.page-hero) .doctor-photo img { border-radius: 20px; }
  body:has(.page-hero) .doctor-meta { justify-content: center; flex-wrap: wrap; gap: 8px; }
  body:has(.page-hero) .doctor-grid .check-list { text-align: left; }
  #doctorSpecialties { grid-template-columns: 1fr; }
  body:has(.page-hero) .grid-2 { gap: 16px; }
  body:has(.page-hero) .panel-card { border-radius: 16px; }
  .container.text-center:has(.btn-lg) { position: relative; overflow: hidden; border-radius: 22px; background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; padding: 34px 24px; text-align: center; box-shadow: 0 16px 38px rgba(17,76,122,.28); }
  .container.text-center:has(.btn-lg)::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 15% 0%, rgba(201,169,106,.32), transparent 55%); pointer-events: none; }
  .container.text-center:has(.btn-lg) > * { position: relative; }
  .container.text-center:has(.btn-lg) h2 { color: #fff; font-size: 23px; margin-bottom: 8px; }
  .container.text-center:has(.btn-lg) p { color: rgba(255,255,255,.9); font-size: 14.5px; }
  .container.text-center:has(.btn-lg) .flex { flex-direction: column; align-items: stretch; gap: 10px; }
  .container.text-center:has(.btn-lg) .flex .btn { width: 100%; }

  /* ---- İletişim ---- */
  .contact-grid { gap: 22px; }
  .c-card-grid { grid-template-columns: 1fr; gap: 10px; }
  .c-card { padding: 16px; border-radius: 14px; }
  .contact-cta { flex-direction: column; }
  .contact-cta .btn { width: 100%; }
  .map-card { border-radius: 16px; }
  .map-card .map-wrap { height: 300px; }
  .map-pill { width: calc(100% - 36px); justify-content: center; text-align: center; }

  /* ---- Formlar / kartlar ---- */
  .form-card { position: relative; overflow: hidden; border-radius: 20px; box-shadow: 0 18px 44px rgba(27,108,168,.14); }
  .form-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent) 0%, #E7CF9A 50%, var(--accent) 100%); }
  .form-card > * { position: relative; }
  .fc-head { margin-bottom: 18px; }
  .fc-head h3 { font-size: 20px; }
  .checkbox { font-size: 13px; line-height: 1.55; }
  #symptomChecks { grid-template-columns: 1fr 1fr !important; gap: 8px 10px; }
  #symptomChecks .checkbox { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; margin: 0; }

  /* ---- Giriş sayfası: hap sekmeler ---- */
  .tab-bar { border-bottom: 0; gap: 8px; }
  .tab-btn { border-radius: 999px; border: 1px solid var(--border); background: #fff; padding: 10px 18px; font-size: 13.5px; margin: 0; }
  .tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

  @media (min-width: 401px) {
    body:has(.page-hero) #doctorSpecialties { grid-template-columns: 1fr 1fr; }
  }
}

@media (max-width: 360px) {
  .page-hero h1 { font-size: 25px; }
  #galleryGrid .gal-body b { font-size: 12px; }
  #servicesGrid .service-card { gap: 13px; padding: 14px 42px 14px 14px; }
  #servicesGrid .service-card h3 { font-size: 15px; }
  #servicesGrid .service-card .ico { width: 46px; height: 46px; }
  .sv-quick { grid-template-columns: 1fr; }
  .sv-quick-item { flex-direction: row; align-items: center; }
  #symptomChecks { grid-template-columns: 1fr !important; }
  .tab-btn { padding: 9px 14px; font-size: 13px; }
}

/* ============================================================
   MOBİL GELİŞTİRME — yalnızca mobil (320–768px)
   Masaüstü stillerine dokunulmaz; tüm kurallar bu bloktadır.
   ============================================================ */

@media (max-width: 768px) {

  /* ---- Hizmetler (ana sayfa): tek sütun, eşit yükseklik, taşma yok ----
     Kartlar grid ile düzenlenir; HTML yapısı değişmez. */
  .section:has(#homeServices) #homeServices { grid-template-columns: 1fr; gap: 10px; }
  .section:has(#homeServices) #homeServices .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 15px; row-gap: 3px;
    padding: 15px 16px; text-align: left; border-radius: 16px;
    min-height: 84px;
  }
  .section:has(#homeServices) #homeServices .service-card .ico {
    grid-column: 1; grid-row: 1 / span 2;
    margin: 0; width: 52px; height: 52px; border-radius: 15px;
  }
  .section:has(#homeServices) #homeServices .service-card .ico svg { width: 26px; height: 26px; }
  .section:has(#homeServices) #homeServices .service-card h3 {
    grid-column: 2; grid-row: 1; font-size: 15.5px; line-height: 1.3; margin: 0;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .section:has(#homeServices) #homeServices .service-card p {
    grid-column: 2; grid-row: 2; font-size: 12.5px; line-height: 1.4; margin: 0;
    color: var(--text-muted);
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
  }
  .section:has(#homeServices) #homeServices .service-card .link { display: none; }

  /* ---- Hizmetler sayfası: satırlar eşit yükseklikte ---- */
  #servicesGrid .service-card { min-height: 92px; }

  /* ---- Dokunma hedefleri ≥ 44px ---- */
  #svcFilter .btn, #galCats .btn, .tab-btn {
    min-height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .socials a { width: 44px; height: 44px; }

  /* ---- Galeri: öncesi/sonrası seçim kartları ortalanır, yatay kaydırma yok ---- */
  #galCats { flex-wrap: wrap; justify-content: center; overflow: visible; margin: 0 0 18px; padding: 0; }
  #galleryGrid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
