/* =========================================================
   KARDELEN FASTFOOD — Tasarım Sistemi
   Konsept: Street Munch Premium tarzı modern restoran sitesi
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,500&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ---------- Değişkenler ---------- */
:root {
  --dark:       #111111;
  --dark-soft:  #1E1E1E;
  --dark-card:  #242424;
  --accent:     #C8391A;
  --accent-h:   #A52D12;
  --gold:       #D4952A;
  --white:      #FFFFFF;
  --bg:         #F8F5F1;
  --bg-alt:     #F0EBE3;
  --card:       #FFFFFF;
  --text:       #1A1A1A;
  --text-soft:  #6B6560;
  --border:     #E5DFD8;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow:     0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
  --radius:     12px;
  --radius-lg:  20px;
  --maxw:       1160px;
  --ease:       cubic-bezier(.22,.61,.36,1);

  /* Placeholder rengi — görsel eklenene kadar */
  --ph-bg:      #DDD8D0;
  --ph-pattern: repeating-linear-gradient(
    45deg,
    transparent 0, transparent 12px,
    rgba(0,0,0,0.04) 12px, rgba(0,0,0,0.04) 24px
  );
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1,h2,h3,h4 { margin: 0; font-family: 'Montserrat', sans-serif; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--dark); color: var(--white);
  padding: 10px 18px; z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ---------- Tipografi rolleri ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--accent);
  display: inline-block; flex: 0 0 auto;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.1;
  color: var(--dark);
}
h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 500;
  color: var(--accent); font-size: 1em;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none; border: 2px solid transparent;
  cursor: pointer; letter-spacing: 0.03em;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease),
              color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(-1px); transition-duration: 0.1s; }
.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }

.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-h); }

.btn-outline {
  border-color: var(--dark); color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-ghost { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.7); }

.btn-ghost-dark { color: var(--dark); border-color: var(--border); background: transparent; }
.btn-ghost-dark:hover { background: var(--bg-alt); }

/* ---------- Section ortak ---------- */
section { padding: 88px 0; }
.section-head { max-width: 600px; margin: 0 auto 52px; text-align: center; }
.section-sub {
  margin-top: 14px; color: var(--text-soft); font-size: 1rem;
}

/* ---------- Görsel placeholder ---------- */
.img-ph-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: rgba(0,0,0,0.3); color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 6px;
  white-space: nowrap; pointer-events: none;
  backdrop-filter: blur(4px);
}
/* Görsel gerçekten yüklendiğinde label'ı JS gizler */
.img-loaded .img-ph-label { display: none; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex: 0 0 auto;
}
.brand-logo { height: 40px; width: auto; }
.brand-name {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.15rem; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--white);
}

.nav-list {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.86rem; letter-spacing: 0.03em;
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-list a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent) !important; color: var(--white) !important;
  padding: 9px 18px !important; border-radius: 999px !important;
  font-weight: 700 !important; transition: background 0.2s ease, transform 0.2s ease !important;
}
.nav-cta:hover { background: var(--accent-h) !important; transform: translateY(-2px) !important; }
.nav-cta svg { width: 15px; height: 15px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 6px; width: 36px; height: 36px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  nav#navLinks {
    position: fixed; inset: 68px 0 auto 0;
    background: var(--dark-soft); border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px 28px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  nav#navLinks.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-list a { padding: 10px 14px; font-size: 1rem; width: 100%; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background-color: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: #2a1a0d;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.68) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 80px 24px 120px;
  animation: heroFadeIn 1s var(--ease) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  height: 100px; width: auto; margin: 0 auto 24px;
  filter: brightness(0) invert(1);
  animation: heroFadeIn 0.8s var(--ease) 0.1s both;
}
@media (max-width: 640px) { .hero-logo { height: 72px; } }

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 16px;
  animation: heroFadeIn 0.8s var(--ease) 0.2s both;
}
.hero-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  line-height: 0.95; letter-spacing: -0.02em;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 22px;
  animation: heroFadeIn 0.8s var(--ease) 0.3s both;
}
.hero-title em {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-weight: 500; text-transform: none;
  color: var(--gold); letter-spacing: 0;
  font-size: 0.75em; display: block;
}
.hero-tagline {
  font-family: 'Open Sans', sans-serif; font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.8); margin-bottom: 28px;
  animation: heroFadeIn 0.8s var(--ease) 0.4s both;
}

.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 32px;
  animation: heroFadeIn 0.8s var(--ease) 0.5s both;
}
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
  padding: 8px 16px; border-radius: 999px;
  font-family: 'Open Sans', sans-serif; font-size: 0.84rem; font-weight: 600;
}
.badge svg { width: 14px; height: 14px; flex: 0 0 auto; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  animation: heroFadeIn 0.8s var(--ease) 0.62s both;
}

.scroll-down {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); text-decoration: none;
  animation: bounce 2.2s ease-in-out 1.5s infinite;
}
.scroll-down svg { width: 24px; height: 24px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ---------- ABOUT / HİKAYE ---------- */
.about-section { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-img-wrap { position: relative; }
.about-img {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background-color: var(--ph-bg); background-image: var(--ph-pattern);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(200,57,26,0.15));
}

.about-text h2 { margin-bottom: 20px; }
.about-text blockquote {
  margin: 0 0 22px; padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: var(--bg); border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem;
  color: var(--dark-soft);
}
.about-text p { color: var(--text-soft); font-size: 1.02rem; }
.signature {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.05rem; color: var(--accent); margin-top: 22px !important;
}

/* ---------- FEATURES / NEDEN ---------- */
.features-section { background: var(--dark); color: var(--white); }
.features-section .eyebrow { color: var(--gold); }
.features-section .eyebrow::before { background: var(--gold); }
.features-section h2 { color: var(--white); }
.features-section h2 em { color: var(--gold); }
.features-section .section-head { color: var(--white); }

.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--dark-card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: transform 0.25s var(--ease), border-color 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.feature-icon {
  width: 52px; height: 52px; margin-bottom: 20px;
  color: var(--accent);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 10px;
  color: var(--white);
}
.feature-card p { color: rgba(255,255,255,0.55); font-size: 0.92rem; margin: 0; }

/* ---------- MENÜ ---------- */
.menu-section { background: var(--bg); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-bottom: 28px;
}
@media (max-width: 960px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

.cat-card {
  background: var(--card); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card.active { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(200,57,26,0.12); }

.cat-img {
  aspect-ratio: 4/3;
  background-color: var(--ph-bg); background-image: var(--ph-pattern);
  background-size: cover; background-position: center;
  position: relative;
}
.cat-label {
  padding: 14px 16px;
}
.cat-label h3 {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--dark);
}
.cat-hint { font-size: 0.75rem; color: var(--accent); font-weight: 600; }

/* Fiyat accordion */
.price-accordion {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.35s var(--ease), padding 0.45s var(--ease);
  padding: 0 28px; margin-bottom: 36px;
}
.price-accordion.open { max-height: 900px; opacity: 1; padding: 28px; }
.price-accordion h4 {
  font-size: 1.05rem; font-weight: 800; color: var(--accent);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.04em;
}
.price-accordion .p-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 11px 0; border-bottom: 1px dashed var(--border);
}
.price-accordion .p-row:last-child { border-bottom: none; }
.price-accordion .p-name { font-size: 0.96rem; }
.price-accordion .p-name small { display: block; color: var(--text-soft); font-size: 0.8rem; margin-top: 2px; }
.price-accordion .p-price {
  font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--accent);
  white-space: nowrap;
}

/* QR Box */
.qr-box {
  background: var(--dark); color: var(--white);
  border-radius: var(--radius-lg); padding: 40px;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
  max-width: 620px; margin: 0 auto;
}
.qr-inner { background: var(--white); padding: 12px; border-radius: 10px; flex: 0 0 auto; }
.qr-text { flex: 1; min-width: 200px; }
.qr-text .eyebrow { color: rgba(255,255,255,0.6); }
.qr-text .eyebrow::before { background: rgba(255,255,255,0.4); }
.qr-text h3 {
  font-size: 1.3rem; font-weight: 800; margin: 8px 0 10px; color: var(--white);
}
.qr-text p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 16px; }

/* ---------- GALERİ ---------- */
.gallery-section { background: var(--dark); }
.gallery-section .eyebrow { color: var(--gold); }
.gallery-section .eyebrow::before { background: var(--gold); }
.gallery-section h2 { color: var(--white); }
.gallery-section .section-head { color: var(--white); }

.ig-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  transition: color 0.2s ease;
}
.ig-link:hover { color: var(--gold); }
.ig-link svg { width: 16px; height: 16px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  aspect-ratio: 1/1;
  background-color: var(--dark-card); background-image: var(--ph-pattern);
  background-size: cover; background-position: center;
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.gallery-item:hover { transform: scale(1.04); z-index: 1; box-shadow: var(--shadow-lg); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- YORUMLAR ---------- */
.reviews-section { background: var(--bg-alt); }

.carousel {
  display: flex; align-items: center; gap: 16px;
  max-width: 780px; margin: 0 auto;
}
.carousel-viewport { flex: 1; overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track { display: flex; transition: transform 0.55s var(--ease); }

.testimonial {
  flex: 0 0 100%;
  background: var(--card); border-radius: var(--radius-lg);
  padding: 36px 40px; border: 1px solid var(--border);
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  min-height: 220px; box-sizing: border-box;
}
.testimonial .stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p {
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.08rem;
  color: var(--dark); flex: 1; line-height: 1.7;
}
.testimonial .who {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 0.74rem; font-weight: 600;
  color: var(--text-soft); margin-top: 18px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.testimonial .who .src-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
}

.carousel-arrow {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--card);
  font-size: 1.3rem; color: var(--text-soft); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.carousel-arrow:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: scale(1.08); }

.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 24px;
}
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none;
  background: var(--border); cursor: pointer; padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.carousel-dots button.active { background: var(--accent); transform: scale(1.4); }

.rating-summary {
  text-align: center; margin-top: 36px;
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem;
  font-weight: 600; color: var(--text-soft);
}
.rating-summary a {
  color: var(--accent); text-decoration: none;
  transition: color 0.2s ease;
}
.rating-summary a:hover { color: var(--accent-h); }

@media (max-width: 640px) {
  .carousel { gap: 8px; }
  .testimonial { padding: 24px 22px; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 1.1rem; }
}

/* ---------- KONUM & İLETİŞİM ---------- */
.location-section { background: var(--white); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: stretch;
}
@media (max-width: 820px) { .location-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--border);
}
.contact-card h3 {
  font-size: 1.35rem; font-weight: 800; margin-bottom: 24px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
}
.open-badge {
  font-family: 'Open Sans', sans-serif; font-weight: 600;
  font-size: 0.7rem; background: #22C55E; color: #fff;
  padding: 4px 12px; border-radius: 999px;
  letter-spacing: 0.03em; text-transform: uppercase;
  vertical-align: middle;
}

.info-row {
  display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start;
}
.info-row svg { width: 20px; height: 20px; color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.info-row strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.info-row span { color: var(--text-soft); font-size: 0.9rem; }
.info-row a { color: var(--accent); text-decoration: none; font-weight: 600; }
.info-row a:hover { text-decoration: underline; }

.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.map-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); min-height: 360px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--dark); color: var(--white); padding: 60px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

.footer-logo { height: 52px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-brand-name {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 20px; }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.social-row a svg { width: 17px; height: 17px; }
.social-row a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.7); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 24px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
}

/* ---------- FAB (Sabit Arama Butonu) ---------- */
.fab-call {
  position: fixed; right: 24px; bottom: 24px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(200,57,26,0.4);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.fab-call:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 10px 30px rgba(200,57,26,0.5); }
.fab-call svg { width: 24px; height: 24px; }
@media (max-width: 640px) { .fab-call { display: none; } }

/* ---------- MOBİL ALT BAR ---------- */
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: none; gap: 8px; padding: 10px 14px;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}
@media (max-width: 640px) { .mobile-callbar { display: flex; } }
.mobile-callbar .btn {
  flex: 1; justify-content: center; padding: 12px 10px; font-size: 0.86rem;
}
.mobile-callbar .btn svg { width: 15px; height: 15px; }

/* ---------- Scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.08s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.16s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Mobil footer boşluğu ---------- */
@media (max-width: 640px) {
  body { padding-bottom: 72px; }
}

@media (max-width: 640px) {
  /* Hero görseli: neon tabela ve ayna kısmı görünsün */
  .hero-bg { background-position: 73% center; }

  /* Hero butonları: dikey sıra, ortalı, eşit genişlik */
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 240px;
    justify-content: center;
  }

  /* Hero içerik alt boşluğu azalt */
  .hero-content { padding: 60px 20px 100px; }
}
