/* === RESET & ROOT === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #10b981;
  --green-dark: #059669;
  --green-light:#d1fae5;
  --navy:       #1e293b;
  --navy-light: #334155;
  --gray:       #64748b;
  --gray-light: #f1f5f9;
  --white:      #ffffff;
  --text:       #0f172a;
  --border:     #e2e8f0;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* === FLOATING BUTTONS === */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,0.32); }
.float-wp  { background: #25d366; }
.float-tel { background: var(--green); }

/* === HEADER === */
#header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: box-shadow 0.3s;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.logo-wrap { display: flex; flex-direction: column; gap: 1px; }
.logo-text { color: white; font-size: 18px; font-weight: 800; letter-spacing: -0.3px; line-height: 1.2; }
.logo-text span { color: var(--green); }
.logo-byline { color: rgba(255,255,255,0.75); font-size: 9.5px; font-weight: 500; letter-spacing: 0.4px; line-height: 1; }

nav { display: flex; gap: 4px; }
nav a {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
nav a:hover { color: white; background: rgba(255,255,255,0.07); }

.header-cta { display: flex; gap: 8px; flex-shrink: 0; }

.btn-wp {
  background: #25d366;
  color: white;
  padding: 9px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; gap: 6px;
  transition: opacity 0.2s;
}
.btn-wp:hover { opacity: 0.88; }

.btn-tel {
  background: var(--green);
  color: white;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; gap: 6px;
  transition: background 0.2s;
}
.btn-tel:hover { background: var(--green-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* === SİGORTA BADGE === */
/* Masaüstünde gizli — sadece mobilde (768px altı) görünür */
.sigort-badge { display: none; }

@media (max-width: 768px) {
  .sigort-badge { display: flex; }
}

.sigort-badge {
  align-items: center;
  gap: 12px;
  background: rgba(16,185,129,0.1);
  border: 1.5px solid #10b981;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  box-shadow: 0 0 16px rgba(16,185,129,0.18);
  text-align: left;
}
.sigort-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(16,185,129,0.2);
  border: 1px solid #10b981;
  display: flex; align-items: center; justify-content: center;
  color: #4ade80;
  flex-shrink: 0;
}
.sigort-body { flex: 1; }
.sigort-title {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.sigort-sub {
  display: block;
  color: #94a3b8;
  font-size: 11px;
  margin-top: 2px;
}
.sigort-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 13px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(16,185,129,0.5);
}

/* === HERO === */
#hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f2a1a 100%);
  padding: 90px 24px 70px;
  position: relative;
  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='%2310b981' 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::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34d399;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: 46px;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title .accent { color: var(--green); }

.hero-sub {
  color: #94a3b8;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.btn-primary {
  background: var(--green);
  color: white;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(16,185,129,0.35);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-secondary {
  background: rgba(255,255,255,0.07);
  color: white;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat .num {
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  display: block;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.hero-img-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--navy);
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 14px 20px;
  color: white;
  box-shadow: var(--shadow-lg);
}
.hero-img-badge .big { font-size: 22px; font-weight: 900; color: var(--green); }
.hero-img-badge .sm { font-size: 11px; color: #94a3b8; margin-top: 2px; }

/* === SECTION BASE === */
section { padding: 80px 24px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: #065f46;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title .accent { color: var(--green); }
.section-desc {
  color: var(--gray);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === HİZMETLER === */
#hizmetler { background: var(--gray-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 14px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--green); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}

/* === NEDEN BİZ === */
#neden-biz { background: white; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-img img { width: 100%; height: 440px; object-fit: cover; }
.why-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, transparent 100%);
  padding: 32px 28px 28px;
  color: white;
}
.why-overlay strong { font-size: 20px; font-weight: 800; display: block; margin-bottom: 4px; }
.why-overlay span { font-size: 14px; color: #94a3b8; }

.why-items { display: flex; flex-direction: column; gap: 24px; }

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-item-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.why-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.why-item p { color: var(--gray); font-size: 14px; line-height: 1.6; }

/* === BÖLGELER === */
#bolgeler { background: var(--navy); }
#bolgeler .section-tag { background: rgba(16,185,129,0.15); color: #4ade80; }
#bolgeler .section-title { color: white; }
#bolgeler .section-desc { color: #94a3b8; }

.regions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.region-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #cbd5e1;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.region-chip:hover,
.region-chip.featured {
  background: var(--green);
  border-color: var(--green);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.bolgeler-note {
  text-align: center;
  margin-top: 40px;
  color: #64748b;
  font-size: 14px;
}
.bolgeler-note a { color: var(--green); font-weight: 600; }

/* === GALERİ === */
#galeri { background: var(--gray-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid.g2 { grid-template-columns: repeat(2, 1fr); }
.gallery-grid.g4 { grid-template-columns: repeat(4, 1fr); }

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: #e2e8f0;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--gray);
  font-size: 15px;
}

/* === YORUMLAR === */
#yorumlar { background: white; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--gray-light);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 64px;
  color: var(--green-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 1px; }
.review-text { color: #374151; font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px;
}
.review-name { font-weight: 700; font-size: 14px; color: var(--text); }
.review-city { font-size: 12px; color: var(--gray); }

/* === İLETİŞİM === */
#iletisim { background: var(--gray-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  background: white;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: box-shadow 0.2s;
}
.contact-card:hover { box-shadow: var(--shadow); }

.contact-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.ci-green { background: var(--green-light); }
.ci-wa    { background: #dcfce7; }
.ci-loc   { background: #fef9c3; }
.ci-mail  { background: #e0f2fe; }

.contact-card-body strong {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.contact-card-body a,
.contact-card-body span {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.contact-card-body a:hover { color: var(--green); }

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  height: 100%;
  min-height: 380px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  display: block;
}

/* === FOOTER === */
footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer-brand .logo-text { font-size: 20px; }
.footer-brand p {
  color: #64748b;
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.7;
  max-width: 320px;
}
.footer-brand .f-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  margin-top: 20px;
}
.footer-brand .f-tel:hover { background: var(--green-dark); }

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  color: #64748b;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--green); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #475569;
}

/* === MOBILE NAV === */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #ffffff;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--green); }
.mobile-nav .mobile-cta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-title { font-size: 36px; }
  .hero-inner { gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-img-wrap { display: none; }
  .hero-title { font-size: 32px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }

  .why-grid { grid-template-columns: 1fr; }
  .why-img { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  section { padding: 60px 20px; }
  .section-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .hero-stats { gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* === UTILITIES === */
.text-green { color: var(--green); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }