@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html, body {
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: #2e2f33; /* Genel sayfa arka plan rengi */
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #2e2f33; /* koyu gri */
    color: #fff;               /* tüm yazılar beyaz */
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main,
.main-content,
.main-content-with-padding {
  flex: 1 0 auto;
}

body::after {
  content: none;
  display: none;
}
.page-wrapper {
    overflow-y: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}
/* ==========================================================================
   Sayfa Konteyneri ve Hero Banner Stilleri
   ========================================================================== */
.page-container {
    width: 100%;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 90px);
    padding-bottom: 60px;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400px;
    margin-top: 0px; /* Navbar yüksekliği kadar boşluk bırakıldı */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

.hero-content-box {
    color: white;
    padding: 20px;
    max-width: 80%;
    text-align: center;
    background: transparent;
    box-shadow: none;
}

.hero-content-box h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-content-box p {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* KAMPANYA SEKMESİ STİLLERİ */
.kampanya-tab {
    position: fixed;
    top: 50%;
    right: -95px; /* Sekmenin büyük kısmını gizle */
    transform: translateY(-50%) rotate(270deg); /* Dikey yap */
    background-color: #ffc107; /* Dikkat çekici sarı renk */
    color: #1e1e1e;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 1000;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: right 0.3s ease;
    box-shadow: -2px 0px 10px rgba(0,0,0,0.2);
}

.kampanya-tab:hover {
    right: -85px; /* Üzerine gelince hafifçe dışarı çıksın */
}

/* KAMPANYA PENCERESİ (MODAL) STİLLERİ */
.modal {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6); /* Arka planı karart */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translateY(-50px);
    transition: transform 0.4s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-content h2 {
    font-family: 'Oswald', sans-serif;
    color: #0056b3; /* Best Oil mavi tonu olabilir */
    margin-bottom: 10px;
}

.modal-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333;
}

.modal-info {
    margin-top: 20px;
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
}

.modal-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.modal-button:hover {
    background-color: #004494;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* ======================================================
   Banner (Hero ve Footer arası özel içerik bölümü)
   ====================================================== */

#banner,
.banner-alt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #2e2f33;
    color: #ececec;
}

#banner .content,
.banner-alt .content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    color: #ececec;
}

.banner-alt .content header h2 {
  margin-bottom: 8px; /* Boşluğu senin istediğin gibi ayarlayabilirsin */
}

#banner .content h1,
.banner-alt .content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
}

#banner .content h5,
.banner-alt .content h5 {
    font-size: 14px;
    font-weight: 400;
    color: #bbbbbb;
}

#banner .content p,
.banner-alt .content p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

#banner .actions {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

#banner .actions li {
    display: inline-block;
}

/* Ortak buton stili */
.button,
.actions .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FAB403;
    color: #2e2f33;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    width: fit-content; /* yazı kadar genişlik */
}

.button:hover,
.actions .button:hover {
    background-color: #e0a102;
    color: #ffffff;
}

#banner .image,
.banner-alt .image {
    flex: 1 1 45%;
    max-width: 500px;
}

#banner .image img,
.banner-alt .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Görselin sağda olmasını isteyenler için */
.sagresim {
    flex-direction: row-reverse;
}

/* Görselin solda kalmasını zorlamak için (varsayılan zaten böyle ama sınıf varsa override eder) */
.solgorsel {
    flex-direction: row;
}

/* ======================================================
   Responsive Ayarlar
   ====================================================== */
@media (max-width: 768px) {
    #banner,
    .banner-alt {
        text-align: center;
        padding: 40px 15px;
        gap: 25px;
    }

    #banner .content,
    #banner .image,
    .banner-alt .content,
    .banner-alt .image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    #banner .content h1,
    .banner-alt .content h2 {
        font-size: 28px;
    }

    #banner .content p,
    .banner-alt .content p {
        font-size: 15px;
    }

    .banner-alt .button {
        margin-top: 10px;
    }

    .banner-alt .image {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    #banner,
    .banner-alt {
        padding: 30px 10px;
    }

    #banner .content h1,
    .banner-alt .content h2 {
        font-size: 24px;
    }

    #banner .actions .button,
    .banner-alt .button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* ÖZELLİKLER BARI STİLLERİ */
/* HERO BANNER GÜNCELLEMESİ */
.hero-banner {
    position: relative; /* İçindeki absolute elemanlar için referans noktası */
}

/* REKLAMLARrrrrrrrrrrrrrrrrrrrrrrrrrrr */ 

.side-panel {
    position: fixed;
    top: 40%;
    transform: translateY(-50%);
    right: -360px;
    width: 360px;
    height: auto;
    background-color: #ffc107;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 1002;
    transition: right 0.4s ease-in-out;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
}


.side-panel.is-open {
    right: 15px; /* Panelin ekranın en sağına yapışmasını engeller ve scrollbar için yer bırakır. */
}

.panel-tab {
    position: absolute;
    left: -18px;
    top: 70%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: bottom left;
    background-color: #ffc107;
    color: #1e1e1e;
    padding: 15px 20px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 16px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 1;
    transition: left 0.4s ease-in-out;
}

.panel-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 15px 25px;
    text-align: center;
    box-sizing: border-box;
    min-height: 100%;
}


.panel-content h2 {
    font-family: 'Oswald', sans-serif;
    color: #0056b3;
    margin-top: 0; /* Üstteki ekstra boşluğu kaldırır */
    margin-bottom: 10px;
}

body.menu-open .side-panel {
    display: none !important;
}

.panel-info { margin-top: 20px; background-color: #004494   ; padding: 15px; border-radius: 5px; font-size: 14px; }
.panel-button { display: inline-block; margin-top: 25px; padding: 12px 30px; background-color: #0056b3; color: white; text-decoration: none; font-weight: 700; border-radius: 5px; transition: background-color 0.3s; }
.panel-button:hover { background-color: #004494; }
.panel-close-button { position: absolute; top: 10px; right: 20px; font-size: 30px; color: #aaa; cursor: pointer; line-height: 1; }
.panel-close-button:hover { color: #333; }
.side-panel.is-open .panel-tab {left: 0;}



/* HERO BANNER VE ALT KARTLAR */

.feature-bar {
  display: flex;
  justify-content: center; /* Kartları yatayda ortalar */
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  bottom: 180px;
  left: 50%; /* Sol kenardan %50 uzaklaş */
  transform: translateX(-50%); /* Kendi genişliğinin yarısı kadar sola kaydır */
  width: 70%; /* Veya istediğiniz genişlik, ortalama için daha az kısıtlayıcı olabilir */
  max-width: 1500px; /* Opsiyonel: Maksimum genişlik belirleyerek çok büyük ekranlarda dağılmasını önleyin */
  z-index: 10;
}

.feature-box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  text-decoration: none;
  background-color: #004a99;
  padding: 25px 15px;
  border-radius: 0px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  flex-grow: 1;
  flex-basis: 200px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.feature-box:hover {
  background-color: #0056b3;
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 36px;
  margin-bottom: 15px;
  z-index: 2;
}

.feature-box span {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  z-index: 2;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
  z-index: 2;
}

/* ANİMASYONLU BORDER (Değişiklik yok) */
.animated-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* --- YENİ KISIM BAŞLANGICI --- */

/* 1. ADIM: .animated-border::before içindeki eski animasyon satırını kaldırıp temel özellikleri ekliyoruz */
.animated-border::before {
  content: '';
  position: absolute;
  background-color: #ffdd57;
  /* Eski animasyon satırı silindi */
  animation-name: animate-border-sequentially; /* Yeni animasyon adını veriyoruz */
  animation-duration: 18s; /* Toplam döngü süresi (4 kart x 4.5s) */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* 2. ADIM: Her kart için negatif gecikme (delay) ekliyoruz */
.feature-bar > a:nth-child(2) .animated-border::before {
  animation-delay: -13.5s;
}

.feature-bar > a:nth-child(3) .animated-border::before {
  animation-delay: -9s;
}

.feature-bar > a:nth-child(4) .animated-border::before {
  animation-delay: -4.5s;
}

/* YENİ VE DOĞRU ANİMASYON KODLARI */

/* Her bir çizginin temel pozisyonu ve stili */
.animated-border .line {
    position: absolute;
    background-color: #ffdd57;
    opacity: 0; /* Animasyon başlayana kadar gizli */
}

.animated-border .line.top {
    top: 0; left: 0;
    width: 0; height: 3px;
}
.animated-border .line.right {
    top: 0; right: 0;
    width: 3px; height: 0;
}
.animated-border .line.bottom {
    bottom: 0; right: 0;
    width: 0; height: 3px;
}
.animated-border .line.left {
    bottom: 0; left: 0;
    width: 3px; height: 0;
}

/* JavaScript '.is-animating' sınıfını eklediğinde bu animasyonlar tetiklenir */
.feature-box.is-animating .line {
    opacity: 0.7; /* Çizgileri görünür yap */
}

.feature-box.is-animating .line.top {
    animation: animate-top 0.625s linear forwards;
}
.feature-box.is-animating .line.right {
    animation: animate-right 0.625s linear 0.625s forwards;
}
.feature-box.is-animating .line.bottom {
    animation: animate-bottom 0.625s linear 1.25s forwards;
}
.feature-box.is-animating .line.left {
    animation: animate-left 0.625s linear 1.875s forwards;
}

/* Her bir kenar için basit ve tekil animasyonlar */
@keyframes animate-top {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes animate-right {
    from { height: 0; }
    to { height: 100%; }
}

@keyframes animate-bottom {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes animate-left {
    from { height: 0; }
    to { height: 100%; }
}

@media (max-width: 1200px) { /* Daha büyük tabletler ve küçük masaüstü ekranlar */
  .feature-bar {
    position: relative; /* Fixed konumunu koru */
    bottom: 10px; /* Alt konumunu koru */
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* Genişliği artırarak daha fazla yer kaplamasını sağlarız */
    margin: 0 auto; /* Yatayda ortala */
    padding: 20px 2%; /* İç boşluk ekle */
  }
  /* Diğer responsive stiller aynı kalır */
}
@media (max-width: 767px) { /* Tabletler */
  .feature-bar {
    position: relative; /* Fixed konumunu koru */
    bottom: 10px; /* Alt konumunu koru */
    width: 95%;
    padding: 15px 2%;
  }
  /* Diğer responsive stiller aynı kalır */
}
@media (max-width: 576px) { /* Küçük tabletler ve büyük telefonlar */
  .feature-bar {
    position: relative; /* Fixed konumunu koru */
    bottom: 0px; /* Alt konumunu koru */
    width: 98%;
    padding: 10px 1%;
    flex-direction: column; /* Kartları dikey sırala */
    align-items: center; /* Dikeyde ortala */
  }
  /* Diğer responsive stiller aynı kalır */
}


/* ==========================================================================
   Sosyal Medya İkonları (Genel) ve Animasyonlar
   ========================================================================== */
.ikonlar {
    display: flex;
    gap: 15px;
}

.ikonlar a {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.ikonlar i {
    font-size: 22px;
    color: #696969;
    transition: color 0.3s ease;
}

.ikonlar a.ig {
    background-color: transparent;
    border: 2px solid #696969;
    padding: 5px 15px;
    border-radius: 5px;
    width: auto;
    height: auto;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ececec;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.ikonlar a.ig:hover {
    background-color: #c7255b;
    border-color: #c7255b;
    color: white;
}

/* Anahtar Kare Animasyonları */
@keyframes fadeInHero {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ==========================================================================
   Hero Bölümü Genel Stilleri (Masaüstü için varsayılan)
   ========================================================================== */
/* Google Fonts Import - Kodu CSS dosyanızın en üstüne eklemeyi unutmayın */
/* Veya Lora da düşünebilirsiniz: @import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600&display=swap'); */

.hero-banner {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh; /* Küçük ekranlarda en az 600px */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    z-index: 2;
}

.hero-content-box {
    max-width: 800px;
    width: 100%;
    /* Metin seçimini engelleme */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge */
    user-select: none;         /* Standart */
}

.hero-content-box h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* `h1` içindeki `span`'leri konumlandırmak için */
    display: flex; /* Flexbox kullanarak kelimeleri yan yana alır */
    flex-wrap: wrap; /* Kelimelerin sığmazsa alt satıra geçmesini sağlar */
    justify-content: center; /* Kelimeleri ortalar */
    gap: 0.5em; /* Kelimeler arasında boşluk bırakır */
    overflow: hidden; /* Animasyon başladığında kelimelerin yukarı kayarak gelmesi için taşmayı gizler */
}
.hero-content-box p {
    /* İsteğe bağlı p etiketi için de fontu ayarlayabiliriz */
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; /* Biraz daha büyük font boyutu */
    font-weight: 400;
    margin-bottom: 30px;
    /* Metin seçimini engelleme (eğer p etiketi kullanıyorsanız) */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-word {
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards;
  animation-delay: var(--delay, 0s);
  display: inline-block;
  will-change: opacity, transform;
}



/* Metin kutusunun altındaki paragraf için (isteğe bağlı) */
.animated-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s; /* Başlık animasyonundan sonra başlasın */
}

/* Animasyon tetiklendiğinde uygulanacak durum */
.animated-word.is-visible {
    opacity: 1; /* Görünür hale gelir */
    transform: translateY(0); /* Kendi orijinal konumuna gelir */
}

.animated-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive ayarlamalar (öncekilerle aynı kalabilir veya yeni font boyutu ile güncellenebilir) */
@media (max-width: 768px) {
    .hero-content-box h1 {
        font-size: 40px;
    }
    .hero-content-box p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-content-box h1 {
        font-size: 32px;
    }
    .hero-content-box p {
        font-size: 16px;
    }
}
/* ==========================================================================
   Responsive Düzenlemeler (Masaüstü/Tablet/Mobil)
   ========================================================================== */

/* Tablet ve Büyük Mobil Cihazlar İçin Ayarlar (örneğin 992px altı) */
@media (max-width: 992px) {
    .hero-banner {
        height: 65vh; /* Ekran yüksekliğinin %65'ini kaplasın */
    }

    .hero-content-box h1 {
        font-size: 40px;
    }

    .hero-content-box p {
        font-size: 18px;
    }
}

/* Küçük ekranlar için responsive ayarlamalar */
@media (max-width: 768px) {
    .hero-content-box h1 {
        font-size: 40px; /* Daha küçük ekranlarda font boyutunu küçült */
    }
    .hero-content-box p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-content-box h1 {
        font-size: 32px;
    }
    .hero-content-box p {
        font-size: 16px;
    }
}

/* Daha küçük Mobil Cihazlar İçin Ekstra Ayarlar (örneğin 576px altı) */
@media (max-width: 576px) {
    .hero-banner {
        min-height: 55vh; /* Ekran yüksekliğinin en az %55'ini kaplasın */
    }

    .hero-content-box h1 {
        font-size: 30px;
    }

    .hero-content-box p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .hero-overlay {
        padding: 0 15px;
    }
}
.main-wrapper {
  min-height: calc(100vh + 200px); /* Scroll oluşsun diye ekstra yükseklik */
}

/* ==========================================================================
   KVKK SAYFASI CSS
   ========================================================================== */

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;      /* Başlık üstte, kutu altta */
    align-items: center;
    padding: 80px 20px;
    background-color: #2e2f33;
}

.kvkk-title {
    max-width: 1300px;
    width: 100%;
    padding: 0 50px;
    font-size: 51px;             /* 30px × 1.7 ≈ 51px */
    font-weight: bold;
    color: #fff;
    margin-bottom: 40px;         /* Başlık ile kutu arası boşluk */
    text-align: left;
}

.kvkk-section {
    background-color: #2e2f33;
    color: #f4f4f4;
    display: flex;
    justify-content: center;
    max-width: 1300px;
    width: 100%;
}

.kvkk-box {
    background: #2e2f33;
    color: #fff;
    border-radius: 10px;
    padding: 60px 50px;
    font-size: 26px;             /* 20px × 1.3 = 26px */
    line-height: 1.9;
}

.kvkk-box p {
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
}

.kvkk-box a {
    color: #FAB403;
    text-decoration: underline;
    font-size: 26px;
    font-weight: 500;
}

.kvkk-box a:hover {
    color: #FAB403;
}

/*KULLANIM KOŞULLARI*/

.kullanim-kosullari {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  color: #f9f9f9;
  background-color: #2e2f33;
  border-radius: 10px;
  line-height: 1.7;
  font-size: 16px;
}

.kullanim-kosullari h1 {
text-align: center;
}

.kullanim-kosullari h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #f9f9f9;
  text-align: left;
  font-weight: 600;
}

.kullanim-kosullari h3 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #2e2f33;
  border-left: 5px solid #FAB403;
  padding-left: 10px;
}

.kullanim-kosullari p {
  margin-bottom: 15px;
  text-align: justify;
}

@media (max-width: 768px) {
  .kullanim-kosullari {
    padding: 20px 15px;
    font-size: 15px;
  }

  .kullanim-kosullari h2 {
    font-size: 26px;
  }

  .kullanim-kosullari h3 {
    font-size: 20px;
  }
}

/* Değişmeyen genel stiller zaten kullanıcı tarafından tanımlanmış */

.iletisim-section {
  padding: 80px 20px;
  background-color: #2e2f33;
  color: #fff;
}

.iletisim-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background-color: #3a3b3f;
  border-radius: 12px;
}

.iletisim-section h1 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  color: #FAB403;
}

.iletisim-section .info-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.iletisim-section .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.iletisim-section .info-item i {
  font-size: 1.4rem;
  color: #FAB403;
  min-width: 24px;
  text-align: center;
}

.iletisim-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .iletisim-section .container {
    padding: 20px;
  }

  .iletisim-section h1 {
    font-size: 1.8rem;
  }

  .iletisim-section .info-box {
    gap: 18px;
  }

  .iletisim-section iframe {
    height: 300px;
  }
}

/* Navbar yüksekliği için ana içerik boşluk ayarlamaları */
.main-content-with-padding {
    /* Navbar'ın yüksekliği 90px varsayıldı (nav CSS'inde belirtildiği gibi),
       biraz da ek boşluk bırakarak içeriğin tam altında başlamasını sağlarız. */
    padding-top: 120px;
}

@media (max-width: 1400px) { /* Mobil menü breakpoint'i */
    .main-content-with-padding {
        /* Mobil menü aktif olduğunda veya açıldığında farklı bir boşluk değeri
           gerekebilir. Buradaki 90px, mobil navbar yüksekliğine eşittir. */
        padding-top: 90px;
    }
}

/* Tüm HTML'lerdeki manuel <br> etiketleri yerine genel bir çözüm:
   Eğer bir section veya main element navbar'dan sonra gelen ilk içerikse
   veya page-wrapper içinde değilse, üstten boşluk bırakırız. */
body > .main-content:first-of-type,
body > section:first-of-type:not(.hero-banner), /* Hero banner'lar genellikle farklı davranır */
body > div:first-of-type:not(.page-wrapper):not(#navbar-placeholder) {
    margin-top: 90px; /* Navbar yüksekliğine göre boşluk */
}

@media (max-width: 1400px) {
    body > .main-content:first-of-type,
    body > section:first-of-type:not(.hero-banner),
    body > div:first-of-type:not(.page-wrapper):not(#navbar-placeholder) {
        margin-top: 90px; /* Mobil görünüm için gerekirse farklı bir değer */
    }
}
/*bayilik başvuru formu*/
.bayilik-form-section .container {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #3a3b3f;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.bayilik-form-section h1 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.bayilik-form-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #FAB403;
  padding-bottom: 6px;
}

.bayilik-form {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.bayilik-form .form-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bayilik-form .form-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bayilik-form label {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bayilik-form input,
.bayilik-form textarea {
  padding: 10px;
  border: 1px solid #555;
  background-color: #2e2f33;
  color: #fff;
  border-radius: 6px;
  font-size: 0.95rem;
}

.bayilik-form textarea {
  resize: vertical;
  min-height: 80px;
}

.bayilik-form button[type="submit"] {
  background-color: #e63946;
  color: #fff;
  border: none;
  padding: 10px 20px; /* Buton iç boşluğunu küçült */
  border-radius: 6px;
  font-size: 0.9rem; /* Buton yazı boyutunu küçült */
  cursor: pointer;
  transition: background 0.3s;
  height: fit-content; /* Butonun yüksekliğini içeriğine göre ayarla */
}

.bayilik-form button[type="submit"]:hover {
  background-color: #d62828;
}

.bayilik-form button[type="submit"] {
  margin-left: 180px; /* veya 20px — sağa ne kadar kaymasını istiyorsan */

}

@media (max-width: 768px) {
  .bayilik-form {
    flex-direction: column;
  }

  .bayilik-form .captcha-group-inline {
    flex-direction: column; /* Küçük ekranlarda alt alta sırala */
    align-items: flex-start; /* Sola hizala */
  }

  .bayilik-form .captcha-group-inline input {
    width: 100%; /* Küçük ekranlarda input genişliğini ayarla */
  }

  .bayilik-form button[type="submit"] {
    width: 100%; /* Küçük ekranlarda butonu tam genişlik yap */
  }
}


/* İş Başvuru Formu Section Stilleri (Bayilik formuyla benzerlik artırıldı) */
.job-application-section .container {
    max-width: 900px; /* Max genişlik */
    margin: 40px auto; /* Üstten/alttan 40px, sağdan/soldan otomatik marj ile yatayda ortalama */
    background-color: #3a3b3f; /* Belirtilen form arka plan rengi */
    padding: 40px;
    border-radius: 12px; /* Bayilik formuyla aynı radius */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4); /* Bayilik formuyla aynı gölge */
    display: flex;
    flex-direction: column;
}

/* Başlık Stilleri (Bayilik formuyla benzerlik artırıldı) */
.job-application-section h1 {
    text-align: center;
    font-size: 2.4rem; /* Bayilik formuyla aynı font boyutu */
    margin-bottom: 30px; /* Bayilik formuyla aynı marjin */
    color: #FAB403; /* Başlık rengi sarı */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.job-application-section h2 {
    font-size: 1.5rem; /* Bayilik formuyla aynı font boyutu */
    margin-bottom: 20px; /* Bayilik formuyla aynı marjin */
    border-bottom: 2px solid #FAB403; /* Alt çizgi sarı ve aynı kalınlık */
    padding-bottom: 6px; /* Bayilik formuyla aynı padding */
    color: #fff;
    text-transform: uppercase;
}

/* Form Yapısı (Bayilik formuyla benzerlik artırıldı) */
.job-application-form {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Bayilik formuyla aynı boşluk */
    margin-bottom: 30px; /* Form altındaki boşluk */
}

.job-application-form .form-left,
.job-application-form .form-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Bayilik formuyla aynı boşluk */
    min-width: 300px;
}

/* Label Stilleri (Bayilik formuyla aynı) */
.job-application-form label {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #fff;
}

/* Input ve Textarea Stilleri (Bayilik formuyla aynı) */
.job-application-form input[type="text"],
.job-application-form input[type="email"],
.job-application-form input[type="tel"],
.job-application-form input[type="date"],
.job-application-form textarea {
    padding: 10px;
    border: 1px solid #555;
    background-color: #2e2f33;
    color: #fff;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.job-application-form input:focus,
.job-application-form textarea:focus {
    border-color: #FAB403;
    box-shadow: 0 0 0 3px rgba(250, 180, 3, 0.3);
    outline: none;
}

.job-application-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Dosya Yükleme Stilleri */
.file-upload-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px; /* Padding ayarı */
    border: 1px solid #555;
    background-color: #2e2f33;
    color: #FAB403;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    font-size: 0.95rem;
}

.file-upload-label:hover {
    background-color: #3e3f43;
    border-color: #FAB403;
}

.file-upload-label input[type="file"] {
    display: none;
}

.file-upload-label .file-name {
    flex-grow: 1;
    color: #fff;
    font-size: 0.95rem;
}

.file-upload-label::before {
    content: '📁';
    font-size: 1.1rem;
    margin-right: 5px;
}

.file-info {
    font-size: 0.85rem;
    color: #bbb;
    margin-left: 5px;
}

/* Checkbox Stilleri */
.form-bottom-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #2e2f33;
    border: 1px solid #555;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #3e3f43;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #FAB403;
    border-color: #FAB403;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #3a3b3f;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Gönder Butonu (Bayilik formuyla uyumlu kırmızı buton) */
.job-application-form button[type="submit"] {
    background-color: #e63946; /* Kırmızı ton */
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-application-form button[type="submit"]:hover {
    background-color: #d62828;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .job-application-form {
        flex-direction: column;
        gap: 30px;
    }

    .job-application-section .container {
        padding: 30px;
        margin: 20px;
    }

    .job-application-section h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .job-application-section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .job-application-form label,
    .job-application-form input,
    .job-application-form textarea,
    .job-application-form button[type="submit"] {
        font-size: 0.95rem;
    }

    .file-upload-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .job-application-section .container {
        padding: 20px;
        margin: 10px;
    }

    .job-application-section h1 {
        font-size: 1.8rem;
    }

    .job-application-form button[type="submit"] {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/* Ürün Listesi */
.product-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  align-items: stretch;
}

.product {
  width: calc(33.333% - 30px);
  display: flex;
  flex-direction: column;
  background-color: #2e2f33;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.container-left {
  max-width: 1500px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}



.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.product img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product:hover img {
  transform: scale(1.05);
}

.altbaslik {
  padding: 10px 0 20px;
  background-color: transparent;
}

.altbaslik h3 {
  margin: 0;
  color: #f4f4f4;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.3s;
  text-decoration: none;
}

.altbaslik h3 a {
  text-decoration: none;
  color: #f4f4f4;
  display: inline-block;
}

.altbaslik h3 a:hover {
  color: #fab403;
}

.cizgi {
  flex: 1;
  border: none;
  height: 2px;
  background-color: #fff;
  margin: 30px 0;
}

.yazi-cizgi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
  flex-wrap: wrap;
  max-width: 1200px;
  padding: 0 20px;
}

/* responsive görünüm için */
@media (max-width: 1024px) {
  .product {
    width: calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .product {
    width: 100%;
  }
}

.urunler-baslik {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin: 40px 0 20px;
  letter-spacing: 0.5px;
}


/*ÇEREZLER*/
.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.cookie-consent-overlay.show {
    display: flex;
}

.cookie-consent-box {
    background-color: #0056b3;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.cookie-consent-box h2 {
    margin-bottom: 10px;
    font-size: 36px;
    color: #ffffff;
}

.cookie-consent-box a {

    color: #FAB403;
    text-decoration: none;

}
.cookie-consent-box a:hover {

    color: #c78f02;
    text-decoration: none;

}

.cookie-consent-box p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cookie-consent-box .cookie-buttons button {
    margin: 0 10px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
    color: #0056b3;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-consent-box .cookie-buttons button:hover {
    background-color: #FAB403;
}


/*bayilerimiz css*/

.map-wrapper {
  position: relative; /* İçindeki absolute konumlandırılmış öğeler için referans noktası */
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1200 / 657;
  padding-top: 20px;  /* Üst boşluğu azalt */
  padding-bottom: 0px;
  border-radius: 5px;
  overflow: hidden; /* Taşmaları engeller */
}

/* 2. Arka plan resmini ekliyoruz */
.map-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;   /* Alanı tam doldurur, oranı korur */
  background-position: center;
  opacity: 0.1;             /* Üstteki haritayı belirginleştirir */
}

#svg-harita-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    min-height: 400px; /* ✨ mobilde bile yer kaplamasını sağlar */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}


/* SVG Türkiye Haritası */
#svg-turkiye {
    width: 100%;
    height: auto;
    display: block;
    fill: #FAB403;
    stroke: rgba(112, 112, 112, 0.6);
    stroke-width: 1px;
    transition: fill 0.2s ease;
    margin-bottom: 0;
    z-index: 15;
}

footer, #footer-placeholder {
    margin-top: auto;
  flex-shrink: 0;
}


/* Hover Etkisi */
#svg-turkiye g:not(.is-selected) path:hover {
    fill: rgba(250, 180, 3, 0.4);
}

/* Seçilen İl */
#svg-turkiye g.is-selected path {
    fill: #FAB403 !important;
    stroke: #fff;
    stroke-width: 2px;
}
/* Harita Başlığı */
.map-title {
    text-align: center; /* Başlığı ortala */
    color: #f9f9f9; /* Beyaz veya sayfanın genel yazı rengi */
    font-family: 'Oswald', sans-serif; /* Navbar veya diğer başlıklarınızla uyumlu font */
    font-size: em; /* Başlık boyutunu ayarlayın, istediğiniz gibi değiştirebilirsiniz */
    font-weight: 700; /* Kalınlık */
    text-transform: uppercase; /* Tüm harfleri büyüt */
    letter-spacing: 2px; /* Harfler arasında boşluk */
    padding-top: 0px; /* Üstten boşluk */
}

/* Responsive Düzenlemeler (isteğe bağlı) */
@media (max-width: 768px) {
    .map-title {
        font-size: 2.5em;
        margin-bottom: 0px;
    }
}

@media (max-width: 480px) {
    .map-title {
        font-size: 2em;
        margin-bottom: 0px;
    }
}

/* Hover İl Adı */
#hover-il-adi {
    position: absolute;
    bottom: 20px; /* Haritanın altından yukarı doğru 20px boşluk */
    left: 50%;
    transform: translateX(-50%);
    background-color: #2e2f33; /* bayi-card ile aynı arka plan */
    color: #f9f9f9; /* bayi-card ile aynı yazı rengi */
    padding: 15px 20px; /* bayi-card padding'ine benzer */
    border-radius: 8px; /* bayi-card ile aynı border-radius */
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 0.2s ease-in-out, transform 0.2s ease; /* yumuşak geçiş */
    pointer-events: none; /* Üzerine tıklanamaz, harita etkileşimlerini engellemez */
    z-index: 10; /* Diğer harita öğelerinin üzerinde olsun */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* bayi-card ile aynı gölge */
    border: 1px solid rgba(250, 180, 3, 0.3); /* Sarı tonlarda hafif bir kenarlık ekleyebiliriz */
}

/* ----- Mevcut Bayi Listesi CSS Kodlarınız Olduğu Gibi Kalabilir ----- */
#bayi-listesi-kapsayici {
    width: 100%;                      /* Genişliği %90'a düşürdük */
    max-width: 780px;                /* Ekran çok büyüse bile en fazla 750px olsun */
    margin-left: auto;               /* Bu ve altındaki satır, kutuyu ortalar */
    margin-right: auto;
    margin-top: 20px; 
    margin-bottom: 20px; 
    padding: 20px;
    background-color: #3a3b3f;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
}

#bayi-listesi-kapsayici.hidden {
    display: none;
}

#secilen-il-adi {
    margin-bottom: 30px;
    font-size: 32px;
    color: #FAB403;
    font-weight: 700;
}

/* Bayi Kartları İçin Grid Yapısı */
.bayi-grid-container {
    display: grid;
    grid-template-columns: 1fr; /* Sadece bu satırı değiştirin */
    gap: 25px; 
    justify-content: center; 
    padding: 20px 0;
}

/* Her Bir Bayi Kartı */
.bayi-card {
    background-color: #4a4c51; /* Daha açık koyu gri kart arka planı */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bayi-card:hover {
    transform: translateY(-5px); /* Hafif yukarı kalkma efekti */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.bayi-card h3 {
    color: #FAB403; /* Sarı başlık */
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 2px solid rgba(250, 180, 3, 0.3);
    padding-bottom: 10px;
}

.bayi-card p {
    color: #ccc; /* Açık gri yazı */
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
}

.bayi-card p i {
    color: #FAB403; /* İkon rengi */
    margin-right: 8px;
    font-size: 16px;
}


/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    #bayi-listesi-kapsayici {
        padding: 15px;
        margin-top: 30px;
    }

    #secilen-il-adi {
        font-size: 28px;
    }

    .bayi-grid-container {
        grid-template-columns: 1fr; /* Küçük ekranlarda tek kolon */
        gap: 20px;
    }

    .bayi-card {
        padding: 20px;
    }

    .bayi-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    #secilen-il-adi {
        font-size: 24px;
    }

    .bayi-card p {
        font-size: 14px;
    }
}

.hidden {
    display: none !important;
}   

/*bizkimiz.css*/

#grup-sirketler h2 {
    text-align: center;
    margin-top: 10px; /* Üst boşluğu ayarlayın */
    margin-bottom: 10px; /* Alt boşluğu ayarlayın */
}

#grup-sirketler.banner-alt {
    padding-top: 10px; /* Örnek değer, üst iç boşluğu ayarlayın */
    padding-bottom: 20px; /* Örnek değer, alt iç boşluğu ayarlayın */
}

.grup-sirket-container { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.grup-sirket {
    flex-basis: calc(33.333% - 27px);
    max-width: 280px; 
    text-align: center; 
}

@media (max-width: 992px) { 
    .grup-sirket {
        flex-basis: calc(50% - 20px); 
        max-width: unset; 
    }
}

@media (max-width: 600px) { 
    .grup-sirket {
        flex-basis: 100%; 
        max-width: unset;
    }
}

.harita-arka-plan {
    color: #004494;
    background-size: 100% 100%;           /* SVG ile aynı ölçek */
    background-position: center center;   /* Orta konumlandırma */
    background-repeat: no-repeat;
    width: 100%;
    max-width: 1200px;                    /* Görsel boyutuna sabitlenmiş */
    aspect-ratio: 3 / 2;                  /* 1536 / 1024 = 1.5 */
    margin: 0 auto;
    position: relative;
}


.harita-arka-plan svg {
    position: relative;
    z-index: 2;
    width: 100%;
}

.map-subtitle {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #f1f1f1;
  margin-top: 12px;
  margin-bottom: 28px;
  line-height: 1.8; /* 🔹 Satır yüksekliği artırıldı */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
}

.bestcard-ayricaliklari {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.bestcard-ayricaliklari .container {
  max-width: 1200px;
  width: 100%;
}

.bestcard-ayricaliklari h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #f1f1f1;
  text-align: center;
}

.bestcard-ayricaliklari p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.popup {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    z-index: 9999;
    display: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.popup-box {
    text-align: center;
}

.popup-buttons button {
    margin: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.popup-buttons button:first-child { background-color: #ffffff; color: white; }
.popup-buttons button:nth-child(2) { background-color: #28a745; color: white; }
.popup-buttons button:last-child { background-color: #dc3545; color: white; }


.vision-mission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
  }

  .vision-box, .mission-box {
    flex: 1 1 45%;
    background-color: #2e2f33;
    padding: 20px;
    border-radius: 8px;
  }

  .vision-box h2, .mission-box h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .vision-box p, .mission-box p {
    color: #ffffff;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .vision-box, .mission-box {
      flex: 1 1 100%;
    }
  }

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
      overflow-y: hidden;
}

main {
  flex: 1;
}
#footer-placeholder {
  margin-top: auto;
}

/* Bayiler sayfası: sabit 100vh yerine akışa göre uzasın */
.page-wrapper.page-scroll {
  height: auto;        /* 100vh sabiti kalkıyor */
  min-height: 100vh;   /* yine de en az tam ekran kadar olsun */
  overflow-y: auto; /* içerik taşınca görünür kalsın */
}

/* Harita alanı güvenli yükseklik + responsive */
.map-wrapper {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  min-height: 520px;    /* footer'ın "yutmasını" engeller */
}

#svg-harita-container {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 380px;    /* SVG yüklenene kadar da yer tut */
}

/* SVG tam genişlik, orantılı yükseklik */
#svg-harita-container svg,
#svg-turkiye {
  width: 100%;
  height: auto;
  display: block;
}

/* Küçük ekranlarda biraz daha yüksek tutalım */
@media (max-width: 768px) {
  .map-wrapper { min-height: 620px; }
  #svg-harita-container { min-height: 420px; }
}
