/* ===============================================================
   Op. Dr. ÖZNUR DÜNDAR AKIN — Modern UI (2026)
   Kadın Hastalıkları & Doğum / Tüp Bebek
   =============================================================== */

:root {
  --primary:        #d8588d;
  --primary-deep:   #b94275;
  --primary-soft:   #fdf2f8;
  --primary-glow:   rgba(216, 88, 141, 0.18);
  --accent:         #14b8a6;
  --accent-soft:    #ccfbf1;
  --gold:           #f59e0b;
  --dark:           #1e1b3d;
  --text:           #2e2845;
  --muted:          #6b6489;
  --border:         #ede9f4;
  --border-strong:  #d6cee5;
  --bg:             #ffffff;
  --bg-soft:        #fbf8fc;
  --gradient:       linear-gradient(135deg, #d8588d 0%, #b94275 100%);
  --gradient-soft:  linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  --gradient-dark:  linear-gradient(120deg, rgba(30,27,61,0.78) 0%, rgba(216,88,141,0.50) 100%);
  --shadow-sm:      0 2px 8px rgba(30, 27, 61, 0.06);
  --shadow:         0 8px 24px rgba(30, 27, 61, 0.08);
  --shadow-lg:      0 16px 48px rgba(30, 27, 61, 0.12);
  --shadow-pink:    0 12px 32px rgba(216, 88, 141, 0.25);
  --display:        'Cormorant Garamond', 'Sora', serif;
  --body:           'Inter', sans-serif;
  --container:      1240px;
  --topbar-h:       40px;
  --header-h:       82px;
  --radius:         14px;
  --radius-lg:      20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--body); font-size: 15px; line-height: 1.65; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; max-width: 100vw; position: relative; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--display); color: var(--dark); line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* === TOP BAR === */
.topbar { background: var(--dark); color: rgba(255,255,255,.88); font-size: 12.5px; height: var(--topbar-h); display: flex; align-items: center; position: relative; z-index: 1001; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info a { color: rgba(255,255,255,.88); display: inline-flex; align-items: center; gap: 7px; }
.topbar-info a:hover { color: var(--primary); }
.topbar-info i { color: var(--primary); font-size: 12px; }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85); font-size: 12px; transition: all .2s; }
.topbar-social a:hover { background: var(--primary); color: #fff; }

/* === HEADER === */
.site-header { position: sticky; top: 0; z-index: 999; background: rgba(255,255,255,0.95); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); height: var(--header-h); }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 30px; }
.logo { display: flex; align-items: center; }
.logo img { max-height: 56px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--primary-deep); letter-spacing: -0.02em; }
.logo-text small { font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: 0.4px; text-transform: uppercase; }

/* Nav */
.nav-menu { display: flex; gap: 4px; }
.nav-menu > a, .nav-dropdown > a { padding: 10px 14px; font-weight: 600; font-size: 14px; color: var(--dark); border-radius: 10px; transition: all .2s; position: relative; }
.nav-menu > a:hover, .nav-dropdown > a:hover { background: var(--primary-soft); color: var(--primary-deep); }
.nav-menu > a.active, .nav-dropdown > a.active { color: var(--primary-deep); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-lg); min-width: 240px; padding: 8px; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: all .2s; z-index: 100; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown-menu a { display: flex !important; align-items: center; gap: 10px; padding: 10px 14px !important; border-radius: 8px; font-size: 13.5px; font-weight: 500; color: var(--dark) !important; }
.nav-dropdown-menu a:hover { background: var(--primary-soft); color: var(--primary-deep) !important; }
.nav-dropdown-menu a i { color: var(--primary); width: 16px; text-align: center; font-size: 13px; }

/* CTA */
.btn-cta { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; background: var(--gradient); color: #fff !important; border-radius: 100px; font-weight: 700; font-size: 13.5px; box-shadow: var(--shadow-pink); transition: all .25s; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(216,88,141,.4); color: #fff !important; }
.btn-cta-mobile { display: none; }

.menu-toggle { display: none; width: 44px; height: 44px; background: var(--primary-soft); border-radius: 10px; color: var(--primary-deep); font-size: 18px; align-items: center; justify-content: center; }

/* === HERO === */
.hero { position: relative; min-height: 640px; background: var(--bg-soft); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .96; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(255,255,255,.95) 0%, rgba(253,242,248,.85) 45%, rgba(216,88,141,0.20) 100%); }
.hero-inner { position: relative; z-index: 2; min-height: 640px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; padding: 70px 0; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px; background: rgba(216,88,141,.12); color: var(--primary-deep); border-radius: 100px; font-size: 12.5px; font-weight: 700; margin-bottom: 22px; }
.hero-pill .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(216,88,141,.55); } 50% { box-shadow: 0 0 0 10px rgba(216,88,141,0); } }
.hero h1 { font-family: var(--display); font-size: 58px; font-weight: 700; color: var(--dark); margin-bottom: 22px; letter-spacing: -1.2px; line-height: 1.05; }
.hero h1 em { font-style: italic; color: var(--primary-deep); font-weight: 600; }
.hero-text p { font-size: 17px; line-height: 1.7; color: var(--muted); margin-bottom: 32px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--gradient); color: #fff !important; border-radius: 100px; font-weight: 700; font-size: 14px; box-shadow: var(--shadow-pink); transition: all .25s; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(216,88,141,.4); color: #fff !important; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: #fff; border: 1.5px solid var(--border-strong); color: var(--dark) !important; border-radius: 100px; font-weight: 700; font-size: 14px; transition: all .2s; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-deep) !important; transform: translateY(-2px); }

.hero-image { position: relative; }
.hero-image-main { aspect-ratio: 4/5; border-radius: 32px 32px 200px 200px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-badge { position: absolute; left: -20px; bottom: 30px; background: #fff; border-radius: 16px; padding: 16px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; }
.hero-image-badge .ic { width: 44px; height: 44px; background: var(--gradient); border-radius: 12px; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; }
.hero-image-badge strong { display: block; font-size: 16px; color: var(--dark); font-weight: 700; }
.hero-image-badge small { font-size: 11.5px; color: var(--muted); }

/* === SECTION === */
.section { padding: 90px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: var(--primary-soft); color: var(--primary-deep); border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 14px; }
.section-title { font-family: var(--display); font-size: 42px; font-weight: 700; margin-bottom: 14px; letter-spacing: -1px; }
.section-title em { font-style: italic; color: var(--primary-deep); }
.section-sub { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* === FEATURE GRID === */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; transition: all .3s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-icon { width: 56px; height: 56px; background: var(--primary-soft); border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary-deep); margin-bottom: 16px; transition: all .3s; }
.feature-card:hover .feature-icon { background: var(--gradient); color: #fff; transform: rotate(-6deg); }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.feature-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: 24px; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.about-image .badge-circle { position: absolute; bottom: -28px; right: -22px; width: 150px; height: 150px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-direction: column; color: #fff; box-shadow: var(--shadow-pink); border: 8px solid #fff; }
.about-image .badge-circle strong { font-family: var(--display); font-size: 36px; font-weight: 700; line-height: 1; }
.about-image .badge-circle span { font-size: 11px; font-weight: 700; opacity: .95; margin-top: 4px; letter-spacing: .5px; }
.about-content > p { color: var(--muted); font-size: 16px; line-height: 1.85; margin-bottom: 24px; }
.about-points { display: grid; gap: 16px; margin-bottom: 30px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point .ic { flex-shrink: 0; width: 38px; height: 38px; background: var(--accent-soft); border-radius: 10px; color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.about-point h4 { font-family: var(--body); font-size: 15px; margin-bottom: 3px; font-weight: 700; }
.about-point p { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin: 0; }

/* === SERVICE GRID === */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: all .3s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px; background: var(--primary-soft); border-radius: 0 0 0 100px; opacity: 0; transition: opacity .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { opacity: 1; }
.service-icon { width: 64px; height: 64px; background: var(--gradient); border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; margin-bottom: 22px; position: relative; z-index: 2; box-shadow: var(--shadow-pink); }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card h3 a { color: var(--dark); }
.service-card h3 a:hover { color: var(--primary); }
.service-card p { color: var(--muted); font-size: 13.5px; line-height: 1.65; margin-bottom: 18px; }
.service-card .read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--primary-deep); font-weight: 700; font-size: 13px; position: relative; z-index: 2; }
.service-card .read-more i { transition: transform .25s; }
.service-card:hover .read-more i { transform: translateX(4px); }

/* === STATS BAND === */
.stats-section { padding: 70px 0; background: var(--gradient); color: #fff; position: relative; overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--display); font-size: 56px; font-weight: 700; line-height: 1; color: #fff; }
.stat-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.95); margin-top: 10px; text-transform: uppercase; letter-spacing: 0.6px; }

/* === FAQ === */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.faq-illustration { background: var(--gradient-soft); border-radius: var(--radius-lg); padding: 50px 40px; text-align: center; }
.faq-illustration i { font-size: 64px; color: var(--primary); margin-bottom: 18px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .25s; }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-q { width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; font-weight: 700; font-size: 15px; color: var(--dark); cursor: pointer; }
.faq-q .ic { width: 28px; height: 28px; border-radius: 50%; background: var(--primary-soft); color: var(--primary-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; transition: all .25s; flex-shrink: 0; }
.faq-item.open .faq-q .ic { background: var(--primary); color: #fff; transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all .35s; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 24px 22px; }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-image { aspect-ratio: 16/10; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-image img { transform: scale(1.06); }
.blog-content { padding: 22px 24px; }
.blog-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.blog-meta i { color: var(--primary); margin-right: 5px; }
.blog-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.35; font-family: var(--display); }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin-bottom: 14px; }
.blog-card .read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--primary-deep); font-weight: 700; font-size: 13px; }
.blog-card:hover .read-more i { transform: translateX(4px); }
.blog-card .read-more i { transition: transform .25s; }

/* === CTA SECTION === */
.cta-section { padding: 70px 0; background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 50%; background: var(--gradient); transform: skewX(-18deg) translateX(20%); opacity: .92; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { color: #fff; font-size: 36px; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.88); font-size: 15px; }
.cta-phone { display: inline-flex; align-items: center; gap: 14px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); padding: 18px 30px; border-radius: 100px; color: #fff !important; font-weight: 700; backdrop-filter: blur(10px); transition: all .25s; }
.cta-phone:hover { background: #fff; color: var(--primary-deep) !important; transform: translateY(-2px); }
.cta-phone .ic { width: 44px; height: 44px; background: rgba(255,255,255,.15); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; }
.cta-phone .num { font-size: 22px; line-height: 1; }
.cta-phone .lbl { font-size: 11px; opacity: .85; }

/* === PAGE HERO === */
.page-hero { background: var(--dark); position: relative; padding: 80px 0 60px; color: #fff; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(216,88,141,0.7) 0%, rgba(30,27,61,0.85) 100%); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; z-index: 0; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 14px;
  padding: 3px 4px 3px 10px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  max-width: 100%;
  overflow: hidden;
  line-height: 1;
}
.breadcrumb-nav a, .breadcrumb-nav span {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  color: #fff !important;
  border-radius: 100px;
  transition: all .2s;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  line-height: 1.3;
}
.breadcrumb-nav a:first-child {
  padding: 0;
  gap: 0;
}
.breadcrumb-nav a:first-child::before {
  content: '\f015';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 4px;
  box-shadow: 0 3px 8px rgba(216,88,141,0.40);
  text-shadow: none;
}
.breadcrumb-nav a:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.18);
}
.breadcrumb-nav span:last-child {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff !important;
  box-shadow: 0 3px 10px rgba(216,88,141,0.40);
  padding: 4px 12px;
  font-weight: 700;
  text-shadow: none;
}
.breadcrumb-nav i {
  font-size: 8px;
  opacity: 0.65;
  margin: 0 1px;
  color: #fff;
}

/* Beyaz/açık zeminli sayfalar için */
.breadcrumb-nav.bc-light {
  background: var(--primary-soft);
  border-color: rgba(216,88,141,0.18);
  backdrop-filter: none;
}
.breadcrumb-nav.bc-light a, .breadcrumb-nav.bc-light span {
  color: var(--primary-deep) !important;
  text-shadow: none;
}
.breadcrumb-nav.bc-light span:last-child { color: #fff !important; }
.breadcrumb-nav.bc-light a:hover { background: rgba(216,88,141,0.10); }
.breadcrumb-nav.bc-light i { color: var(--primary); opacity: 0.5; }
.page-hero h1 { font-size: 46px; color: #fff; letter-spacing: -1px; line-height: 1.1; }
.page-hero p { color: rgba(255,255,255,0.92) !important; text-shadow: 0 1px 3px rgba(0,0,0,0.25); }
.page-hero .container { position: relative; z-index: 2; }

/* === DETAIL === */
.detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 46px; }
.detail-content { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.detail-content h2 { font-size: 30px; margin: 26px 0 14px; color: var(--dark); }
.detail-content h3 { font-size: 22px; margin: 22px 0 12px; color: var(--dark); }
.detail-content p { color: var(--text); margin-bottom: 14px; line-height: 1.85; font-size: 16px; }
.detail-content ul, .detail-content ol { padding-left: 24px; margin-bottom: 18px; }
.detail-content ul { list-style: none; padding-left: 0; }
.detail-content ul li { padding-left: 28px; position: relative; margin-bottom: 8px; line-height: 1.7; }
.detail-content ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); position: absolute; left: 0; top: 4px; font-size: 13px; }
.detail-content ol li { margin-bottom: 8px; line-height: 1.7; }
.detail-content img { border-radius: var(--radius); margin: 18px 0; max-width: 100%; }
.detail-content blockquote { border-left: 4px solid var(--primary); background: var(--primary-soft); padding: 18px 24px; margin: 24px 0; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--dark); }
.detail-content a { color: var(--primary-deep); font-weight: 600; text-decoration: underline; }

/* TOC */
.toc-card { background: linear-gradient(135deg, var(--primary-soft) 0%, #fff 100%); border: 1.5px solid var(--primary); border-left: 4px solid var(--primary-deep); border-radius: var(--radius); padding: 18px 22px 14px; margin: 0 0 24px; }
.toc-head { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--dark); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.toc-head i { color: var(--primary-deep); font-size: 14px; }
.toc-list { list-style: decimal; padding-left: 22px; margin: 0; }
.toc-list li { padding: 4px 0; line-height: 1.5; font-size: 14px; }
.toc-list li a { color: var(--text); font-weight: 500; transition: all .2s; }
.toc-list li a:hover { color: var(--primary-deep); padding-left: 4px; }
.toc-list li.toc-sub { list-style: none; margin-left: 12px; padding-left: 16px; position: relative; }
.toc-list li.toc-sub::before { content: '↳'; position: absolute; left: 0; top: 4px; color: var(--muted); font-size: 12px; }
.toc-list li.toc-sub a { font-size: 13px; color: var(--muted); }

.detail-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.sidebar-card h4 { font-size: 17px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary-soft); }
.sidebar-card h4 i { color: var(--primary); margin-right: 8px; }
.sidebar-list { display: flex; flex-direction: column; gap: 4px; }
.sidebar-list a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; color: var(--text); font-size: 14px; font-weight: 500; transition: all .2s; }
.sidebar-list a i { color: var(--primary); font-size: 11px; transition: transform .2s; }
.sidebar-list a:hover { background: var(--primary-soft); color: var(--primary-deep); }
.sidebar-list a:hover i { transform: translateX(3px); }
.sidebar-cta { background: var(--gradient); color: #fff; text-align: center; padding: 28px 24px; border-radius: var(--radius); }
.sidebar-cta h4 { color: #fff; padding-bottom: 0; border-bottom: none; margin-bottom: 8px; font-size: 19px; }
.sidebar-cta p { font-size: 13px; opacity: .94; margin-bottom: 16px; }
.sidebar-cta .btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--primary-deep) !important; padding: 11px 22px; border-radius: 100px; font-weight: 700; font-size: 13.5px; }
.sidebar-cta .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.2); }

.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 100px; font-size: 11.5px; font-weight: 700; }
.pill-info { background: var(--primary-soft); color: var(--primary-deep); }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.contact-info { background: var(--dark); color: #fff; border-radius: var(--radius-lg); padding: 38px 32px; position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; top: -80px; right: -80px; width: 220px; height: 220px; background: var(--gradient); border-radius: 50%; opacity: .35; }
.contact-info h3 { color: #fff; font-size: 26px; margin-bottom: 8px; position: relative; z-index: 2; }
.contact-info > p { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.7; margin-bottom: 28px; position: relative; z-index: 2; }
.contact-row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; position: relative; z-index: 2; }
.contact-row .ic { flex-shrink: 0; width: 44px; height: 44px; background: rgba(255,255,255,.10); border-radius: 12px; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
.contact-row strong { color: #fff; font-weight: 700; font-size: 13.5px; display: block; margin-bottom: 2px; }
.contact-row a, .contact-row span { color: rgba(255,255,255,.85); font-size: 14px; }
.contact-row a:hover { color: #fff; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 38px 32px; box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 26px; margin-bottom: 6px; }
.contact-form p { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.fld { margin-bottom: 14px; }
.fld label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.fld input, .fld textarea, .fld select { width: 100%; padding: 12px 14px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; font-family: inherit; font-size: 14px; color: var(--dark); transition: all .2s; }
.fld input:focus, .fld textarea:focus, .fld select:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px var(--primary-glow); }
.fld textarea { min-height: 120px; resize: vertical; }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-map { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* === FOOTER === */
.site-footer { background: var(--dark); color: rgba(255,255,255,.78); padding: 70px 0 30px; position: relative; overflow: hidden; margin-top: 60px; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 50px; }
.footer-brand img { max-height: 60px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.7); margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: all .25s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 22px; padding-bottom: 14px; position: relative; font-family: var(--display); }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--gradient); border-radius: 3px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 13.5px; transition: all .2s; }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-links a i { margin-right: 7px; color: var(--primary); font-size: 10px; opacity: .8; }
.footer-contact-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; font-size: 13.5px; }
.footer-contact-row i { flex-shrink: 0; width: 32px; height: 32px; background: rgba(216,88,141,.18); color: var(--primary); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; }
.footer-contact-row a, .footer-contact-row span { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: #fff; }

/* === FLOAT BUTTONS === */
.float-actions { position: fixed; right: 16px; bottom: 16px; z-index: 100; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

/* ============ Mobil Alt Sticky CTA Bar ============ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(216,88,141,0.12);
  box-shadow: 0 -10px 30px rgba(15,23,42,0.10), 0 -2px 8px rgba(216,88,141,0.06);
  padding: 8px 10px max(8px, env(safe-area-inset-bottom));
}
.mcta-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 6px;
  border: none;
  background: transparent;
  border-radius: 14px;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
  min-height: 56px;
}
.mcta-btn:active { transform: scale(0.96); }
.mcta-ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.mcta-lbl {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #1e293b;
  white-space: nowrap;
}
.mcta-tel .mcta-ic {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 4px 12px rgba(216,88,141,0.30);
}
.mcta-wp .mcta-ic {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 12px rgba(37,211,102,0.30);
}
.mcta-randevu {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 6px 16px rgba(216,88,141,0.30);
  color: #fff;
}
.mcta-randevu .mcta-ic {
  background: rgba(255,255,255,0.22);
  border: 1.5px solid rgba(255,255,255,0.30);
  box-shadow: none;
  color: #fff;
}
.mcta-randevu .mcta-lbl { color: #fff; }
.mcta-tel:hover, .mcta-wp:hover { background: rgba(216,88,141,0.06); }

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; gap: 8px; align-items: stretch; }
  .float-actions { display: none !important; }
  body { padding-bottom: 80px; }
  .go-top { bottom: 80px !important; }
}
@media (max-width: 380px) {
  .mcta-lbl { font-size: 10.5px; }
  .mcta-ic { width: 38px; height: 38px; font-size: 17px; }
}
.float-btn { width: 54px; height: 54px; border-radius: 50%; box-shadow: var(--shadow-lg); display: inline-flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; transition: all .25s; position: relative; }
.float-btn:hover { transform: translateY(-3px) scale(1.05); color: #fff; }
.float-btn.wp { background: #25d366; }
.float-btn.tel { background: var(--primary); }
.float-btn.tel::after { content: ''; position: absolute; inset: -6px; border: 2px solid var(--primary); border-radius: 50%; opacity: 0; animation: ring 2s infinite; }
.float-btn.randevu {
  width: 54px;
  height: 54px;
  padding: 0;
  background: linear-gradient(135deg, var(--primary-deep), #8e2e5a);
  font-size: 22px;
  overflow: hidden;
  white-space: nowrap;
  gap: 0;
  justify-content: center;
  transition: width .35s ease, padding .35s ease, border-radius .35s ease, gap .25s ease, transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.float-btn.randevu i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.float-btn.randevu .float-label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  max-width: 0;
  opacity: 0;
  transition: max-width .35s ease, opacity .25s ease .05s;
}
.float-btn.randevu:hover,
.float-btn.randevu:focus-visible {
  width: 168px;
  padding: 0 20px 0 16px;
  border-radius: 100px;
  gap: 10px;
  justify-content: flex-start;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}
.float-btn.randevu:hover .float-label,
.float-btn.randevu:focus-visible .float-label {
  max-width: 140px;
  opacity: 1;
}
.float-btn.randevu::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--primary-deep);
  border-radius: 50%;
  opacity: 0;
  animation: ring 2.4s infinite;
}
.float-btn.randevu:hover::before { animation: none; opacity: 0; }
@media (max-width: 600px) {
  .float-btn.randevu { width: 50px; height: 50px; font-size: 20px; }
  .float-btn.randevu:hover, .float-btn.randevu:focus-visible { width: 156px; }
}
@keyframes ring { 0% { transform: scale(.95); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

.go-top { position: fixed; right: 16px; bottom: 86px; width: 44px; height: 44px; background: var(--dark); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: all .25s; z-index: 100; cursor: pointer; }
.go-top.visible { opacity: 1; pointer-events: all; }
.go-top:hover { background: var(--primary); transform: translateY(-3px); }

/* === PAGINATION === */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; border-radius: 10px; background: #fff; border: 1px solid var(--border); color: var(--dark); font-weight: 600; font-size: 13.5px; transition: all .2s; }
.pagination a:hover { background: var(--primary-soft); border-color: var(--primary); color: var(--primary-deep); }
.pagination .current { background: var(--gradient); color: #fff; border-color: transparent; }

/* === MOBILE NAV === */
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(30,27,61,0.6); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 998; }
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav { position: fixed; top: 0; right: -340px; width: 340px; max-width: 88vw; height: 100vh; background: #fff; z-index: 999; transition: right .35s; overflow-y: auto; box-shadow: -10px 0 40px rgba(0,0,0,.15); }
.mobile-nav.active { right: 0; }
.mobile-nav-head { padding: 22px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.mobile-nav-close { width: 38px; height: 38px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.mobile-nav ul { padding: 14px; }
.mobile-nav ul li a { display: block; padding: 13px 16px; border-radius: 10px; font-weight: 600; color: var(--dark); font-size: 15px; }
.mobile-nav ul li a:hover, .mobile-nav ul li a.active { background: var(--primary-soft); color: var(--primary-deep); }
.mobile-nav .btn-cta { margin: 18px 14px; display: flex; justify-content: center; }

/* Responsive */
@media (max-width: 1100px) { .hero h1 { font-size: 46px; } .nav-menu > a, .nav-dropdown > a { padding: 9px 11px; font-size: 13.5px; } }
@media (max-width: 992px) {
  .topbar-info { gap: 14px; }
  .topbar-info li:not(:first-child):not(:last-child) { display: none; }
  .nav-menu { display: none; }
  .menu-toggle { display: inline-flex; }
  .btn-cta-desktop { display: none !important; }
  .btn-cta-mobile { display: inline-flex; padding: 10px 18px; font-size: 13px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; min-height: 0; }
  .hero { min-height: 0; }
  .hero h1 { font-size: 36px; }
  .hero-image { order: -1; max-width: 380px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 480px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .service-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 32px; }
  .page-hero h1 { font-size: 34px; }
  .cta-text h2 { font-size: 28px; }
}
@media (max-width: 600px) {
  .topbar { padding: 6px 0; }
  .topbar .container { justify-content: flex-end; }
  .topbar-info { display: none; }
  .features-grid, .service-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 42px; }
  .hero h1 { font-size: 28px; }
  .section-title { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text h2 { font-size: 24px; }
  .fld-row { grid-template-columns: 1fr; }
  .detail-content { padding: 24px 18px; }
  .container { padding: 0 16px; }
  .hero-image-main { border-radius: 24px 24px 80px 80px; }
  /* Mobil yatay taşma fix */
  .about-image .badge-circle { right: 0; bottom: -20px; width: 110px; height: 110px; border-width: 6px; }
  .hero-image-badge { left: 0; padding: 12px 16px; }
  .hero-image-badge div strong { font-size: 13px; }
  .hero-image-badge div small { font-size: 11px; }
  .page-hero { padding-top: 50px; padding-bottom: 50px; }
  .page-hero h1 { font-size: 28px; }
  .breadcrumb-nav { font-size: 11px; padding: 2px 3px 2px 4px; margin-bottom: 12px; }
  .breadcrumb-nav a, .breadcrumb-nav span { padding: 2px 7px; max-width: 130px; }
  .breadcrumb-nav span:last-child { padding: 3px 9px; }
  .breadcrumb-nav a:first-child {
    font-size: 0;
    padding: 0;
  }
  .breadcrumb-nav a:first-child::before {
    width: 22px; height: 22px;
    font-size: 10px;
    margin-right: 2px;
  }
}

/* Genel mobil yatay taşma koruması */
@media (max-width: 992px) {
  .cta-section, .stats-section, .page-hero, .section, section { overflow-x: clip; }
  .contact-info, .cta-section, .certificate-section { overflow: hidden; }
  table, iframe { max-width: 100%; }
}

/* ============ İçindekiler (TOC) — Kompakt & Modern ============ */
.toc {
  position: relative;
  background: linear-gradient(135deg, #fff5f9 0%, #fff 60%, #f0fdfa 100%);
  border: 1px solid rgba(216,88,141,0.14);
  border-radius: 16px;
  padding: 18px 22px 16px;
  margin: 0 0 28px;
  box-shadow: 0 12px 30px rgba(216,88,141,0.07), 0 2px 8px rgba(15,23,42,0.03);
  overflow: hidden;
}
.toc::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--primary-deep));
  border-radius: 4px 0 0 4px;
}
.toc-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 0 0 12px;
  letter-spacing: 0.2px;
}
.toc-title i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-radius: 7px;
  font-size: 11px;
  box-shadow: 0 3px 8px rgba(216,88,141,0.30);
}
.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  counter-reset: tocnum;
}
.toc li {
  counter-increment: tocnum;
  position: relative;
  border-top: 1px dashed rgba(216,88,141,0.14);
}
.toc li:nth-child(1), .toc li:nth-child(2) { border-top: none; }
@media (max-width: 720px) {
  .toc li:nth-child(2) { border-top: 1px dashed rgba(216,88,141,0.14); }
}
.toc li::before { content: none; }
.toc li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 6px;
  font-size: 13px;
  color: #475569;
  border-radius: 6px;
  transition: color .2s, background .2s, padding .2s;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toc li a::before {
  content: counter(tocnum, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(216,88,141,0.10);
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  transition: all .2s;
}
.toc li a:hover {
  color: var(--primary-deep);
  background: rgba(216,88,141,0.06);
  padding-left: 10px;
}
.toc li a:hover::before {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
}
.toc li.lvl-3 a {
  padding-left: 32px;
  font-size: 12px;
  color: #64748b;
}
.toc li.lvl-3 a::before {
  min-width: 18px; height: 18px;
  font-size: 9.5px;
  background: rgba(216,88,141,0.06);
  padding: 0 3px;
}
.toc li.lvl-3 a:hover { padding-left: 36px; }

@media (max-width: 720px) {
  .toc { padding: 14px 16px 12px; border-radius: 12px; }
  .toc ul { grid-template-columns: 1fr; }
  .toc-title { font-size: 14.5px; }
  .toc li a { font-size: 12.5px; }
}

/* ============ Hakkımda - CV Grid ============ */
.cv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.cv-card-wide { grid-column: 1 / -1; }
.cv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cv-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(216,88,141,0.10); }
.cv-ic {
  width: 52px; height: 52px;
  background: var(--gradient);
  color: #fff;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-pink);
}
.cv-card h3 {
  font-family: var(--display);
  font-size: 22px;
  color: var(--primary-deep);
  margin: 0 0 12px;
}
.cv-body, .bio-text { font-size: 14.5px; line-height: 1.7; color: #475569; }
.cv-body strong, .bio-text strong { color: var(--primary-deep); font-weight: 700; }

/* CV alt başlık */
.cv-body h3, .cv-body h4 {
  font-family: var(--display);
  font-size: 17px;
  color: var(--primary-deep);
  margin: 22px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cv-body h3:first-child, .cv-body h4:first-child { margin-top: 0; }
.cv-body h3::before, .cv-body h4::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: 13px;
}

/* CV paragraf çiftleri (vizyon: kurum + pozisyon) */
.cv-body p {
  margin: 0;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.55;
}
.cv-body p:nth-of-type(odd) {
  font-weight: 700;
  color: var(--primary-deep);
  background: linear-gradient(90deg, var(--primary-soft) 0%, transparent 100%);
  border-left: 3px solid var(--primary);
  border-radius: 6px 6px 0 0;
  margin-top: 14px;
  padding-bottom: 6px;
}
.cv-body p:nth-of-type(odd):first-child { margin-top: 0; }
.cv-body p:nth-of-type(even) {
  color: #64748b;
  font-size: 12.5px;
  padding: 4px 14px 14px;
  border-left: 3px solid var(--primary-soft);
  border-radius: 0 0 6px 6px;
  margin-bottom: 6px;
}
.cv-body h3 + p:nth-of-type(odd),
.cv-body h4 + p:nth-of-type(odd) { margin-top: 0; }

/* CV listeleri (misyon, degerler) */
.cv-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cv-body ul li {
  position: relative;
  padding: 9px 12px 9px 36px;
  background: #fafbff;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: #475569;
  transition: background .15s;
}
.cv-body ul li:hover { background: var(--primary-soft); color: var(--primary-deep); }
.cv-body ul li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 14px; top: 11px;
  color: var(--primary);
  font-size: 12px;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--primary-soft);
}

/* Bilimsel Yayınlar listesi (numaralı, daha küçük) */
.cv-body-scroll ul { counter-reset: pub; gap: 10px; }
.cv-body-scroll ul li {
  padding: 12px 14px 12px 44px;
  font-size: 12.5px;
  line-height: 1.55;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  counter-increment: pub;
}
.cv-body-scroll ul li::before {
  content: counter(pub);
  font-family: var(--display);
  font-weight: 700;
  font-size: 12.5px;
  background: var(--primary);
  color: #fff;
  width: 22px;
  height: 22px;
  left: 12px; top: 12px;
  box-shadow: none;
}
.cv-body-scroll ul li:hover { background: var(--primary-soft); }

/* Bio (Hakkımda intro metni) — sade paragraflar */
.bio-text p { margin: 0 0 14px; line-height: 1.85; }
.bio-text ul { padding-left: 20px; margin: 0 0 14px; }
.bio-text li { margin-bottom: 6px; }

.cv-body-scroll { max-height: 360px; overflow-y: auto; padding-right: 8px; }
.cv-body-scroll::-webkit-scrollbar { width: 6px; }
.cv-body-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.cv-body-scroll::-webkit-scrollbar-track { background: var(--primary-soft); border-radius: 3px; }

/* ============ Bio / Klinik Foto Galeri ============ */
.bio-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.bio-photo {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.bio-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.bio-photo:hover img { transform: scale(1.06); }

/* ============ Foto / Video / Basın Galeri ============ */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.gal-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(216,88,141,0.14); }
.gal-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--primary-soft);
}
.gal-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gal-card:hover .gal-thumb img { transform: scale(1.05); }
.gal-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 42px;
  transition: background .25s;
}
.gal-card:hover .gal-play { background: rgba(216,88,141,0.55); }

/* Lightbox zoom overlay (foto thumb hover'da büyüteç) */
.gal-zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  color: var(--primary-deep);
  border-radius: 50%;
  font-size: 13px;
  opacity: 0;
  transform: scale(0.8);
  transition: all .25s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  pointer-events: none;
}
.gal-card:hover .gal-zoom {
  opacity: 1;
  transform: scale(1);
}

/* ============ Lightbox ============ */
.lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 18, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 30px;
}
.lb.active {
  opacity: 1;
  visibility: visible;
}
.lb-stage {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: lbFadeIn .35s cubic-bezier(.2,.8,.25,1);
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  display: block;
  object-fit: contain;
  background: #fff;
}
.lb-caption {
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  max-width: 720px;
  padding: 0 12px;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.lb-counter {
  position: absolute;
  top: -34px;
  right: 0;
  color: rgba(255,255,255,0.7);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(216,88,141,0.40);
}
.lb-close {
  top: 24px;
  right: 24px;
  width: 48px; height: 48px;
  font-size: 18px;
  z-index: 2;
}
.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  font-size: 20px;
}
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

@media (max-width: 700px) {
  .lb { padding: 16px; }
  .lb-img { max-height: calc(100vh - 100px); border-radius: 10px; }
  .lb-close { top: 14px; right: 14px; width: 40px; height: 40px; font-size: 15px; }
  .lb-prev, .lb-next { width: 44px; height: 44px; font-size: 16px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-counter { top: -28px; font-size: 11px; padding: 3px 10px; }
  .lb-caption { font-size: 13px; }
}
.gal-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gal-body h3 {
  font-family: var(--display);
  font-size: 18px;
  color: var(--primary-deep);
  margin: 0 0 8px;
  line-height: 1.3;
}
.gal-body p { font-size: 13.5px; color: #64748b; line-height: 1.5; margin: 0; flex: 1; }
.gal-meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

/* ============ Galeri Tabs (galeri.php) ============ */
.gal-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.gal-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  transition: all .2s;
}
.gal-tab:hover { border-color: var(--primary); color: var(--primary-deep); }
.gal-tab.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: var(--shadow-pink); }

/* ============ Harita ============ */
.map-wrap {
  width: 100%;
  margin-top: 0;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .cv-grid { grid-template-columns: 1fr; }
  .bio-photos { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .map-wrap iframe { height: 320px; }
}
@media (max-width: 600px) {
  .gal-grid { grid-template-columns: 1fr; }
  .bio-photos { grid-template-columns: 1fr 1fr; }
}

/* ============ Sertifika Bölümü ============ */
.certificate-section {
  background: linear-gradient(135deg, #fff5f9 0%, #fff 50%, #f0fdfa 100%);
  position: relative;
  overflow: hidden;
}
.certificate-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(216,88,141,0.10), transparent 70%);
  border-radius: 50%;
}
.certificate-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(20,184,166,0.10), transparent 70%);
  border-radius: 50%;
}

/* Hero alanı: Health Türkiye logosu + tanıtım */
.cert-hero {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  padding: 40px 44px;
  border-radius: 24px;
  border: 1px solid rgba(216,88,141,0.10);
  box-shadow: 0 30px 60px rgba(216,88,141,0.10), 0 8px 18px rgba(0,0,0,0.04);
}
.cert-hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, #fff5f9, #f0fdfa);
  border-radius: 18px;
  position: relative;
}
.cert-hero-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(216,88,141,0.20);
  border-radius: 18px;
  pointer-events: none;
}
.cert-hero-logo img {
  max-width: 100%;
  max-height: 240px;
  height: auto;
  display: block;
}

/* Resmî yetki belgesi kartı */
.cert-hero-doc {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cert-doc-link {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(216,88,141,0.15);
  box-shadow: 0 20px 40px rgba(216,88,141,0.18), 0 6px 16px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.cert-doc-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(216,88,141,0.24), 0 10px 22px rgba(0,0,0,0.08);
}
.cert-doc-link img {
  width: 100%;
  height: auto;
  display: block;
}
.cert-doc-zoom {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.95);
  color: var(--primary-deep);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(216,88,141,0.20);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.cert-doc-link:hover .cert-doc-zoom {
  opacity: 1;
  transform: translateY(0);
}
.cert-doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(216,88,141,0.10);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.cert-doc-meta span {
  font-size: 12.5px;
  color: #475569;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cert-doc-meta i {
  color: var(--primary);
  font-size: 13px;
}

/* Hero text içindeki resmi marka logosu */
.cert-partners {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fff5f9, #f0fdfa);
  border-radius: 12px;
  border: 1px solid rgba(216,88,141,0.10);
  margin-bottom: 22px;
}
.cert-partners-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-deep);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cert-partners-logo {
  max-height: 56px;
  width: auto;
}
.cert-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #e63946, #b71c2c);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(230,57,70,0.25);
}
.cert-hero-text h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-deep);
  line-height: 1.2;
  margin: 0 0 14px;
}
.cert-hero-text p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 22px;
}
.cert-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Özellik kartları */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-top: 36px;
}
.cert-point {
  display: flex;
  gap: 14px;
  padding: 22px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(216,88,141,0.12);
  box-shadow: 0 4px 18px rgba(216,88,141,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cert-point:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(216,88,141,0.16);
}
.cert-ic {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-radius: 12px;
  font-size: 19px;
  box-shadow: 0 6px 16px rgba(216,88,141,0.30);
}
.cert-point h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 0 0 6px;
}
.cert-point p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

/* Resmi rozet kartları */
.cert-badges {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}
.cert-badge-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(216,88,141,0.10);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.cert-badge-ic {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-radius: 12px;
  font-size: 20px;
}
.cert-badge-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 3px;
}
.cert-badge-card span {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .cert-badges { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .cert-hero { grid-template-columns: 1fr; gap: 30px; padding: 28px 22px; }
  .cert-hero-text h3 { font-size: 24px; }
  .cert-hero-logo img { max-height: 180px; }
  .cert-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============ Dil Seçici (Google Translate) ============ */
.topbar-right { display: flex; align-items: center; gap: 14px; }
.lang-switcher { position: relative; }
.lang-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.lang-trigger:hover { background: rgba(255,255,255,0.18); }
.lang-flag { font-size: 14px; line-height: 1; }
.lang-code { letter-spacing: 0.5px; }
.lang-switcher { position: relative; z-index: 1100; }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.22), 0 4px 12px rgba(0,0,0,0.08);
  padding: 6px;
  display: none;
  z-index: 1200;
  max-height: 380px;
  overflow-y: auto;
}
.lang-menu.active { display: block; animation: lang-fade .2s ease; }
@keyframes lang-fade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.lang-opt {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
}
.lang-opt:hover { background: var(--primary-soft); color: var(--primary-deep); }
.lang-opt .f { font-size: 16px; line-height: 1; }

/* Google Translate banner ve UI'yı gizle */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
font[style] { background: transparent !important; box-shadow: none !important; }

/* RTL desteği (Arapça, Farsça) */
html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="rtl"] .nav-menu, html[dir="rtl"] .topbar-info, html[dir="rtl"] .footer-grid { direction: rtl; }
html[dir="rtl"] .breadcrumb-nav i { transform: scaleX(-1); }
html[dir="rtl"] .read-more i, html[dir="rtl"] .btn-primary i { transform: scaleX(-1); }

@media (max-width: 600px) {
  .lang-trigger { padding: 4px 9px; font-size: 11px; }
  .lang-code { display: none; }
  .lang-menu { right: -10px; }
}

/* ============ Randevu Modal ============ */
.randevu-modal {
  position: fixed; inset: 0;
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.randevu-modal.active { opacity: 1; visibility: visible; }
.randevu-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.randevu-dialog {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 22px;
  padding: 36px 36px 28px;
  box-shadow: 0 40px 80px rgba(15,23,42,0.35), 0 12px 24px rgba(216,88,141,0.20);
  transform: translateY(20px) scale(0.96);
  transition: transform .35s cubic-bezier(.2,.8,.25,1);
}
.randevu-modal.active .randevu-dialog { transform: translateY(0) scale(1); }
.randevu-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
  transition: all .2s;
  z-index: 2;
}
.randevu-close:hover { background: var(--primary); color: #fff; }
.randevu-head { text-align: center; margin-bottom: 22px; padding-right: 30px; }
.randevu-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(216,88,141,0.25);
}
.randevu-head h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 0 0 8px;
}
.randevu-head p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}
.randevu-form { display: flex; flex-direction: column; gap: 14px; }
.rnd-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.randevu-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.randevu-form label > span {
  font-weight: 600;
  color: var(--primary-deep);
  font-size: 12.5px;
  display: inline-flex; align-items: center; gap: 6px;
}
.randevu-form label > span i { color: var(--primary); width: 14px; }
.randevu-form label em { color: #e11d48; font-style: normal; }
.randevu-form input,
.randevu-form select,
.randevu-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  color: #1e293b;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.randevu-form input:focus,
.randevu-form select:focus,
.randevu-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(216,88,141,0.12);
}
.randevu-form textarea { resize: vertical; min-height: 70px; }
.rnd-full { display: flex; flex-direction: column; gap: 6px; }
.rnd-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12.5px; color: #475569;
  line-height: 1.5;
  margin-top: 4px;
  cursor: pointer;
}
.rnd-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.rnd-check a { color: var(--primary-deep); font-weight: 600; text-decoration: underline; }
.rnd-actions { margin-top: 8px; }
.rnd-submit {
  width: 100%;
  justify-content: center;
  padding: 14px 22px !important;
  font-size: 15px !important;
}
.rnd-submit:disabled { opacity: .7; cursor: progress; }
.rnd-msg {
  display: none;
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  align-items: center;
  gap: 10px;
}
.rnd-msg.ok, .rnd-msg.err { display: flex; }
.rnd-msg.ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.rnd-msg.err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.rnd-msg i { font-size: 16px; flex-shrink: 0; }
@media (max-width: 600px) {
  .randevu-dialog { padding: 26px 20px 22px; border-radius: 18px; }
  .randevu-head h3 { font-size: 22px; }
  .rnd-row { grid-template-columns: 1fr; }
}

/* ============ Header / Mobile Logo Image ============ */
.header-logo-img {
  display: block;
  max-height: 60px;
  width: auto;
  height: auto;
  transition: max-height .25s ease;
}
.site-header.scrolled .header-logo-img { max-height: 48px; }
.mobile-logo-img {
  display: block;
  max-height: 44px;
  width: auto;
  height: auto;
}
@media (max-width: 600px) {
  .header-logo-img { max-height: 44px; }
  .site-header.scrolled .header-logo-img { max-height: 40px; }
}
