/* GENEL AYARLAR */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f5f7;
  color: #222;
  line-height: 1.6;
}

/* KAPSAYICI */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* NAVBAR */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #222;
}

.logo span {
  color: #b68b46; /* altın ton */
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #b68b46;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* MOBİL MENÜ BUTONU */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #333;
}

/* HERO SLIDER – AKAN MOD */
.hero {
  position: relative;
  height: 75vh;
  min-height: 480px;
  overflow: hidden;
  background: #000;
}

.hero-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.1)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 560px;
  color: #fff;
  animation: heroFadeUp 0.9s ease-out;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  color: #f8e7c7;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 440px;
  color: #f4f4f4;
  margin-bottom: 1.8rem;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* SLIDER KONTROLLERİ */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid #f8e7c7;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}

.hero-dot.active {
  background: #f8e7c7;
  width: 18px;
  opacity: 1;
}

/* BUTONLAR */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease,
    color 0.2s ease;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, #c49a5a, #b68b46);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: #f4f4f4;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ANA BAŞLIKLAR */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b68b46;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #666;
  max-width: 540px;
  margin: 0.5rem auto 0;
}

/* HİZMET KARTLARI */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.6rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f5f0e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.service-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b68b46;
  margin-bottom: 0.4rem;
}

.service-title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.service-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.8rem;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #777;
}

.service-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: #b68b46;
}

/* NEDEN BİZ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 1.6rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #f5f0e9);
  border: 1px solid rgba(182, 139, 70, 0.18);
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.feature-text {
  font-size: 0.9rem;
  color: #555;
}

/* KAMPANYA BANNER */
.campaign-banner {
  background: linear-gradient(90deg, #111, #2b2620);
  color: #f7e7c8;
  padding: 1.2rem 0;
}

.campaign-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.campaign-title {
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.campaign-offer {
  font-size: 1rem;
}

.campaign-offer strong {
  color: #ffe9ae;
}

/* GALERİ */
.gallery {
  padding: 3rem 0 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  height: 0;
  padding-bottom: 75%;
  background-position: center;
  background-size: cover;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ALT CTA */
.cta {
  padding: 3rem 0 4rem;
}

.cta-inner {
  background: radial-gradient(circle at top left, #f2e6d6, #111);
  border-radius: 1.8rem;
  padding: 2.5rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.8rem;
}

.cta-text {
  flex: 1 1 260px;
}

.cta-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.cta-subtitle {
  font-size: 0.95rem;
  color: #f1e7d8;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ALT BİLGİ ŞERİDİ */
.info-strip {
  background: #111;
  color: #eee;
  padding: 1.2rem 0;
  font-size: 0.9rem;
}

.info-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.info-strip-item {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

/* INSTAGRAM BLOK */
.instagram-section {
  padding: 3rem 0;
}

.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.instagram-post {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 100%;
  background-position: center;
  background-size: cover;
}

.instagram-post::after {
  content: "Instagram'da gör";
  position: absolute;
  inset: auto 10px 10px 10px;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(6px);
}

.instagram-post:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER – ŞIK & MARKA ODAKLI */
.footer {
  background: radial-gradient(circle at top left, #18100a, #050505);
  color: #d8ccb0;
  padding: 2.8rem 0 1.4rem;
  border-top: 1px solid rgba(212,175,55,0.35);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr;
  gap: 2.4rem;
  align-items: flex-start;
  margin-bottom: 2.1rem;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  font-size: 1.2rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: #f4e3bf;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  font-size: 0.78rem;
  color: #f3e0b4;
  background: rgba(16, 12, 6, 0.8);
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #b8aa8b;
}
.footer-title {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  color: #f0e4c4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}


.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a {
  text-decoration: none;
  color: #d1c6a5;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f4e3bf;
}

/* İletişim satırları */
.footer-links.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: #d1c6a5;
}

.footer-links.footer-contact span {
  font-size: 0.9rem;
}

.footer-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(182,139,70,0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0,0,0,0.22);
  color: #d8b56a; /* ikon rengi = gold */
}

.footer-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;  /* tek renk gold ikon */
}

.footer-links.footer-contact li:hover .footer-icon {
  background: rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.95);
}

/* Alt şerit */
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.2);
  padding-top: 0.9rem;
  font-size: 0.8rem;
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 0.6rem;
  color: #a89b82;
}

.footer-credit {
  opacity: 0.9;
}

/* Responsive footer */
@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1.6fr 1fr;
  }
}

@media (max-width: 720px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.3rem;
  }
}
.footer-links.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(182, 139, 70, 0.55); /* gold çizgi */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #b68b46; /* ikon rengi = gold */
  background: rgba(0, 0, 0, 0.12); /* çok hafif koyu zemin, istersen silebiliriz */
}

.footer-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.footer-links.footer-contact li:hover .footer-icon {
  background: rgba(182, 139, 70, 0.18);  /* hover’da gold hafif parlar */
  border-color: rgba(182, 139, 70, 0.9);
}


/* SAYFA BAŞLIĞI GENEL (İÇ SAYFALAR) */
.page-hero {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(to bottom, #f2ede5, #f5f5f7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.page-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  max-width: 560px;
  color: #666;
}

/* İÇERİK GENEL */
.page-section {
  padding: 2.5rem 0 3rem;
}

.page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

/* FORM */
.form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form label {
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
  display: block;
  color: #555;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 0.7rem;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  outline: none;
}

.form input:focus,
.form textarea:focus {
  border-color: #b68b46;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 999;
}

.whatsapp-float span {
  position: absolute;
  right: 64px;
  background: #111;
  color: #fff;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1.6fr 1fr;
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
  }

  .gallery-grid,
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 1rem 1.5rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .info-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* GOOGLE YORUM KARTLARI */
/* GOOGLE YORUM BÖLÜMÜ – SABİT GRID GÖRÜNÜMÜ */
.google-reviews-section {
  padding: 50px 0;
}

/* GOOGLE YORUMLARI – TEK SATIR, EKRANDA SABİT DURAN KUTULAR */
.google-reviews-strip {
  width: 100%;
  padding: 10px 0 20px 0;
  overflow: visible;              /* Artık hiçbir kaydırma yok */
}

.reviews-track {
  display: flex;
  flex-wrap: nowrap;              /* Tek satır, alta geçmesin (masaüstü için) */
  justify-content: center;        /* Ortala */
  align-items: stretch;
  gap: 18px;
  padding-inline: 12px;
  animation: none;                /* Otomatik kayma da yok */
}

/* Her kutu benzer genişlikte olsun */
.review-pill {
  flex: 0 0 260px;                /* Her kart ~260px */
  min-width: 220px;
}
@media (max-width: 768px) {
  .reviews-track {
    flex-wrap: wrap;              /* Telefon ve küçük ekranlarda alt satıra geçebilir */
    justify-content: center;
  }

  .review-pill {
    flex: 1 1 260px;              /* Gerekirse genişlesin/daralsın */
  }
}


.google-reviews-section:hover .reviews-track {
  animation-play-state: paused; /* Üzerine gelince dursun, okunaklı olsun */
}

.review-pill {
  min-width: 340px;          /* KUTU GENİŞLEDİ */
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;       /* YUMUŞAK KÖŞE */
  padding: 20px 24px;        /* DAHA GENİŞ İÇ BOŞLUK */
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: #444;
  border: 1px solid rgba(212,175,55,0.15); /* İnce gold dokunuş */
}

.review-pill-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-google-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 10px;
  background: #f7ebd4;
  color: #7a5a14;
}

.review-stars {
  font-size: 14px;
  color: #e6b800;
}

.review-text {
  font-size: 15px;
  margin: 6px 0 12px 0;
  line-height: 1.6;
}

.review-author {
  font-size: 14px;
  font-weight: 600;
  color: #b08a2a;
}
/* Akan hareket */
@keyframes volansReviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobilde çok hızlı olmasın ve taşma düzgün dursun */
@media (max-width: 768px) {
  .reviews-track {
    animation-duration: 46s;
  }
}
.review-source-link {
  display: inline-block   ; 
  margin-top: 4px;
  font-size: 0.75rem;
  color: #946e0d;
  text-decoration: none;
  font-weight: 600;
}

.review-source-link:hover {
  text-decoration: underline;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;              /* İstersen 70vh yapabilirsin */
  max-height: 800px;
  overflow: hidden;
}
.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider .slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Yazıların olduğu alan */
.hero-slider .slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 8%;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.hero-slider .slide-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-slider .slide-content p {
  font-size: 1.2rem;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

/* Buton */
.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #d4af37, #f4e2a1); /* altın ton */
  color: #302418;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.32);
}

/* Slider noktaları */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  opacity: 0.7;
}

.slider-dots .dot.active {
  background: #fff;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
  }

  .hero-slider .slide-content {
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
  }

  .hero-slider .slide-content h2 {
    font-size: 2rem;
  }

  .hero-slider .slide-content p {
    font-size: 1rem;
  }
}
.contact-form {
  max-width: 520px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 10px;
}


.contact-form label {
  font-weight: 600;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

.contact-form button {
  padding: 12px;
  background: #d4af37;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #b9972e;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: none;              /* Başta görünmesin */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-overlay.show {
  display: flex;              /* show gelince popup tam ortada açılacak */
}

.popup-box {
  background: #fff;
  padding: 28px 26px;
  border-radius: 16px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.popup-box h2 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #b9972e;
}

.popup-box p {
  margin-bottom: 20px;
  line-height: 1.5;
}
/* SAYFA HERO HİZMETLER */
.services-hero {
  background: linear-gradient(135deg, #f7f0e6, #faf7f2);
  padding: 70px 0 40px 0;
}

.services-summary {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.summary-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid rgba(212,175,55,0.15);
}

.summary-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #a17b1f;
  margin-bottom: 4px;
}

.summary-text {
  font-size: 0.9rem;
  color: #555;
}

/* ANA HİZMET LAYOUT */
.service-block {
  padding: 50px 0;
}

.service-block-alt {
  background: #faf7f2;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.service-media img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #a17b1f;
  background: #f6ebd4;
  padding: 4px 10px;
  border-radius: 999px;
}

.service-title-lg {
  font-size: 1.6rem;
  margin: 0;
}

.service-intro {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #444;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1rem;
}

.service-columns ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: #444;
}

.service-columns li + li {
  margin-top: 0.3rem;
}

.service-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

/* Alt bilgilendirme */
.section-soft {
  background: #faf7f2;
}

.services-note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.services-note h3 {
  margin-bottom: 0.5rem;
}

.services-note p {
  margin-bottom: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr;
  }
}
.faq-category-title {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #a17b1f;
}

.faq-item {
  border-bottom: 1px solid #e8e2d8;
  padding: 14px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #444;
}

.faq-toggle-icon {
  font-size: 22px;
  transition: transform 0.25s;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
  transition: 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}
.about-hero {
  background: linear-gradient(135deg, #f7f0e6, #faf7f2);
  padding: 70px 0 40px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 0.8rem;
  color: #444;
  line-height: 1.7;
}

.about-media img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* Küçük alt başlık baloncukları */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.pill-list span {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f6ebd4;
  color: #7a5a14;
  font-weight: 600;
}

/* Değerler bölümü */
.values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  border: 1px solid rgba(212,175,55,0.12);
}

.value-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Kurucu bloğu */
.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.founder-media img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  max-width: 260px;
  aspect-ratio: 1/1;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.founder-media {
  display: flex;
  justify-content: center;
}

.founder-text p {
  margin-bottom: 0.8rem;
  color: #444;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.badge-box {
  background: #f6ebd4;
  border-radius: 999px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
}

.badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7a5a14;
  font-weight: 600;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b3a12;
}

/* Responsive */
@media (max-width: 900px) {
  .about-layout,
  .founder-layout {
    grid-template-columns: 1fr;
  }
}
/* Yorum metni için kısaltma alanı */
.review-text-wrapper {
  max-height: 7.8em;            /* yaklaşık 2 satır */
  overflow: hidden;
  position: relative;
}

/* Gradient efekti (altta hafif gölge gibi) */
.review-text-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.4em;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
}

/* Kart genişleyince tam görünsün */
.review-pill.expanded .review-text-wrapper {
  max-height: none;
}

.review-pill.expanded .review-text-wrapper::after {
  display: none;
}

/* Devamını oku butonu */
.review-more {
  margin-top: 4px;
  padding: 0;
  border: none;
  background: none;
  color: #b08a2a;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.review-more:hover {
  text-decoration: underline;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-info p {
  color: #444;
  line-height: 1.7;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-info-list li {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a17b1f;
  font-weight: 600;
}

.contact-info-list a {
  text-decoration: none;
  color: #333;
}

.contact-info-list a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: #555;
}

/* Form alanları */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 20px 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(212,175,55,0.12);
}

.contact-form {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 10px;
  border: 1px solid #ddd4c4;
  padding: 8px 10px;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #b08a2a;
  box-shadow: 0 0 0 2px rgba(176,138,42,0.12);
}

.form-status {
  margin-top: 4px;
  font-size: 0.85rem;
}

.form-status.sending {
  color: #555;
}

.form-status.success {
  color: #2f8f3a;
}

.form-status.error {
  color: #b3261e;
}

/* Harita */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.09);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 14px 14px 16px 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
/* SSS – ALT ALTA BLOKLU TASARIM */
/* SSS – ALT ALTA BLOKLU TASARIM */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-category-heading {
  font-size: 1.05rem;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
  color: #3c2b16;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Her soru kendi kartı */
.faq-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 6px 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.035);
  border: 1px solid rgba(212,175,55,0.16);
}

/* Soru butonu */
.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 6px 4px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.faq-question span:first-child {
  padding-right: 8px;
}

/* + ikonu */
.faq-toggle-icon {
  font-weight: 700;
  font-size: 1.1rem;
  color: #a27618;
  transition: transform 0.2s ease;
}

/* Açıldığında ikon döner (+ ➜ x gibi) */
.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* Cevap alanı */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: block;              /* 🔴 ÖNEMLİ: artık display:none yok */
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  padding: 0 4px;
  transition: max-height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.faq-item.active .faq-answer {
  max-height: 260px;
  opacity: 1;
  margin-top: 0.25rem;
}

/* Alt bilgilendirme notu */
.faq-bottom-note {
  margin-top: 2.1rem;
  text-align: left;
  font-size: 0.95rem;
  color: #555;
}

.faq-bottom-note a {
  color: #b08a2a;
  text-decoration: none;
  font-weight: 600;
}

.faq-bottom-note a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-list {
    padding-inline: 4px;
  }

  .faq-card {
    border-radius: 12px;
    padding: 6px 8px;
  }
}
