/* ============ KANER GLOBAL İNŞAAT ============ */
:root {
  --navy: #0d1b2a;
  --navy-2: #13263c;
  --amber: #e8a33d;
  --amber-dark: #d18f28;
  --ink: #1c2733;
  --muted: #5c6b7a;
  --line: #e6eaef;
  --bg-soft: #f5f7fa;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(13, 27, 42, .1);
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-head: 'Sora', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 96px 0; }

/* ---- Butonlar ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 700; font-size: 15px; transition: all .25s ease;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-ghost { border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); }
.btn-nav { background: var(--amber); color: var(--navy); padding: 10px 22px; font-size: 14px; }
.btn-nav:hover { background: var(--amber-dark); }

/* ---- Topbar ---- */
.topbar { background: var(--navy); color: #cfd8e3; font-size: 13.5px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; gap: 16px; }
.topbar-left { display: flex; gap: 22px; }
.topbar-left a { display: inline-flex; align-items: center; gap: 7px; color: #cfd8e3; transition: color .2s; }
.topbar-left a:hover { color: var(--amber); }
.topbar-left svg { width: 15px; height: 15px; fill: var(--amber); }

/* ---- Navbar ---- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(13,27,42,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--navy); font-family: var(--font-head); font-weight: 800; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
}
.brand-text { font-family: var(--font-head); font-weight: 600; font-size: 19px; color: var(--navy); line-height: 1.1; display: flex; flex-direction: column; }
.brand-text b { font-weight: 800; }
.brand-text small { font-size: 10px; letter-spacing: 4.5px; color: var(--muted); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn) { font-weight: 600; font-size: 15px; color: var(--ink); position: relative; padding: 6px 0; }
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2.5px; width: 0;
  background: var(--amber); border-radius: 2px; transition: width .25s;
}
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { width: 100%; }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 3px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- Hero ---- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,27,42,.93) 0%, rgba(13,27,42,.75) 45%, rgba(13,27,42,.35) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; padding: 120px 0; }
.hero-kicker {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 3px;
  color: var(--amber); border: 1px solid rgba(232,163,61,.4);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 26px;
}
.hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; margin-bottom: 24px; }
.hero h1 span { color: var(--amber); }
.hero-sub { font-size: 18px; max-width: 560px; color: #d4dce6; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  animation: bob 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 22px; height: 22px; fill: #fff; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---- Section başlıkları ---- */
.section-kicker { font-size: 13px; font-weight: 800; letter-spacing: 3px; color: var(--amber-dark); margin-bottom: 12px; }
.section h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-sub { color: var(--muted); font-size: 17px; }

/* ---- Hakkımızda ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/4.6; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -24px; right: -18px;
  background: var(--amber); color: var(--navy);
  border-radius: var(--radius); padding: 20px 26px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
}
.about-badge strong { font-family: var(--font-head); font-size: 40px; font-weight: 800; }
.about-badge span { font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.about-text p:not(.section-kicker) { color: var(--muted); margin-bottom: 16px; }
.about-list { list-style: none; margin: 22px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.about-list svg { width: 21px; height: 21px; fill: var(--amber-dark); flex-shrink: 0; }

/* ---- Hizmetler ---- */
.services { background: var(--bg-soft); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 36px 30px;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon {
  width: 62px; height: 62px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(232,163,61,.16), rgba(232,163,61,.06));
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  transition: background .3s;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); }
.service-icon svg { width: 30px; height: 30px; fill: var(--amber-dark); transition: fill .3s; }
.service-card:hover .service-icon svg { fill: var(--navy); }
.service-card h3 { font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; }

/* ---- İstatistikler ---- */
.stats { position: relative; padding: 88px 0; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.stats-overlay { position: absolute; inset: 0; background: rgba(13,27,42,.9); }
.stats-inner { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat strong { font-family: var(--font-head); font-size: clamp(38px, 4.5vw, 56px); font-weight: 800; color: var(--amber); display: block; }
.stat span { color: #cfd8e3; font-weight: 600; font-size: 15px; }

/* ---- Neden Biz ---- */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: center; }
.why-item { display: flex; gap: 20px; margin-top: 28px; }
.why-num {
  font-family: var(--font-head); font-weight: 800; font-size: 18px;
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: var(--bg-soft); color: var(--amber-dark);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.why-item h3 { font-size: 18px; color: var(--navy); margin-bottom: 5px; }
.why-item p { color: var(--muted); font-size: 15px; }
.why-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }

/* ---- CTA ---- */
.cta { background: linear-gradient(120deg, var(--amber), var(--amber-dark)); padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta h2 { color: var(--navy); font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.cta p { color: rgba(13,27,42,.75); font-weight: 600; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- İletişim ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: stretch; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .3s, box-shadow .3s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.contact-icon svg { width: 25px; height: 25px; fill: var(--navy); }
.contact-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.contact-card p { color: var(--muted); font-size: 14.5px; }
.contact-card a:hover { color: var(--amber-dark); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ---- Footer ---- */
.footer { background: var(--navy); color: #b9c5d3; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px; padding: 72px 0 52px;
}
.footer .brand-text { color: #fff; }
.footer .brand-text small { color: #8fa0b3; }
.footer-brand p { margin-top: 18px; font-size: 14.5px; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; font-size: 14.5px; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 20px 0; font-size: 13.5px; }

/* ---- WhatsApp float ---- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---- Dropdown menü ---- */
.has-dropdown { position: relative; }
.drop-toggle { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; font-size: 15px; color: var(--ink); padding: 6px 0; position: relative; }
.drop-toggle svg { width: 16px; height: 16px; fill: currentColor; transition: transform .25s; }
.has-dropdown:hover .drop-toggle svg { transform: rotate(180deg); }
.drop-toggle::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2.5px; width: 0;
  background: var(--amber); border-radius: 2px; transition: width .25s;
}
.has-dropdown:hover .drop-toggle::after, .drop-toggle.active::after { width: 100%; }
.dropdown {
  position: absolute; top: 100%; left: -18px; min-width: 270px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s ease; z-index: 110;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(6px); }
.dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-weight: 600; font-size: 14.5px; color: var(--ink); transition: all .2s;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--amber-dark); padding-left: 18px; }

/* ---- Alt sayfa hero ---- */
.page-hero { position: relative; padding: 92px 0 72px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13,27,42,.95), rgba(13,27,42,.8)); }
.page-hero-content { position: relative; z-index: 2; color: #fff; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 48px); font-weight: 800; margin-bottom: 14px; }
.breadcrumbs { font-size: 14px; color: #9fb0c2; display: flex; gap: 10px; flex-wrap: wrap; }
.breadcrumbs a { color: #cfd8e3; transition: color .2s; }
.breadcrumbs a:hover { color: var(--amber); }
.breadcrumbs b { color: var(--amber); font-weight: 600; }
.breadcrumbs span { color: #55677c; }

/* ---- Hizmet detay ---- */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.prose p { color: var(--muted); margin-bottom: 18px; font-size: 16px; }
.prose strong { color: var(--ink); }
.prose h2 { font-size: 26px; color: var(--navy); margin: 38px 0 18px; }
.content-img { border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 28px; width: 100%; aspect-ratio: 16/8.5; object-fit: cover; }
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; font-size: 15px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 13px 16px; }
.check-list svg { width: 20px; height: 20px; fill: var(--amber-dark); flex-shrink: 0; margin-top: 2px; }
.steps { display: grid; gap: 18px; }
.step { display: flex; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.step-num { font-family: var(--font-head); font-weight: 800; color: var(--amber-dark); font-size: 17px; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step h3 { font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.step p { margin: 0; font-size: 14.5px; }

/* ---- FAQ ---- */
.faq { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 17px 20px; font-weight: 700; font-family: var(--font-head); font-size: 15.5px; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 20px; height: 20px; fill: var(--amber-dark); flex-shrink: 0; transition: transform .25s; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p { padding: 0 20px 18px; margin: 0; }

/* ---- Sidebar ---- */
.service-sidebar { display: grid; gap: 24px; position: sticky; top: 96px; }
.sidebar-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.sidebar-box h3 { font-size: 18px; color: var(--navy); margin-bottom: 16px; }
.sidebar-links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 14px; border-radius: 9px; font-weight: 600; font-size: 14.5px; color: var(--ink);
  transition: all .2s; margin-bottom: 4px;
}
.sidebar-links a:hover { background: #fff; color: var(--amber-dark); }
.sidebar-links a.current { background: var(--navy); color: #fff; }
.sidebar-links a.current svg { fill: var(--amber); }
.sidebar-links svg { width: 17px; height: 17px; fill: var(--muted); }
.sidebar-cta { background: var(--navy); border-radius: var(--radius); padding: 28px 24px; color: #cfd8e3; }
.sidebar-cta h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.sidebar-cta p { font-size: 14.5px; margin-bottom: 18px; }
.sidebar-cta .btn { width: 100%; justify-content: center; margin-bottom: 10px; font-size: 14.5px; padding: 13px 16px; }
.btn-ghost-dark { border: 2px solid rgba(255,255,255,.35); color: #fff; }
.btn-ghost-dark:hover { border-color: var(--amber); color: var(--amber); }

/* ---- Hizmetler indeks kartları ---- */
.cards-with-img .link-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.link-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.link-card-body { padding: 24px 24px 26px; }
.link-card-body h2 { font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.link-card-body p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.link-card .more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--amber-dark); }
.link-card .more svg { width: 17px; height: 17px; fill: currentColor; transition: transform .25s; }
.link-card:hover .more svg { transform: translateX(4px); }

/* ---- Değerler (hakkımızda) ---- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.value-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; padding-bottom: 10px; border-bottom: 3px solid var(--amber); display: inline-block; }
.value-card p { color: var(--muted); font-size: 14.5px; }

/* ---- Kart linki (ana sayfa) ---- */
.service-card .card-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--amber-dark); margin-top: 14px; }
.service-card .card-more svg { width: 17px; height: 17px; fill: currentColor; transition: transform .25s; }
.service-card:hover .card-more svg { transform: translateX(4px); }

/* ---- Reveal animasyonu ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 520px; }
  .why-media { order: -1; max-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .check-list, .values-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 64px 0 48px; }
  .has-dropdown { width: 100%; }
  .drop-toggle { color: #fff; font-size: 18px; padding: 12px 0; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none; padding: 0 0 0 14px; min-width: 0;
  }
  .dropdown a { color: #b9c5d3; font-size: 15px; padding: 8px 0; }
  .dropdown a:hover { background: transparent; padding-left: 6px; }
  .topbar-right { display: none; }
  .hamburger { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 82vw);
    background: var(--navy); flex-direction: column; align-items: flex-start;
    padding: 96px 34px; gap: 8px; transition: right .35s ease; z-index: 99;
  }
  .nav-links.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,.35); }
  .nav-links a:not(.btn) { color: #fff; font-size: 18px; padding: 12px 0; }
  .nav-links .btn-nav { margin-top: 18px; }
  .hamburger { position: relative; z-index: 100; }
  .hamburger.open span { background: #fff; }
  .services-grid, .contact-cards { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .stats-bg { background-attachment: scroll; }
  .about-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding: 56px 0 40px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .about-badge { right: 8px; bottom: -20px; padding: 14px 20px; }
  .about-badge strong { font-size: 30px; }
}
