:root{
  --brand-1:#0b2d5c;
  --brand-2:#1aa0ff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e2e8f0;
  --bg:#ffffff;

  --topbar-h: 66px;
  --header-h: 58px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.95}

.container{
  width:min(1180px, 96vw);
  margin:0 auto;
}

/* =========================
   TOP BAR (sticky)
========================= */
.topbar{
  position:sticky;
  top:0;
  z-index:300;
  border-bottom:1px solid var(--border);
  background:#fff;
  font-size:13px;
  color:var(--muted);
}

.topbar .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  flex-wrap:nowrap;
}

/* ✅ LOGO BÜYÜT */
.top-logo{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
  white-space:nowrap;
  margin-left:-10px;
}

.top-logo img{
  width:56px;         /* ✅ 44 -> 56 */
  height:56px;        /* ✅ 44 -> 56 */
  object-fit:contain;
  display:block;
}

.top-logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.12;
}
.top-logo-text strong{
  font-size:16px;     /* ✅ 14 -> 16 */
  font-weight:900;
  color:#000;
}
.top-logo-text span{
  font-size:13px;     /* ✅ 12 -> 13 */
  font-weight:700;
  color:var(--muted);
}

/* adres ortada */
.topbar .left{
  flex:1 1 auto;
  min-width:320px;
  display:flex;
  justify-content:center;
}
.topbar .left .pill{
  width:100%;
  justify-content:center;
}

/* sağ iletişim */
.topbar .right{
  display:flex;
  gap:10px;
  align-items:center;
  flex:0 0 auto;
  white-space:nowrap;
}

.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  white-space:nowrap;
}

/* =========================
   HEADER (MENU) (sticky)
========================= */
.header{
  position:sticky;
  top:var(--topbar-h);
  z-index:250;
  background:#fff;
  border-bottom:1px solid var(--border);
}

.header,
.header .container,
.header .inner{
  overflow:visible;
}

.header .inner{
  display:flex;
  align-items:center;
  gap:16px;
  padding:6px 0;
}

.mobile-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
}

.nav{
  position:relative;
  width:100%;
  overflow:visible;
}

.nav-scroll{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:nowrap;
  gap:clamp(8px, 1.0vw, 14px);
  padding:10px 18px 10px 8px;
  width:100%;
}

.nav-scroll > a,
.nav-scroll .dropdown > button{
  font:inherit;
  font-size:clamp(13.5px, 1.02vw, 15.5px);
  font-weight:800;
  color:#000;
  border:0;
  background:transparent;
  padding:8px 10px;
  border-radius:10px;
  cursor:pointer;
  white-space:nowrap;
  line-height:1;
  flex:0 0 auto;
}

.nav-scroll > a:hover,
.nav-scroll .dropdown > button:hover{
  background:rgba(15,23,42,.06);
}

.menu-last{ padding-right:14px; }

/* =========================
   DROPDOWN (✅ kapanma sorunu çözümü)
========================= */
.dropdown{
  position:relative;
}

/* ✅ buton + menü arasında hover köprüsü */
.dropdown::after{
  content:"";
  position:absolute;
  left:-8px;
  right:-8px;
  top:100%;
  height:14px;           /* ✅ boşluğu doldurur */
  background:transparent;
}

.dropdown > button{
  display:inline-flex;
  gap:6px;
  align-items:center;
}

/* dropdown kutusu */
.dropdown-menu{
  display:none;
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:280px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:0 16px 40px rgba(2,8,23,.12);
  padding:8px;
  z-index:9999;

  /* ✅ yumuşak açılış */
  opacity:0;
  transform:translateY(-6px);
  transition:opacity .12s ease, transform .12s ease;
}

.dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:var(--text);
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
}

.dropdown-menu a:hover{
  background:rgba(26,160,255,.10);
}

/* ✅ hover destekli cihazlarda hover ile aç */
@media (hover:hover) and (pointer:fine){
  .dropdown:hover > .dropdown-menu{
    display:block;
    opacity:1;
    transform:translateY(0);
  }
}

/* ✅ JS ile aç (tıklayınca) */
.dropdown.open > .dropdown-menu{
  display:block;
  opacity:1;
  transform:translateY(0);
}

/* =========================
   SLIDER (full)
========================= */
.fullbleed{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

.home-slider{
  padding:0;
  margin:0;
  height:calc(100svh - var(--topbar-h) - var(--header-h));
  min-height:560px;
}

.slider, .slides, .slide{height:100%}

.slider{
  position:relative;
  overflow:hidden;
  border-radius:0;
}

.slides{
  display:flex;
  transition:transform .6s ease;
  will-change:transform;
}

.slide{flex:0 0 100%; width:100%}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:none;
  background:rgba(0,0,0,.45);
  color:#fff;
  font-size:34px;
  width:46px;
  height:46px;
  border-radius:50%;
  cursor:pointer;
}
.slider-btn.prev{left:14px}
.slider-btn.next{right:14px}

.dots{
  position:absolute;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:6px;
}
.dots button{
  width:10px;
  height:10px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.6);
  cursor:pointer;
}
.dots button.active{background:#fff}

/* =========================
   FOOTER
========================= */
.footer{
  border-top:1px solid var(--border);
  margin-top:0;
  padding:26px 0;
  color:var(--muted);
  font-size:14px;
}

.footer .cols{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:16px;
}
.small{font-size:13px;color:var(--muted)}

@media (max-width: 1150px){
  .nav-scroll{
    flex-wrap:wrap;
    justify-content:center;
    row-gap:6px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 980px){
  :root{
    --topbar-h: 0px;
    --header-h: 56px;
  }

  .topbar .inner{
    flex-wrap:wrap;
    justify-content:center;
  }
  .topbar .left{
    flex:1 1 100%;
    min-width:auto;
  }
  .topbar .right{
    flex-wrap:wrap;
    justify-content:center;
  }

  .header{ top:0; }

  .mobile-toggle{display:inline-flex}
  .header .inner{justify-content:space-between}

  .nav{
    position:absolute;
    left:0; right:0;
    top:100%;
    border-bottom:1px solid var(--border);
    background:#fff;
    padding:10px 4vw 14px;
    display:none;
    z-index:10000;
  }
  .nav.open{display:block}

  .nav-scroll{
    flex-direction:column;
    align-items:stretch;
    flex-wrap:nowrap;
    gap:6px;
    padding:0;
  }

  .dropdown::after{ display:none; }

  .dropdown-menu{
    position:static;
    box-shadow:none;
    border-radius:12px;
    margin-top:6px;
    min-width:auto;
    opacity:1;
    transform:none;
    transition:none;
  }

  .home-slider{
    height:calc(100svh - var(--header-h));
    min-height:420px;
  }
}
/* =========================
   FOOTER - SOSYAL İKONLAR (KÜÇÜK)
========================= */
.footer-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.footer-social .soc{
  width:32px;              /* ✅ küçük buton */
  height:32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
  transition:transform .15s ease, background .15s ease;
}

.footer-social .soc:hover{
  background:rgba(26,160,255,.08);
  transform:translateY(-1px);
}

.footer-social .soc svg{
  width:16px;              /* ✅ ikon boyutu */
  height:16px;
  fill:#0f172a;
  display:block;
}
/* =========================
   FOOTER (WHITE BG, CLEAN GRID)
========================= */
.site-footer{
  background:#fff;
  padding:42px 0 28px;
  border-top:1px solid var(--border);
}

.site-footer .footer-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:26px 26px 18px;
  box-shadow:0 10px 28px rgba(2,8,23,.06);
}

/* GRID: 4 kolon + CTA */
.site-footer .footer-grid{
  display:grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 1.2fr 0.95fr;
  gap:22px;
  align-items:start;
}

.site-footer .footer-col{min-width:0;}
.site-footer .footer-h{
  font-weight:900;
  font-size:13px;
  letter-spacing:.2px;
  color:#0f172a;
  margin:0 0 10px;
}

.site-footer .footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.site-footer .footer-links a{
  font-size:13px;
  color:#0f172a;
  opacity:.9;
}
.site-footer .footer-links a:hover{
  opacity:1;
  text-decoration:underline;
}

/* CONTACT */
.site-footer .footer-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.site-footer .footer-contact-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 10px;
  border-radius:12px;
  text-decoration:none;
  border:1px solid transparent;
}
.site-footer .footer-contact-item:hover{
  background:rgba(15,23,42,.04);
  border-color:rgba(226,232,240,.9);
}

.site-footer .fc-ico{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px; /* emoji küçük */
  line-height:1;
  margin-top:1px;
}

.site-footer .fc-strong{
  font-weight:800;
  font-size:13px;
  color:#0f172a;
  line-height:1.2;
}
.site-footer .fc-muted{
  font-size:12.5px;
  color:var(--muted);
  line-height:1.25;
  margin-top:3px;
}

/* CTA BOX */
.site-footer .footer-cta{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
}

.site-footer .cta-title{
  font-weight:900;
  font-size:13px;
  color:#0f172a;
}
.site-footer .cta-sub{
  font-size:12.5px;
  color:var(--muted);
  margin:6px 0 12px;
}

.site-footer .cta-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
  font-size:13px;
  text-decoration:none;
  border:1px solid var(--border);
  background:#fff;
  color:#0f172a;
}
.site-footer .cta-btn + .cta-btn{margin-top:10px;}
.site-footer .cta-ico{font-size:16px; line-height:1;}

.site-footer .cta-whatsapp{
  border-color: rgba(34,197,94,.25);
  background: rgba(34,197,94,.08);
}
.site-footer .cta-mail{
  border-color: rgba(59,130,246,.25);
  background: rgba(59,130,246,.08);
}

/* BOTTOM ROW */
.site-footer .footer-bottom{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--border);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
}

/* SOCIAL ICONS (small + brand colors) */
.site-footer .footer-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.site-footer .soc{
  width:34px;
  height:34px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
  transition: transform .12s ease, box-shadow .12s ease;
}

.site-footer .soc svg{
  width:18px;     /* ✅ devasa olmasın */
  height:18px;    /* ✅ devasa olmasın */
  fill: currentColor;
}

.site-footer .soc:hover{
  transform: translateY(-1px);
  box-shadow:0 8px 18px rgba(2,8,23,.08);
}

/* Brand colors */
.site-footer .soc-li{ color:#0A66C2; }   /* LinkedIn */
.site-footer .soc-fb{ color:#1877F2; }   /* Facebook */
.site-footer .soc-yt{ color:#FF0000; }   /* YouTube */
.site-footer .soc-x{  color:#111827; }   /* X */
.site-footer .soc-ig{
  color:#C13584; /* Instagram tek renk (temiz) */
}

/* LEGAL + COPY */
.site-footer .footer-legal{
  font-size:12.5px;
  color:var(--muted);
}
.site-footer .footer-legal a{
  color:var(--muted);
  text-decoration:none;
}
.site-footer .footer-legal a:hover{ text-decoration:underline; }

.site-footer .footer-copy{
  font-size:12.5px;
  color:var(--muted);
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .site-footer .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
  .site-footer .footer-cta{
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px){
  .site-footer .footer-card{ padding:18px 16px 14px; border-radius:18px; }
  .site-footer .footer-grid{ grid-template-columns: 1fr; }
  .site-footer .footer-cta{ order: 5; }
}
/* =========================
   FOOTER FULL-WIDTH FIX
========================= */

/* Footer container kısıtını kır */
.site-footer .container{
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Beyaz footer kartını tam sayfa yap */
.site-footer .footer-card{
  width: 100vw;                 /* tam ekran genişlik */
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  border-radius: 0;             /* kenarlar düz (tam sayfa hissi) */
  border-left: none;
  border-right: none;
}

/* İçeriği tekrar düzgün hizala */
.site-footer .footer-grid,
.site-footer .footer-bottom{
  max-width: 1200px;            /* sitenin ana genişliği */
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =========================
   PAGE HERO (servis sayfaları)
========================= */
.page-hero{
  background:linear-gradient(135deg,#0b2d5c 0%,#1a4a8a 100%);
  color:#fff;
  padding:60px 0 50px;
}
.page-hero h1{margin:0 0 12px;font-size:2rem;font-weight:800}
.page-hero p{margin:0;font-size:1.05rem;opacity:.85;max-width:580px}

/* =========================
   PAGE CONTENT
========================= */
.page-content{padding:50px 0}

/* =========================
   İLETİŞİM SAYFASI
========================= */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  margin-top:30px;
}
.contact-left,.contact-right{display:flex;flex-direction:column;gap:24px}
.contact-card{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:14px;
  padding:28px 24px;
}
.contact-card h2{font-size:1.1rem;font-weight:700;color:#0b2d5c;margin:0 0 16px}
.contact-list{display:flex;flex-direction:column;gap:12px}
.contact-item{display:flex;gap:16px;align-items:baseline}
.contact-label{font-size:.85rem;font-weight:700;color:#475569;min-width:120px}
.contact-value{font-size:.92rem;color:#0b2d5c;font-weight:600;text-decoration:none}
.contact-value:hover{text-decoration:underline}
.contact-note{font-size:.88rem;color:#475569;margin:0 0 16px}
.contact-form{display:flex;flex-direction:column;gap:14px}
.field{display:flex;flex-direction:column;gap:6px}
.field span{font-size:.85rem;font-weight:600;color:#374151}
.field input,.field select,.field textarea{
  padding:10px 14px;
  border:1.5px solid #e2e8f0;
  border-radius:8px;
  font-size:.9rem;
  color:#374151;
  background:#fff;
  outline:none;
  font-family:inherit;
}
.field input:focus,.field select:focus,.field textarea:focus{border-color:#1aa0ff}
.field textarea{resize:vertical;min-height:120px}
.contact-btn{
  background:#0b2d5c;
  color:#fff;
  border:none;
  padding:12px 28px;
  border-radius:8px;
  font-size:.95rem;
  font-weight:700;
  cursor:pointer;
  align-self:flex-start;
}
.contact-btn:hover{background:#1a4a8a}
.contact-privacy{font-size:.8rem;color:#475569;line-height:1.5}
.contact-alert{padding:12px 16px;border-radius:8px;margin-bottom:20px;font-weight:600}
.contact-alert.success{background:#d1fae5;color:#065f46}
.contact-alert.error{background:#fee2e2;color:#991b1b}
.map-card{height:100%}
.map-wrap{border-radius:10px;overflow:hidden;margin:12px 0}
.map-wrap iframe{display:block;width:100%;height:340px;border:none}
.map-open{display:inline-block;font-size:.88rem;font-weight:600;color:#0b2d5c;text-decoration:none}
.map-open:hover{text-decoration:underline}
.hp{display:none}

/* =========================
   SERVIS SAYFALARI
========================= */
.cs{padding:50px 0}
.cs h2{font-size:1.4rem;font-weight:700;color:#0b2d5c;margin:0 0 10px;padding-bottom:10px;border-bottom:3px solid #1aa0ff}
.cs h3{font-size:1.1rem;font-weight:700;color:#0b2d5c;margin:28px 0 8px}
.cs p{color:#374151;line-height:1.75;margin:0 0 14px}
.cs ul{color:#374151;line-height:1.75;padding-left:20px;margin:0 0 14px}
.cs ul li{margin-bottom:6px}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:40px;margin-top:30px}
.fc-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;margin-top:30px}
.fc-card{background:#f8fafc;border:1px solid #e2e8f0;border-radius:10px;padding:24px 20px}
.fc-card .icon{font-size:28px;margin-bottom:12px}
.fc-card h4{font-size:.95rem;font-weight:700;color:#0b2d5c;margin:0 0 8px}
.fc-card p{font-size:.88rem;color:#475569;margin:0;line-height:1.6}
.cta-band{background:#0b2d5c;color:#fff;border-radius:12px;padding:36px 32px;display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:40px;flex-wrap:wrap}
.cta-band h3,.cta-band p{color:#fff !important}
.cta-band h3{margin:0 0 6px;font-size:1.2rem}
.cta-band p{margin:0;opacity:.85;font-size:.9rem}
.cta-band .cta-btns{display:flex;gap:12px;flex-shrink:0;flex-wrap:wrap}
.cta-band a{display:inline-block;padding:10px 22px;border-radius:6px;font-weight:600;font-size:.9rem;text-decoration:none}
.btn-wa{background:#25d366;color:#fff}
.btn-mail{background:#fff;color:#0b2d5c}
.mt40{margin-top:40px}
.routes-table{width:100%;border-collapse:collapse;margin-top:20px}
.routes-table th{background:#0b2d5c;color:#fff;padding:10px 14px;text-align:left;font-size:.88rem}
.routes-table td{padding:10px 14px;border-bottom:1px solid #e2e8f0;font-size:.88rem;color:#374151}
.routes-table tr:nth-child(even) td{background:#f8fafc}

/* BELGELER */
.belge-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:28px;margin-top:30px}
.belge-card{background:#f8fafc;border:1px solid #e2e8f0;border-radius:14px;padding:32px 28px;display:flex;flex-direction:column;gap:14px}
.belge-card .belge-icon{font-size:40px}
.belge-card h4{font-size:1.05rem;font-weight:700;color:#0b2d5c;margin:0}
.belge-card p{font-size:.9rem;color:#475569;margin:0;line-height:1.65}
.belge-badge{display:inline-block;font-size:.75rem;font-weight:600;color:#0b2d5c;background:#dbeafe;border-radius:20px;padding:4px 12px;width:fit-content}
.info-box{background:#eff6ff;border:1px solid #bfdbfe;border-radius:10px;padding:22px 26px;margin-top:40px}
.info-box p{margin:0;color:#1e40af;font-size:.92rem;line-height:1.7}
.info-box a{color:#1e40af;font-weight:600}

/* HAKKIMIZDA */
.why-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;margin-top:24px}
.why-card{background:#f8fafc;border-left:4px solid #1aa0ff;border-radius:0 10px 10px 0;padding:22px 20px}
.why-card .icon{font-size:26px;margin-bottom:10px}
.why-card h4{font-size:.95rem;font-weight:700;color:#0b2d5c;margin:0 0 6px}
.why-card p{font-size:.88rem;color:#475569;margin:0;line-height:1.6}
.person-card{display:flex;align-items:center;gap:20px;background:#f8fafc;border:1px solid #e2e8f0;border-radius:12px;padding:24px 28px;margin-top:16px;flex-wrap:wrap}
.person-card .person-info h4{font-size:1rem;font-weight:700;color:#0b2d5c;margin:0 0 4px}
.person-card .person-info p{font-size:.88rem;color:#475569;margin:0}
.person-card .person-btns{display:flex;gap:10px;margin-top:14px;flex-wrap:wrap}
.p-btn{display:inline-block;padding:10px 22px;border-radius:6px;font-weight:600;font-size:.88rem;text-decoration:none}
.p-btn-wa{background:#25d366;color:#fff}
.p-btn-mail{background:#0b2d5c;color:#fff}

@media(max-width:700px){
  .contact-grid{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .cta-band{flex-direction:column}
}
