/* GENEL SIFIRLAMA */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #0a1f44; /* lacivert */
}

/* GENEL KONTEYNER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ÜST MENÜ */
.top-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #0a1f44;
}

.logo span {
  color: #1f4ed8; /* vurgu lacivert tonu */
}

.logo-icon {
  font-size: 14px;
  background: #ffd700;
  color: #0b2a4a;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: bold;
}
.menu-cta {
    background: #ff0000; /* kırmızı arka plan */
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}
.menu-cta:hover {
    background: #cc0000; /* hover koyu kırmızı */
}

.menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #0a1f44;
  font-weight: 600;
}

.menu a:hover {
  text-decoration: underline;
}

.menu-call {
  padding: 8px 14px;
  border: 1px solid #0a1f44;
}

/* HERO */
.hero {
  background: #f4f7fb;
  padding: 70px 0;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-button {
  display: inline-block;
  padding: 14px 28px;
  background: #0a1f44;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
}

/* BİLGİ ALANI */
.info {
  padding: 50px 0;
}

.info h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.uyari {
  color: #555;
  font-size: 14px;
}

/* ALT SABİT ÇAĞRI BUTONU - GÜNCELLEME */
.fixed-call {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #800000; /* Bordo renk */
  text-align: center;
  padding: 16px 0;    /* biraz daha büyük */
  z-index: 1000;
}

.fixed-call a {
  color: #ffffff;
  font-size: 20px;     /* yazıyı büyüttük */
  font-weight: bold;
  text-decoration: none;
}


/* AÇILIR MENÜ - İLÇELER */
.dropdown {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  color: #0a1f44;
  font-weight: 500;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #ffffff;
  min-width: 180px;
  border: 1px solid #e5e5e5;
  top: 100%;
  left: 0;
  z-index: 1000;
}
.dropdown.active .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: #0a1f44;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-content a:hover {
  background: #f4f7fb;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.hero-slider .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 60px;
  background: linear-gradient(
  to right,
  rgba(0, 0, 0, 0.65),
  rgba(0, 0, 0, 0.25)
);
backdrop-filter: blur(2px);

  color: #fff;
}

.hero-slider h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-slider p {
  font-size: 18px;
  margin-bottom: 25px;
  max-width: 600px;
}

.hero-slider .hero-button {
  background: #0a2a66;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

/* NEDEN BİZ */
.why-us {
  background: #f4f7fb;
  padding: 70px 0;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  color: #0a2a66;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.why-box {
  background: #f5f5f5;
  border: 1px solid #ccc;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.why-box h3 {
  color: #0a2a66;
  margin-bottom: 12px;
  font-size: 20px;
}

.why-box p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.why-icon {
  font-size: 36px;
  margin-bottom: 15px;
  display: block;
}

/* HİZMETLER */
.services-special {
  background: #f8fafc;
  padding: 90px 0;
}

.services-special h2 {
  text-align: center;
  font-size: 34px;
  color: #0a2a66;
  margin-bottom: 15px;
}

.services-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  font-size: 17px;
  color: #444;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-box img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.service-box h3 {
  font-size: 20px;
  color: #0a2a66;
  margin: 20px 20px 10px 20px;
}

.service-box p {
  font-size: 15px;
  color: #555;
  margin: 0 20px 25px 20px;
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 50px;
}

.services-call-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #0a2a66;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.services-call-btn:hover {
  background: #081f4d;
}

/* Responsive ayarlar */
@media (max-width: 992px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
@media (max-width: 500px) { .why-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .services-grid { grid-template-columns: 1fr; } }

.why-special-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kutu yan yana */
    gap: 20px;
}

.why-special-box {
    background: #f4f7fb;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-special-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.why-special-icon {
    font-size: 42px;
    margin-bottom: 12px;
    display: block;
}
.why-special-box h3 {
    font-size: 20px;
    color: #0b2a4a;
    margin-bottom: 8px;
}
.why-special-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kutu yan yana */
    gap: 20px;
}

.step-box {
    background: #f8fafc;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.step-box:hover {
    transform: translateY(-5px);
}
.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #0b2a4a;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}
.step-box h3 {
    font-size: 18px;
    color: #0a2a66;
    margin-bottom: 10px;
}
.step-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.service-areas-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap; /* mobil uyum */
}

.service-list {
    flex: 1;
    background: #f4f7fb; /* kutu görünümü */
    border-radius: 8px;
    padding: 20px;
}

.service-list h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #0b2a4a;
}

.service-list ul li {
    margin-bottom: 8px;
}

.service-list ul li a {
    color: #1e5fa3;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

.service-list ul li a:hover {
    background: #e0ebfa;
}

.service-map {
    flex: 2; /* haritayı daha geniş göster */
}
.why-special h2 {
    text-align: center;   /* Başlığı ortala */
    font-size: 36px;      /* Başlığı biraz büyüt */
    color: #0b2a4a;       /* Lacivert ton, başlık gibi */
    margin-bottom: 30px;  /* Kutularla arada boşluk */
    font-weight: bold;    /* Başlık gibi vurgulu */
}

.why-desc {
    text-align: center;   /* Alt açıklamayı da ortala */
    font-size: 18px;      /* Biraz daha büyük yap */
    max-width: 800px;     /* Satır uzunluğu kontrolü */
    margin: 0 auto 40px auto; /* Ortala ve alt boşluk bırak */
    color: #444;
    line-height: 1.6;
}
.how-it-works h2 {
    text-align: center;      /* Ortala */
    font-size: 36px;         /* Diğer başlıklarla aynı boyut */
    color: #0b2a4a;          /* Lacivert ton */
    margin-bottom: 30px;     /* Kutularla arada daha fazla boşluk */
    font-weight: bold;       /* Başlık vurgulu */
}

.how-desc {
    text-align: center;       /* Ortala */
    font-size: 18px;          /* Biraz daha büyük */
    max-width: 800px;         /* Satır uzunluğu kontrolü */
    margin: 0 auto 40px auto; /* Alt boşluk bırak */
    color: #444;
    line-height: 1.6;
}
.why-advantages h2 {
    text-align: center;      /* Ortala */
    font-size: 36px;         /* Diğer başlıklarla aynı boyut */
    color: #0b2a4a;          /* Lacivert ton */
    margin-bottom: 30px;     /* Kutularla arada boşluk */
    font-weight: bold;       /* Başlık vurgulu */
}
.home-faq h2 {
    text-align: center;      /* Başlığı ortala */
    font-size: 32px;         /* Diğer başlıklarla aynı büyüklük */
    color: #0a2a66;          /* Başlık rengi */
    margin-bottom: 50px;     /* Kutularla arasındaki boşluk */
}
.home-faq-box {
    background: #f4f7fb;           /* Açık kutu rengi */
    border: 1px solid #ddd;        /* Hafif çerçeve */
    padding: 25px 20px;            /* İç boşluk */
    border-radius: 8px;            /* Köşeleri yuvarla */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Hafif gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-faq-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.home-faq-box h3 {
    font-size: 18px;
    color: #0a2a66;
    margin-bottom: 12px;
}

.home-faq-box p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}
.home-faq-box {
    background: #f4f7fb;           /* Açık kutu rengi */
    border: 1px solid #ddd;        /* Hafif çerçeve */
    padding: 25px 20px;            /* İç boşluk */
    border-radius: 8px;            /* Köşeleri yuvarla */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Hafif gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-faq-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.home-faq-box h3 {
    font-size: 18px;
    color: #0a2a66;
    margin-bottom: 12px;
}

.home-faq-box p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}
.hero-slider { padding: 100px 0; }        /* Üst-alt boşluğu biraz artır */
.why-special { padding: 100px 0; }
.services-special { padding: 100px 0; }
.how-it-works { padding: 100px 0; }
.why-advantages { padding: 100px 0; }
.home-faq { padding: 100px 0; }
.service-areas { padding: 100px 0; }
.about { padding: 100px 0; }
.cta { padding: 100px 0; }
@media (max-width: 768px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
/* Hakkımızda ortala ve başlığı büyüt */
.about-center {
    text-align: center;
}

.about-center h2 {
    font-size: 36px; /* Başlık büyüklüğü */
    color: #0b2a4a;  /* Lacivert tonu */
    margin-bottom: 25px;
}

.about-center p {
    font-size: 17px;   /* Yazı büyüklüğü biraz artırıldı */
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}
/* FOOTER GENEL */
.footer {
    background: #0b2a4a;
    color: #fff;
    padding: 50px 0 20px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Masaüstünde 4 kolon yan yana */
    gap: 30px;
}

.footer h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #ffffff;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-call {
    display: inline-block;
    margin-top: 8px;
    font-weight: bold;
    color: #ffd700;
    font-size: 16px;
}

/* ALT BİLGİ BAR */
.footer-bottom {
    display: block;
    width: 100%;
    background-color: #081f36;
    color: #fff;
    text-align: center;
    font-size: 13px;
    padding: 15px 0;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        gap: 20px;
        text-align: center;
    }
    .footer ul li {
        margin-bottom: 6px;
    }
    .footer-call {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer-bottom p {
        font-size: 12px;
        padding: 10px 5px;
    }
}
/* İLETİŞİM BÖLÜMÜ */
.contact-section {
    background: #f4f7fb;
    padding: 80px 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

/* Sol taraf: Bilgiler */
.contact-info h2 {
    font-size: 32px;
    color: #0b2a4a;
    margin-bottom: 25px;
    text-align: left;
}

.contact-info p, .contact-info li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #444;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
}

.contact-info ul li a {
    color: #1e5fa3;
    text-decoration: none;
}

.contact-info ul li a:hover {
    text-decoration: underline;
}

/* Sağ taraf: Form */
.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0b2a44;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    width: 100%;
}

.contact-form button {
    background: #0b2a44;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #1e5fa3;
}

/* Responsive */
@media(max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-info, .contact-form {
        text-align: center;
    }
}
/* Merak Edilenler başlığı ve kutuları */
.home-faq {
  background: #f8fafc;
  padding: 80px 0;
}

.home-faq .section-title {
  text-align: center; /* Başlığı ortala */
  font-size: 32px;    /* Başlığı büyüt */
  color: #0a2a66;     /* Başlık rengi */
  margin-bottom: 50px;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.home-faq-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: left; /* Yazılar kutu içinde sola yaslı */
}

.home-faq-box h3 {
  font-size: 18px;
  color: #0a2a66;
  margin-bottom: 12px;
}

.home-faq-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Mobil uyum */
@media (max-width: 900px) {
  .home-faq-grid {
    grid-template-columns: 1fr;
  }
}
.home-faq-box {
  display: block; /* Link kutu gibi görünmeye devam etsin */
  background: #ffffff;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: left;
  text-decoration: none; /* Alt çizgiyi kaldır */
  color: inherit; /* Yazı rengi bozulmasın */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-faq-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
/* Menü genel ayarları */
.menu {
  display: flex;
  align-items: center;
  gap: 20px; /* Menü elemanları arasında boşluk */
}

/* Hemen Ara butonu */
.menu-cta {
  background: #ff0000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap; /* Metin satır kaymasın */
  font-size: 14px; /* Menü ile uyumlu boyut */
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu-cta:hover {
  background: #cc0000;
}

/* Dropdown (Kurumsal) ve diğer linkler */
.menu a, .menu span {
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

/* Kurumsal dropdown hover */
.dropdown:hover .dropdown-content {
  display: block;
}
/* Mobil hero slider düzeltmesi */
@media (max-width: 768px) {
  .hero-slider {
    height: 400px; /* Mobilde slider yüksekliği */
  }
  .hero-slider .slide {
    background-size: cover; /* Görsel alanı kaplasın */
    background-position: center center; /* Ortalanmış */
  }
  .hero-slider .hero-content {
    padding: 0 20px; /* İçerik yanlara çok yapışmasın */
    text-align: center; /* Başlık ve açıklama ortalansın */
    justify-content: center; /* İçerik dikey ortada */
  }
  .hero-slider h1 {
    font-size: 28px; /* Başlık boyutu küçült */
  }
  .hero-slider p {
    font-size: 16px; /* Açıklama boyutu küçült */
  }
  .hero-slider .hero-button {
    font-size: 16px;
    padding: 12px 20px;
  }
}
/* Tüm sayfada yatay kaymayı önle */
body, html {
  max-width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .hero-slider {
    width: 100%;       /* tam genişlik */
    height: 400px;     /* mobilde yüksekliği sabitle */
    overflow: hidden;  /* taşan görsel kesilsin ama kaydırma olmasın */
  }
  .hero-slider .slide {
    width: 100%;
    background-size: cover;
    background-position: center;
  }
  .hero-slider .hero-content {
    padding: 0 15px;   /* yan boşluk */
    text-align: center;
    justify-content: center; 
    align-items: center; 
  }
}
@media (max-width: 768px) {
  .service-map iframe {
    width: 100%;
    height: 300px;   /* daha kompakt */
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    width: 95%;  /* mobilde çok geniş olmasın */
    margin: 0 auto;
  }
  .service-areas-flex {
    flex-direction: column;
    gap: 20px;
  }
}
/* Masaüstü */
.why-special-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Orta ekran (tablet) */
@media (max-width: 992px) {
  .why-special-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kutu yan yana */
  }
}

/* Küçük ekran (mobil) */
@media (max-width: 600px) {
  .why-special-grid {
    grid-template-columns: 1fr; /* 1 kutu alt alta */
  }
}
/* Nasıl Çalışıyoruz - Responsive */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 kutu yan yana */
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr; /* Mobil: 1 kutu alt alta */
  }
}
/* ===== MOBİL HAMBURGER MENÜ ===== */

/* Hamburger checkbox gizle */
#menu-toggle {
  display: none;
}

/* Hamburger ikon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0a1f44;
  border-radius: 3px;
}

/* Masaüstü */
@media (min-width: 901px) {
  .menu {
    display: flex;
  }
}

/* Mobil */
@media (max-width: 900px) {

  .hamburger {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
    border-top: 1px solid #ddd;
    z-index: 999;
  }

  .menu a,
  .menu span {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .menu-cta {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }

  /* checkbox açıkken menüyü göster */
  #menu-toggle:checked + .hamburger + .menu {
    display: flex;
  }

  /* Dropdown mobilde alt alta açılsın */
  .dropdown-content {
    position: static;
    border: none;
    width: 100%;
  }

  .dropdown-content a {
    padding-left: 15px;
  }
}
/* =========================
   MOBİL HAMBURGER MENÜ
   ========================= */

/* Checkbox gizle */
#menu-toggle {
  display: none;
}

/* Hamburger ikon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0a1f44;
  border-radius: 2px;
}

/* MOBİL */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    display: none;
    border-top: 1px solid #e5e5e5;
    z-index: 999;
  }

  .menu a,
  .menu .dropdown {
    margin: 10px 0;
  }

  /* TIKLANINCA MENÜYÜ AÇ */
  #menu-toggle:checked ~ .menu {
    display: flex;
  }

  /* Dropdown mobilde statik açılsın */
  .dropdown-content {
    position: static;
    border: none;
    box-shadow: none;
    margin-top: 10px;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
}
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    display: block;
  }

  .menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    z-index: 1000;
  }

  #menu-toggle:checked + .hamburger + .menu {
    display: flex;
  }
}
/* Telefon ikonu animasyonu */
@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  50% { transform: rotate(15deg); }
  75% { transform: rotate(-10deg); }
}

.fixed-call .phone-icon {
  display: inline-block;
  margin-right: 8px;
  animation: shake 1.5s infinite;
}
/* ÇEREZ BİLDİRİM BAR */
#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 9999;
}

#cookie-bar a {
  color: #f0c040;
  text-decoration: underline;
}

#cookie-bar button {
  background: #8b0000; /* bordo */
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
}

#cookie-bar button:hover {
  background: #a40000;
}
.hero-slider h1,
.hero-slider p {
  text-shadow: 0 3px 10px rgba(0,0,0,0.8);
}
/* Çankaya Hero Görseli */
.hero-slider.cankaya {
  background-image: url('../images/slider1.jpg');
}

/* Hero çağrı butonu */
.hero-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 16px 40px;
  background: #800000;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  animation: pulse 1.2s infinite;
}

.hero-call-btn i {
  animation: shake 0.8s infinite;
}

/* Küçük hero kutuları */
.hero-mini-features {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.hero-mini-features .mini-box {
  background: rgba(255,255,255,0.95);
  color: #800000;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

/* Animasyonlar */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shake {
  0% { transform: rotate(0); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(-10deg); }
  75% { transform: rotate(8deg); }
  100% { transform: rotate(-8deg); }
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
/* ===== HEADER FIX ===== */
.top-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Menü PC görünümü */
@media (min-width: 901px) {
  .top-header .menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-left: auto;
  }
}
.top-header .logo {
  flex-shrink: 0;
}
.top-header .logo img {
  min-height: 90px;
  width: auto;
}
.logo img {
  height: 70px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }
}
