/* =========================================================
   Yucel Sogutma - main.css
   Ortak: topbar, header, desktop-nav, mobile-drawer, footer,
   back-to-top, mobile bottom nav.
   Mobile-first.
   ========================================================= */

:root {
  --primary: #0EA5E9;
  --primary-dark: #0369A1;
  --secondary: #0C4A6E;
  --secondary-dark: #082F49;
  --accent: #F97316;
  --accent-dark: #EA580C;
  --bg-light: #F0F9FF;
  --bg-soft: #E0F2FE;
  --white: #FFFFFF;
  --text: #0F172A;
  --text-muted: #475569;
  --border: #CBD5E1;
  --success: #16A34A;
  --shadow-sm: 0 2px 4px rgba(12, 74, 110, 0.08);
  --shadow-md: 0 4px 12px rgba(12, 74, 110, 0.10);
  --shadow-lg: 0 10px 30px rgba(12, 74, 110, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --header-h: 64px;
  --topbar-h: 36px;
  --bottom-nav-h: 70px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0));
}

a { color: var(--primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

body.no-scroll { overflow: hidden; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 2000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ====================== Buttons (ortak) ====================== */
.btn-cta, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: var(--radius-md);
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-cta {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-cta:hover, .btn-cta:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
}
.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
  background: #1ebe5b;
  border-color: #1ebe5b;
}

/* ====================== Topbar ====================== */
.topbar { display: none; background: var(--secondary-dark); color: #cfeaf9; font-size: 13px; padding: 8px 0; }
.topbar a { color: #cfeaf9; }
.topbar a:hover { color: var(--accent); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-info { display: inline-flex; align-items: center; gap: 6px; }
.topbar-info i { color: var(--primary); }
.topbar-right { display: inline-flex; gap: 18px; }

/* ====================== Header ====================== */
.site-header {
  position: -webkit-sticky; /* iOS Safari 12-13 */
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
          backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.12);
  -webkit-transition: box-shadow var(--transition);
          transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: var(--header-h);
  min-height: var(--header-h);
  padding: 0 4px;
}

/* Brand / Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--secondary-dark);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  flex-shrink: 0;
}
.brand img { height: 40px; width: auto; }
.brand .brand-text {
  display: none;
  flex-direction: column;
  line-height: 1.1;
}
.brand .brand-text small {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Header phone:
   Mobile: hamburger'a komsu (sag tarafa it)
   Desktop (1200+): logo'nun sağında
*/
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-dark);
  text-decoration: none;
  padding: 6px 10px 6px 6px;
  border-radius: 12px;
  margin-left: auto;
  margin-right: 6px;
  -webkit-transition: background var(--transition), color var(--transition);
          transition: background var(--transition), color var(--transition);
}
.header-phone:hover { background: var(--bg-light); color: var(--primary-dark); }
.header-phone__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}
.header-phone__text {
  display: none;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.header-phone__text small {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.header-phone__text strong {
  font-size: 14px;
  color: var(--secondary-dark);
  font-weight: 700;
}

/* Desktop nav (yatay menu) - mobilde gizli */
.desktop-nav { display: none; }
.desktop-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  align-items: center;
}
.desktop-nav ul li a {
  display: inline-block;
  padding: 8px 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.desktop-nav ul li a:hover,
.desktop-nav ul li a:focus-visible,
.desktop-nav ul li a.is-active {
  background: var(--bg-light);
  color: var(--primary-dark);
}
.desktop-nav ul li a.is-active { font-weight: 600; }

/* Hamburger (mobilde gorunur, masaustunde gizli) */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--bg-light);
  border: 1px solid var(--bg-soft);
  border-radius: 10px;
  color: var(--secondary);
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav-toggle:hover, .nav-toggle:focus-visible { background: var(--bg-soft); }

/* ====================== Mobile drawer ====================== */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(8, 47, 73, 0.55);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity var(--transition), visibility var(--transition);
          transition: opacity var(--transition), visibility var(--transition);
  z-index: 1090;
}
.mobile-overlay.show { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -340px; /* gizliyken viewport'un dışında */
  width: 320px;
  max-width: 85vw;
  background: var(--white);
  z-index: 1100;
  -webkit-box-shadow: -12px 0 32px rgba(8, 47, 73, 0.20);
          box-shadow: -12px 0 32px rgba(8, 47, 73, 0.20);
  -webkit-transition: right 0.32s cubic-bezier(.4,0,.2,1);
          transition: right 0.32s cubic-bezier(.4,0,.2,1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.mobile-drawer.open { right: 0; }

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-drawer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}
.mobile-drawer__brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--white);
  padding: 4px;
}
.mobile-drawer__close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.mobile-drawer__close:hover, .mobile-drawer__close:focus-visible { background: rgba(255,255,255,0.20); }

.mobile-drawer__nav {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0;
}
.mobile-drawer__nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-drawer__nav ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: var(--text);
  font-weight: 500;
  font-size: 14.5px;
  border-left: 3px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.mobile-drawer__nav ul li a i {
  width: 20px;
  color: var(--primary);
  font-size: 14px;
  text-align: center;
}
.mobile-drawer__nav ul li a:hover,
.mobile-drawer__nav ul li a:focus-visible,
.mobile-drawer__nav ul li a.is-active {
  background: var(--bg-light);
  color: var(--primary-dark);
  border-left-color: var(--accent);
}
.mobile-drawer__nav ul li a.is-active i { color: var(--accent); }
.mobile-drawer__divider {
  padding: 12px 18px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  text-transform: uppercase;
  background: var(--bg-light);
  border-bottom: 1px solid var(--bg-soft);
  margin-top: 4px;
}

/* mobile-drawer__cta kaldirildi */

/* ====================== Footer ====================== */
.site-footer {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #cfe9f8;
  padding: 48px 0 24px;
  margin-top: 56px;
}
.site-footer h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(14, 165, 233, 0.35);
  position: relative;
}
.site-footer h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 36px;
  height: 2px;
  background: var(--accent);
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand img {
  height: 80px;
  width: auto;
  max-width: 100%;
  -webkit-filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
          filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
}
.footer-brand span { color: var(--white); font-weight: 700; font-size: 18px; }

/* Footer iletisim - mobilde tek sutun (col-6 icinde) */
.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.footer-contact-grid .footer-contact-item { margin-bottom: 0; }

.site-footer p { color: #cfe9f8; font-size: 14px; line-height: 1.7; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul li a { color: #cfe9f8; font-size: 14px; }
.site-footer ul li a:hover, .site-footer ul li a:focus-visible { color: var(--accent); padding-left: 4px; }
.site-footer ul li a i { color: var(--primary); margin-right: 6px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #cfe9f8;
}
.footer-contact-item i { color: var(--accent); font-size: 16px; margin-top: 4px; min-width: 18px; }
.footer-contact-item a { color: #cfe9f8; }
.footer-contact-item a:hover { color: var(--accent); }

/* .footer-social kaldirildi */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
  padding-top: 18px;
  padding-bottom: 4px;
  font-size: 13px;
  color: #a4cfe6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-bottom__copy {
  color: #a4cfe6;
  line-height: 1.35;
  font-size: 12.5px;
}
.footer-bottom__rights {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .footer-bottom__rights {
    display: block;
    margin-top: 2px;
  }
}

.footer-bottom__credit {
  color: #a4cfe6;
  font-size: 12.5px;
  line-height: 1.35;
  text-align: center;
}
.footer-bottom__credit-label {
  color: #a4cfe6;
  font-weight: 400;
}
.footer-bottom__credit a {
  color: #FB923C;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color var(--transition);
          transition: color var(--transition);
}
.footer-bottom__credit a:hover,
.footer-bottom__credit a:focus-visible {
  color: #FDBA74;
}
.footer-bottom__credit .heart {
  display: inline-block;
  color: #FB923C;
  font-size: 13px;
  margin: 0 2px;
  -webkit-animation: heartbeat 1.2s ease-in-out infinite;
          animation: heartbeat 1.2s ease-in-out infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@-webkit-keyframes heartbeat {
  0%, 100% { -webkit-transform: scale(1); transform: scale(1); }
  15% { -webkit-transform: scale(1.30); transform: scale(1.30); }
  30% { -webkit-transform: scale(1); transform: scale(1); }
  45% { -webkit-transform: scale(1.20); transform: scale(1.20); }
  60% { -webkit-transform: scale(1); transform: scale(1); }
}
@keyframes heartbeat {
  0%, 100% { -webkit-transform: scale(1); transform: scale(1); }
  15% { -webkit-transform: scale(1.30); transform: scale(1.30); }
  30% { -webkit-transform: scale(1); transform: scale(1); }
  45% { -webkit-transform: scale(1.20); transform: scale(1.20); }
  60% { -webkit-transform: scale(1); transform: scale(1); }
}

/* ====================== Same-Day Banner (ortak: home + hakkimizda) ====================== */
.same-day {
  background: linear-gradient(120deg, var(--accent) 0%, #f59e0b 100%);
  color: var(--white);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.same-day::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.same-day::before {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.same-day-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.same-day h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.2px;
  white-space: nowrap;
}
.same-day h2 i { margin-right: 4px; }
.same-day p { margin: 0; color: #fff7ed; font-size: 13.5px; line-height: 1.55; }
.same-day .same-day-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
}
.same-day .btn-cta {
  background: var(--white);
  color: var(--accent-dark);
  border-color: var(--white);
}
.same-day .btn-cta:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: var(--white); }
.same-day .btn-outline:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: var(--white); }

@media (min-width: 480px) {
  .same-day h2 { font-size: 20px; }
  .same-day p { font-size: 14.5px; }
}
@media (min-width: 768px) {
  .same-day-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .same-day h2 { font-size: 26px; white-space: normal; }
  .same-day p { font-size: 15px; }
  .same-day .same-day-cta { width: auto; }
}
@media (min-width: 1200px) {
  .same-day { padding: 56px 0; }
  .same-day h2 { font-size: 32px; }
}

/* CTA hemen footer'a komsuysa bosluk birakma (main icinde son cocuk) */
main:has(> .service-bottom-cta:last-child) + .site-footer,
main:has(> .same-day:last-child) + .site-footer {
  margin-top: 0;
}
/* Fallback: eski browser'lar icin body class */
body.cta-end .site-footer { margin-top: 0; }

/* ====================== Back to Top ====================== */
.back-to-top {
  position: fixed;
  right: 14px;
  bottom: calc(var(--bottom-nav-h) + 14px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 990;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.back-to-top.hide-near-footer {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.back-to-top:hover, .back-to-top:focus-visible {
  background: var(--accent-dark);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* ====================== Mobile Bottom Nav ====================== */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  -webkit-box-shadow: 0 -6px 18px rgba(8, 47, 73, 0.12);
          box-shadow: 0 -6px 18px rgba(8, 47, 73, 0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: auto;
  min-height: var(--bottom-nav-h);
  z-index: 1000;
  border-top: 1px solid var(--bg-soft);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--secondary);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 4px 10px;
  line-height: 1.15;
  -webkit-transition: color var(--transition), background var(--transition);
          transition: color var(--transition), background var(--transition);
}
.bottom-nav a i { font-size: 19px; line-height: 1; }
.bottom-nav a span { display: block; letter-spacing: -0.1px; }
.bottom-nav a.call-action, .bottom-nav a.call-action i { color: var(--accent); }
.bottom-nav a.wa-action, .bottom-nav a.wa-action i { color: #25D366; }
.bottom-nav a:hover, .bottom-nav a:focus-visible { background: var(--bg-light); }

/* ====================== Section utils ====================== */
.section { padding: 48px 0; }
.section-title {
  text-align: center;
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary-dark);
  letter-spacing: -0.3px;
}
.section-title span { color: var(--accent); }
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 15px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.10);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 165, 233, 0.12);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* ====================== 380px+ ====================== */
@media (min-width: 380px) {
  .brand .brand-text { display: flex; }
  .header-phone { padding-right: 12px; }
}

/* ====================== 480px+ ====================== */
@media (min-width: 480px) {
  body { font-size: 15.5px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 28px; }
  .brand img { height: 44px; }
  .brand { font-size: 16px; }
}

/* ====================== 640px+ - phone text visible ====================== */
@media (min-width: 640px) {
  .header-phone__text { display: flex; }
  .header-phone {
    padding: 6px 14px 6px 6px;
    background: var(--bg-light);
  }
}

/* ====================== 768px+ (tablet) ====================== */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .topbar { display: block; }
  .section { padding: 72px 0; }
  .section-title { font-size: 32px; }
  .section-subtitle { font-size: 16px; }
  .brand img { height: 48px; }

  /* Footer brand: tablet+'da sola yasli, yatay */
  .footer-brand {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
  .footer-brand img { height: 54px; }
  .footer-brand span { font-size: 16px; }

  /* Footer iletisim: tablet+'da tek sutun (zaten yeterli alan var) */
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer bottom: tablet+ row, copyright sol - kredi sag */
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-bottom__credit { justify-content: flex-end; }
}

/* ====================== 1200px+ (desktop) ====================== */
@media (min-width: 1200px) {
  body { font-size: 16px; }
  .section { padding: 88px 0; }
  .section-title { font-size: 38px; }

  /* Hamburger ve mobil drawer masaustunde tamamen gizli */
  .nav-toggle,
  .mobile-overlay,
  .mobile-drawer { display: none !important; }

  /* Desktop yatay menu sağa itilir */
  .desktop-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  /* Bottom nav gizli */
  .bottom-nav { display: none; }

  .brand img { height: 52px; }
  .brand { font-size: 17px; }

  /* Masaustunde telefon LOGO'NUN SAGINDA */
  .header-phone {
    margin-left: 12px;
    margin-right: auto; /* nav'i saga it */
  }

  .section-title { font-size: 40px; }
}

@media (min-width: 1400px) {
  .desktop-nav ul li a { padding: 10px 14px; font-size: 15px; }
}
