/* ============================================================
   Edremit Hacamat Sülük Tedavi Merkezi - style.css
   ============================================================ */

/* Google Fonts are loaded via <link> in each HTML file — no @import needed here */

/* ---- CSS Variables ---- */
:root {
  --green-dark:   #0d4a28;
  --green-mid:    #1a7a45;
  --green-light:  #2da05a;
  --gold:         #c9a227;
  --gold-light:   #e0bc50;
  --white:        #ffffff;
  --off-white:    #f7f9f6;
  --gray-100:     #f1f5f1;
  --gray-200:     #e2e8e2;
  --gray-600:     #5a6b5a;
  --gray-800:     #1e2b1e;
  --text:         #2c3a2c;
  --shadow-sm:    0 2px 8px rgba(13,74,40,.08);
  --shadow-md:    0 6px 24px rgba(13,74,40,.12);
  --shadow-lg:    0 16px 48px rgba(13,74,40,.16);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s ease;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--green-dark);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-title { margin-bottom: .75rem; }
.section-desc  { color: var(--gray-600); max-width: 660px; margin-bottom: 2.5rem; }

/* ---- Layout ---- */
.container { width: min(1200px, 92%); margin-inline: auto; }
.section   { padding: 80px 0; }
.section-alt { background: var(--off-white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
}
.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition);
}
#site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.logo-link img {
  height: 58px;
  width: auto;
  object-fit: contain;
}
.logo-text { display: none; }

.nav-menu { display: flex; align-items: center; gap: .25rem; }

.nav-link {
  display: block;
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--green-dark);
  background: var(--gray-100);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--green-dark);
}
.header-phone svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a3a1e 50%, #071f11 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,162,39,.2);
  border: 1px solid rgba(201,162,39,.4);
  color: var(--gold-light);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-head);
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.65); }

/* ============================================================
   WHY US (Feature Cards)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--green-dark);
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.feature-card p  { font-size: .9rem; color: var(--gray-600); margin: 0; }

/* ============================================================
   CONTENT SECTIONS (About text, etc.)
   ============================================================ */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.content-split.reverse .content-media { order: -1; }

.content-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.content-media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.content-media-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, rgba(13,74,40,.04), rgba(201,162,39,.04)),
    repeating-linear-gradient(45deg, #f3f6f3, #f3f6f3 12px, #eaf0ea 12px, #eaf0ea 24px);
  border: 2px dashed rgba(13,74,40,.18);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  gap: .6rem;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.content-media-placeholder::before {
  content: '📷';
  font-size: 2.6rem;
  opacity: .55;
}
.content-media-placeholder span {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--green-dark);
  opacity: .7;
}
.content-media-placeholder span:first-of-type { display: none; }
.content-media .img-link {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(13,74,40,.04), rgba(201,162,39,.04)),
    repeating-linear-gradient(45deg, #f3f6f3, #f3f6f3 14px, #eaf0ea 14px, #eaf0ea 28px);
  border: 2px dashed rgba(13,74,40,.2);
  transition: all var(--transition);
}
.content-media .img-link:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.content-media .img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.content-media .img-link.img-empty::after {
  content: '📷 Fotoğraf Alanı';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  opacity: .55;
}

.content-text .btn { margin-top: 1rem; }

.check-list { margin: 1.2rem 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .95rem;
  border-bottom: 1px solid var(--gray-100);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px; height: 22px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.3), transparent);
}
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.service-card-body p  { font-size: .9rem; color: var(--gray-600); margin-bottom: 1rem; }
.service-link {
  color: var(--green-mid);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .6rem; color: var(--green-dark); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: .97rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
  color: var(--text);
  font-family: var(--font-body);
}
.faq-question:hover { background: var(--gray-100); }
.faq-question.open { color: var(--green-dark); background: var(--gray-100); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
  transition: all var(--transition);
}
.faq-question.open .faq-icon {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer.open { max-height: 600px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a3a1e 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20c0-11 9-20 20-20v2c-9.9 0-18 8.1-18 18s8.1 18 18 18v2c-11 0-20-9-20-20z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: var(--white); margin-bottom: .8rem; }
.cta-section p  { color: rgba(255,255,255,.75); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-btns       { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .5rem 1.2rem;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-200);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,74,40,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { color: var(--white); }

/* Placeholder content inside gallery items (no real photo yet) */
.gal-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: rgba(255,255,255,.85);
  font-family: var(--font-body);
  pointer-events: none;
}
.gal-ph .icon { font-size: 2.4rem; display: block; }
.gal-ph span:not(.icon) { font-size: .78rem; letter-spacing: .04em; }

/* Lightbox placeholder (shown when gallery item has no <img>) */
.lightbox-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  color: rgba(255,255,255,.75);
  padding: 2rem;
  max-width: 340px;
}
.lp-icon { font-size: 5rem; display: block; }
.lp-text {
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
}

/* Legacy alias kept for back-compat */
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: 2.5rem; gap: .5rem;
}
.gallery-placeholder span { font-size: .8rem; font-family: var(--font-body); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}
.contact-grid.single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-inline: auto;
}
.contact-grid.single .contact-action-btns {
  flex-direction: row;
  flex-wrap: wrap;
}
.contact-grid.single .contact-action-btns .btn { flex: 1 1 200px; }
.contact-info { }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--green-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail strong { display: block; font-size: .82rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .2rem; }
.contact-detail span  { font-weight: 600; }
.contact-action-btns  { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 500; margin-bottom: .4rem; color: var(--text); }
.form-control {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(26,122,69,.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6b5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a3a1e 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  color: #ffffff !important;
  margin-bottom: .6rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.page-hero p  {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.page-hero .breadcrumb { position: relative; z-index: 2; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--gold-light); font-weight: 500; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.value-card p  { font-size: .9rem; color: var(--gray-600); margin: 0; }

/* ============================================================
   BLOG
   ============================================================ */
.article-wrap {
  max-width: 820px;
  margin-inline: auto;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.article-meta span {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  color: var(--gray-600);
}
.article-content h2 { margin: 2rem 0 1rem; }
.article-content h3 { margin: 1.5rem 0 .75rem; }
.article-content ul, .article-content ol { margin: 1rem 0 1rem 1.5rem; }
.article-content li { margin-bottom: .5rem; font-size: .95rem; }
.article-content p  { font-size: .97rem; }

/* ============================================================
   SERVICE DETAIL CARDS (Hizmetlerimiz full page)
   ============================================================ */
.service-detail {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.service-detail-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 2rem 2.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.service-detail-icon {
  font-size: 2.5rem;
  width: 64px; height: 64px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-detail-header h2 { color: var(--white); font-size: 1.5rem; }
.service-detail-header p  { color: rgba(255,255,255,.75); font-size: .9rem; margin: 0; }
.service-detail-body { padding: 2rem 2.5rem; }
.service-detail-body h3 { margin: 1.5rem 0 .75rem; font-size: 1.1rem; }
.service-detail-body p  { font-size: .95rem; color: var(--gray-600); }
.advantage-list { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1rem 0; }
.advantage-tag {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .82rem;
  color: var(--green-dark);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: linear-gradient(180deg, #0a2e19 0%, #061a0e 100%);
  color: rgba(255,255,255,.85);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
#site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold), var(--green-mid));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img   {
  height: 70px;
  width: auto;
  margin-bottom: 1.2rem;
  background: rgba(255,255,255,.95);
  padding: 6px 10px;
  border-radius: 10px;
}
.footer-brand p     {
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.footer-social {
  display: flex;
  gap: .6rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4      {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: .6rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links       { display: flex; flex-direction: column; gap: .65rem; }
.footer-links li    { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; color: rgba(255,255,255,.65); }
.footer-links a     {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
  transition: transform var(--transition);
}
.footer-contact .footer-links a::before,
.footer-contact li a::before { display: none; }
.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-contact li  {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin-bottom: 0;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.footer-contact li span,
.footer-contact li a {
  color: rgba(255,255,255,.7);
}
.footer-contact .fc-ic {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(201,162,39,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.footer-contact li a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  width: min(1200px, 92%);
  margin-inline: auto;
}
.footer-bottom a { color: var(--gold-light); transition: color var(--transition); font-weight: 500; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 800;
  background: #25d366;
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--transition);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 96px; right: 24px;
  z-index: 800;
  background: var(--green-dark);
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--green-mid); transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .content-split { grid-template-columns: 1fr; gap: 2rem; }
  .content-split.reverse .content-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }

  /* Header — keep logo visible, tighten layout */
  #site-header {
    background: rgba(255,255,255,.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header-inner { padding: .65rem 0; gap: .5rem; }
  .logo-link img {
    height: 44px !important;
    width: auto !important;
    display: block !important;
  }

  .nav-menu {
    display: none;
    position: fixed;
    inset: 0 0 0 0;
    top: 64px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
    gap: .25rem;
    border-top: 1px solid var(--gray-200);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1rem; padding: .85rem 1rem; width: 100%; border-bottom: 1px solid var(--gray-100); border-radius: 0; }

  .hamburger { display: flex; }
  .header-cta { gap: .35rem; }
  .header-cta .btn { display: none; }
  .header-phone {
    font-size: 0;
    width: 38px; height: 38px;
    background: var(--green-dark);
    color: var(--white);
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }
  .header-phone svg { color: var(--white); width: 18px; height: 18px; }

  /* Hero */
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero h1 { font-size: 1.85rem; }
  .hero-sub { font-size: 1rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-btns { gap: .6rem; margin-bottom: 2rem; }

  /* Page hero */
  .page-hero { padding: 110px 0 50px; }
  .page-hero h1 { font-size: 2rem; }

  .form-row { grid-template-columns: 1fr; }

  /* Footer — mobile polished layout */
  #site-footer { padding: 50px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    padding-bottom: 1.5rem;
  }
  .footer-brand,
  .footer-col {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-col:last-child { border-bottom: none; }
  .footer-brand {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand img {
    height: 64px;
    margin: 0 auto 1rem;
  }
  .footer-brand p {
    max-width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    font-size: .88rem;
  }
  .footer-social { justify-content: center; }

  .footer-col h4 {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: .7rem;
    font-size: 1rem;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-links { align-items: center; }
  .footer-links li { justify-content: center; }
  .footer-links a { justify-content: center; }
  .footer-contact li {
    justify-content: flex-start;
    text-align: left;
    max-width: 320px;
    margin-inline: auto;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .5rem;
    text-align: center;
    justify-content: center;
    padding: 1.2rem 1rem;
    font-size: .78rem;
  }

  .service-detail-header { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .service-detail-body { padding: 1.5rem; }

  /* Content media — smaller on mobile */
  .content-media-placeholder,
  .content-media .img-link { aspect-ratio: 16/10; }

  /* Blog list */
  .blog-list-item { grid-template-columns: 1fr !important; }
  .blog-list-thumb { aspect-ratio: 16/9 !important; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-btns  { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: .85rem; }
  .hero-stat strong { font-size: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.7rem; }
  h2 { font-size: 1.45rem; }
  .container { width: 94%; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ============================================================
   BLOG LIST
   ============================================================ */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 920px;
  margin-inline: auto;
}
.blog-list-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.8rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-list-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-mid);
}
.blog-list-thumb {
  display: block;
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, var(--green-dark), var(--green-mid));
  position: relative;
  overflow: hidden;
}
.blog-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-thumb-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,.85);
  pointer-events: none;
}
.blog-list-body { padding: 1.5rem 1.5rem 1.5rem 0; }
.blog-list-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--gray-600);
  margin-bottom: .75rem;
}
.blog-list-body h2 {
  font-size: 1.35rem;
  margin-bottom: .6rem;
}
.blog-list-body h2 a { color: var(--green-dark); transition: color var(--transition); }
.blog-list-body h2 a:hover { color: var(--gold); }
.blog-list-body p {
  font-size: .94rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .blog-list-body { padding: 0 1.25rem 1.25rem; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green-dark); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.gold-bar {
  display: inline-block;
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1rem;
}
