
/* ============ Base ============ */
:root{
  --bg0:#ffffff;
  --bg1:#f5f7fb;
  --bg2:#eef1f6;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e5e7eb;
  --shadow: 0 18px 45px rgba(2,6,23,.10);
  --shadow2: 0 10px 25px rgba(2,6,23,.12);
  --radius: 18px;
  --radius2: 14px;
  --orange:#f97316;
  --green:#16a34a;
  --dark:#0b1220;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background: linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 30%, var(--bg0) 100%);
  line-height:1.55;
}
img{max-width:100%; height:auto; display:block}

body.nav-open{overflow:hidden}

a{color:inherit; text-decoration:none}
.container{
  width:min(1180px, calc(100% - 32px));
  margin-inline:auto;
}
.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#111827; color:#fff;
  border-radius:12px; z-index:9999;
}

/* ============ Header / Nav ============ */
.site-header{
  position:sticky;
  top:0;
  z-index:1100;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,247,251,.90));
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(229,231,235,.9);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.brand{display:flex; align-items:center}
.brand-logo{
  width:150px;
  height:auto;
  filter: drop-shadow(0 8px 16px rgba(2,6,23,.10));
}
.nav-desktop{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:nowrap;
}
.nav-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  color:#0f172a;
  font-weight:650;
  font-size:15px;
  border:1px solid transparent;
}
.nav-link i{opacity:.9}
.nav-link:hover{
  background: rgba(241,245,249,.9);
  border-color: rgba(226,232,240,1);
}
.nav-link.is-active{
  background: rgba(238,242,255,.85);
  border-color: rgba(165,180,252,.85);
}
.nav-dropdown{position:relative}
.dropdown-panel{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  width:260px;
  padding:10px;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(229,231,235,.9);
  border-radius:16px;
  box-shadow: var(--shadow2);
  display:none;
}
.nav-dropdown:hover .dropdown-panel{display:block}
.dropdown-panel a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  font-weight:650;
}
.dropdown-panel a:hover{
  background: rgba(241,245,249,.95);
}
.chevron{font-size:12px; opacity:.75}

/* mobile */
.nav-toggle{
  display:none;
  width:46px; height:46px;
  border-radius:16px;
  border:1px solid rgba(229,231,235,.95);
  background:rgba(255,255,255,.9);
  box-shadow: 0 10px 25px rgba(2,6,23,.08);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:20px; height:2px;
  background:#0f172a;
  margin:5px auto;
  border-radius:5px;
}
.nav-mobile{
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: min(360px, 92vw);
  background: #ffffff;
  border-left:1px solid rgba(229,231,235,.95);
  box-shadow: -30px 0 60px rgba(2,6,23,.10);
  transition: right .25s ease;
  z-index: 999999;
  padding:16px;
  overflow-y:auto;
}

.nav-mobile.is-open{
  right: 0;
}
.nav-mobile::-webkit-scrollbar{width:10px}
.nav-mobile::-webkit-scrollbar-thumb{background: rgba(100,116,139,.40); border-radius:999px; border:2px solid transparent; background-clip:padding-box}
.mobile-top{
  display:flex; align-items:center; justify-content:space-between;
  padding-bottom:10px;
  border-bottom:1px solid rgba(226,232,240,.9);
  margin-bottom:10px;
}
.mobile-title{font-weight:800; letter-spacing:.2px}
.nav-close{
  width:44px;height:44px;
  border-radius:16px;
  border:1px solid rgba(229,231,235,.95);
  background: rgba(241,245,249,.9);
  cursor:pointer;
}
.mobile-link, .mobile-sublink{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:16px;
  font-weight:700;
  border:1px solid transparent;
}
.mobile-link:hover,.mobile-sublink:hover{background: rgba(241,245,249,.95)}
.mobile-link.is-active,.mobile-sublink.is-active{
  border-color: rgba(165,180,252,.85);
  background: rgba(238,242,255,.85);
}
.mobile-divider{height:1px;background:rgba(226,232,240,.9); margin:12px 0}
.mobile-accordion{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  border-radius:16px;
  font-weight:800;
  border:1px solid transparent;
  background:transparent;
  cursor:pointer;
}
.mobile-accordion:hover{background: rgba(241,245,249,.95)}
.mobile-submenu{
  display:none;
  padding:6px 0 10px;
}
.mobile-submenu.is-open{display:block}
.mobile-sublink{margin-left:6px}

/* ============ Hero banner ============ */
.hero-banner{
  position:relative;
  padding:14px 0 0;
}
.img-frame{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(229,231,235,.95);
  background: #fff url("/assets/img/logoo.webp") center/92px no-repeat;
  box-shadow: var(--shadow);
}
.img-frame img{
  width:100%;
  height:auto;
  opacity:0;
  transition: opacity .25s ease;
}
.img-frame img.is-loaded{opacity:1}

.img-frame--hero{
  border-radius: 0 0 var(--radius) var(--radius);
  border-left:none;
  border-right:none;
  box-shadow: 0 24px 60px rgba(2,6,23,.10);
}
.hero-media{width:min(1180px, calc(100% - 32px)); margin-inline:auto;}
.hero-cta{
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom:18px;
  display:flex;
  gap:10px;
  width:min(1180px, calc(100% - 32px));
  justify-content:flex-end;
  pointer-events:none;
}
.hero-cta .btn{pointer-events:auto}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  font-weight:850;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,.24);
  box-shadow: 0 14px 0 rgba(2,6,23,.10), 0 20px 40px rgba(2,6,23,.10);
  transform: translateY(-2px);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
  user-select:none;
}
.btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 0 rgba(2,6,23,.12), 0 24px 50px rgba(2,6,23,.12);
  filter:saturate(1.03);
}
.btn:active{
  transform: translateY(0);
  box-shadow: 0 8px 0 rgba(2,6,23,.12), 0 12px 30px rgba(2,6,23,.10);
}
.btn-call{background: var(--orange); color:#fff}
.btn-wa{background: var(--green); color:#fff}
.btn-detail{background: #6b7280; color:#fff}

/* ============ Main layout ============ */
main{padding: 20px 0 40px}
.section{
  padding: 20px 0;
}
.section-title{
  text-align:center;
  margin: 6px 0 18px;
  font-size: clamp(22px, 2.3vw, 34px);
  letter-spacing:.2px;
}
.lead{
  text-align:center;
  color: var(--muted);
  max-width: 78ch;
  margin: 0 auto 18px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
}
.card{
  background: rgba(255,255,255,.86);
  border:1px solid rgba(229,231,235,.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-inner{padding:16px}
.card h3{margin:10px 0 6px}
.card p{margin:0; color:var(--muted)}
.card-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:14px;
}
.badges{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:12px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(241,245,249,.95);
  border:1px solid rgba(226,232,240,1);
  padding:8px 10px;
  border-radius:999px;
  font-weight:750;
  color:#0f172a;
  font-size:13px;
}

/* About + FAQ */
.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:start;
}
.article{
  padding:16px;
}
.article h2{margin-top:0}
.article p{color:var(--muted)}
.faq{
  padding:16px;
}
.faq-item{
  border:1px solid rgba(226,232,240,.95);
  border-radius:16px;
  margin:10px 0;
  overflow:hidden;
  background: rgba(255,255,255,.9);
}
.faq-q{
  width:100%;
  background:transparent;
  border:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 14px;
  font-weight:850;
  cursor:pointer;
}
.faq-a{
  display:none;
  padding:0 14px 14px;
  color:var(--muted);
}
.faq-item.is-open .faq-a{display:block}

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.review{
  padding:16px;
}
.review-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.review-name{font-weight:900}
.review-date{color:var(--muted); font-size:13px}
.stars{
  display:flex;
  gap:6px;
  margin:8px 0 10px;
}
.stars i{
  color:#f59e0b;
  filter: drop-shadow(0 6px 10px rgba(245,158,11,.15));
  animation: pulse 1.45s ease-in-out infinite;
}
.stars i:nth-child(2){animation-delay:.08s}
.stars i:nth-child(3){animation-delay:.16s}
.stars i:nth-child(4){animation-delay:.24s}
.stars i:nth-child(5){animation-delay:.32s}
@keyframes pulse{
  0%,100%{transform: scale(1); opacity:1}
  50%{transform: scale(1.12); opacity:.9}
}

/* Service pages */
.breadcrumbs{
  display:flex; flex-wrap:wrap; gap:8px;
  align-items:center;
  color: var(--muted);
  font-weight:650;
  font-size:14px;
  margin:10px 0 4px;
}
.breadcrumbs a{color:var(--muted)}
.breadcrumbs i{opacity:.8}
.page-hero{
  padding:12px 0 0;
}
.page-title{
  margin: 8px 0 8px;
  font-size: clamp(24px, 2.6vw, 40px);
}
.content-grid{
  display:grid;
  grid-template-columns: 1fr 380px;
  gap:16px;
  align-items:start;
}
.sidebox{
  position:sticky;
  top:92px;
  padding:14px;
}
.sidebox h3{margin:0 0 10px}
.search{
  display:flex; gap:8px;
  padding:10px;
  border-radius:16px;
  border:1px solid rgba(226,232,240,1);
  background:rgba(255,255,255,.9);
}
.search i{color:#64748b; margin-top:3px}
.search input{
  width:100%;
  border:none;
  outline:none;
  font-size:15px;
  background:transparent;
}
.region-list{
  margin-top:12px;
  display:grid;
  gap:8px;
  max-height: 52vh;
  overflow:auto;
  padding-right:6px;
  scrollbar-width: thin;
}
.region-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(226,232,240,1);
  background: rgba(255,255,255,.9);
  font-weight:800;
}
.region-list a:hover{background: rgba(241,245,249,.95)}
.region-list a small{color:var(--muted); font-weight:750}

.prose{
  padding:16px;
}
.prose h2,.prose h3{margin-top:22px}
.prose p, .prose li{color:var(--muted)}
.prose ul{margin:8px 0 8px 18px}

/* Footer */
.site-footer{
  margin-top: 20px;
  background: linear-gradient(180deg, rgba(245,247,251,.95), rgba(255,255,255,.98));
  border-top:1px solid rgba(229,231,235,.95);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap:16px;
  padding:22px 0;
}
.footer-logo{width:150px; height:auto; margin-bottom:10px}
.footer-text{margin:0; color:var(--muted)}
.footer-contact{
  margin-top:10px;
  display:grid;
  gap:8px;
}
.footer-contact a{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:800;
  color:#0f172a;
}
.footer-links h3{
  margin:0 0 10px;
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-links a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 10px;
  border-radius:16px;
  border:1px solid transparent;
  font-weight:800;
  color:#0f172a;
}
.footer-links a:hover{
  background: rgba(241,245,249,.95);
  border-color: rgba(226,232,240,1);
}
.footer-bullets{list-style:none; padding:0; margin:0; display:grid; gap:8px}
.footer-bullets li{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:650}
.footer-bullets i{color:#22c55e; margin-top:4px}
.footer-bottom{
  border-top:1px solid rgba(226,232,240,.9);
  padding:12px 0;
}
.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:var(--muted);
  font-weight:650;
}
.to-top{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(226,232,240,1);
  background:rgba(255,255,255,.9);
}

/* Mobile CTA bar */
.mobile-cta-bar{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:1300;
  display:flex;
  gap:10px;
  padding:10px;
  background: rgba(255,255,255,.94);
  border-top:1px solid rgba(229,231,235,.95);
  backdrop-filter: blur(10px);
}
.mobile-cta-bar .cta{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 12px;
  border-radius:16px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 25px rgba(2,6,23,.10);
}
.cta-call{background:var(--orange); color:#fff}
.cta-wa{background:var(--green); color:#fff}

/* ============ Responsive ============ */
@media (max-width: 980px){
  .nav-desktop{display:none}
  .nav-toggle{display:block}
  .hero-cta{justify-content:center}
  .grid-2{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .reviews{grid-template-columns: 1fr}
  .content-grid{grid-template-columns: 1fr}
  .sidebox{position:relative; top:auto}
  main{padding-bottom: 88px;} /* for mobile CTA bar */
  .footer-grid{grid-template-columns: 1fr}
}
@media (min-width: 981px){
  .mobile-cta-bar{display:none}
}

/* small tweaks */
@media (max-width: 420px){
  .brand-logo{width:136px}
  .btn{padding:11px 12px}
  .hero-cta{bottom:12px}
}









/* ===== MOBILE HEADER STACK FIX ===== */
@media (max-width: 980px){

  .site-header{
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-mobile{
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(360px, 92vw);
    transform: none !important;
    transition: right .25s ease !important;
    z-index: 999999 !important;
  }

  .nav-mobile.is-open{
    right: 0 !important;
  }

}






@media (max-width:980px){
  .grid-2{
    gap:60px;
  }
}




/* Mobil menü Hizmetler yazısı mavi olmasın */
.mobile-accordion{
  color:#0f172a !important;
  text-decoration:none !important;
}

.mobile-accordion:focus,
.mobile-accordion:active{
  color:#0f172a !important;
  outline:none;
}




/* Mobil menü Hizmetler yazı boyutu düzeltme */
.mobile-accordion{
  font-size:16px !important;   /* diğer menü linkleriyle aynı */
}





/* Mobil menü kapatma X ikon rengi */
.nav-close i{
  color: var(--orange) !important;
}







/* FAQ soru başlıklarını turuncu yap */
.faq-q{
  color: var(--orange) !important;
}






