
:root {
  --primary: #1e3c72;
  --secondary: #203a43;
  --accent: #ffcd39;
  --white: #fff;
  --gray-light: #f5f5f5;
  --radius: 6px;
  --transition: 0.3s;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ——————————————————————————————————————————————————————————  
   2. Genel Bölümler & Animasyon
   —————————————————————————————————————————————————————————— */
section {
  padding: 80px 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

section:nth-of-type(1) { animation-delay: 0.2s; }
section:nth-of-type(2) { animation-delay: 0.4s; }
section:nth-of-type(3) { animation-delay: 0.6s; }
section:nth-of-type(4) { animation-delay: 0.8s; }
section:nth-of-type(5) { animation-delay: 1s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ——————————————————————————————————————————————————————————  
   3. Hero & Partikül Arka Plan
   —————————————————————————————————————————————————————————— */
.hero {
  position: relative;
    height: 100vh;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(183deg, rgb(102 156 255), rgb(24 83 119 / 70%));
    color: var(--white);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero .btn {
  background: var(--accent);
  color: var(--secondary);
  padding: 15px 40px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.hero .btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* tsParticles için canvas kapsayıcı */
#tsparticles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* Hero içeriği */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ——————————————————————————————————————————————————————————  
   4. Sabit Çağrı Düğmesi
   —————————————————————————————————————————————————————————— */
.call-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index:1000;
}

.call-button a {
  display: block;
  background: var(--accent);
  padding: 18px;
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--secondary);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.call-button a:hover {
  transform: scale(1.15);
}

/* ——————————————————————————————————————————————————————————  
   5. Services (Hizmetler)
   —————————————————————————————————————————————————————————— */
#services {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
  perspective: 600px;
}

.card:hover {
  transform: rotateX(10deg) translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.4rem;
}

.card p {
  font-size: 1rem;
  color: #555;
}

/* ——————————————————————————————————————————————————————————  
   6. Why Us (Neden Biz)
   —————————————————————————————————————————————————————————— */
#why-us {
  background: linear-gradient(135deg, rgba(30,60,114,0.1), rgba(32,58,67,0.1));
}

#why-us h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: var(--primary);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-10px) rotateZ(-1deg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.feature h3 {
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: 1.3rem;
}

.feature p {
  font-size: 1rem;
  color: #555;
}

/* ——————————————————————————————————————————————————————————  
   7. Process (Nasıl Çalışır)
   —————————————————————————————————————————————————————————— */
#process ol {
  counter-reset: step;
  list-style: none;
  max-width: 600px;
  margin: auto;
  padding-left: 0;
}

#process li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

#process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 50px; height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#process li h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.2rem;
}

#process li p {
  color: #555;
}


/* Flex ile ortala, taşmayı önlemek için wrap */
.stars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2em;                /* Yıldızlar arası boşluk */
  font-size: clamp(1rem, 5vw, 1.2rem);
  /* clamp(minimum, tercih edilen ölçek (viewport genişliğine göre), maksimum) */
  margin-bottom: 0.8em;      /* Alt boşluğu mobilde de koru */
}

/* Çok küçük ekranlar için ekstra küçültme */
@media only screen and (max-width: 480px) {
  .stars {
    font-size: 1rem;
    gap: 0.15em;
  }
}



/* ——————————————————————————————————————————————————————————  
   9. FAQ
   —————————————————————————————————————————————————————————— */
#faq h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  max-width: 800px;
  margin: 15px auto;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0; top: 0;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: '-';
}

/* ——————————————————————————————————————————————————————————  
   10. Contact
   —————————————————————————————————————————————————————————— */
#contact {
  background: var(--white);
}

#contact h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

button {
  background: var(--primary);
  color: var(--white);
  padding: 12px 0;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

button:hover {
  opacity: 0.9;
}

.map {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: var(--radius);
}

/* ——————————————————————————————————————————————————————————  
   11. Footer
   —————————————————————————————————————————————————————————— */
footer {
  text-align: center;
  padding: 20px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.9rem;
}

/* ——————————————————————————————————————————————————————————  
   12. Responsive
   —————————————————————————————————————————————————————————— */
 Footer Genel Ayarları */
#footer {
  background-color: #203a43;
  color: #fff;
  padding: 40px 20px 20px;
}
#footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 20px;
}
#footer .footer-about,
#footer .footer-contact {
  flex: 1 1 280px;
}
#footer h3, 
#footer h4 {
  margin-bottom: 15px;
  font-weight: 600;
}
#footer p, 
#footer a {
  color: #f1f1f1;
  text-decoration: none;
  line-height: 1.6;
}
#footer .footer-contact a:hover {
  text-decoration: underline;
}

/* Footer Alt Kısım */
#footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  text-align: center;
  font-size: 0.9rem;
}

/* Sosyal İkonlar (isteğe bağlı) */
#footer .footer-social a {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #ffcd39;
}
#footer .footer-social a:hover {
  opacity: 0.8;
}

/* Mobilde Ortala ve Düzenle */
@media only screen and (max-width: 768px) {
  #footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #footer .footer-about,
  #footer .footer-contact {
    flex: 1 1 100%;
    max-width: 400px;
  }
  #footer .footer-contact {
    margin-top: 30px;
  }
}

/* Hizmet Bölgelerimiz Bölümü (güncellenmiş) */
.hizmet-bolgelerimiz {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.hizmet-bolgelerimiz .container {
  max-width: 1200px;
  margin: 0 auto;
}
.hizmet-bolgelerimiz h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #203a43;
}

/* Burayı değiştirin */
.bolge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 800px;    /* İstediğiniz genişliği verebilirsiniz */
  margin: 0 auto;      /* Sağ-sol otomatik boşluk, ızgarayı ortalar */
}

/* Kartlar aynı kalabilir */
.bolge-card {
  background-color: #fff;
  padding: 20px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-weight: 600;
  color: #1e3c72;
  transition: transform .2s, box-shadow .2s;
  text-align: center;  /* Kart içeriğini de ortalar */
}
.bolge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Müşteri Yorumları Slider - Genel */
#testimonials {
  background: var(--gray-light);
  padding-top: 70px;
  padding-bottom: 70px;
}

#testimonials h2 {
  text-align: center;
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 42px;
  font-weight: 600;
  letter-spacing: 1px;
}

.testimonials-slider {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 10px;
}

/* --- EŞİT KART YÜKSEKLİĞİ İÇİN FLEX SİHİRİ --- */
.slick-track {
  display: flex !important;
  align-items: stretch;
}
.slick-slide {
  height: auto !important;
  display: flex !important;
  align-items: stretch;
}

/* Kart Ayarları */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  padding: 32px 28px 28px 28px;
  margin: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  min-height: 230px;
  height: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.3s, transform 0.2s;
}

.testimonial:hover {
  box-shadow: 0 16px 40px rgba(30,60,114,0.16);
  transform: translateY(-6px) scale(1.015);
}

.testimonial .stars {
  margin-bottom: 18px;
  display: flex;
  gap: 0.2em;
}

.testimonial p {
  font-size: 1.05rem;
  color: #444b53;
  text-align: center;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-top: auto;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Slick Slider Dotları */
.slick-dots {
  margin-top: 22px;
}
.slick-dots li button:before {
  color: var(--primary);
  opacity: 0.4;
  font-size: 16px;
}
.slick-dots li.slick-active button:before {
  color: var(--accent);
  opacity: 1;
}

/* Slick oklarını özelleştir */
.slick-prev:before, .slick-next:before {
  color: var(--primary);
  font-size: 28px;
  opacity: 0.6;
}
.slick-prev:hover:before, .slick-next:hover:before {
  opacity: 1;
}

/* Responsive Tasarım */
@media only screen and (max-width: 1200px) {
  .testimonials-slider {
    max-width: 98vw;
  }
}

@media only screen and (max-width: 900px) {
  .testimonial {
    padding: 24px 10px 18px 10px;
    margin: 8px 2px;
    min-height: 190px;
  }
}

@media only screen and (max-width: 600px) {
  #testimonials {
    padding: 40px 4px;
  }
  .testimonials-slider {
    padding: 0;
  }
  .testimonial {
    padding: 18px 2vw 14px 2vw;
    margin: 5px 0;
    min-height: 140px;
    font-size: 0.97rem;
  }
  #testimonials h2 {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }
}

/* Hizmet Bölgelerimiz Bölümü (güncellenmiş) */
.hizmet-bolgelerimiz {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.hizmet-bolgelerimiz .container {
  max-width: 1200px;
  margin: 0 auto;
}
.hizmet-bolgelerimiz h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #203a43;
}

/* Burayı değiştirin */
.bolge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 800px;    /* İstediğiniz genişliği verebilirsiniz */
  margin: 0 auto;      /* Sağ-sol otomatik boşluk, ızgarayı ortalar */
}

/* Kartlar aynı kalabilir */
.bolge-card {
  background-color: #fff;
  padding: 20px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-weight: 600;
  color: #1e3c72;
  transition: transform .2s, box-shadow .2s;
  text-align: center;  /* Kart içeriğini de ortalar */
}
.bolge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.fiyat-al-btn {
	position: fixed;
	bottom: 32px;
	left: 32px;
	z-index: 999;
	background: var(--primary);
	color: #fff;
	border: none;
	padding: 16px 26px;
	border-radius: 50px;
	font-size: 1.15rem;
	box-shadow: 0 4px 16px rgba(30,60,114,0.22);
	cursor: pointer;
	transition: background 0.2s;
}

.fiyat-al-btn:hover {
	background: var(--secondary);
}

/* ————————————————————————————————————————————————————————————————————————— */
/*  Sexy Modal Styles */
/* ————————————————————————————————————————————————————————————————————————— */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  transition: opacity 0.4s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background: linear-gradient(135deg, rgba(30,60,114,0.9), rgba(255,205,57,0.9));
  margin: 8% auto;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
  color: #fff;
  overflow: hidden;
  animation: sexy-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

@keyframes sexy-pop {
  0%   { transform: scale(0.7); opacity: 0; }
  60%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}

.close {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 2rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s, transform 0.2s;
  cursor: pointer;
}
.close:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* Başlık */
.modal-content h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Form öğeleri */
#fiyatAlForm label {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 1rem;
  color: #f5f5f5;
}

#fiyatAlForm select {
  width: 100%;
  padding: 12px 14px;
  margin-top: 8px;
  border: none;
  border-radius: 12px;
  background: rgba(30,60,114,0.90);   /* Koyu, saydam bir arka plan */
  color: #fff;                        /* Beyaz yazı */
  font-size: 1rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  appearance: none;                   /* Tüm tarayıcılarda özelleştirilebilirlik için */
  -webkit-appearance: none;
  -moz-appearance: none;
}

#fiyatAlForm select:focus {
  background: rgba(30,60,114,1);
  outline: 2px solid var(--accent);
}

#fiyatAlForm select option {
  background: #1e3c72;  /* Açılır listenin arka planı koyu */
  color: #fff;          /* Açılır listenin yazı rengi beyaz */
}


/* Gönder butonu */
#fiyatAlForm .btn {
  width: 100%;
  margin-top: 24px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
#fiyatAlForm .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

/* FAQ bölümü */
.faq-section {
  margin-top: 32px;
      display: none;
}
/* css dosyana ekle */
.faq-gizli { display: none !important; }
.faq-goster { display: block !important; }

.faq-section details {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.faq-section details[open] {
  background: rgba(255,255,255,0.2);
}
.faq-section summary {
  list-style: none;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  color: #fff;
}
.faq-section summary::marker { content: ''; }
.faq-section summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 0;
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.faq-section details[open] summary::after {
  content: '–';
  transform: rotate(180deg);
}
.faq-section p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #e8e8e8;
  line-height: 1.4;
}

/* FİYAT SONUCU KARTI */
#fiyatSonuc {
  text-align: center;
  padding: 12px 0 0 0;
}
#fiyatText {
  display: inline-block;
  margin: 0 auto 24px auto;
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, #f9d423 0%, #ffcd39 100%);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(255,205,57,0.17);
  padding: 26px 38px 22px 38px;
  border: 0;
  letter-spacing: 1px;
  animation: fiyat-bounce 0.5s cubic-bezier(0.21,0.8,0.32,1.22);
}
@keyframes fiyat-bounce {
  0% { transform: scale(0.8);}
  50% { transform: scale(1.09);}
  100% { transform: scale(1);}
}

/* WHATSAPP BUTONU */
.whatsapp-btn {
  display: inline-block;
  background: linear-gradient(90deg, #25D366 0%, #42e279 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 2px 9px rgba(37,211,102,0.18);
  padding: 13px 0 12px 0;
  width: 100%;
  margin: 0 auto 10px auto;
  border: none;
  transition: background 0.15s, box-shadow 0.2s, transform 0.13s;
  text-align: center;
}
.whatsapp-btn:hover {
  background: linear-gradient(90deg, #42e279 0%, #25D366 100%);
  box-shadow: 0 6px 19px rgba(37,211,102,0.28);
  transform: scale(1.04);
}

#yeniTalepBtn {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color:#fff;
  font-size: 1.07rem;
  border-radius: 10px;
  padding: 10px 0;
  width: 100%;
  margin: 0 auto;
  margin-top: 4px;
  font-weight: 600;
  border: none;
  transition: background 0.15s, box-shadow 0.2s, transform 0.13s;
}
#yeniTalepBtn:hover {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 600px) {
  .modal-content {
    max-width: 96vw;
    padding: 22px 4vw 26px 4vw;
    border-radius: 18px;
  }
  #fiyatText { font-size: 1.37rem; padding: 18px 6vw 14px 6vw; }
  #fiyatAlForm label { font-size: 1rem;}
}


.seviye-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  justify-content: center;
}
.il-kart, .ilce-kart, .mahalle-kart, .geri-kart {
  background: #fff;
  border-radius: 10px;
  padding: 32px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #203a43;
  box-shadow: 0 2px 14px 0 rgba(30,60,114,.08);
  cursor: pointer;
  min-width: 170px;
  text-align: center;
  transition: background .14s, color .14s, box-shadow .18s;
  user-select: none;
  border: 2.5px solid transparent;
}
.il-kart:hover, .ilce-kart:hover, .mahalle-kart:hover, .geri-kart:hover {
  background: #ffcd39;
  color: #1e3c72;
  border-color: #1e3c72;
  box-shadow: 0 4px 20px 0 rgba(255,205,57,.16);
}
.geri-kart {
  background: #eaf2fc;
  color: #1e3c72;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 18px 24px;
  min-width: 110px;
  border-radius: 6px;
  margin-bottom: 12px;
}

header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(60,60,60,0.05);
    position: relative;
    z-index: 99;
}

#header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    width: 100%;
    flex-wrap: wrap;
    gap: 0;
}

#header-logo {
    display: flex;
    align-items: center;
}

#header-logo img {
    height: 97px;
    max-width: 150px;
    width: auto;
    display: block;
}

#main-title {
    margin-left: 1em;
    font-size: 1.6rem;
    color: #1e3c72;
    letter-spacing: 1px;
    font-weight: 700;
}

#header-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

#city-label {
    font-weight: 600;
    font-size: 1.10rem;
    color: #203a43;
    letter-spacing: 1px;
    white-space: nowrap;
}

#header-info a {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #1e3c72 60%, #2a5298 100%);
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 1rem;
    box-shadow: 0 1px 4px 0 rgba(30,60,114,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}

/* Tablet ve küçük ekranlar */
@media (max-width: 900px) {
    #header-container {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px;
        padding: 14px 8vw !important;
    }
    #header-logo {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 7px;
        width: 100%;
    }
    #main-title {
        margin: 0 0 0 0 !important;
        font-size: 1.4rem !important;
    }
    #header-info {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start !important;
        margin-top: 0px !important;
        gap: 12px !important;
    }
}

/* Mobil ekranlar */
@media (max-width: 600px) {
    #header-container {
        padding: 9px 2vw !important;
        gap: 10px !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    #header-logo {
        flex-direction: column !important;
        align-items: center !important;
        gap: 4px !important;
        width: 100%;
    }
    #main-title {
        font-size: 1.1rem !important;
        margin: 0 !important;
        text-align: center !important;
        width: 100%;
    }
    #header-info {
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
        gap: 6px !important;
        margin-top: 0 !important;
    }
    #city-label {
        font-size: 0.98rem !important;
        text-align: center !important;
        width: 100%;
    }
    #header-info a {
        font-size: 0.96rem !important;
        padding: 7px 10px !important;
        margin: 0 auto !important;
    }
    #header-logo img {
        height: 38px !important;
        max-width: 110px !important;
        margin: 0 auto !important;
        display: block !important;
    }
}
