/* ═══════════════════════════════════════════════════════════
   Dr. Onur Yılmaz Diş Kliniği — Ana CSS
   Tasarım: miguelstanley.com ilhamlı, premium B&W minimalist
   ═══════════════════════════════════════════════════════════ */

:root {
  --black:      #000000;
  --off-black:  #0d0d0d;
  --white:      #ffffff;
  --off-white:  #f7f6f4;
  --gray-100:   #f0eeeb;
  --gray-200:   #e0ddd9;
  --gray-400:   #9e9b96;
  --gray-600:   #555250;
  --gold:       #C9A86C;
  --gold-light: rgba(201,168,108,0.15);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w:      1240px;
  --pad-h:      clamp(20px, 4vw, 48px);
}

/* ═══ RESET ══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ═══ SCROLLBAR ══════════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 2px; }

/* ═══ CONTAINER ══════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* ═══ YARDIMCI SINIFLAR ══════════════════════════════════ */
.tag-gold {
  display: inline-block;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 4px 14px;
  margin-bottom: 20px;
}
.tag-gray {
  display: inline-block;
  color: var(--gray-400);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gray-200);
  padding: 4px 14px;
  margin-bottom: 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-top: 0;
}
.section-header.light h2 { color: var(--white); }

/* ═══ BUTONLAR ═══════════════════════════════════════════ */
.btn-outline-gold {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 13px 38px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }

.btn-outline-white {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  padding: 13px 38px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
}
.btn-outline-white:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.07); }

.btn-black {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 14px 38px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  align-self: flex-start;
}
.btn-black:hover { background: var(--gray-600); }


/* ════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════ */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom-color: rgba(255,255,255,0.07);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-menu > li > a {
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
  padding-bottom: 4px;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-menu > li > a:hover { color: var(--white); }
.nav-menu > li > a:hover::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5,5,5,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  padding: 6px 0;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; }
.dropdown li a {
  display: block;
  padding: 10px 22px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.dropdown li a:hover { color: var(--white); background: rgba(255,255,255,0.04); padding-left: 30px; }

.btn-randevu {
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
  padding: 10px 26px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-randevu:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.mobile-menu-btn span {
  display: block; width: 26px; height: 1.5px;
  background: var(--white);
  transition: all 0.35s var(--ease);
  transform-origin: center;
}


/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(25%) brightness(0.85);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.55) 70%,
    rgba(0,0,0,0.75) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h) 90px;
  width: 100%;
}
.hero-eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500; /* h1 varsayılan bold'u normalize et */
}
.hero-sep { color: rgba(255,255,255,0.35); margin: 0 8px; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.82);
}
.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.75;
  margin-bottom: 38px;
}
.hero-cta {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 14px 44px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
}
.hero-cta:hover { background: var(--white); color: var(--black); }

.scroll-indicator {
  position: absolute;
  bottom: 36px; right: 44px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 56px;
  background: rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 1px; height: 100%;
  background: var(--white);
  animation: lineDown 2s ease-in-out infinite;
}
@keyframes lineDown {
  0%   { top: -100%; }
  100% { top:  100%; }
}


/* ════════════════════════════════════════════════════════
   FELSEFEMİZ
════════════════════════════════════════════════════════ */
#felsefe { background: var(--black); padding: 110px 0; }
.felsefe-wrap {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.felsefe-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.07;
  margin-bottom: 30px;
}
.felsefe-title em { font-style: italic; color: var(--gold); }
.felsefe-text {
  color: rgba(255,255,255,0.58);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.95;
  max-width: 640px;
  margin: 0 auto 40px;
}


/* ════════════════════════════════════════════════════════
   HİZMETLER
════════════════════════════════════════════════════════ */
#hizmetler { background: var(--white); padding: 110px 0 0; }
#hizmetler .section-header { padding: 0 var(--pad-h); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  margin-top: 60px;
}
.service-card { background: var(--white); overflow: hidden; }
.service-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.7s var(--ease), transform 0.7s var(--ease);
}
.service-card:hover .service-img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.06);
}
.service-body { padding: 28px 32px 36px; }
.service-num {
  display: block;
  color: var(--gray-200);
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.service-body p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.service-link {
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.service-link:hover { color: var(--gold); border-color: var(--gold); }


/* ════════════════════════════════════════════════════════
   ETKİNLİKLER
════════════════════════════════════════════════════════ */
#etkinlikler { background: var(--black); padding: 110px 0; }
.events-head { margin-bottom: 56px; }
.events-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.18;
  margin-top: 14px;
}
.events-list { border-top: 1px solid rgba(255,255,255,0.09); }
.event-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: all 0.3s var(--ease);
}
.event-row:hover { background: rgba(255,255,255,0.025); padding-left: 14px; }
.event-date {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  min-width: 82px;
  flex-shrink: 0;
}
.event-info { flex: 1; }
.event-info h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 4px;
}
.event-info p { color: rgba(255,255,255,0.42); font-size: 0.85rem; }
.event-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  padding: 5px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}


/* ════════════════════════════════════════════════════════
   HAKKIMIZDA
════════════════════════════════════════════════════════ */
.section-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.about-image { overflow: hidden; }
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.7s;
}
.about-image:hover img { filter: grayscale(0%); }
.about-content {
  background: var(--gray-100);
  padding: clamp(48px, 6vw, 90px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 22px;
}
.about-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 14px;
}
.about-stats {
  display: flex;
  gap: 36px;
  margin: 36px 0;
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stat-item { display: flex; flex-direction: column; gap: 5px; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  color: var(--gray-400);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ════════════════════════════════════════════════════════
   KLİNİK
════════════════════════════════════════════════════════ */
#klinik { background: var(--white); padding: 110px 0 0; }
.clinic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  margin-top: 60px;
}
.clinic-img-a, .clinic-img-b { overflow: hidden; }
.clinic-img-a { grid-row: 1; grid-column: 1; aspect-ratio: 4/3; }
.clinic-img-b { grid-row: 2; grid-column: 1 / -1; height: 320px; }
.clinic-img-a img, .clinic-img-b img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(35%);
  transition: filter 0.7s, transform 0.7s var(--ease);
}
.clinic-img-a:hover img,
.clinic-img-b:hover img { filter: grayscale(0%); transform: scale(1.03); }

.clinic-features {
  grid-row: 1;
  grid-column: 2;
  background: var(--black);
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.clinic-feat { display: flex; gap: 18px; align-items: flex-start; }
.feat-diamond { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.clinic-feat h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 5px;
}
.clinic-feat p { color: rgba(255,255,255,0.48); font-size: 0.86rem; line-height: 1.65; }


/* ════════════════════════════════════════════════════════
   HABERLER / BLOG
════════════════════════════════════════════════════════ */
#haberler { background: var(--black); padding: 110px 0; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  margin-top: 60px;
}
.news-card { background: var(--off-black); overflow: hidden; }
.news-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s, transform 0.6s var(--ease);
}
.news-card:hover .news-img-wrap img { filter: grayscale(0%); transform: scale(1.05); }
.news-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--black);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.news-body { padding: 24px 28px 32px; }
.news-body time { color: var(--gray-400); font-size: 0.76rem; letter-spacing: 0.07em; }
.news-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin: 9px 0 12px;
}
.news-body p { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.72; margin-bottom: 18px; }
.read-more {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,108,0.4);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.read-more:hover { border-color: var(--gold); }
.news-footer { text-align: center; margin-top: 52px; }


/* ════════════════════════════════════════════════════════
   YORUMLAR
════════════════════════════════════════════════════════ */
#yorumlar { background: var(--off-white); padding: 110px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  margin-top: 64px;
}
.testi-card {
  background: var(--white);
  padding: 40px;
  transition: background 0.3s;
}
.testi-card:hover { background: var(--gray-100); }
.testi-card.featured {
  background: var(--black);
  color: var(--white);
}
.testi-card.featured:hover { background: #111; }
.testi-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.08em; margin-bottom: 20px; }
.testi-card p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 26px;
  color: var(--gray-600);
}
.testi-card.featured p { color: rgba(255,255,255,0.72); }
.testi-author { display: flex; flex-direction: column; gap: 4px; }
.testi-name { font-weight: 500; font-size: 0.9rem; }
.testi-card.featured .testi-name { color: var(--white); }
.testi-detail { color: var(--gray-400); font-size: 0.76rem; letter-spacing: 0.05em; }
.testi-card.featured .testi-detail { color: rgba(255,255,255,0.38); }


/* ════════════════════════════════════════════════════════
   GOOGLE REVIEWS WIDGET
════════════════════════════════════════════════════════ */
.reviews-widget-wrap {
  margin-top: 64px;
}
.reviews-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0;
  border: 1px solid rgba(255,255,255,0.07);
}
.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.reviews-stars { color: var(--gold); font-size: 1.8rem; letter-spacing: 4px; }
.reviews-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.reviews-count {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════
   İKİNCİ GÖRÜŞ
════════════════════════════════════════════════════════ */
#ikinci-gorus { background: var(--black); }
.second-opinion-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.second-opinion-content {
  padding: clamp(60px, 7vw, 100px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.second-opinion-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.second-opinion-content p {
  color: rgba(255,255,255,0.52);
  font-size: 0.98rem;
  line-height: 1.9;
  margin-bottom: 38px;
}
.second-opinion-img { overflow: hidden; }
.second-opinion-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: filter 0.7s;
}
.second-opinion-img:hover img { filter: grayscale(0%); }


/* ════════════════════════════════════════════════════════
   RANDEVU / CONTACT
════════════════════════════════════════════════════════ */
.section-contact {
  background: var(--off-black);
  padding: 110px 0;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin: 14px 0 12px;
}
.contact-sub { color: rgba(255,255,255,0.45); margin-bottom: 44px; font-size: 0.95rem; }
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row i { color: var(--gold); font-size: 0.95rem; width: 20px; flex-shrink: 0; margin-top: 3px; }
.contact-row strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-row p, .contact-row a {
  color: rgba(255,255,255,0.48);
  font-size: 0.9rem;
  line-height: 1.65;
}
.contact-row a:hover { color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.28); }
.contact-form select { color: rgba(255,255,255,0.28); cursor: pointer; }
.contact-form select option { background: var(--black); color: var(--white); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.07);
}
.btn-submit {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--black);
  padding: 16px 40px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  align-self: flex-start;
  cursor: pointer;
}
.btn-submit:hover { background: var(--gold); color: var(--white); }
.btn-icon { font-size: 1.1rem; transition: transform 0.3s; }
.btn-submit:hover .btn-icon { transform: translateX(5px); }


/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
#footer {
  background: #070707;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { font-size: 1.35rem; display: block; margin-bottom: 14px; }
.footer-brand p {
  color: rgba(255,255,255,0.35);
  font-size: 0.87rem;
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}
.social-bar { display: flex; gap: 10px; }
.social-bar a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.42);
  font-size: 0.82rem;
  transition: all 0.3s;
}
.social-bar a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-light); }
.footer-nav h5, .footer-contact-info h5 {
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.36);
  font-size: 0.87rem;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact-info p {
  color: rgba(255,255,255,0.36);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-contact-info a { transition: color 0.3s; }
.footer-contact-info a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.78rem; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(255,255,255,0.2); font-size: 0.78rem; transition: color 0.3s; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }


/* ════════════════════════════════════════════════════════
   GOOGLE HARİTA
════════════════════════════════════════════════════════ */
.section-map {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.section-map iframe:hover {
  filter: grayscale(0%) contrast(1) !important;
  transition: filter 0.5s;
}

/* ════════════════════════════════════════════════════════
   SCROLL ANİMASYONU
════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤1024px)
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .section-about { grid-template-columns: 1fr; }
  .about-image { height: 420px; }
  .second-opinion-wrap { grid-template-columns: 1fr; }
  .second-opinion-img { height: 340px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .clinic-grid { grid-template-columns: 1fr; }
  .clinic-img-a { grid-column: 1; aspect-ratio: 16/7; }
  .clinic-features { grid-row: 2; grid-column: 1; }
  .clinic-img-b { grid-row: 3; grid-column: 1; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Mobil (≤768px)
════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 800;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { font-size: 1.15rem; letter-spacing: 0.1em; }
  .mobile-menu-btn { display: flex; }
  .btn-randevu { display: none; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; display: none; background: transparent; border: none; padding: 8px 0 0; }
  .has-dropdown.open .dropdown { display: block; }

  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .about-stats { gap: 20px; flex-wrap: wrap; }
  .about-image { height: 360px; }
  #felsefe, #etkinlikler, #haberler, #yorumlar, .section-contact,
  #hizmetler, #klinik, #ikinci-gorus { padding-top: 80px; padding-bottom: 80px; }
  .scroll-indicator { display: none; }
  .events-head h2 { font-size: 1.75rem; }
  .event-row { flex-wrap: wrap; gap: 10px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3.8rem; }
  .about-content { padding: 48px 24px; }
  .clinic-features { padding: 36px 24px; }
  .felsefe-title { font-size: 2.4rem; }
  .testi-card { padding: 28px 24px; }
}
