@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  /* Ferah, Aydınlık ve Güven Veren Renk Paleti */
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  
  /* Kurumsal ve Güven Veren Tipografi Renkleri */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  /* Sıcak Zanaat, Ustalık ve Enerji (Sıcak Amber / Altın Tonları) */
  --accent: #d97706;
  --accent-hover: #b45309;
  --accent-glow: rgba(217, 119, 6, 0.18);
  --accent-subtle: rgba(217, 119, 6, 0.08);
  --gradient-gold: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  
  /* Yumuşak ve Zarif Kenarlıklar */
  --border-color: #e2e8f0;
  --border-accent: rgba(217, 119, 6, 0.35);
  
  /* Mimari Şık Köşeler ve Gölgeler */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.07), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 20px 35px -8px rgba(15, 23, 42, 0.12), 0 10px 18px -4px rgba(15, 23, 42, 0.06);
  --shadow-accent: 0 8px 24px -4px rgba(217, 119, 6, 0.35);
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text-primary);
}

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

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── BUTONLAR ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; transition: var(--transition);
  border: none; font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-primary {
  background: var(--gradient-gold); color: #ffffff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(217, 119, 6, 0.45);
  color: #ffffff;
}
.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent); color: #ffffff;
  transform: translateY(-2px);
}

/* ── HEADER / MENÜ ─────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
.header.scrolled { padding: 12px 0; background: rgba(255, 255, 255, 0.98); }
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem; font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-secondary); font-weight: 600; font-size: 0.95rem;
  position: relative; padding: 4px 0; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
  height: 2px; background: var(--accent); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-cta .btn {
  padding: 8px 18px !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3) !important;
  line-height: 1.2;
}
.nav-cta .btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.45) !important;
}
.nav-cta .btn i {
  font-size: 0.78rem;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 28px; height: 2px; background: var(--text-primary);
  transition: var(--transition);
}

/* ── MOBİL MENÜ ───────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column; align-items: center;
  justify-content: center; gap: 28px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  color: var(--text-primary); font-size: 1.35rem; font-weight: 700;
}
.mobile-menu a:hover { color: var(--accent); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #ffffff;
  padding: 120px 0 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/hero.png') center/cover no-repeat;
  opacity: 0.35;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(15, 23, 42, 0.4) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 650px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(217, 119, 6, 0.15); border: 1px solid rgba(217, 119, 6, 0.4);
  padding: 8px 20px; border-radius: 50px; font-size: 0.85rem;
  color: #fbbf24; margin-bottom: 24px; font-weight: 600;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 20px; color: #ffffff;
}
.hero h1 span { color: #f59e0b; }
.hero p {
  font-size: 1.15rem; color: #cbd5e1;
  margin-bottom: 36px; max-width: 520px; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-outline {
  border-color: #f59e0b; color: #f59e0b;
}
.hero .btn-outline:hover {
  background: #f59e0b; color: #0f172a;
}
.hero-stats {
  display: flex; gap: 48px; margin-top: 56px; padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat h3 {
  font-size: 2.2rem; color: #f59e0b;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
}
.hero-stat p { font-size: 0.85rem; color: #94a3b8; margin-top: 4px; }

/* ── BÖLÜM YAPISI ─────────────────────────────────────── */
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-subtle); border: 1px solid var(--border-accent);
  padding: 6px 18px; border-radius: 50px; font-size: 0.8rem;
  color: var(--accent); margin-bottom: 16px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  margin-bottom: 14px;
}
.section-header h2 span { color: var(--accent); }
.section-header p {
  color: var(--text-secondary); max-width: 600px; margin: 0 auto;
  font-size: 1.05rem;
}

/* ── HİZMET KARTLARI ──────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px; background: var(--gradient-gold);
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--accent-subtle); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; font-size: 1.5rem; color: var(--accent);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gradient-gold); color: #ffffff;
}
.service-card h3 {
  font-size: 1.2rem; margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
}
.service-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }

/* ── NEDEN BİZ ────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  text-align: center; padding: 40px 24px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--border-accent); transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.why-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--accent-subtle); display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; color: var(--accent);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gradient-gold); color: #ffffff;
}
.why-card h3 {
  font-size: 1.1rem; margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
}
.why-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── MÜŞTERİ YORUMLARI ────────────────────────────────── */
.testimonials-slider {
  display: flex; gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 10px 4px 24px;
}
.testimonials-slider::-webkit-scrollbar { height: 6px; }
.testimonials-slider::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 6px; }
.testimonial-card {
  min-width: 380px; scroll-snap-align: start;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border-accent);
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-style: italic; color: var(--text-secondary);
  margin-bottom: 20px; font-size: 0.95rem; line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-subtle); display: flex; align-items: center;
  justify-content: center; font-weight: 700; color: var(--accent); font-size: 1.05rem;
}
.testimonial-info h4 {
  font-size: 0.95rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; color: var(--text-primary);
}
.testimonial-info p { font-size: 0.8rem; color: var(--text-muted); }

/* ── CTA BANNER ───────────────────────────────────────── */

/* ── GOOGLE BUSİNESS CARD ─────────────────────────────── */
.google-biz-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: 200px 1fr 1fr; gap: 40px;
  align-items: start;
  margin-bottom: 24px;
}
.gbc-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 16px;
}
.gbc-number {
  font-size: 2.8rem; font-weight: 800; color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1;
}
.gbc-number span { font-size: 1.2rem; color: var(--text-muted); font-weight: 500; }
.gbc-stars {
  display: flex; gap: 4px; font-size: 1.1rem; color: #f59e0b; margin: 8px 0;
}
.gbc-count { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 12px; }
.gbc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16, 185, 129, 0.08); color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 5px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}

.gbc-bars-title { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.gbc-bar-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px; font-size: 0.82rem; color: var(--text-secondary);
}
.gbc-bar-row span:first-child { width: 10px; text-align: center; }
.gbc-bar-track {
  flex: 1; height: 8px; background: #e2e8f0; border-radius: 4px; overflow: hidden;
}
.gbc-bar-fill { height: 100%; background: #f59e0b; border-radius: 4px; }
.gbc-bar-num { width: 20px; text-align: right; font-size: 0.78rem; color: var(--text-muted); }

.gbc-actions-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.gbc-actions-sub { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }
.gbc-btn-primary {
  width: 100%; justify-content: center; margin-bottom: 10px;
  background: #4285F4; border-color: #4285F4; gap: 8px;
}
.gbc-btn-primary:hover { background: #2b6fe0; border-color: #2b6fe0; }
.gbc-btn-outline {
  width: 100%; justify-content: center; gap: 8px;
  border-color: var(--border-color); color: var(--text-primary);
}

@media (max-width: 900px) {
  .google-biz-card { grid-template-columns: 1fr; gap: 24px; }
}

/* ── MOBİL HİZMET AĞI STRIP ───────────────────────────── */
.service-area-strip {
  margin-top: 24px;
  background: #f0f7ff;
  border: 1px solid #d0e3ff;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 2px 10px rgba(66, 133, 244, 0.05);
  margin-bottom: 32px;
}
.sas-info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 320px;
}
.sas-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1e3a8a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.sas-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.sas-info p {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.4;
  margin: 0;
}
.sas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.sas-pills span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.sas-pills span i {
  color: #ef4444;
  font-size: 0.72rem;
}
@media (max-width: 900px) {
  .service-area-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}


.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius);
  padding: 64px; text-align: center;
  border: 1px solid rgba(217, 119, 6, 0.3);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-hover);
  color: #ffffff;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(217, 119, 6, 0.25) 0%, transparent 65%);
  opacity: 0.5;
}
.cta-banner h2 { font-size: 2.2rem; margin-bottom: 16px; position: relative; color: #ffffff; }
.cta-banner h2 span { color: #f59e0b !important; }
.cta-banner p { color: #cbd5e1; margin-bottom: 32px; font-size: 1.05rem; position: relative; }
.cta-banner .btn { position: relative; }

/* ── GALERİ ───────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; background: var(--bg-card);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 1.05rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #ffffff; }
.gallery-overlay p { font-size: 0.85rem; color: #cbd5e1; }

/* ── ÖNCESİ / SONRASI (BEFORE/AFTER) ──────────────────── */
.ba-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; margin-top: 24px;
}
.ba-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.ba-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-images > div { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ba-images img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 10px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.ba-tag.before { background: rgba(220, 38, 38, 0.9); color: #ffffff; }
.ba-tag.after  { background: rgba(16, 185, 129, 0.95); color: #ffffff; }
.ba-card-info { padding: 20px; }
.ba-card-info h4 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  margin-bottom: 4px; font-size: 1.05rem; color: var(--text-primary);
}
.ba-card-info p { color: var(--text-secondary); font-size: 0.85rem; }
.ba-card-info .cat-badge {
  display: inline-block; margin-top: 10px;
  padding: 3px 10px; border-radius: 50px;
  background: var(--accent-subtle); color: var(--accent);
  font-size: 0.75rem; font-weight: 600;
}

/* ── FORM ALANLARI ────────────────────────────────────── */
.form-section { background: var(--bg-secondary); }
.form-container {
  max-width: 800px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 48px;
  box-shadow: var(--shadow-hover);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; margin-bottom: 8px; font-weight: 600;
  font-size: 0.9rem; color: var(--text-primary);
}
.form-group label .required { color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

input[type="text"], input[type="tel"], input[type="email"],
select, textarea {
  width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1; background: #ffffff;
  color: var(--text-primary); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; transition: var(--transition);
}
input::placeholder, textarea::placeholder { color: #94a3b8; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
textarea { min-height: 120px; resize: vertical; }
select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
select option { background: #ffffff; color: var(--text-primary); }

.checkbox-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.checkbox-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-color); background: var(--bg-primary);
  cursor: pointer; transition: var(--transition); font-size: 0.9rem;
  color: var(--text-primary); font-weight: 500;
}
.checkbox-item:hover {
  border-color: var(--accent); background: var(--accent-subtle);
}
.checkbox-item input[type="checkbox"] {
  accent-color: var(--accent); width: 18px; height: 18px; cursor: pointer;
}

.radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.radio-item {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 50px;
  border: 1px solid var(--border-color); background: var(--bg-primary);
  cursor: pointer; transition: var(--transition); font-size: 0.9rem;
  color: var(--text-primary); font-weight: 500;
}
.radio-item:hover { border-color: var(--accent); }
.radio-item input[type="radio"] { accent-color: var(--accent); cursor: pointer; }

.file-upload {
  border: 2px dashed #cbd5e1; border-radius: var(--radius);
  padding: 40px; text-align: center; cursor: pointer;
  background: var(--bg-primary);
  transition: var(--transition);
}
.file-upload:hover { border-color: var(--accent); background: var(--accent-subtle); }
.file-upload i { font-size: 2.2rem; color: var(--accent); margin-bottom: 12px; }
.file-upload p { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; }
.file-upload .file-info { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; }

/* ── İLETİŞİM SAYFASI ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  margin-bottom: 20px; transition: var(--transition);
}
.contact-info-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-subtle); display: flex; align-items: center;
  justify-content: center; color: var(--accent); font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-card h4 {
  font-size: 0.95rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; margin-bottom: 4px; color: var(--text-primary);
}
.contact-info-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── HARİTA ───────────────────────────────────────────── */
.map-container {
  border-radius: var(--radius); overflow: hidden; height: 320px;
  background: var(--bg-card); border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: #0f172a; border-top: 1px solid #1e293b;
  padding: 70px 0 0; color: #cbd5e1;
}
.footer a { color: #94a3b8; }
.footer a:hover { color: #f59e0b; }
.footer .logo { color: #ffffff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-about p { color: #94a3b8; font-size: 0.92rem; margin: 16px 0 24px; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 10px;
  background: #1e293b; border: 1px solid #334155;
  display: flex; align-items: center; justify-content: center;
  color: #e2e8f0; transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gradient-gold); color: #ffffff;
  border-color: var(--accent); transform: translateY(-2px);
}
.footer h4 {
  font-size: 1.05rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; margin-bottom: 20px; color: #ffffff;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: #94a3b8; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid #1e293b; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: #64748b;
}

/* ── WHATSAPP BUTONU ─────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center;
  justify-content: center; color: #ffffff; font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition); animation: pulse-wp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #ffffff; }
@keyframes pulse-wp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7); }
}

/* ── İÇ SAYFA HERO ────────────────────────────────────── */
.page-hero {
  padding: 140px 0 60px; text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff; position: relative;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 12px; color: #ffffff;
}
.page-hero p { color: #cbd5e1; font-size: 1.05rem; }
.breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 16px; font-size: 0.85rem; color: #94a3b8;
}
.breadcrumb a { color: #94a3b8; }
.breadcrumb a:hover { color: #f59e0b; }

/* ── SCROLL ANİMASYONLARI ─────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MODAL ────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px); z-index: 2000;
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: #ffffff; border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 48px; text-align: center;
  max-width: 440px; box-shadow: var(--shadow-hover);
}
.modal-icon { font-size: 3.2rem; color: #10b981; margin-bottom: 16px; }
.modal h3 {
  font-size: 1.4rem; margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  color: var(--text-primary);
}
.modal p { color: var(--text-secondary); margin-bottom: 24px; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero {
    min-height: auto !important;
    padding-top: 135px !important;
    padding-bottom: 60px !important;
  }
  .hero h1 {
    font-size: 2.15rem !important;
    line-height: 1.25 !important;
    margin-bottom: 16px !important;
  }
  .page-hero {
    padding-top: 125px !important;
    padding-bottom: 50px !important;
  }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px 24px; }
  .form-container { padding: 28px 20px; }
  .testimonial-card { min-width: 300px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .checkbox-group { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; }
}


/* Nav Phone Button with Frame and Animation */
.nav-phone-btn {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 6px 14px;
  border: 1.5px solid var(--accent);
  border-radius: 50px;
  background: transparent;
  transition: var(--transition);
  animation: nav-pulse 2s infinite;
  white-space: nowrap;
}
.nav-phone-btn i {
  color: var(--accent);
  font-size: 0.78rem;
  transition: var(--transition);
}
.nav-phone-btn:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 6px 16px -4px rgba(217,119,6,0.35);
}
.nav-phone-btn:hover i {
  color: #ffffff;
  animation: ring-anim 0.3s ease-in-out infinite alternate;
}

/* Masaüstünde gizle, sadece büyük ekranda göster */
@media (max-width: 768px) {
  .nav-phone-btn { display: none; }
}

@keyframes nav-pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.35); }
  70% { box-shadow: 0 0 0 8px rgba(217, 119, 6, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}
@keyframes ring-anim {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(15deg); }
  100% { transform: rotate(0deg); }
}

/* ── MOBİL HIZLI ARAMA GRUBU ─────────────────────────────────────
   Tailwind karşılığı: fixed bottom-6 right-4 z-50 md:hidden flex flex-col gap-3
   bottom-6 = 24px | right-4 = 16px | gap-3 = 12px
   ──────────────────────────────────────────────────────────────── */
.mobile-float-group {
  display: none; /* md:hidden — masaüstünde gizli */
}

@media (max-width: 768px) {
  .mobile-float-group {
    display: flex;           /* flex */
    flex-direction: column;  /* flex-col */
    gap: 12px;               /* gap-3 */
    position: fixed;         /* fixed */
    bottom: 24px;            /* bottom-6 */
    right: 16px;             /* right-4 */
    z-index: 50;             /* z-50 */
    align-items: center;
  }

  /* Ortak buton stilleri */
  .phone-float,
  .whatsapp-float {
    position: static; /* Container tarafından konumlandırılıyor */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
  }

  .phone-float {
    background: var(--accent);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.45);
    animation: pulse-phone 2.5s infinite;
  }
  .phone-float:hover { transform: scale(1.08); color: #ffffff; }

  .whatsapp-float {
    background: #25D366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    animation: pulse-wp 2s infinite;
  }
  .whatsapp-float:hover { transform: scale(1.08); color: #ffffff; }
}

@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 4px 16px rgba(217, 119, 6, 0.4); }
  50%       { box-shadow: 0 6px 28px rgba(217, 119, 6, 0.75); }
}


/* ── WHATSAPP BUTONU (MASAÜSTÜ — Her zaman görünür) ──── */
.whatsapp-float-desktop {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center;
  justify-content: center; color: #ffffff; font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition); animation: pulse-wp 2s infinite;
  text-decoration: none;
}
.whatsapp-float-desktop:hover { transform: scale(1.1); color: #ffffff; }

@media (max-width: 768px) {
  .whatsapp-float-desktop { display: none; }
}

/* ── MOBİL HIZLI ARAMA GRUBU ────────────────────────────────────── */
.mobile-float-group {
  display: none;
}

@media (max-width: 768px) {
  .mobile-float-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    bottom: 24px;
    right: 16px;
    z-index: 900;
    align-items: center;
  }

  .mobile-phone-btn,
  .mobile-wp-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
  }

  .mobile-phone-btn {
    background: var(--accent);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.45);
    animation: pulse-phone 2.5s infinite;
  }
  .mobile-phone-btn:hover { transform: scale(1.08); color: #ffffff; }

  .mobile-wp-btn {
    background: #25D366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    animation: pulse-wp 2s infinite;
  }
  .mobile-wp-btn:hover { transform: scale(1.08); color: #ffffff; }
}

/* ── LOGO & BRANDING ─────────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 32px;
  transition: var(--transition);
}
.logo:hover {
  transform: translateY(-1px);
}
.logo-img {
  height: 52px !important;
  max-height: 52px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block;
}

@media (max-width: 1100px) {
  .logo {
    margin-right: 18px;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-links a {
    font-size: 0.88rem;
  }
  .logo-img {
    height: 46px !important;
    max-height: 46px !important;
  }
}

@media (max-width: 768px) {
  .logo {
    margin-right: auto;
  }
  .logo-img {
    height: 42px !important;
    max-height: 42px !important;
  }
}

.footer .logo-img {
  height: 68px !important;
  max-height: 68px !important;
}
