/* ================================
   ANA GRID YAPISI
   ================================ */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;          /* Mobilde 1 sütun */
    gap: 24px;                           /* Kartlar arası boşluk */
}

/* Tablet (>= 640px) için 2 sütun */
@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Desktop (>= 1024px) için 3 sütun */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ================================
   PREMIUM HİZMET KARTLARI (V4)
   ================================ */

/* Kart Genel */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    border: 3px solid #91d50a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    /* 🔥 width vermiyoruz, grid kendi ayarlıyor */
}

/* Hover */
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.10);
    border-color: #14b8a6;
}

/* Görsel */
.service-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;   /* Sabit dikdörtgen oran */
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    display: block;
}

/* Başlık */
.service-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

/* Açıklama */
.service-card-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.45;
    margin-bottom: 14px;
}

/* Link */
.service-card-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    gap: 6px;
    color: #0f766e;
    transition: 0.25s ease;
}

.service-card-link:hover {
    color: #0d9488;
    padding-left: 6px;
}


/* =======================================
   BAŞLIK GRADIENT (PREMIUM)
   ======================================= */

.page-title-gradient {
    background: linear-gradient(90deg, #0d9488, #14b8a6, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}




/* ============================================================
   PREMIUM REFERANS BÖLÜMÜ — 3'lü Grid + Sayfa Rengine Uyumlu
============================================================== */
.refs-section {
    margin-top: 75px;
}

.refs-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 10px;

  background: linear-gradient(90deg, #00c9a7, #1bcb7f, #2d7cd3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.refs-subtitle {
  font-size: 1.15rem;
  color: #4a4a4a;
  margin-bottom: 50px;
}

/* 3’LÜ GRID */
.refs-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 992px) {
  .refs-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .refs-wrapper {
    grid-template-columns: 1fr;
  }
}

/* KART TASARIMI – SAYFA ZEMİNİNE UYUMLU */
.ref-card {
  background: #f4f7fc;                 /* sayfa rengine yakın soft gri-mavi */
  padding: 30px 24px;
  border-radius: 18px;

  border: 1px solid #dde5f1;           /* çok hafif gri-mavi çerçeve */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);  /* soft gölge */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* Hover: hafif yükselme + biraz daha beyazlaşma */
.ref-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

/* GÖRSEL Alanı */
.ref-icon img {
  width: 275px;
  height: 275px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #d6dfec;
  transition: 0.35s ease-in-out;
}

/* Hover'da hafif parlama efekti */
.ref-card:hover .ref-icon img {
  transform: scale(1.06);
  filter: brightness(1.12);
}

/* Başlık */
.ref-card h3 {
  margin-top: 18px;
  font-size: 1.25rem;
  font-weight: 800;

  background: linear-gradient(90deg, #00c9a7, #1bcb7f, #2d7cd3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Açıklama */
.ref-card p {
  font-size: 1.02rem;
  color: #3a3a3a;
  margin-top: 10px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Mobil için görsel ve başlık ayarı */
@media (max-width: 768px) {
  .ref-icon img {
    width: 130px;
    height: 130px;
  }
  .refs-title {
    font-size: 2rem;
  }
}


/* === SSS Kart Alanı Konteyner === */
.faq-cards-container {
    padding: 60px 20px;
    max-width: 1300px;
    margin: auto;
}

/* Başlık Gradyanı (Logo ile aynı) */
.faq-cards-container .gradient-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00c9a7, #1bcb7f, #2d7cd3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid */
.faq-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media(max-width: 992px) {
    .faq-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 576px) {
    .faq-card-grid {
        grid-template-columns: 1fr;
    }
}

/* === 3D Flip Kart === */
.faq-card {
    perspective: 1000px;
    height: 220px;
}

.faq-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .8s ease;
    transform-style: preserve-3d;
}

.faq-card:hover .faq-card-inner {
    transform: rotateY(180deg);
}

/* === Ortak Ayarlar (Ön + Arka) === */
.faq-card-front,
.faq-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 14px;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    /* LOGO GRADYAN RENGİ */
    background: linear-gradient(135deg, #00c9a7, #1bcb7f, #2d7cd3);

    /* YAZI RENGİ */
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;

    /* Yumuşak gölge */
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
    text-align: center;
}

/* === ÖN YÜZ H3 YAZI RENGİ (KESİN BEYAZ) === */
.faq-card-front h3 {
    color: #ffffff !important;
}

/* === ARKA YÜZ === */
.faq-card-back {
    transform: rotateY(180deg);
}

.faq-card-back p {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
}


/* HAKKIMIZDA Bölümü */
.about-section {
  padding: 80px 20px;
  background: #f5f8fb;
  text-align: center;
  margin-top: 20px; /* 🔹 Navbar ve hero arasına boşluk */
}

.about-content {
  max-width: 900px;
  margin: auto;
}

.about-content h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.btn-secondary {
  display: inline-block;
  margin-top: 20px;
  background: #1d81e6;
  color: white;
  padding: 10px 22px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.10s ease;
}

.btn-secondary:hover {
  background: #00a36a;
  color: #ffffff !important;   /* YAZI RENGİNİ SABİTLE */
  transform: translateY(-3px);
}


/* ÖZELLİKLER Bölümü */
.features-section {
  padding: 80px 20px;
  text-align: center;
  background: transparent !important;   /* Arka planı tamamen kaldırır */
  box-shadow: none !important;          /* Gizli gölge efektlerini temizler */
}


.features-section h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.feature-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #003366;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
}

/* === Hakkımızda başlığı: "Neden KarotMerkezi?" === */
.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;

    background: linear-gradient(90deg, #00c9a7, #1bcb7f, #2d7cd3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === Özellik başlıkları: "Yüksek Doğruluk", "Hızlı Sonuçlar", "Güvenilir Hizmet" === */
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;

    background: linear-gradient(90deg, #00c9a7, #1bcb7f, #2d7cd3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-weight: 800;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .features-grid {
    gap: 20px;
  }
}

/* ==========================================================
   ONLINE KAROT REZERVASYON FORMU - Premium Tasarım
========================================================== */

.reservation-section {
    margin: 80px auto;
    max-width: 1000px;
    background: #fff;
    padding: 50px;
    border-radius: 28px;

    /* Yeni premium çerçeve efekti */
    position: relative;
    border: 2px solid rgba(0, 224, 255, 0.35);
    box-shadow:
        0 0 18px rgba(0, 224, 255, 0.25),
        0 0 28px rgba(0, 208, 132, 0.25),
        0 4px 35px rgba(0,0,0,0.08);
}


.reservation-header {
    text-align: center;
    margin-bottom: 35px;
}

.reservation-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00e0ff, #00d084);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.reservation-header p {
    font-size: 1rem;
    color: #555;
    max-width: 760px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.reservation-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    margin-top: 10px;
    max-width: 550px;
}

.reservation-benefits li {
    background: #f1fdf7;
    border-left: 4px solid #00b874;
    padding: 8px 12px;
    margin: 8px 0;
    border-radius: 8px;
    color: #333;
    font-size: .95rem;
}

/* ===== Form Genel ===== */
.reservation-form-wrapper {
    margin-top: 25px;
}

/* === GRID SİSTEMİ – KAYMA SORUNU TAM ÇÖZÜM === */
.reservation-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

/* 3 kolonlu satır */
.reservation-row.row-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Kolonlar */
.reservation-field {
    display: flex;
    flex-direction: column;
}

.reservation-field-full {
    grid-column: 1 / -1;
}
/* Label */
.reservation-field label {
    font-size: .95rem;
    margin-bottom: 6px;
    color: #333;
    font-weight: 600;
}

/* Input boşlukları */
.reservation-field input,
.reservation-field select {
    height: 48px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: .95rem;
}

.reservation-field textarea {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: .95rem;
    min-height: 120px;
}

/* Focus */
.reservation-field input:focus,
.reservation-field select:focus,
.reservation-field textarea:focus {
    border-color: #00c47a;
    box-shadow: 0 0 0 2px rgba(0,210,140,0.2);
    background: #fff;
    outline: none;
}

/* Custom select */
.custom-select {
    position: relative;
}

.custom-select input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 180px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 4px;
    display: none;
    z-index: 9999;
}

.custom-options .option {
    padding: 10px;
    cursor: pointer;
}

.custom-options .option:hover {
    background: #e9f7f3;
}

/* ===== KVKK ===== */
.reservation-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 25px auto;
    max-width: 480px;
    text-align: center;
}

.reservation-consent-text {
    max-width: 430px;
    line-height: 1.5;
    font-size: .9rem;
    color: #444;
    margin-bottom: 8px;
}

.reservation-consent input[type="checkbox"] {
    transform: scale(1.25);
    cursor: pointer;
    margin: 0 auto;
}

.reservation-consent a {
    color: #00a875;
    font-weight: 700;
    text-decoration: none;
}

.reservation-consent a:hover {
    text-decoration: underline;
}

/* ===== Gönder Butonu ===== */
.reservation-btn {
    padding: 14px 35px;
    border: none;
    background: linear-gradient(90deg, #00e0ff, #00c977);
    color: #fff;
    font-size: 1.1rem;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    transition: all .25s ease;
    box-shadow: 0 6px 16px rgba(0,190,140,0.25);
}

.reservation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,190,140,0.35);
}

/* WhatsApp info */
.reservation-whatsapp-info {
    margin-top: 15px;
    font-size: .9rem;
    color: #333;
}

.reservation-whatsapp-info a {
    color: #00c46a;
    font-weight: 700;
}

@media (max-width: 768px) {

    /* Form kartını ortala + yan boşluk ver */
    .reservation-section {
        margin: 40px 20px;   /* sağ & sol 20px boşluk */
        padding: 25px 20px;  /* iç boşluk */
        border-radius: 20px;
    }

}

/* ============================
   INPUT MOBILE RESPONSIVE
============================ */
@media (max-width: 768px) {

    /* Tüm form satırları tek kolon */
    .reservation-row {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    /* Tüm inputlar tam genişlik */
    .reservation-field input,
    .reservation-field select,
    .reservation-field textarea {
        width: 100% !important;
        font-size: 0.95rem;
        height: 48px;
        padding: 12px 14px;
    }

    /* Inputların içindeki yazı daha okunaklı */
    .reservation-field input::placeholder,
    .reservation-field textarea::placeholder {
        font-size: 0.90rem;
    }

    /* Etiketler mobilde daha yakın olsun */
    .reservation-field label {
        font-size: 0.92rem;
        margin-bottom: 6px;
    }

    /* Hizmet alanı select görünümü düzelsin */
    .custom-select input {
        height: 48px;
        font-size: 0.95rem;
        padding: 12px 14px;
    }

    /* Tarih inputu hizalansın */
    #rez_date {
        height: 48px !important;
    }

    /* Not alanı tam genişlik */
    .reservation-field-full {
        grid-column: 1 / -1 !important;
    }
}


/* ============================
   480px ALTINDA (İnce Telefonlar)
============================ */
@media (max-width: 480px) {

    /* Daha fazla nefes boşluğu */
    .reservation-field input,
    .reservation-field select,
    .reservation-field textarea {
        height: 46px;
        font-size: 0.90rem;
        padding: 10px 12px;
    }

    .reservation-field label {
        font-size: 0.88rem;
    }
}



/* ==========================================================
   EKİBİMİZ – Uzman Kadro (Neon Turkuaz Premium 3D Tilt)
========================================================== */

.team-section {
  margin: 80px auto;
  padding: 50px 20px;
  max-width: 1200px;
  text-align: center;
}

.team-title {
  font-size: 2.3rem;
  font-weight: 900;
  background: linear-gradient(90deg, #00d4a8, #00e7c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.team-subtitle {
  font-size: 1.15rem;
  color: #4a4a4a;
  margin-bottom: 45px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* Kart */
.team-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  padding: 30px 20px;
  border-radius: 22px;

  /* TURKUAZ BORDER */
  border: 2px solid #00d4a8;

  /* GLOW */
  box-shadow:
    0 0 12px rgba(0, 212, 168, 0.45),
    0 10px 22px rgba(0,0,0,0.12);

  transition: all 0.35s ease;
  text-align: center;
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform;
}

.team-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 0 18px rgba(0, 230, 185, 0.45),
    0 18px 35px rgba(0,0,0,0.18);
}

/* Fotoğraf kapsayıcı */
.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00e7c6;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* İsim */
.team-card h3 {
  font-size: 1.28rem;
  font-weight: 800;
  color: #007e6c;
}

/* Rol */
.team-card .role {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

/* Deneyim */
.team-card .exp {
  font-size: 0.95rem;
  font-weight: 700;
  color: #00b893;
}


/* =======================================================
   SERTİFİKALAR & YETKİNLİKLER – Neon Turkuaz Kartlar
======================================================= */

.cert-section {
  margin: 80px auto;
  padding: 60px 20px;
  max-width: 1200px;
  text-align: center;

  background: #ffffff;
  border-radius: 25px;

  border: 2px solid #00d4a8;
  box-shadow:
    0 0 16px rgba(0, 212, 168, 0.35),
    0 18px 45px rgba(0, 0, 0, 0.12);
}

.cert-title {
  font-size: 2.3rem;
  font-weight: 900;
  background: linear-gradient(90deg, #00d4a8, #00e7c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cert-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 45px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);   /* MASAÜSTÜ: 4’lü */
  gap: 30px;
}

.cert-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px 20px;

  border: 2px solid #00d4a8;

  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 0 22px rgba(0, 230, 185, 0.5),
    0 22px 45px rgba(0,0,0,0.15);
}

.cert-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
}

.cert-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #007e6c;
  line-height: 1.35;
}


@media (max-width: 992px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr); /* TABLET: 2’li */
  }
}

@media (max-width: 600px) {
  .cert-grid {
    grid-template-columns: 1fr;            /* MOBİL: 1’li */
  }
}

/* ==========================================================
   İSTATİSTİKLER – Orta Genişlik (Premium)
========================================================== */

.stats {
  background: linear-gradient(135deg, #00c7a5, #00e7c8);
  padding: 40px 20px;     /* 25 → 40 : Daha geniş, ferah */
  margin: 50px auto;
  border-radius: 22px;
  color: #fff;

  border: 2px solid rgba(0, 230, 185, 0.7);

  box-shadow:
    0 0 16px rgba(0, 230, 185, 0.38),
    0 12px 32px rgba(0, 0, 0, 0.18);

  max-width: 1200px;
}

/* GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;     /* 20 → 25 hafif açıldı */
  text-align: center;
  align-items: center;
}

/* Büyük sayı */
.stat-item h3 {
  font-size: 2.2rem;      
  margin-bottom: 6px;
  font-weight: 900;
  text-shadow: 0 0 7px rgba(255, 255, 255, 0.6);

  /* Zıplama önleyici sabit yükseklik */
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Açıklama */
.stat-item p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;

  /* Açıklama satırının da zıplamaması için sabit yükseklik */
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Mobil */
@media (max-width: 768px) {
  .stats {
    padding: 30px 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .stat-item h3 {
    font-size: 1.8rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }
}




/* =======================================================
   PREMIUM TÜRKİYE HARİTA MODÜLÜ – TAM MOBİL RESPONSIVE
======================================================= */

.service-map-section {
  background: #ffffff;
  padding: 70px 40px;
  border-radius: 20px;
  max-width: 1200px;
  margin: 80px auto;
  box-shadow: 0 25px 55px rgba(0,0,0,0.08);
  border: 1px solid #e6e9f0;
}

.map-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #289657;
  margin-bottom: 15px;
}

.map-subtitle {
  font-size: 1.15rem;
  color: #090808;
  margin-bottom: 40px;
}

/* HARİTA KARTI */
.map-wrapper {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;

  border: 2px solid #d8dfea;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.map-wrapper iframe,
.map-wrapper #trMap {
  width: 100% !important;
  height: 100% !important;
}

/* Hover Efekti */
.map-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  border-color: #b7c4d9;
}

/* Attribution kapatma */
.leaflet-control-attribution {
  display: none !important;
}

/* =======================================================
   MOBİL RESPONSIVE
======================================================= */
@media (max-width: 768px) {

  .service-map-section {
    padding: 35px 18px;         /* Kart yan boşluğu */
    margin: 40px 16px;          /* Ekrana tam oturan kart */
  }

  .map-wrapper {
    height: 280px;              /* Daha ideal mobil yükseklik */
    border-radius: 16px;
  }

  .map-title {
    font-size: 1.7rem;
    text-align: center;
  }

  .map-subtitle {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 25px;
  }

  /* Mobilde hover açılmaz (gereksiz büyüme engellenir) */
  .map-wrapper:hover {
    transform: none;
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  }
}

/* =======================================================
   KÜÇÜK MOBİL (480px ve altı)
======================================================= */
@media (max-width: 480px) {

  .service-map-section {
    padding: 28px 14px;
    margin: 35px 12px;
  }

  .map-wrapper {
    height: 240px;
    border-radius: 14px;
  }

  .map-title {
    font-size: 1.55rem;
  }
}
