/* Home / Anasayfa – İstanbul Ortodonti Kliniği */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.home-page {
  --teal-deep: #0b3f47;
  --teal-dark: #156b78;
  --teal-mid: #1f8f9f;
  --teal-light: #27a0b1;
  --teal-pale: #e8f5f7;
  --gold: #d4a832;
  --gold-light: #f0c84a;
  --white: #ffffff;
  --off-white: #f5f7f6;
  --text-dark: #1a2e2b;
  --text-muted: #5a7570;
  --border: #dcecea;
}

.home-page { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

/* ── NAV (Anasayfa + Blog aynı menü) ── */
.home-page .home-nav,
.home-page nav,
.blog-page nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
}
.home-page .nav-inner,
.blog-page .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  max-width: 1300px;
  margin: 0 auto;
}
.home-page .nav-logo img,
.home-page .home-logo-img,
.blog-page .nav-logo img {
  height: 69px;
  width: auto;
  object-fit: contain;
  display: block;
}
.home-page .home-logo,
.home-page .nav-logo,
.blog-page .nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.home-page .nav-logo-wrap,
.blog-page .nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.home-page .nav-logo-cta,
.blog-page .nav-logo-cta {
  padding: 8px 14px;
  font-size: 12px;
}
.home-page .nav-links,
.blog-page .nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.home-page .nav-links > li,
.blog-page .nav-links > li { position: relative; }
.home-page .nav-links > li > a,
.blog-page .nav-links > li > a {
  display: block;
  padding: 0 16px;
  height: 72px;
  line-height: 72px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  transition: color .2s;
}
.home-page .nav-links > li > a:hover,
.home-page .nav-links > li > a.active,
.blog-page .nav-links > li > a:hover,
.blog-page .nav-links > li > a.active { color: var(--teal-mid); }
.home-page .nav-links > li:hover .dropdown,
.blog-page .nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.home-page .dropdown,
.blog-page .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(21,107,120,.15);
  padding: 8px;
  min-width: 220px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.home-page .dropdown li a,
.blog-page .dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-dark);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.home-page .dropdown li a:hover,
.blog-page .dropdown li a:hover {
  background: var(--teal-pale);
  color: var(--teal-dark);
}
.home-page .btn-nav,
.home-page .btn-primary,
.blog-page .btn-nav {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, transform .15s;
}
.home-page .btn-nav:hover,
.home-page .btn-primary:hover,
.blog-page .btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }
.home-page .btn-nav-outline,
.blog-page .btn-nav-outline {
  background: transparent;
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-light);
}
.home-page .btn-nav-outline:hover,
.blog-page .btn-nav-outline:hover {
  background: var(--teal-pale);
  color: var(--teal-dark);
}
.home-page .nav-cta-group,
.blog-page .nav-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.home-page .btn-nav-ig,
.blog-page .btn-nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(220, 39, 67, .35);
  transition: transform .15s, box-shadow .2s;
}
.home-page .btn-nav-ig:hover,
.blog-page .btn-nav-ig:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(188, 24, 136, .45);
}
.home-page .btn-nav-ig svg,
.blog-page .btn-nav-ig svg {
  width: 20px;
  height: 20px;
  display: block;
}
.home-page .hamburger,
.blog-page .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
}
.home-page .mobile-top-actions,
.blog-page .mobile-top-actions {
  display: none;
  align-items: center;
  gap: 8px;
}
.home-page .mobile-header-cta,
.blog-page .mobile-header-cta {
  display: none;
  padding: 8px 12px;
  font-size: 12px;
}
.home-page .hamburger span,
.blog-page .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.home-page .hamburger.open span:nth-child(1),
.blog-page .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.home-page .hamburger.open span:nth-child(2),
.blog-page .hamburger.open span:nth-child(2) { opacity: 0; }
.home-page .hamburger.open span:nth-child(3),
.blog-page .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.home-page .mobile-menu,
.blog-page .mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.home-page .mobile-menu.open,
.blog-page .mobile-menu.open { display: flex; }
.home-page .mobile-menu a,
.blog-page .mobile-menu a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 12px 14px;
  border-radius: 10px;
  transition: background .15s, color .15s;
}
.home-page .mobile-menu a:hover,
.blog-page .mobile-menu a:hover { background: var(--teal-pale); color: var(--teal-dark); }
.home-page .mobile-menu a.active,
.blog-page .mobile-menu a.active { background: var(--teal-pale); color: var(--teal-dark); font-weight: 600; }
.home-page .mobile-sub,
.blog-page .mobile-sub {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.home-page .mobile-sub a,
.blog-page .mobile-sub a {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 14px;
}
.home-page .mobile-nav-ctas,
.blog-page .mobile-nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.home-page .mobile-nav-ctas .mobile-cta-btn,
.blog-page .mobile-nav-ctas .mobile-cta-btn {
  margin-top: 0;
  flex: 1;
  min-width: 0;
}
.home-page .mobile-menu .btn-nav-ig,
.blog-page .mobile-menu .btn-nav-ig {
  padding: 0;
  width: 48px;
  height: 48px;
  min-width: 48px;
  margin: 0;
}
.home-page .mobile-menu .btn-nav-ig:hover,
.blog-page .mobile-menu .btn-nav-ig:hover {
  background: linear-gradient(45deg, #f5a84a 0%, #ee7a4f 25%, #e63d56 50%, #d62d78 75%, #c91d96 100%);
  color: inherit;
}
.home-page .mobile-cta-btn,
.blog-page .mobile-cta-btn {
  margin-top: 12px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 13px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  display: block;
  text-align: center;
}
.home-page .mobile-cta-outline,
.blog-page .mobile-cta-outline {
  background: transparent;
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-light);
}
.home-page .mobile-cta-outline:hover,
.blog-page .mobile-cta-outline:hover {
  background: var(--teal-pale);
  color: var(--teal-dark);
}

.home-page .appointment-modal,
.blog-page .appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
}
.home-page .appointment-modal.open,
.blog-page .appointment-modal.open { display: block; }
.home-page .appointment-modal-backdrop,
.blog-page .appointment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 28, .55);
}
.home-page .appointment-modal-dialog,
.blog-page .appointment-modal-dialog {
  position: relative;
  width: min(560px, calc(100vw - 28px));
  margin: 5vh auto;
  max-height: min(90vh, 900px);
  overflow-y: auto;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 50px rgba(0,0,0,.22);
}
.home-page .appointment-modal-dialog--wide,
.blog-page .appointment-modal-dialog--wide {
  width: min(920px, calc(100vw - 24px));
  padding: 28px 28px 24px;
}
.home-page .appointment-modal-grid,
.blog-page .appointment-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 8px;
}
@media (max-width: 720px) {
  .home-page .appointment-modal-grid,
  .blog-page .appointment-modal-grid {
    grid-template-columns: 1fr;
  }
}
.home-page .appointment-modal-col--message .appointment-field--message textarea,
.blog-page .appointment-modal-col--message .appointment-field--message textarea {
  min-height: 200px;
  resize: vertical;
}
.home-page .appointment-success-panel,
.blog-page .appointment-success-panel {
  text-align: left;
  padding: 8px 4px 0;
}
.home-page .appointment-success-title,
.blog-page .appointment-success-title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: var(--teal-dark);
}
.home-page .appointment-success-lead,
.blog-page .appointment-success-lead {
  margin: 0 0 16px;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.5;
}
.home-page .appointment-success-message-wrap,
.blog-page .appointment-success-message-wrap {
  background: var(--teal-pale, #f0f7f6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.home-page .appointment-success-label,
.blog-page .appointment-success-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
}
.home-page .appointment-success-message-body,
.blog-page .appointment-success-message-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dark);
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 2.5em;
}
.home-page .appointment-success-foot,
.blog-page .appointment-success-foot {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--text-muted);
}
.home-page .appointment-success-close-btn,
.blog-page .appointment-success-close-btn {
  width: 100%;
  justify-content: center;
}
.home-page .appointment-modal-close,
.blog-page .appointment-modal-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}
.home-page .appointment-modal-sub,
.blog-page .appointment-modal-sub { color: var(--text-muted); font-size: 14px; margin: 6px 0 14px; }
.home-page .appointment-field,
.blog-page .appointment-field { margin-bottom: 10px; }
.home-page .appointment-field label,
.blog-page .appointment-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.home-page .appointment-field input,
.home-page .appointment-field textarea,
.blog-page .appointment-field input,
.blog-page .appointment-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
}
.home-page .appointment-submit,
.blog-page .appointment-submit { width: 100%; justify-content: center; margin-top: 6px; }
.home-page .appointment-modal .appointment-submit,
.blog-page .appointment-modal .appointment-submit { display: inline-flex; }
.home-page .appointment-success,
.blog-page .appointment-success { margin-top: 10px; color: #167f45; font-size: 13px; font-weight: 600; }

.home-page .hero {
  position: relative;
  min-height: 580px;
  background: var(--teal-dark);
  background-image: url('/images/hero-dental-room.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 70px 64px;
}

.home-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26,77,73,.92) 0%, rgba(26,77,73,.6) 50%, rgba(26,77,73,.3) 100%),
    radial-gradient(ellipse 70% 90% at 80% 50%, rgba(21,107,120,.2) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 5% 95%, rgba(212,168,50,.05) 0%, transparent 55%);
}

.home-page .hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}

.home-page .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.home-page .hero-content { flex: 0 1 auto; max-width: 520px; }

.home-page .hero .hero-pills { display: none; }

.home-page .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.home-page .hero h1 br { display: none; }
@media (min-width: 769px) {
  .home-page .hero h1 br { display: block; }
}

.home-page .hero-eyebrow .line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.home-page .hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
}

.home-page .hero h1 .highlight,
.home-page .hero h1 em { color: var(--gold); font-style: normal; }
.home-page .hero-pills {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.home-page .hero-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212,168,50,.12);
  border: 1px solid rgba(212,168,50,.25);
  padding: 6px 14px;
  border-radius: 50px;
}

.home-page .hero-sub {
  margin-top: 16px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 380px;
}

.home-page .hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.home-page .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.15s;
}

.home-page .btn-call:hover { background: var(--gold-light); transform: translateY(-2px); }

.home-page .btn-call svg { width: 16px; height: 16px; fill: var(--white); }

.home-page .btn-whatsapp {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.home-page .btn-whatsapp:hover,
.home-page .btn-wa:hover { color: var(--white); }
.home-page .btn-whatsapp::after { content: ''; }
.home-page .btn-wa {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.home-page .btn-wa::after { content: '›'; font-size: 18px; }
.home-page .social-strip {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.home-page .social-strip a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 13px;
  transition: border-color .2s, color .2s;
}
.home-page .social-strip a:hover { border-color: var(--gold); color: var(--gold); }

.home-page .hero-photo-wrap {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.home-page .hero-photo-card,
.home-page .hero-card {
  width: 320px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  /* background: rgba(255, 255, 255, .06); */
  /* backdrop-filter: blur(8px); */
  /* border: 1px solid rgba(255, 255, 255, .1); */
  /* box-shadow: 0 24px 60px rgba(0, 0, 0, .4); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.2);
}
.home-page .hero-card img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.home-page .hero-card-cta {
  border: none;
  border-radius: 50px;
  padding: 11px 24px;
  background: var(--gold);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.home-page .hero-card-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.home-page .hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(42,168,154,0.20) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

.home-page .smile-deco { position: absolute; right: 390px; top: 50%; transform: translateY(-50%); z-index: 3; }
.home-page .smile-deco svg { width: 88px; height: 40px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.15)); }

.home-page .section-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a9a98;
  margin-bottom: 12px;
}

.home-page .section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.home-page .section-title u {
  text-decoration: underline;
  text-decoration-color: var(--teal-light);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.home-page .services {
  padding: 80px 64px;
  background: var(--white);
}
.home-page .services .section-title { margin-bottom: 48px; }

.home-page .services-header { margin-bottom: 44px; }

.home-page .services-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.home-page .service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.home-page a.service-card-link {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.home-page .service-card-inner {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}

.home-page .service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(21,107,120,0.35) 0%, rgba(21,107,120,0.85) 100%);
  z-index: 1;
  transition: opacity 0.3s;
}

.home-page .service-card:hover::before { opacity: 0.75; }

.home-page .service-card .card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

.home-page .card-bg-main {
  background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal-dark) 50%, var(--teal-deep) 100%);
}

.home-page .card-bg-white {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-mid) 60%, var(--teal-dark) 100%);
}

.home-page .card-bg-clear {
  background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal-dark) 60%, var(--teal-deep) 100%);
}

.home-page .service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.home-page .service-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 16px;
}

.home-page .service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.home-page .service-link:hover { gap: 10px; }

.home-page .service-card.small h3 { font-size: 20px; }

.home-page .service-card.featured .card-inner-line,
.home-page .card-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 10px 0 14px;
}
.home-page .card-bg-1 { background: linear-gradient(135deg,var(--teal-mid) 0%,var(--teal-dark) 50%,var(--teal-deep) 100%); }
.home-page .card-bg-2 { background: linear-gradient(135deg,var(--teal-light) 0%,var(--teal-mid) 60%,var(--teal-dark) 100%); }
.home-page .card-bg-3 { background: linear-gradient(135deg,var(--teal-mid) 0%,var(--teal-dark) 60%,var(--teal-deep) 100%); }

.home-page .service-card .card-bg.card-bg-photo {
  background: var(--teal-dark);
}

.home-page .service-card .card-bg .card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .service-card .card-bg .card-bg-placeholder {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

/* ── QUICK LINKS ── */
.home-page .quick-links { background: var(--teal-mid); padding: 0; }
.home-page .quick-links-inner { max-width: 1300px; margin: 0 auto; display: flex; }
.home-page .quick-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .2s, color .2s;
}
.home-page .quick-link:last-child { border-right: none; }
.home-page .quick-link:hover { background: rgba(255,255,255,.08); color: var(--white); }
.home-page .quick-link svg { width: 15px; height: 15px; opacity: .7; }

/* ── CALCULATOR ── */
.home-page .calculator-section {
  background: var(--off-white);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.home-page .calculator-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(42,168,154,.07) 0%, transparent 65%);
}
.home-page .calc-inner {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.home-page .calc-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.home-page .calc-eyebrow .line { display: inline-block; width: 20px; height: 1px; background: var(--gold); }
.home-page .calc-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px,3.5vw,48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.home-page .calc-heading span { color: var(--gold); }
.home-page .calc-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; max-width: 400px; }
.home-page .calc-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.home-page .calc-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border: 1px solid rgba(42,168,154,.2);
  padding: 6px 14px;
  border-radius: 50px;
}
.home-page .calc-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(21,107,120,.12);
}
.home-page .calc-card-header {
  background: linear-gradient(90deg, var(--teal-mid) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-page .calc-form { padding: 28px 28px 24px; }
.home-page .calc-field { margin-bottom: 18px; }
.home-page .calc-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.home-page .calc-select-wrap { position: relative; }
.home-page .calc-select {
  width: 100%;
  appearance: none;
  padding: 12px 40px 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color .2s;
}
.home-page .calc-select:focus { outline: none; border-color: var(--teal-light); }
.home-page .select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}
.home-page .calc-toggle-group { display: flex; gap: 8px; }
.home-page .calc-toggle {
  flex: 1;
  padding: 11px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
}
.home-page .calc-toggle.active { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); font-weight: 700; }
.home-page .calc-btn {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  background: linear-gradient(90deg, var(--teal-mid) 0%, var(--teal-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(21,107,120,.25);
  transition: opacity .2s, transform .15s;
}
.home-page .calc-btn:hover { opacity: .9; transform: translateY(-1px); }
.home-page .calc-loader {
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.home-page .loader-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--teal-light);
  animation: homeSpin .9s linear infinite;
}
@keyframes homeSpin { to { transform: rotate(360deg); } }
.home-page .calc-result { padding: 0 28px 28px; animation: homeFadeUp .4s ease both; }
.home-page .result-pill {
  background: linear-gradient(90deg, var(--teal-mid) 0%, var(--teal-dark) 100%);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home-page .result-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.home-page .result-price { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: var(--gold-light); }
.home-page .result-details { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.home-page .result-detail-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.home-page .result-detail-item strong { color: var(--text-dark); }
.home-page .calc-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #22c55e;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px;
  border-radius: 14px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  margin-bottom: 12px;
}
.home-page .calc-wa-btn:hover { background: #16a34a; transform: translateY(-1px); }
.home-page .result-note { font-size: 11px; color: var(--text-muted); line-height: 1.6; text-align: center; }
.home-page .calc-disclaimer {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 640px;
}
.home-page .calc-disclaimer a { color: var(--teal-mid); text-decoration: none; }
.home-page .calc-disclaimer a:hover { text-decoration: underline; }

/* Calculator on blog detail (same as home) */
.blog-page .calculator-section { background: var(--teal-dark); padding: 80px 64px; position: relative; overflow: hidden; }
.blog-page .calculator-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(42,168,154,0.18) 0%, transparent 65%), radial-gradient(ellipse 40% 60% at 0% 100%, rgba(212,168,50,0.06) 0%, transparent 55%); }
.blog-page .calc-inner { position: relative; z-index: 2; max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.blog-page .calc-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.blog-page .calc-eyebrow .line { display: inline-block; width: 28px; height: 1px; background: var(--gold); }
.blog-page .calc-heading { font-family: 'Playfair Display', serif; font-size: clamp(36px, 4vw, 52px); font-weight: 800; line-height: 1.08; color: var(--white); margin-bottom: 20px; }
.blog-page .calc-heading span { color: var(--gold); }
.blog-page .calc-desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; max-width: 400px; }
.blog-page .calc-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.blog-page .calc-badge { font-size: 12px; font-weight: 600; color: var(--gold); background: rgba(212,168,50,0.12); border: 1px solid rgba(212,168,50,0.25); padding: 6px 14px; border-radius: 50px; letter-spacing: 0.3px; }
.blog-page .calc-card { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.28); }
.blog-page .calc-card-header { background: linear-gradient(90deg, var(--teal-mid) 0%, var(--teal-dark) 100%); color: var(--white); padding: 18px 28px; font-size: 14px; font-weight: 700; letter-spacing: 0.3px; display: flex; align-items: center; gap: 10px; }
.blog-page .calc-form { padding: 28px 28px 24px; }
.blog-page .calc-field { margin-bottom: 18px; }
.blog-page .calc-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; }
.blog-page .calc-select-wrap { position: relative; }
.blog-page .calc-select { width: 100%; appearance: none; padding: 12px 40px 12px 14px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--off-white); font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark); cursor: pointer; transition: border-color 0.2s; }
.blog-page .calc-select:focus { outline: none; border-color: var(--teal-light); }
.blog-page .select-arrow { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-muted); pointer-events: none; }
.blog-page .calc-toggle-group { display: flex; gap: 8px; }
.blog-page .calc-toggle { flex: 1; padding: 11px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--off-white); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.blog-page .calc-toggle.active { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); font-weight: 700; }
.blog-page .calc-btn { width: 100%; margin-top: 6px; padding: 14px; background: linear-gradient(90deg, var(--teal-mid) 0%, var(--teal-dark) 100%); color: var(--white); border: none; border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 8px 24px rgba(21,107,120,0.3); transition: opacity 0.2s, transform 0.15s; }
.blog-page .calc-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.blog-page .calc-loader { padding: 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 13px; color: var(--text-muted); }
.blog-page .loader-ring { width: 36px; height: 36px; border-radius: 50%; border: 3px solid var(--border); border-top-color: var(--teal-light); animation: homeSpin .9s linear infinite; }
.blog-page .calc-result { padding: 0 28px 28px; animation: homeFadeUp .4s ease both; }
.blog-page .result-pill { background: linear-gradient(90deg, var(--teal-mid) 0%, var(--teal-dark) 100%); border-radius: 14px; padding: 18px 22px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 4px; }
.blog-page .result-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.blog-page .result-price { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: var(--gold-light); }
.blog-page .result-details { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.blog-page .result-detail-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.blog-page .result-detail-item strong { color: var(--text-dark); }
.blog-page .calc-wa-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #22c55e; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; padding: 13px; border-radius: 14px; text-decoration: none; transition: background 0.2s, transform 0.15s; margin-bottom: 12px; }
.blog-page .calc-wa-btn:hover { background: #16a34a; transform: translateY(-1px); }
.blog-page .result-note { font-size: 11px; color: var(--text-muted); line-height: 1.6; text-align: center; }
.blog-page .calc-disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}
.blog-page .calc-disclaimer a { color: var(--teal-light); text-decoration: none; }
.blog-page .calc-disclaimer a:hover { text-decoration: underline; }
@media (max-width: 860px) { .blog-page .calc-inner { grid-template-columns: 1fr; gap: 40px; } .blog-page .calculator-section { padding: 60px 24px; } }

/* ── WHY US ── */
.home-page .why-us { padding: 90px 64px; background: var(--off-white); }
.home-page .why-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.home-page .why-content .section-title { text-align: left; margin-bottom: 24px; }
.home-page .why-content .section-eyebrow { text-align: left; }
.home-page .why-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.home-page .why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; padding: 0; margin-left: 0; }
.home-page .why-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-dark); font-weight: 500; }
.home-page .why-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-page .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.home-page .btn-cta:hover { background: var(--teal-mid); transform: translateY(-2px); }
.home-page .why-visual { position: relative; }
.home-page .why-img-main {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--teal-mid), var(--teal-dark));
  box-shadow: 0 20px 60px rgba(21,107,120,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.25);
}
.home-page .why-img-main img { width: 100%; height: 100%; object-fit: cover; }
.home-page .why-stat-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(21,107,120,.14);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home-page .why-stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: var(--teal-dark); }
.home-page .why-stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.home-page .why-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 20px rgba(212,168,50,.4);
}
.home-page .why-badge strong { font-size: 16px; }

/* ── COMPARE ── */
.home-page .compare-section { padding: 80px 64px; background: var(--teal-dark); position: relative; overflow: hidden; }
.home-page .compare-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(42,168,154,.18) 0%, transparent 65%);
}
.home-page .compare-inner { max-width: 1060px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.home-page .compare-text .section-eyebrow { text-align: left; color: rgba(255,255,255,.5); }
.home-page .compare-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px,3.5vw,44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.home-page .compare-heading em { color: var(--gold); font-style: normal; }
.home-page .compare-desc { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 28px; }
.home-page .compare-features { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.home-page .compare-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.8); }
.home-page .compare-features li::before {
  content: '✓';
  background: var(--gold);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-page .compare-widget { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.home-page .compare-imgs { position: relative; height: 380px; user-select: none; }
.home-page .compare-before,
.home-page .compare-after { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.home-page .compare-before { background: linear-gradient(135deg,var(--teal-light),var(--teal-dark)); font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,.2); }
.home-page .compare-before img,
.home-page .compare-after img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.home-page .compare-after { background: linear-gradient(135deg,var(--teal-mid),#d4a832); clip-path: inset(0 50% 0 0); transition: clip-path .05s; }
.home-page .compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--white);
  cursor: ew-resize;
  z-index: 10;
}
.home-page .compare-handle::before {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: var(--white);
  border-radius: 50px;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--teal-dark);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.home-page .compare-label-before,
.home-page .compare-label-after {
  position: absolute;
  bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(21,107,120,.7);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 5;
}
.home-page .compare-label-before { left: 16px; }
.home-page .compare-label-after { right: 16px; }

/* ── STATS ── */
.home-page .stats { padding: 56px 64px; background: var(--teal-mid); }
.home-page .stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.home-page .stat-item { text-align: center; }
.home-page .stat-num { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: var(--white); line-height: 1; }
.home-page .stat-num span { color: var(--gold-light); }
.home-page .stat-label { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 6px; font-weight: 500; letter-spacing: .3px; }

/* ── ABOUT ── */
.home-page .about-section { padding: 90px 64px; background: var(--white); }
.home-page .about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.home-page .about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3.2;
  background: linear-gradient(145deg,var(--teal-mid),var(--teal-dark));
  box-shadow: 0 20px 60px rgba(21,107,120,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.2);
}
.home-page .about-img img { width: 100%; height: 100%; object-fit: cover; }
.home-page .about-play { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: rgba(21,107,120,.3); }
.home-page .play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  font: inherit;
  color: inherit;
  padding: 0;
}
.home-page .play-btn:hover { background: rgba(255,255,255,.25); transform: scale(1.08); }
.home-page .play-btn svg { width: 24px; height: 24px; fill: var(--white); margin-left: 3px; }
.home-page .about-play-label { font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: 0.5px; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.home-page .about-content .section-eyebrow { text-align: left; }
.home-page .about-content .section-title { text-align: left; margin-bottom: 20px; }
.home-page .about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.home-page .about-feature { display: flex; gap: 16px; align-items: flex-start; }
.home-page .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-page .feature-icon svg { width: 18px; height: 18px; fill: var(--teal-dark); }
.home-page .feature-body h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.home-page .feature-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── REVIEWS ── */
.home-page .reviews { padding: 80px 64px; background: var(--off-white); }
.home-page .reviews-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.home-page .reviews-header .section-title { text-align: left; margin-bottom: 0; }
.home-page .reviews-score { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.home-page .score-big { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 800; color: var(--teal-dark); line-height: 1; }
.home-page .stars { display: flex; gap: 3px; }
.home-page .star { color: var(--gold); font-size: 18px; }
.home-page .score-sub { font-size: 12px; color: var(--text-muted); }
.home-page .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.home-page .review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(21,107,120,.07);
  position: relative;
}
.home-page .review-card::before {
  content: '"';
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--teal-pale);
  line-height: 1;
}
.home-page .review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.home-page .review-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.home-page .review-author { display: flex; align-items: center; gap: 10px; }
.home-page .review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.home-page .review-author-info h5 { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.home-page .review-author-info span { font-size: 11px; color: var(--text-muted); }
.home-page .reviews-cta { text-align: center; margin-top: 40px; }
.home-page .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--teal-dark);
  color: var(--teal-dark);
  border-radius: 50px;
  padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.home-page .btn-outline:hover { background: var(--teal-dark); color: var(--white); }

/* ── BLOG ── */
.home-page .blog-section { padding: 80px 64px; background: var(--white); }
.home-page .section-title em { color: var(--gold); font-style: normal; }
.home-page .blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.home-page .blog-card {
  background: var(--off-white);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.home-page .blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(21,107,120,.14); }
.home-page .blog-img { height: 190px; position: relative; overflow: hidden; }
.home-page .blog-img-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,.2); }
.home-page .blog-img-bg img { width: 100%; height: 100%; object-fit: cover; }
.home-page .blog-img-bg.b1 { background: linear-gradient(135deg,var(--teal-light),var(--teal-dark)); }
.home-page .blog-img-bg.b2 { background: linear-gradient(135deg,var(--teal-mid),#d4a832); }
.home-page .blog-img-bg.b3 { background: linear-gradient(135deg,var(--teal-dark),var(--teal-light)); }
.home-page .blog-img::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--gold); }
.home-page .blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.home-page .blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 8px; }
.home-page .blog-body h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--text-dark); margin-bottom: 10px; }
.home-page .blog-body p { font-size: 13px; line-height: 1.65; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.home-page .blog-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.home-page .blog-date { font-size: 12px; color: var(--text-muted); }
.home-page .blog-read { font-size: 12px; font-weight: 600; color: var(--teal-mid); }

/* ── FOOTER (.ft) ── */
.ft {
  background: var(--teal-dark);
  padding: 60px 64px 32px;
}
.fti { max-width: 1200px; margin: 0 auto; }
.ftp { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.flo img { height: 56px; width: auto; max-width: 220px; object-fit: contain; margin-bottom: 18px; }
.fab { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 20px; }
.fso { display: flex; gap: 10px; }
.fsc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 14px;
  transition: border-color .2s, color .2s, background .2s;
}
.fsc:hover { border-color: var(--gold); color: var(--white); background: rgba(212,168,50,.15); }
.fsc svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.home-page .social-strip a svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.fc h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.fc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.fc ul li a { font-size: 13.5px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.fc ul li a:hover { color: var(--gold); }
.fci { display: flex; flex-direction: column; gap: 14px; }
.fcit { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,.55); }
.fcit svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.fcit a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.fcit a:hover { color: var(--gold); }
.fb { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.fb p { font-size: 13px; color: rgba(255,255,255,.35); margin: 0; }
.fb a { color: var(--gold); text-decoration: none; }

.home-page .footer-strip {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.home-page .footer-strip a { color: var(--gold); text-decoration: none; }

@keyframes homeFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.home-page .hero-eyebrow { animation: homeFadeUp 0.6s ease both; }
.home-page .hero h1      { animation: homeFadeUp 0.6s 0.12s ease both; }
.home-page .hero-sub     { animation: homeFadeUp 0.6s 0.22s ease both; }
.home-page .hero-actions { animation: homeFadeUp 0.6s 0.32s ease both; }
@media (max-width: 1024px) {
  .home-page .hero-inner { flex-direction: column; gap: 40px; }
  .home-page .hero-photo-wrap { display: none; }
  .home-page .smile-deco { display: none; }
  .home-page .social-strip { display: none; }
  .home-page .services-grid { grid-template-columns: 1fr; }
  .home-page .why-inner,
  .home-page .compare-inner,
  .home-page .about-inner,
  .home-page .ftp { grid-template-columns: 1fr; }
  .home-page .calc-inner { grid-template-columns: 1fr; }
  .home-page .stats-inner { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .home-page .nav-inner,
  .blog-page .nav-inner { padding: 0 20px; }
  .home-page .nav-links,
  .home-page .btn-nav,
  .home-page .nav-cta-group,
  .blog-page .nav-links,
  .blog-page .btn-nav,
  .blog-page .nav-cta-group { display: none; }
  .home-page .nav-logo-cta,
  .blog-page .nav-logo-cta { display: none; }
  .home-page .hamburger,
  .blog-page .hamburger { display: flex; }
  .home-page .mobile-top-actions,
  .blog-page .mobile-top-actions { display: flex; }
  .home-page .mobile-header-cta,
  .blog-page .mobile-header-cta { display: inline-flex; }
  .home-page .hero { padding: 56px 24px; }
  .home-page .calculator-section,
  .home-page .services,
  .home-page .why-us,
  .home-page .compare-section,
  .home-page .about-section,
  .home-page .reviews,
  .home-page .blog-section,
  .home-page .ft { padding-left: 24px; padding-right: 24px; }
  .blog-page .ft { padding-left: 24px; padding-right: 24px; }
  .home-page .services-grid,
  .home-page .reviews-grid,
  .home-page .blog-grid { grid-template-columns: 1fr; }
  .home-page .ftp,
  .blog-page .ftp { grid-template-columns: 1fr; }
  .home-page .quick-links-inner { flex-wrap: wrap; }
  .home-page .quick-link { flex: 1 0 50%; }
  .home-page .stats-inner { grid-template-columns: repeat(2,1fr); }
}

/* ── İletişim sayfası (contact) ── */
.home-page .contact-page .page-hero {
  background: var(--teal-dark);
  padding: 64px 64px 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.home-page .contact-page .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(42,168,154,.15) 0%, transparent 70%);
}
.home-page .contact-page .page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.home-page .contact-page .page-hero-inner { position: relative; z-index: 2; }
.home-page .contact-page .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.home-page .contact-page .hero-eyebrow .line { display: inline-block; width: 24px; height: 1px; background: var(--gold); }
.home-page .contact-page .page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.home-page .contact-page .page-hero h1 em { color: var(--gold); font-style: normal; }
.home-page .contact-page .page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 28px;
}
.home-page .contact-page .hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.home-page .contact-page .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.home-page .contact-page .hero-btn.prim { background: var(--gold); color: var(--white); }
.home-page .contact-page .hero-btn.prim:hover { background: var(--gold-light); }
.home-page .contact-page .hero-btn.sec {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
}
.home-page .contact-page .hero-btn.sec:hover { background: rgba(255,255,255,.18); }

.home-page .contact-page .quick-contact {
  background: var(--teal-dark);
  padding: 0 64px 64px;
}
.home-page .contact-page .quick-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.home-page .contact-page .quick-contact-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  cursor: pointer;
  font-family: inherit;
}
.home-page .contact-page .quick-contact-card button,
.home-page .contact-page button.quick-contact-card {
  border: none;
  width: 100%;
  background: rgba(255,255,255,.07);
  color: inherit;
  cursor: pointer;
  font: inherit;
}
.home-page .contact-page button.quick-contact-card:hover {
  background: rgba(255,255,255,.13);
}
.home-page .contact-page .quick-contact-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-3px);
}
.home-page .contact-page .quick-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .contact-page .quick-contact-icon svg { width: 22px; height: 22px; fill: var(--white); }
.home-page .contact-page .quick-contact-card h3 { font-size: 14px; font-weight: 700; color: var(--white); }
.home-page .contact-page .quick-contact-card span { font-size: 13px; color: rgba(255,255,255,.6); }

/* İletişim: yol tarifi — video + harita (iki ayrı eylem) */
.home-page .contact-page .quick-contact-card.quick-contact-dual {
  cursor: default;
  padding: 22px 16px 20px;
  gap: 0;
}
.home-page .contact-page .quick-contact-card.quick-contact-dual:hover {
  transform: none;
  background: rgba(255,255,255,.07);
}
.home-page .contact-page .quick-contact-dual-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 14px;
}
.home-page .contact-page .quick-contact-dual-sub {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.35;
}
.home-page .contact-page .quick-contact-dual-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.home-page .contact-page .quick-contact-dual-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s;
  text-align: center;
}
.home-page .contact-page .quick-contact-dual-btn:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-2px);
}
.home-page .contact-page .quick-contact-dual-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212,168,50,.35);
  color: var(--white);
}
.home-page .contact-page .quick-contact-dual-btn-icon svg {
  width: 18px;
  height: 18px;
}
.home-page .contact-page .quick-contact-dual-btn-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.home-page .contact-page .quick-contact-dual-btn-hint {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  line-height: 1.25;
}

/* YouTube modal (Yol Tarifi Al) */
.youtube-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.youtube-modal.open {
  opacity: 1;
  visibility: visible;
}
.youtube-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
  cursor: pointer;
}
.youtube-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.youtube-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.youtube-modal-close:hover { background: rgba(0,0,0,.8); }
.youtube-modal-title {
  margin: 0;
  padding: 16px 20px 0;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}
.youtube-modal-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.youtube-modal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.home-page .contact-page .main-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.home-page .contact-page .form-block {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(21,107,120,.1);
}
.home-page .contact-page .form-header {
  background: linear-gradient(90deg, var(--teal-mid), var(--teal-dark));
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-page .contact-page .form-header svg { width: 22px; height: 22px; stroke: var(--white); fill: none; }
.home-page .contact-page .form-header h2 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--white); }
.home-page .contact-page .form-header p { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 2px; }
.home-page .contact-page .form-body { padding: 32px; }
.home-page .contact-page .form-group { margin-bottom: 20px; }
.home-page .contact-page .form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.home-page .contact-page .form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color .2s;
  outline: none;
}
.home-page .contact-page .form-input:focus { border-color: var(--teal-light); }
.home-page .contact-page textarea.form-input { resize: vertical; min-height: 110px; }
.home-page .contact-page .char-count { font-size: 11px; color: var(--text-muted); text-align: right; margin-top: 4px; }
.home-page .contact-page .form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, var(--teal-mid), var(--teal-dark));
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(21,107,120,.25);
  transition: opacity .2s, transform .15s;
}
.home-page .contact-page .form-submit:hover { opacity: .9; transform: translateY(-1px); }
.home-page .contact-page .form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 14px; line-height: 1.6; }
.home-page .contact-page .success-msg {
  display: none;
  background: var(--teal-pale);
  border: 1.5px solid rgba(42,168,154,.2);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
  margin-top: 16px;
}
.home-page .contact-page .success-msg svg { width: 32px; height: 32px; stroke: var(--teal-dark); fill: none; margin: 0 auto 8px; display: block; }
.home-page .contact-page .success-msg h4 { font-size: 15px; font-weight: 700; color: var(--teal-dark); margin-bottom: 4px; }
.home-page .contact-page .success-msg p { font-size: 13px; color: var(--text-muted); }

.home-page .contact-page .info-side { display: flex; flex-direction: column; gap: 20px; }
.home-page .contact-page .info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(21,107,120,.07);
}
.home-page .contact-page .info-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-pale);
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-page .contact-page .info-card-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--gold);
  border-radius: 2px;
}
.home-page .contact-page .contact-items { display: flex; flex-direction: column; gap: 16px; }
.home-page .contact-page .contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.home-page .contact-page .contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-page .contact-page .contact-item-icon svg { width: 18px; height: 18px; stroke: var(--teal-dark); fill: none; stroke-width: 2; }
.home-page .contact-page .contact-item-body h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.home-page .contact-page .contact-item-body a,
.home-page .contact-page .contact-item-body span { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.home-page .contact-page .contact-item-body a:hover { color: var(--teal-mid); }
.home-page .contact-page .contact-address-extras {
  margin: 10px 0 0;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}
.home-page .contact-page .contact-address-extra-btn {
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-mid);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-page .contact-page .contact-address-extra-btn:hover { color: var(--teal-dark); }
.home-page .contact-page .contact-address-extra-sep { color: var(--border); user-select: none; }
.home-page .contact-page .contact-address-extra-link { font-weight: 600; }

.home-page .contact-page .social-row { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.home-page .contact-page .soc-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: all .2s;
}
.home-page .contact-page .soc-btn:hover { border-color: var(--teal-light); background: var(--teal-pale); color: var(--teal-dark); }
.home-page .contact-page .soc-btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

.home-page .contact-page .map-full {
  width: 100%;
  margin: 0;
  padding: 0;
}
.home-page .contact-page .map-full iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  vertical-align: top;
}

.home-page .contact-page .parking-note {
  background: var(--teal-pale);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 13px;
  color: var(--teal-dark);
  line-height: 1.65;
  border: 1px solid rgba(42,168,154,.2);
}
.home-page .contact-page .parking-note strong { display: block; margin-bottom: 6px; font-size: 14px; }

.home-page .contact-page .gallery-section { padding: 60px 64px; background: var(--off-white); }
.home-page .contact-page .gallery-inner { max-width: 1100px; margin: 0 auto; }
.home-page .contact-page .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 10px; }
.home-page .contact-page .section-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.home-page .contact-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.home-page .contact-page .gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.home-page .contact-page .gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.home-page .contact-page .gallery-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.25);
  transition: transform .3s;
}
.home-page .contact-page .gallery-item:hover .gallery-bg { transform: scale(1.04); }
.home-page .contact-page .gallery-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.home-page .contact-page .gallery-item:hover .gallery-bg img { transform: scale(1.04); }
.home-page .contact-page .gallery-bg.g1 { background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark)); }
.home-page .contact-page .gallery-bg.g2 { background: linear-gradient(135deg, var(--teal-light), var(--teal-mid)); }
.home-page .contact-page .gallery-bg.g3 { background: linear-gradient(135deg, var(--teal-dark), var(--teal-deep)); }
.home-page .contact-page .gallery-bg.g4 { background: linear-gradient(135deg, var(--teal-mid), var(--teal-light)); }
.home-page .contact-page .gallery-bg.g5 { background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid)); }
.home-page .contact-page .gallery-bg.g6 { background: linear-gradient(135deg, var(--teal-light), var(--teal-dark)); }
.home-page .contact-page .gallery-bg.g7 { background: linear-gradient(135deg, var(--teal-mid), var(--teal-deep)); }

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox .lb-content {
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox .lb-content img {
  max-width: 100%;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.gallery-lightbox .lb-close,
.gallery-lightbox .lb-prev,
.gallery-lightbox .lb-next {
  position: absolute;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  line-height: 1;
  padding: 0;
}
.gallery-lightbox .lb-close:hover,
.gallery-lightbox .lb-prev:hover,
.gallery-lightbox .lb-next:hover {
  background: rgba(255,255,255,.3);
}
.gallery-lightbox .lb-close { top: 20px; right: 20px; font-size: 32px; }
.gallery-lightbox .lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.gallery-lightbox .lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

@media (max-width: 960px) {
  .home-page .contact-page .main-layout { grid-template-columns: 1fr; }
  .home-page .contact-page .quick-contact-inner { grid-template-columns: 1fr; }
  .home-page .contact-page .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .home-page .contact-page .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 768px) {
  .home-page .contact-page .page-hero { padding: 48px 24px 56px; }
  .home-page .contact-page .quick-contact { padding: 0 24px 48px; }
  .home-page .contact-page .main-layout { padding: 48px 24px 64px; }
  .home-page .contact-page .hero-btns { flex-direction: column; align-items: stretch; }
  .home-page .contact-page .hero-btn { justify-content: center; }
  .home-page .contact-page .gallery-section { padding: 48px 24px; }
  .home-page .contact-page .quick-contact-dual-actions { grid-template-columns: 1fr; }
}

/* ── Dt. Emre Aldoğan (about / doctor) sayfası ── */
.home-page .about-page .doctor-hero {
  background: var(--teal-dark);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.home-page .about-page .doctor-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(42,168,154,.18) 0%, transparent 65%);
}
.home-page .about-page .doctor-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.home-page .about-page .doctor-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.home-page .about-page .doc-photo {
  width: 240px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--teal-mid), var(--teal-dark));
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.2);
  position: relative;
}
.home-page .about-page .doc-photo img { width: 100%; height: 100%; object-fit: cover; }
.home-page .about-page .doc-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212,168,50,.4);
}
.home-page .about-page .doctor-hero .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.home-page .about-page .doctor-hero .hero-eyebrow .line { display: inline-block; width: 24px; height: 1px; background: var(--gold); }
.home-page .about-page .doctor-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.home-page .about-page .doc-title { font-size: 16px; font-weight: 600; color: var(--gold); margin-bottom: 16px; }
.home-page .about-page .doc-lead {
  font-size: 15px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 28px;
}
.home-page .about-page .doc-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.home-page .about-page .doc-stat { display: flex; flex-direction: column; gap: 4px; }
.home-page .about-page .doc-stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: var(--gold-light); }
.home-page .about-page .doc-stat-label { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; }
.home-page .about-page .doc-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.home-page .about-page .doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.home-page .about-page .doc-btn.prim { background: var(--gold); color: var(--white); }
.home-page .about-page .doc-btn.prim:hover { background: var(--gold-light); }
.home-page .about-page .doc-btn.sec {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
}
.home-page .about-page .doc-btn.sec:hover { background: rgba(255,255,255,.18); }

.home-page .about-page .about-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
}

.home-page .about-page .bio-block,
.home-page .about-page .edu-block,
.home-page .about-page .exp-block,
.home-page .about-page .approach-block,
.home-page .about-page .articles-block {
  background: var(--white);
  border-radius: 18px;
  padding: 40px 44px;
  box-shadow: 0 2px 20px rgba(21,107,120,.07);
  margin-bottom: 28px;
}
.home-page .about-page .block-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-page .about-page .block-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.home-page .about-page .bio-block p {
  font-size: 15px;
  line-height: 1.85;
  color: #3a5450;
  margin-bottom: 16px;
}
.home-page .about-page .bio-block p:last-child { margin: 0; }

.home-page .about-page .timeline { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.home-page .about-page .tl-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.home-page .about-page .tl-item:last-child { border-bottom: none; }
.home-page .about-page .tl-dot-wrap { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.home-page .about-page .tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-dark);
  flex-shrink: 0;
  margin-top: 4px;
}
.home-page .about-page .tl-line { flex: 1; width: 2px; background: var(--border); margin-top: 4px; }
.home-page .about-page .tl-item:last-child .tl-line { display: none; }
.home-page .about-page .tl-year { font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.home-page .about-page .tl-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.home-page .about-page .tl-sub { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

.home-page .about-page .exp-block {
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
}
.home-page .about-page .exp-block .block-title { color: var(--white); }
.home-page .about-page .exp-block .block-title::before { background: var(--gold); }
.home-page .about-page .exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}
.home-page .about-page .exp-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.home-page .about-page .exp-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-page .about-page .exp-icon svg { width: 17px; height: 17px; fill: var(--white); }
.home-page .about-page .exp-item h4 { font-size: 13.5px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.home-page .about-page .exp-item p { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.55; }

.home-page .about-page .approach-block { background: var(--off-white); }
.home-page .about-page .approach-block .block-title::before { background: var(--gold); }
.home-page .about-page .approach-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.home-page .about-page .approach-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.home-page .about-page .approach-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.home-page .about-page .approach-body h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.home-page .about-page .approach-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.home-page .about-page .articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.home-page .about-page .art-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.home-page .about-page .art-card:hover {
  border-color: var(--teal-light);
  box-shadow: 0 4px 20px rgba(21,107,120,.1);
}
.home-page .about-page .art-img { height: 100px; position: relative; overflow: hidden; }
.home-page .about-page .art-img-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.2);
}
.home-page .about-page .art-img-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-page .about-page .art-img-bg.a1 { background: linear-gradient(135deg, var(--teal-light), var(--teal-dark)); }
.home-page .about-page .art-img-bg.a2 { background: linear-gradient(135deg, var(--teal-mid), #d4a832); }
.home-page .about-page .art-img-bg.a3 { background: linear-gradient(135deg, var(--teal-dark), var(--teal-light)); }
.home-page .about-page .art-img-bg.a4 { background: linear-gradient(135deg, var(--teal-mid), var(--teal-deep)); }
.home-page .about-page .art-body { padding: 14px; }
.home-page .about-page .art-cat { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 5px; }
.home-page .about-page .art-body h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.35; margin-bottom: 4px; }
.home-page .about-page .art-body span { font-size: 11px; color: var(--text-muted); }

.home-page .about-page .about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 90px;
}
.home-page .about-page .sidebar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(21,107,120,.07);
}
.home-page .about-page .sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-pale);
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-page .about-page .sidebar-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--gold);
  border-radius: 2px;
}
.home-page .about-page .cta-card {
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.home-page .about-page .cta-card::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
}
.home-page .about-page .cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.home-page .about-page .cta-card h3 em { color: var(--gold); font-style: normal; }
.home-page .about-page .cta-card p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 18px; }
.home-page .about-page .cta-btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.home-page .about-page .cta-btn:hover { background: var(--gold-light); }

.home-page .about-page .cert-list { display: flex; flex-direction: column; gap: 10px; }
.home-page .about-page .cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--off-white);
  border-radius: 10px;
}
.home-page .about-page .cert-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-page .about-page .cert-icon svg { width: 14px; height: 14px; stroke: var(--teal-dark); fill: none; }
.home-page .about-page .cert-item span { font-size: 13px; font-weight: 500; color: var(--text-dark); }

.home-page .about-page .review-mini { display: flex; flex-direction: column; gap: 14px; }
.home-page .about-page .rm-item { padding: 14px; background: var(--off-white); border-radius: 12px; }
.home-page .about-page .rm-stars { display: flex; gap: 2px; margin-bottom: 6px; }
.home-page .about-page .rm-star { color: var(--gold); font-size: 14px; }
.home-page .about-page .rm-text { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }
.home-page .about-page .rm-author { font-size: 12px; font-weight: 600; color: var(--text-dark); }

@media (max-width: 1024px) {
  .home-page .about-page .about-main { grid-template-columns: 1fr; padding: 40px 24px 60px; }
  .home-page .about-page .about-sidebar { position: static; }
}
@media (max-width: 768px) {
  .home-page .about-page .doctor-hero { padding: 48px 24px; }
  .home-page .about-page .doctor-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .home-page .about-page .doc-photo { width: 160px; height: 200px; margin: 0 auto; }
  .home-page .about-page .bio-block,
  .home-page .about-page .edu-block,
  .home-page .about-page .exp-block,
  .home-page .about-page .approach-block,
  .home-page .about-page .articles-block { padding: 28px 24px; }
  .home-page .about-page .exp-grid,
  .home-page .about-page .articles-grid { grid-template-columns: 1fr; }
}
