/* ============================================================
   NAKLİYAT SİTESİ — Universal Theme Engine v3.0
   Renkler admin panelinden <style> injection ile değiştirilebilir
   Varsayılan: Modern Slate + Vibrant Orange
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables (admin panelinden override edilir) ───────── */
:root {
  /* ─ Brand colors (admin overrides these via <style> in <head>) ─ */
  --navy:       #0f172a;   /* primary dark  */
  --navy-mid:   #1e293b;   /* primary mid   */
  --navy-light: #334155;   /* primary light */
  --gold:       #f97316;   /* accent        */
  --gold-light: #fb923c;   /* accent light  */
  --gold-dark:  #ea580c;   /* accent dark   */
  --blue:       #3b82f6;   /* secondary     */

  /* ─ Neutrals ─ */
  --white:      #ffffff;
  --surface:    #f8fafc;
  --surface-2:  #f1f5f9;
  --border:     #e2e8f0;
  --border-2:   #cbd5e1;
  --text:       #0f172a;
  --text-mid:   #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* ─ Status ─ */
  --success: #10b981;
  --danger:  #ef4444;
  --warning: #f59e0b;

  /* ─ Shadows ─ */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 24px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --shadow-xl:  0 24px 80px rgba(0,0,0,.13), 0 8px 24px rgba(0,0,0,.06);
  --shadow-gold: 0 8px 32px rgba(249,115,22,.30);
  --shadow-blue: 0 8px 32px rgba(59,130,246,.25);

  /* ─ Radii ─ */
  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* ─ Timing ─ */
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.18s;
  --t-base: 0.32s;
  --t-slow: 0.52s;

  /* ─ Typography ─ */
  --font-heading: 'Outfit',  sans-serif;
  --font-body:    'Inter',   sans-serif;

  /* ─ Glass ─ */
  --glass-bg:    rgba(255,255,255,.78);
  --glass-blur:  blur(20px) saturate(180%);
  --glass-border: rgba(255,255,255,.55);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color var(--t-fast) var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); letter-spacing: -0.02em; }
p { margin-bottom: 1rem; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              background var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
  font-weight: 800;
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(212,164,76,.45); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { background: var(--navy-light); }

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); }

.btn-sm  { padding: 10px 22px; font-size: 14px; }
.btn-lg  { padding: 18px 44px; font-size: 17px; }

/* ── Top Bar ────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 9px 0;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-bar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.top-bar-left a { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.75); transition: color var(--t-fast) var(--ease); }
.top-bar-left a:hover { color: var(--gold-light); }
.top-bar-right { display: flex; gap: 8px; }
.top-bar-right a {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 15px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.top-bar-right a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ── Header / Navbar ────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  position: relative;
  transition: height var(--t-base) var(--ease);
}
.header.scrolled .navbar { height: 70px; }
.navbar-brand {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: visible;
  z-index: 10;
}
.navbar-brand img {
  height: 140px;
  width: auto;
  object-fit: contain;
  margin-top: 22px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.12));
  transition: height var(--t-base) var(--ease), margin-top var(--t-base) var(--ease);
}
.header.scrolled .navbar-brand img { height: 100px; margin-top: 12px; }

.nav-links { display: flex; align-items: center; gap: 2px; height: 100%; }
.nav-links a {
  display: flex;
  align-items: center;
  padding: 9px 17px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-mid);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav-links a:hover   { background: rgba(30,58,95,.07); color: var(--navy); }
.nav-links a.active  { background: rgba(30,58,95,.09); color: var(--navy); }
.nav-links a.active::after {
  content: '';
  display: block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a { position: relative; }

.nav-cta { margin-left: 18px; }
.mobile-toggle { display: none !important; font-size: 24px; cursor: pointer; color: var(--navy); background: none; border: none; padding: 8px; border-radius: var(--r-sm); }
.mobile-close   { display: none !important; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Mesh gradient background */
  background:
    radial-gradient(ellipse 80% 70% at 80% 10%, rgba(212,164,76,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(37,99,235,.10) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 130px 0 110px;
}
/* Noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .6;
  pointer-events: none;
}
/* Glowing orbs */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(212,164,76,.16), transparent 70%);
  top: -140px; right: -80px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(37,99,235,.12), transparent 70%);
  bottom: 60px; left: -60px;
  animation: orbFloat2 15s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(-60px, 40px) scale(1.15); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(40px,-30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

/* Pill badge above heading */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,164,76,.15);
  border: 1px solid rgba(212,164,76,.35);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.hero-badge-pill i { font-size: 11px; }

.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 24px;
  font-weight: 900;
}
.hero-text h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  color: rgba(255,255,255,.75);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-stat .lbl {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-top: 6px;
}

/* Hero visual panel */
.hero-visual { position: relative; z-index: 10; }
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.1);
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-slow) var(--ease);
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Floating badge — slider container içinde, overflow:hidden ile görünür */
.hero-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBadge 3.5s ease-in-out infinite;
  z-index: 20;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dots .dot {
  width: 8px; height: 8px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), width var(--t-fast) var(--ease);
}
.slider-dots .dot.active {
  background: var(--gold);
  width: 28px;
}

/* Fallback static hero image */
.hero-image-wrapper { position: relative; }
.hero-image-wrapper img {
  border-radius: var(--r-xl);
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

/* ── Section Styles ─────────────────────────────────────────── */
.section { padding: 108px 0; }
.section-alt {
  background:
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(212,164,76,.05), transparent),
    var(--surface);
}
.section-dark { background: var(--navy); color: var(--white); }
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,164,76,.1);
  border: 1px solid rgba(212,164,76,.25);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--r-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-header h2 { margin-bottom: 18px; color: var(--navy); }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { color: var(--text-muted); max-width: 620px; margin: 0 auto; font-size: 17.5px; line-height: 1.75; }

/* ── Service Cards ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 44px 36px;
  border: 1px solid var(--border);
  transition:
    transform var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
}
/* Top accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 68px; height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(30,58,95,.08), rgba(30,58,95,.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 28px;
  color: var(--navy-light);
  transition: background var(--t-base) var(--ease), transform var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  transform: rotate(8deg) scale(1.1);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--navy); }
.service-card p  { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; flex-grow: 1; margin-bottom: 22px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.service-card-link i { font-size: 12px; }
.service-card:hover .service-card-link { gap: 12px; color: var(--navy); }

/* ── About ──────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-content p { color: var(--text-mid); font-size: 16px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
  margin-bottom: 36px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-mid);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.about-feature:hover { border-color: var(--gold); box-shadow: 0 2px 12px rgba(212,164,76,.12); }
.about-feature i { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.about-image-wrapper { position: relative; }
.about-image-wrapper img { border-radius: var(--r-xl); box-shadow: var(--shadow-xl); }
.about-experience-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.about-experience-badge .number { font-size: 2.6rem; font-weight: 900; color: var(--gold); display: block; font-family: var(--font-heading); letter-spacing: -0.04em; }
.about-experience-badge .text   { font-size: 12px; opacity: .65; margin-top: 4px; }

/* ── Counter Section ────────────────────────────────────────── */
.counter-section {
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(37,99,235,.07), transparent),
    linear-gradient(160deg, var(--navy-mid), var(--navy));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    60deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,.02) 80px,
    rgba(255,255,255,.02) 82px
  );
  pointer-events: none;
}
.counters-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; z-index: 2; }
.counter-item { text-align: center; padding: 32px 20px; border-radius: var(--r-lg); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); }
.counter-item .counter-number { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 900; color: var(--gold); letter-spacing: -0.04em; }
.counter-item .counter-label  { color: rgba(255,255,255,.55); font-size: 14px; margin-top: 6px; font-weight: 500; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 28px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card .stars    { color: var(--gold); margin-bottom: 16px; font-size: 16px; letter-spacing: 2px; }
.testimonial-card .comment  { color: var(--text-mid); font-size: 15px; line-height: 1.75; margin-bottom: 26px; font-style: italic; }
.testimonial-card .customer { display: flex; align-items: center; gap: 14px; }
.testimonial-card .customer-avatar {
  width: 50px; height: 50px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--navy-light), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 18px;
  box-shadow: var(--shadow-blue);
  flex-shrink: 0;
}
.testimonial-card .customer-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.testimonial-card .customer-city { font-size: 12.5px; color: var(--text-light); margin-top: 2px; }
.testimonial-card .quote-icon   { position: absolute; top: 24px; right: 28px; font-size: 44px; color: var(--surface-2); font-family: Georgia, serif; line-height: 1; }

/* ── Google Reviews ─────────────────────────────────────────── */
/* Kartlar eşit yükseklikte — flex column ile alt kısım her zaman dibe yapışır */
#google-reviews .testimonials-grid {
  align-items: stretch;
}
#google-reviews .testimonial-card {
  display: flex;
  flex-direction: column;
}
/* Yorum metni: sabit yükseklik + kırpma */
.gr-comment-wrap {
  flex: 1; /* kartın orta alanını doldurur, alt kısım sabit kalır */
  margin-bottom: 20px;
}
.gr-comment {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .3s ease;
}
.gr-comment.expanded {
  display: block;
  -webkit-line-clamp: unset;
}
.gr-read-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gr-read-more:hover { color: var(--accent-dark); }

/* Google Harita embed */
.google-map-embed {
  margin-top: 48px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/5;
  min-height: 280px;
}
.google-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 768px) {
  .google-map-embed { aspect-ratio: 4/3; }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.faq-item.active { border-color: var(--gold); box-shadow: 0 4px 24px rgba(212,164,76,.12); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: color var(--t-fast) var(--ease);
}
.faq-question:hover { color: var(--navy); }
.faq-question i { color: var(--gold); font-size: 14px; flex-shrink: 0; transition: transform var(--t-base) var(--ease); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 28px 22px; color: var(--text-muted); font-size: 15px; line-height: 1.75; display: none; }
.faq-item.active .faq-answer { display: block; }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background:
    radial-gradient(ellipse 80% 80% at 20% 50%, rgba(212,164,76,.14), transparent),
    linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(212,164,76,.07);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 18px; }
.cta-section p  { color: rgba(255,255,255,.65); max-width: 580px; margin: 0 auto 40px; font-size: 17px; line-height: 1.75; }
.cta-buttons    { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 32px; }
.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.blog-card-image { width: 100%; height: 230px; overflow: hidden; background: var(--surface-2); position: relative; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-image .no-image { font-size: 48px; color: var(--border-2); margin: auto; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.blog-card-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 12.5px; color: var(--gold); font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; letter-spacing: 0.03em; text-transform: uppercase; }
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); line-height: 1.4; }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; flex-grow: 1; margin-bottom: 20px; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy-light);
  letter-spacing: 0.02em;
  transition: gap var(--t-fast) var(--ease);
}
.read-more i { font-size: 11px; transition: transform var(--t-fast) var(--ease); }
.read-more:hover i { transform: translateX(5px); }
.blog-card:hover .read-more { gap: 12px; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background:
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(212,164,76,.06), transparent),
    var(--navy);
  color: rgba(255,255,255,.6);
  padding: 90px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; padding-bottom: 70px; }
.footer-about img { height: 54px; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer-about p { font-size: 14.5px; line-height: 1.8; max-width: 320px; margin-bottom: 28px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-4px); border-color: var(--gold); }
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.footer-col ul li a:hover { color: var(--gold-light); transform: translateX(5px); }
.footer-col ul li a i { font-size: 11px; color: var(--gold); opacity: .7; }
.footer-col .contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.footer-col .contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: var(--r-full);
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  animation: waPulse 2.5s infinite;
  transition: transform var(--t-fast) var(--ease);
}
.whatsapp-float:hover { transform: scale(1.12) rotate(8deg); }
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,.0); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,.0); }
}

/* ── Page Header ────────────────────────────────────────────── */
.page-header {
  background:
    radial-gradient(ellipse 70% 80% at 80% 0%, rgba(212,164,76,.12), transparent),
    linear-gradient(160deg, var(--navy-mid), var(--navy));
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1     { color: var(--white); font-size: 2.4rem; margin-bottom: 10px; }
.page-header .breadcrumb { color: rgba(255,255,255,.5); font-size: 14px; }
.page-header .breadcrumb a { color: var(--gold-light); }
.page-header .breadcrumb a:hover { text-decoration: underline; }

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 7px; font-weight: 600; font-size: 14px; color: var(--text-mid); }
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  outline: none;
}
.form-control:focus { border-color: var(--navy-light); box-shadow: 0 0 0 4px rgba(30,58,95,.1); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.contact-info-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.contact-info-card .icon { width: 50px; height: 50px; border-radius: var(--r-sm); background: rgba(212,164,76,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .icon i { font-size: 22px; color: var(--gold); }
.contact-info-card h4 { font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.contact-info-card p  { color: var(--text-muted); font-size: 14px; margin: 0; }
.contact-form-wrapper { background: var(--white); border-radius: var(--r-lg); padding: 44px; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.map-container { margin-top: 48px; border-radius: var(--r-lg); overflow: hidden; height: 420px; box-shadow: var(--shadow-md); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 22px; }
.gallery-item { border-radius: var(--r-md); overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/3; background: var(--surface-2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay { position: absolute; inset: 0; background: rgba(10,22,40,.65); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--t-fast) var(--ease); }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { color: var(--white); font-size: 34px; }

/* ── Quote Page ─────────────────────────────────────────────── */
.quote-form-wrapper { max-width: 820px; margin: 0 auto; background: var(--white); border-radius: var(--r-lg); padding: 52px; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.quote-form-wrapper h3 { margin-bottom: 36px; text-align: center; color: var(--navy); }

/* ── Service / Blog Detail ──────────────────────────────────── */
.service-detail-grid, .blog-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 44px; }
.service-content, .blog-detail-content { background: var(--white); border-radius: var(--r-lg); padding: 44px; border: 1px solid var(--border); }
.service-content h1, .blog-detail-content h1 { font-size: 2rem; margin-bottom: 22px; color: var(--navy); }
.service-content img { border-radius: var(--r-md); margin: 22px 0; }
.blog-detail-content .blog-meta { color: var(--text-light); font-size: 14px; margin-bottom: 28px; display: flex; gap: 18px; flex-wrap: wrap; }
.blog-detail-content .blog-meta i { color: var(--gold); }
.blog-detail-content .blog-body { font-size: 16px; line-height: 1.85; color: var(--text-mid); }
.blog-detail-content .blog-body h2, .blog-detail-content .blog-body h3 { margin-top: 34px; margin-bottom: 14px; color: var(--navy); }
.blog-detail-content .blog-body p { margin-bottom: 18px; }
.blog-detail-content .feature-image { width: 100%; border-radius: var(--r-md); margin-bottom: 28px; }

.service-sidebar .sidebar-card { background: var(--white); border-radius: var(--r-md); padding: 28px; border: 1px solid var(--border); margin-bottom: 22px; }
.sidebar-card h4 { font-size: 15px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--gold); color: var(--navy); }
.sidebar-card ul li a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: var(--r-xs); color: var(--text-mid); font-size: 14px; transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease); }
.sidebar-card ul li a:hover, .sidebar-card ul li a.active { background: var(--navy); color: var(--white); }

/* ── Alerts ─────────────────────────────────────────────────── */
.alert { padding: 16px 22px; border-radius: var(--r-sm); margin-bottom: 22px; font-size: 15px; display: flex; align-items: center; gap: 12px; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-danger   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── 404 ────────────────────────────────────────────────────── */
.page-404 { text-align: center; padding: 110px 0; }
.page-404 h1 { font-size: 9rem; color: var(--gold); margin-bottom: 18px; letter-spacing: -0.05em; }
.page-404 h2 { margin-bottom: 18px; }
.page-404 p  { color: var(--text-muted); margin-bottom: 32px; }

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 40px; backdrop-filter: blur(6px); }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--r-md); box-shadow: var(--shadow-xl); }
.lightbox-close { position: absolute; top: 22px; right: 32px; color: var(--white); font-size: 32px; cursor: pointer; background: none; border: none; }

/* ── Custom District Pages ──────────────────────────────────── */
.custom-page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 44px; align-items: start; }
.rit-text { line-height: 1.85; color: var(--text-mid); font-size: 16px; }
.rit-text h3 { margin: 36px 0 16px; color: var(--navy); font-family: var(--font-heading); }
.rit-text p  { margin-bottom: 22px; }
.rit-text ul { margin-bottom: 28px; }
.rit-text ul li { position: relative; list-style: none; padding-left: 26px; margin-bottom: 14px; }
.rit-text ul li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--gold); }

.sidebar-contact-card {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: white;
  padding: 34px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,.06);
}
.sidebar-contact-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; background: rgba(212,164,76,.08); border-radius: 50%; pointer-events: none; }
.sidebar-contact-card h3 { color: var(--gold-light); margin-bottom: 12px; font-size: 1.35rem; }
.sidebar-contact-card p  { font-size: 14px; opacity: .75; margin-bottom: 26px; }
.contact-methods .method { display: flex; align-items: center; gap: 16px; padding: 16px; background: rgba(255,255,255,.05); border-radius: var(--r-sm); margin-bottom: 10px; border: 1px solid rgba(255,255,255,.07); transition: background var(--t-fast) var(--ease); }
.contact-methods .method:hover { background: rgba(255,255,255,.1); }
.contact-methods .method i { font-size: 20px; color: var(--gold-light); flex-shrink: 0; }
.contact-methods .method div span  { display: block; font-size: 11px; text-transform: uppercase; opacity: .5; letter-spacing: 0.05em; }
.contact-methods .method div strong { font-size: 15px; }
.sidebar-services-card { background: var(--white); border: 1px solid var(--border); padding: 28px; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.sidebar-services-card h4 { margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); color: var(--navy); font-size: 15px; }
.sidebar-services-card ul li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14px; color: var(--text-mid); }
.sidebar-services-card ul li:last-child { border-bottom: none; }
.sidebar-services-card ul li i { color: var(--success); font-size: 13px; }

/* ── Scroll Animations ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 54px; }
  .hero-text p  { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-visual  {
    max-width: 500px;
    margin: 20px auto 0; /* Üstten biraz boşluk */
    width: 100%;
    padding-bottom: 50px; /* Slider dot'ların (bottom:-38px) taşmaması için */
  }
  .hero-slider-container {
    height: 300px; /* Mobilde daha makul bir yükseklik */
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    background: #fff; /* Resim yüklenene kadar boşluk beyaz görünsün */
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 90px 0 70px; min-height: auto; }

  /* ── Hakkımızda grid — tek sütuna düş ─────────────────────── */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-experience-badge { right: 10px; bottom: 10px; } /* Taşmayı önle */

  /* ── Sidebar'lı sayfalar — tek sütuna düş ─────────────────── */
  .service-detail-grid,
  .blog-detail-grid,
  .custom-page-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
  .hero-stat .num { font-size: 1.9rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #070d1a; /* Daha koyu ve kesin opak */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 9999; /* En üstte olduğundan emin olalım */
    padding: 60px 20px;
  }
  .nav-links.active { display: flex !important; }
  
  .nav-links a { 
    color: #ffffff !important; 
    font-size: 26px; 
    font-weight: 800;
    padding: 15px 40px; 
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a:hover { color: var(--gold-light); }
  
  .nav-cta { margin-top: 20px; width: 100%; max-width: 300px; }
  .nav-cta .btn { width: 100%; height: 60px; font-size: 18px; justify-content: center; }

  /* ── Logo boyutu — mobilde küçült ────────────────────────── */
  .navbar-brand img { height: 80px; margin-top: 8px; }
  .header.scrolled .navbar-brand img { height: 64px; margin-top: 4px; }

  .mobile-toggle { display: inline-flex !important; z-index: 1001; }
  .mobile-close  {
    display: block !important;
    position: absolute; 
    top: 20px; 
    right: 20px; 
    font-size: 45px; 
    line-height: 1;
    cursor: pointer; 
    background: none; 
    border: none; 
    color: #fff; 
    z-index: 10000;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .container { padding: 0 18px; }
  .section   { padding: 56px 0; }
  .btn-lg    { padding: 15px 28px; font-size: 15px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: row; justify-content: center; gap: 20px; }
  .hero-stat .num { font-size: 1.6rem; }
  .quote-form-wrapper, .contact-form-wrapper { padding: 28px 20px; }
}