/* İkon boyutları ve hizalamalar (Vite/Tailwind yerine tek başına Laravel) */
.w-4, .h-4 { width: 1rem; height: 1rem; }

/* Nav menü alt menü oku: yazı ile ortada */
.nav-menu > li.menu-has-children > a {
  display: inline-flex;
  align-items: center;
}
.nav-menu > li.menu-has-children > a::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
}

.w-5, .h-5 { width: 1.25rem; height: 1.25rem; }
.w-6, .h-6 { width: 1.5rem; height: 1.5rem; }
.w-8, .h-8 { width: 2rem; height: 2rem; }
.inline-block { display: inline-block; }
.mr-1 { margin-right: 0.25rem; }
.align-middle { vertical-align: middle; }
.my-float { vertical-align: middle; }
.text-green-600 { color: #16a34a; }

/* Erişilebilirlik: topbar metin ve link kontrastı (WCAG AA) */
#topbar,
#topbar a { color: #1a1a1a; }
#topbar a[href^="tel"] { color: #0d47a1; font-weight: 600; }
#topbar a:hover { color: #0c2e8a; text-decoration: underline; }
#topbar .social-links a:hover { color: #0c2e8a; }
#topbar svg { color: #0d47a1; }

/* Resim en-boy oranı: u-etds.webp 540x305 (1.77), görüntülenen oran eşleşsin */
.u-etds-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  aspect-ratio: 540 / 305;
  object-fit: contain;
  display: block;
}

/* Önemli Bilgiler kutuları: başlık kontrastını artır */
#services .box.box-accent {
  background: #ffffff;
}
#services .box.box-accent .title,
#services .box.box-accent .title a {
  color: #111111;
}
#services .box.box-accent .title {
  margin-left: 0;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
#services .box.box-accent .description {
  margin-left: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  #services .box.box-accent {
    padding: 20px;
    margin-bottom: 20px;
  }
}

/* Footer iletişim başlıkları: daha koyu metin rengi */
#contact .contact-info h3 {
  color: #111111;
}

/* İletişim sayfası: 2 sütun (sol bilgiler, sağ harita) */
.contact-page-wrapper { padding: 0 0 2rem; }
.contact-page-wrapper .contact-col-left { margin-bottom: 1.5rem; }
.contact-page-wrapper .contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.contact-page-wrapper .contact-info-item .icon-wrap {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: rgba(80, 216, 175, 0.15);
  color: #2dc899;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page-wrapper .contact-info-item .icon-wrap svg { width: 1.25rem; height: 1.25rem; }
.contact-page-wrapper .contact-info-item .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: #6c757d; margin-bottom: 0.25rem; font-weight: 600; }
.contact-page-wrapper .contact-info-item .value { margin: 0; line-height: 1.5; }
.contact-page-wrapper .contact-info-item .value a { color: #333; }
.contact-page-wrapper .contact-info-item .value a:hover { color: #4da3f0; }
.contact-page-wrapper .contact-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
  min-height: 320px;
}
.contact-page-wrapper .contact-map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }
.contact-page-wrapper .app-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.contact-page-wrapper .app-badges a { display: block; }
.contact-page-wrapper .app-badges img { height: 40px; width: auto; display: block; }
@media (max-width: 991px) {
  .contact-page-wrapper .contact-map-wrap { min-height: 280px; }
  .contact-page-wrapper .contact-map-wrap iframe { min-height: 280px; }
}

/* Footer: modern iki sütunlu düzen */
.footer-contact {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  padding-top: 35px;
}
.footer-contact .footer-main {
  align-items: flex-start;
}
.footer-contact .footer-logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .03em;
}
.footer-contact .footer-tagline {
  margin: 6px 0 16px;
  font-size: .9rem;
  color: #4b5563;
}
.footer-contact .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact .footer-contact-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .9rem;
}
.footer-contact .footer-contact-list x-icon,
.footer-contact .footer-contact-list svg {
  flex-shrink: 0;
}
.footer-contact .footer-contact-list .label {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #6b7280;
  margin-bottom: .1rem;
  font-weight: 600;
}
.footer-contact .footer-contact-list .value {
  margin: 0;
  color: #111827;
  font-size: .9rem;
}
.footer-contact .footer-contact-list .value a {
  color: #0c2e8a;
}
.footer-contact .footer-contact-list .value a:hover {
  color: #0a2470;
}
.footer-contact .footer-apps .label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #6b7280;
  margin-bottom: .4rem;
  font-weight: 600;
}
.footer-contact .footer-links {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .85rem;
}
.footer-contact .footer-links a {
  color: #4b5563;
}
.footer-contact .footer-links a:hover {
  color: #0c2e8a;
}
.footer-contact .footer-links-bottom {
  justify-content: center;
  text-align: center;
}
.footer-contact .footer-bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 24px;
  padding: 14px 0 8px;
  text-align: center;
  font-size: .8rem;
  color: #6b7280;
}
@media (max-width: 767px) {
  .footer-contact {
    padding-top: 25px;
  }
  .footer-contact .footer-col {
    margin-bottom: 1.5rem;
  }
}

/* Logo: h1 yerine div oldu, aynı boyutu koru */
#header #logo .site-logo {
  font-size: 42px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
#header #logo .site-logo a {
  color: #0c2e8a;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
}
@media (max-width: 768px) {
  #header #logo .site-logo { font-size: 26px; }
}

/* Mobil hamburger ikon rengi: SVG fill=currentColor olduğu için color tanımla */
#mobile-nav-toggle {
  color: #0c2e8a;
}
#mobile-nav-toggle svg {
  fill: currentColor;
  width: 24px;
  height: 24px;
}
body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}
