/* =====================================================================
   ANTİKYAPI - Kurumsal Tasarım Sistemi
   Antrasit / Siyah / Gri / Kırmızı vurgu — mimari, premium, sade
   ===================================================================== */

:root {
  --ink:        #16181d;   /* antrasit-siyah */
  --ink-2:      #1e2229;   /* koyu panel */
  --ink-3:      #2a2f38;
  --graphite:   #3a4048;
  --gray:       #6b7280;
  --gray-2:     #9aa1ab;
  --line:       #e6e8ec;
  --mist:       #f4f5f7;   /* açık gri zemin */
  --mist-2:     #eceef1;
  --white:      #ffffff;
  --red:        #c8102e;   /* marka kırmızısı */
  --red-dark:   #a20d25;
  --red-soft:   rgba(200,16,46,.08);

  --font: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  --head: "Manrope", "Inter", "Segoe UI", sans-serif;

  --radius:  14px;
  --radius-s: 9px;
  --shadow:  0 10px 30px rgba(16,18,23,.08);
  --shadow-lg: 0 24px 60px rgba(16,18,23,.14);
  --shadow-sm: 0 4px 14px rgba(16,18,23,.06);
  --container: 1240px;
  --nav-h: 78px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
h1,h2,h3,h4 { font-family: var(--head); font-weight: 800; line-height: 1.15; color: var(--ink); margin: 0 0 .6em; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---- Utility ---- */
.text-red { color: var(--red); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--head); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); display: inline-block; }
.section { padding: 92px 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #d9dce2; }
.section--ink h1,.section--ink h2,.section--ink h3 { color: #fff; }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head p { color: var(--gray); font-size: 1.05rem; margin: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--head); font-weight: 700; font-size: .95rem;
  padding: 13px 26px; border-radius: var(--radius-s);
  border: 1.5px solid transparent; cursor: pointer;
  transition: all .25s var(--ease); white-space: nowrap;
}
.btn i { font-size: 1.05em; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(200,16,46,.28); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(200,16,46,.36); color:#fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); color:#fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.08); color:#fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background:#fff; color: var(--ink); border-color:#fff; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* =====================================================================
   TOPBAR
   ===================================================================== */
.topbar {
  background: var(--ink); color: var(--gray-2);
  font-size: .84rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 42px; }
.topbar a { color: var(--gray-2); }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 22px; }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 7px; }
.topbar-left i { color: var(--red); }
.topbar-social { display: flex; gap: 14px; align-items:center; }
.topbar-social a { font-size: .95rem; }
@media (max-width: 860px){ .topbar { display: none; } }

/* =====================================================================
   NAVBAR
   ===================================================================== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: var(--red); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 56px; width: auto; }
.nav-logo .brand-text { font-family: var(--head); font-weight: 800; font-size: 1.32rem; letter-spacing: -.02em; color: var(--ink); }
.nav-logo .brand-text b { color: var(--red); }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--head); font-weight: 600; font-size: .96rem;
  padding: 12px 15px; color: var(--ink-2); border-radius: 8px;
}
.nav-menu > li > a .chev { font-size: .7rem; transition: transform .25s; opacity:.6; }
.nav-menu > li:hover > a { color: var(--red); }
.nav-menu > li:hover > a .chev { transform: rotate(180deg); }
.nav-menu > li > a.active { color: var(--red); }
.nav-menu > li > a.active::after { content:""; position:absolute; left:15px; right:15px; bottom:4px; height:2px; background: var(--red); }

/* Dropdown */
.dropdown-menu-c {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 10px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .24s var(--ease); z-index: 100;
}
.nav-menu > li:hover .dropdown-menu-c { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu-c li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 15px; border-radius: 8px; font-weight: 600; font-size: .92rem; color: var(--ink-2);
  border-left: 2px solid transparent;
}
.dropdown-menu-c li a:hover { background: var(--mist); color: var(--red); border-left-color: var(--red); padding-left: 18px; }

/* Mega menu (Ürünler) */
.mega {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: min(620px, 92vw); background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-lg); padding: 12px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px;
  opacity: 0; visibility: hidden; transition: all .26s var(--ease); z-index: 100;
}
.nav-menu > li:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 15px; border-radius: 10px; border-left: 2px solid transparent;
  transition: background .2s, border-color .2s, padding-left .2s;
}
.mega-item:hover { background: var(--mist); border-left-color: var(--red); }
.mega-item .tx b { font-family: var(--head); display: block; font-size: .95rem; color: var(--ink); margin-bottom: 1px; font-weight: 700; }
.mega-item .tx span { font-size: .8rem; color: var(--gray); line-height: 1.4; }
.mega-item .mega-arrow { color: var(--red); font-size: .95rem; opacity: 0; transform: translateX(-6px); transition: .2s; }
.mega-item:hover .mega-arrow { opacity: 1; transform: none; }
.mega-all {
  grid-column: 1 / -1; margin-top: 6px; padding: 13px 15px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--head); font-weight: 700; font-size: .9rem; color: var(--red);
}
.mega-all:hover { color: var(--red-dark); }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.7rem; color: var(--ink); cursor: pointer; padding: 6px; }

@media (max-width: 1100px){
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(380px, 88vw);
  background: var(--ink); color: #fff; z-index: 2000;
  transform: translateX(100%); transition: transform .32s var(--ease);
  display: flex; flex-direction: column; padding: 22px; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1999; opacity: 0; visibility: hidden; transition: .3s; }
.mobile-backdrop.open { opacity: 1; visibility: visible; }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mobile-nav-head .brand-text { font-family: var(--head); font-weight: 800; font-size: 1.2rem; }
.mobile-nav-head .brand-text b { color: var(--red); }
.mobile-close { background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }
.m-menu { list-style: none; }
.m-menu > li { border-bottom: 1px solid rgba(255,255,255,.08); }
.m-menu > li > a, .m-menu .m-parent {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 4px; font-family: var(--head); font-weight: 600; font-size: 1.02rem; color: #fff; cursor: pointer;
}
.m-menu .m-parent .chev { transition: transform .25s; color: var(--red); }
.m-menu .m-parent.open .chev { transform: rotate(180deg); }
.m-sub { list-style: none; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.m-sub.open { max-height: 500px; }
.m-sub li a { display: block; padding: 11px 4px 11px 16px; color: var(--gray-2); font-size: .94rem; }
.m-sub li a:hover { color: var(--red); }
.mobile-nav .btn { margin-top: 20px; justify-content: center; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, #15171c 0%, #1d222b 55%, #23252b 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.hero__bg::after { content:""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,22,27,.96) 0%, rgba(20,22,27,.72) 45%, rgba(20,22,27,.42) 100%); }
.hero__inner { position: relative; z-index: 2; padding: 96px 0 80px; max-width: 760px; }
.hero__inner h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.08; margin-bottom: 22px; }
.hero__inner h1 .hl { color: var(--red); }
.hero__lead { font-size: 1.15rem; color: #c3c8d0; max-width: 620px; margin-bottom: 32px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 26px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__trust span { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; color: #cbd0d8; font-weight: 500; }
.hero__trust i { color: var(--red); font-size: 1.1rem; }
@media (max-width: 640px){ .hero__inner { padding: 60px 0 54px; } }

/* =====================================================================
   STAT BAR
   ===================================================================== */
.stats { background: var(--ink-2); }
.stats .container { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; padding: 46px 24px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--head); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; letter-spacing: -.02em; }
.stat .num b { color: var(--red); }
.stat .lbl { font-size: .86rem; color: var(--gray-2); margin-top: 4px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.08); }
@media (max-width: 900px){
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat + .stat { border-left: none; }
}

/* =====================================================================
   CARDS - Kategori / Ürün
   ===================================================================== */
.grid { display: grid; gap: 26px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px){ .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 620px){ .grid-4,.grid-3,.grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--mist); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag { position: absolute; top: 12px; left: 12px; background: rgba(22,24,29,.85); color:#fff; font-size:.72rem; font-weight:700; padding: 5px 11px; border-radius: 50px; letter-spacing:.04em; }
.card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card__body p { color: var(--gray); font-size: .93rem; flex: 1; margin-bottom: 16px; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.card__link { font-family: var(--head); font-weight: 700; font-size: .9rem; color: var(--red); display:inline-flex; align-items:center; gap:6px; }
.card__link i { transition: transform .25s; }
.card:hover .card__link i { transform: translateX(4px); }

/* Kategori büyük kart */
.cat-card .card__media { aspect-ratio: 16/10; }
.cat-card .ic-badge {
  position: absolute; bottom: -22px; left: 22px; width: 52px; height: 52px; border-radius: 13px;
  background: var(--red); color:#fff; display:grid; place-items:center; font-size:1.5rem; box-shadow: 0 10px 22px rgba(200,16,46,.35);
}
.cat-card .card__body { padding-top: 34px; }

/* Ürün mini kart (Bütün Ürünlerimiz) */
.pcard { position: relative; border-radius: var(--radius-s); overflow: hidden; aspect-ratio: 4/3.4; display:block; box-shadow: var(--shadow-sm); }
.pcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pcard::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(15,17,21,.9) 0%, rgba(15,17,21,.15) 55%, transparent 100%); }
.pcard:hover img { transform: scale(1.08); }
.pcard .pcard__t { position: absolute; left: 16px; right: 16px; bottom: 15px; z-index: 2; color:#fff; }
.pcard .pcard__t b { font-family: var(--head); font-size: 1.02rem; display:block; line-height:1.25; }
.pcard .pcard__t span { font-size:.78rem; color:#c9ccd2; display:inline-flex; align-items:center; gap:5px; margin-top:4px; }
.pcard .pcard__t span i { color: var(--red); }

/* Ürün kayan şerit (otomatik + manuel kaydırmalı) */
.pslider { position: relative; overflow-x: auto; overflow-y: hidden; padding: 8px 0;
  scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: auto;
  -webkit-overflow-scrolling: touch; cursor: grab;
  -webkit-mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.pslider::-webkit-scrollbar { display: none; height: 0; }
.pslider:active { cursor: grabbing; }
.pslider-track { display: flex; width: max-content; }
.pslider .pcard { flex: 0 0 258px; width: 258px; height: 300px; aspect-ratio: auto; margin-right: 22px; }
@media (max-width: 640px){
  .pslider .pcard { flex-basis: 210px; width: 210px; height: 250px; margin-right: 16px; }
}

/* =====================================================================
   HAKKIMIZDA (split)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 940px){ .split { grid-template-columns: 1fr; gap: 36px; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.split__badge {
  position: absolute; bottom: -24px; left: -24px; background: var(--red); color:#fff;
  border-radius: var(--radius); padding: 20px 26px; box-shadow: var(--shadow-lg); text-align:center;
}
.split__badge .b-num { font-family: var(--head); font-weight: 800; font-size: 2.2rem; line-height:1; }
.split__badge .b-lbl { font-size: .82rem; opacity: .92; margin-top: 4px; }
@media (max-width: 560px){ .split__badge { left: 12px; bottom: 12px; padding: 14px 18px; } }
.feature-list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.feature-list li i { color: var(--red); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }

/* =====================================================================
   NEDEN ANTİKYAPI
   ===================================================================== */
.why-card {
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius);
  padding: 28px; transition: transform .3s var(--ease), border-color .3s;
}
.why-card:hover { transform: translateY(-5px); border-color: var(--red); }
.why-card .ic { width: 52px; height: 52px; border-radius: 12px; background: var(--red-soft); color: var(--red); display:grid; place-items:center; font-size:1.5rem; margin-bottom: 16px; }
.why-card h3 { color:#fff; font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { color: var(--gray-2); font-size: .92rem; margin: 0; }

/* Değer kartları */
.value-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: .3s var(--ease); }
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.value-card .n { font-family: var(--head); font-weight: 800; color: var(--red); font-size: 1.1rem; margin-bottom: 10px; display:inline-block; }
.value-card p { margin: 0; color: var(--ink-2); font-size: .96rem; }

/* =====================================================================
   PARTNER SLIDER
   ===================================================================== */
.partners { background: #fff; padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner-track { display: flex; align-items: center; gap: 60px; overflow: hidden; }
.partner-slide { flex: 0 0 auto; }
.partner-slide img { height: 54px; width: auto; filter: grayscale(1); opacity: .6; transition: .3s; }
.partner-slide:hover img { filter: grayscale(0); opacity: 1; }
.marquee { display: flex; gap: 60px; animation: marquee 28s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================================
   HABER / REFERANS
   ===================================================================== */
.news-card .card__meta { font-size: .82rem; color: var(--gray); display:inline-flex; align-items:center; gap:7px; margin-bottom: 10px; }
.news-card .card__meta i { color: var(--red); }
.ref-card .card__media { aspect-ratio: 16/12; }

/* =====================================================================
   PAGE HERO / BREADCRUMB
   ===================================================================== */
.page-hero { position: relative; background: var(--ink); color:#fff; padding: 64px 0 58px; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: linear-gradient(120deg, #15171c, #23262d); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color:#fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: var(--gray-2); max-width: 640px; margin: 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items:center; font-size: .86rem; color: var(--gray-2); margin-bottom: 18px; }
.breadcrumb a { color: var(--gray-2); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .cur { color: #fff; }

/* =====================================================================
   İÇERİK / PROSE
   ===================================================================== */
.prose { font-size: 1.04rem; color: var(--ink-2); }
.prose h2,.prose h3 { margin-top: 1.6em; }
.prose h3 { font-size: 1.35rem; color: var(--ink); }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 10px; margin: 1rem 0 1.4rem; }
.prose ul li { padding-left: 30px; position: relative; }
.prose ul li::before { content:"\F26E"; font-family: "bootstrap-icons"; position:absolute; left:0; top:0; color: var(--red); }
.prose img { border-radius: var(--radius); margin: 1.4rem 0; }

.spec-list { list-style: none; display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-list li { display: flex; gap: 12px; padding: 14px 18px; align-items: center; }
.spec-list li:nth-child(odd) { background: var(--mist); }
.spec-list li i { color: var(--red); font-size: 1.15rem; }

.info-box { background: var(--mist); border-left: 4px solid var(--red); border-radius: var(--radius-s); padding: 22px 24px; }
.info-box h4 { margin: 0 0 6px; }

/* =====================================================================
   FORMLAR
   ===================================================================== */
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px){ .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--head); font-weight: 600; font-size: .88rem; color: var(--ink-2); }
.form-group label .req { color: var(--red); }
.form-control {
  font-family: var(--font); font-size: .96rem; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: var(--radius-s); background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--gray); }
.form-check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--red); flex-shrink: 0; }
.form-check a { color: var(--red); font-weight: 600; }

.alert { padding: 14px 18px; border-radius: var(--radius-s); font-size: .94rem; margin-bottom: 20px; display:flex; gap:10px; align-items:center; }
.alert-success { background: #e8f6ee; color: #1c7a43; border: 1px solid #bfe6cd; }
.alert-error { background: #fdeaec; color: #a20d25; border: 1px solid #f3c6cd; }

.contact-info-card { background: var(--ink); color:#d9dce2; border-radius: var(--radius); padding: 32px; }
.contact-info-card h3 { color:#fff; }
.ci-item { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.ci-item:last-child { border-bottom: none; }
.ci-item .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--red); color:#fff; display:grid; place-items:center; font-size:1.2rem; flex-shrink:0; }
.ci-item b { display:block; color:#fff; font-family: var(--head); font-size: .82rem; text-transform: uppercase; letter-spacing:.08em; margin-bottom: 3px; }
.ci-item span, .ci-item a { color: var(--gray-2); font-size: .96rem; }
.ci-item a:hover { color:#fff; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 400px; background: var(--mist); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta-banner { position: relative; background: var(--red); color:#fff; border-radius: var(--radius); overflow: hidden; padding: 54px 48px; }
.cta-banner::after { content:""; position:absolute; right:-40px; top:-40px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta-banner .container-inner { position: relative; z-index: 2; display:flex; flex-wrap: wrap; align-items:center; justify-content: space-between; gap: 24px; }
.cta-banner h2 { color:#fff; font-size: clamp(1.5rem,3vw,2.1rem); margin: 0 0 6px; }
.cta-banner p { color: rgba(255,255,255,.9); margin: 0; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: #0f1115; color: #9aa1ab; padding: 72px 0 0; }
.footer a { color: #9aa1ab; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 940px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 46px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .92rem; line-height: 1.7; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); display:grid; place-items:center; font-size:1.1rem; transition:.25s; }
.footer-social a:hover { background: var(--red); color:#fff; transform: translateY(-3px); }
.footer-col h4 { color:#fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col ul li a { font-size: .92rem; }
.footer-contact li { display:flex; gap:10px; font-size:.92rem; margin-bottom: 12px; align-items: flex-start; }
.footer-contact li i { color: var(--red); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display:flex; flex-wrap:wrap; justify-content: space-between; gap: 14px; font-size: .85rem; }
.footer-bottom .links { display:flex; gap: 18px; flex-wrap: wrap; }

/* =====================================================================
   AOS lite (custom reveal)
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* Scroll top */
.scrolltop { position: fixed; left: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 12px; background: var(--red); color:#fff; display:grid; place-items:center; font-size:1.3rem; box-shadow: var(--shadow); z-index: 900; opacity:0; visibility:hidden; transform: translateY(10px); transition:.3s; cursor:pointer; border:none; }
.scrolltop.show { opacity:1; visibility:visible; transform: none; }

/* Sabit yüzen aksiyon butonları (Ara + WhatsApp) */
.float-actions { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.float-btn {
  display: flex; flex-direction: row-reverse; align-items: center; gap: 0; height: 54px; width: 54px;
  border-radius: 50px; color: #fff; box-shadow: var(--shadow-lg);
  overflow: hidden; transition: width .3s var(--ease), transform .2s, box-shadow .2s; position: relative;
}
.float-btn i { flex: 0 0 54px; display: grid; place-items: center; font-size: 1.55rem; height: 54px; }
.float-btn .float-label { white-space: nowrap; font-family: var(--head); font-weight: 700; font-size: .92rem; padding-left: 20px; opacity: 0; transition: opacity .25s; }
.float-btn:hover { width: 168px; color: #fff; transform: translateY(-2px); }
.float-btn:hover .float-label { opacity: 1; }
.call-float { background: var(--red); animation: callPulse 2.4s infinite; }
@keyframes callPulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,16,46,.5), var(--shadow-lg); }
  70%  { box-shadow: 0 0 0 14px rgba(200,16,46,0), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(200,16,46,0), var(--shadow-lg); }
}
@media (max-width: 640px){
  .float-actions { right: 16px; bottom: 16px; gap: 10px; }
  .float-btn:hover { width: 54px; }
  .float-btn:hover .float-label { opacity: 0; }
}
