/* ============================================
   DINAMIK COOLING – ORTAK STILLER
   ============================================ */

/* ── Değişkenler ── */
:root {
  --primary:    #0ea5e9;
  --primary-dk: #0284c7;
  --bg:         #ffffff;
  --bg-alt:     #f0f7fd;
  --card:       #ffffff;
  --border:     #d9eaf6;
  --text:       #0f172a;
  --sub:        #1e3a5f;
  --muted:      #567392;
  --success:    #059669;
  --shadow-sm:  0 2px 12px rgba(14,165,233,.07);
  --shadow-md:  0 12px 40px rgba(14,165,233,.12);
  --shadow-lg:  0 24px 64px rgba(14,165,233,.16);
}

/* ── Temel ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--text); }
p { color: var(--muted); margin-bottom: 0; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Bölüm Yapısı ── */
.sec     { padding: 100px 0; background: var(--bg); }
.sec-alt { background: var(--bg-alt); }
.sec-divider { height: 1px; background: var(--border); }

.s-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,.1); color: var(--primary);
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 50px; margin-bottom: 16px;
  border: 1px solid rgba(14,165,233,.25);
}
.s-title { font-size: clamp(26px,4vw,42px); font-weight: 900; margin-bottom: 14px; color: var(--text); }
.s-sub   { font-size: 16px; color: var(--muted); max-width: 620px; line-height: 1.7; }
.line    { width: 52px; height: 3px; background: var(--primary); border-radius: 4px; margin-bottom: 22px; }

/* ── Navbar ── */
#dc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: all .35s;
}
#dc-nav .nav-brand { font-size: 21px; font-weight: 900; letter-spacing: -.02em; color: #fff; display: inline-flex; align-items: center; }
#dc-nav .nav-brand span { color: var(--primary); }
#dc-nav .nav-lnk {
  color: rgba(255,255,255,.85) !important; font-size: 13.5px; font-weight: 500;
  padding: 7px 13px !important; transition: color .2s;
}
#dc-nav .nav-lnk:hover,
#dc-nav .nav-lnk.active { color: #fff !important; }
#dc-nav .lang-pill {
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.3); padding: 6px 18px;
  border-radius: 50px; font-size: 13px; font-weight: 700; transition: all .2s;
}
#dc-nav .lang-pill:hover { background: #fff; color: var(--primary); }

#dc-nav.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(14,165,233,.1);
}
#dc-nav.scrolled .nav-brand   { color: var(--text); }
#dc-nav.scrolled .nav-lnk     { color: rgba(15,23,42,.65) !important; }
#dc-nav.scrolled .nav-lnk:hover,
#dc-nav.scrolled .nav-lnk.active { color: var(--primary) !important; }
#dc-nav.scrolled .lang-pill   { background: rgba(14,165,233,.08); color: var(--primary); border-color: rgba(14,165,233,.25); }
#dc-nav.scrolled .lang-pill:hover { background: var(--primary); color: #fff; }
#dc-nav.scrolled .nav-hamburger { color: var(--text) !important; }

#mob-nav .mob-link {
  display: block; padding: 10px 20px;
  font-size: 14px; font-weight: 500; color: var(--sub) !important;
  transition: color .2s;
}
#mob-nav .mob-link:hover,
#mob-nav .mob-link.active { color: var(--primary) !important; }

/* ── İç Sayfa Hero ── */
.inner-hero {
  padding: 160px 0 60px;
  background: linear-gradient(135deg, #0c1c2e 0%, #0a2540 60%, #0c2d4a 100%);
  position: relative; overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 50%; height: 160%;
  background: radial-gradient(ellipse, rgba(14,165,233,.12) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero::after {
  content: ''; position: absolute; bottom: -40%; left: -10%;
  width: 45%; height: 140%;
  background: radial-gradient(ellipse, rgba(14,165,233,.08) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero .container { position: relative; z-index: 2; }
.inner-hero-title {
  font-size: clamp(28px,4vw,44px); font-weight: 900;
  color: #fff; margin-bottom: 12px;
}
.inner-hero-sub {
  font-size: 16px; color: rgba(255,255,255,.65);
  max-width: 560px; margin-bottom: 20px; line-height: 1.7;
}
.inner-hero .breadcrumb { margin-bottom: 0; }
.inner-hero .breadcrumb-item { font-size: 13px; }
.inner-hero .breadcrumb-item a { color: rgba(255,255,255,.6); transition: color .2s; }
.inner-hero .breadcrumb-item a:hover { color: var(--primary); }
.inner-hero .breadcrumb-item.active { color: var(--primary); }
.inner-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* ── Ana Sayfa Hero ── */
.hero {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?q=80&w=2000') center/cover no-repeat;
  position: relative; display: flex; align-items: center; padding-top: 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(4,10,22,.93) 40%, rgba(4,12,30,.60) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 90px 0 70px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,.18); border: 1px solid rgba(14,165,233,.4);
  color: #7dd3fc; font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 28px;
  letter-spacing: .08em; text-transform: uppercase;
}
.hero-title {
  font-size: clamp(30px,5vw,56px); font-weight: 900;
  line-height: 1.15; color: #fff; margin-bottom: 22px;
}
.hero-title em { font-style: normal; color: #38bdf8; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.72); max-width: 600px; margin-bottom: 36px; }
.trust-bar {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.12); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 14px;
  padding: 22px 0; margin-top: 56px;
}
.trust-item { display: flex; align-items: center; gap: 14px; padding: 10px 28px; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.15); }
.trust-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(14,165,233,.25); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #7dd3fc;
}
.trust-txt { font-size: 13.5px; font-weight: 600; color: #fff; line-height: 1.3; }

/* ── Butonlar ── */
.btn-hpri {
  background: var(--primary); color: #fff;
  padding: 15px 32px; border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px; border: none;
}
.btn-hpri:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: 0 14px 38px rgba(14,165,233,.4); color: #fff; }
.btn-hout {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.35); padding: 15px 32px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(8px);
}
.btn-hout:hover { background: rgba(255,255,255,.2); border-color: #fff; color: #fff; transform: translateY(-2px); }
.btn-cpri {
  background: #fff; color: var(--primary) !important; border: none;
  padding: 15px 30px; border-radius: 8px; font-size: 14px; font-weight: 700;
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-cpri:hover { background: #e0f2fe; transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0,0,0,.15); }
.btn-cgrn {
  background: var(--success); color: #fff !important; border: none;
  padding: 15px 30px; border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-cgrn:hover { background: #047857; transform: translateY(-2px); box-shadow: 0 14px 38px rgba(5,150,105,.35); }
.btn-cout {
  background: transparent; color: rgba(255,255,255,.9) !important;
  border: 1.5px solid rgba(255,255,255,.35); padding: 15px 30px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-cout:hover { border-color: #fff; color: #fff !important; transform: translateY(-2px); }
.btn-detay {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  padding: 8px 18px; border-radius: 8px;
  border: 1.5px solid rgba(14,165,233,.3);
  background: rgba(14,165,233,.05);
  transition: all .25s;
}
.btn-detay:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Hakkımızda ── */
.about-hl {
  background: #d9effb; border-radius: 14px;
  padding: 30px; border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}
.astat-box { text-align: center; padding: 20px; border-right: 1px solid #0ea5e9; }
.astat-box:last-child { border-right: none; }
.astat-num { font-size: 38px; font-weight: 900; color: var(--primary); line-height: 1; display: block; }
.astat-lbl { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }

/* ── Hizmet Kartları ── */
.svc-card {
  display: flex; align-items: flex-start; gap: 22px;
  padding: 30px; border: 1.5px solid var(--border); border-radius: 14px;
  background: var(--card); transition: all .3s; height: 100%;
  box-shadow: var(--shadow-sm);
}
.svc-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-ico {
  width: 54px; height: 54px; flex-shrink: 0;
  background: rgba(14,165,233,.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--primary); transition: all .3s;
}
.svc-card:hover .svc-ico { background: var(--primary); color: #fff; }
.svc-body h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.svc-body p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── Sektör Kartları ── */
.sec-card {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 20px; border: 1.5px solid var(--border);
  border-radius: 12px; background: var(--card);
  transition: all .3s; height: 100%; box-shadow: var(--shadow-sm);
}
.sec-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sec-ico {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(14,165,233,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary); transition: .3s;
}
.sec-card:hover .sec-ico { background: var(--primary); color: #fff; }
.sec-card h5 { font-size: 15px; font-weight: 600; margin: 0; color: var(--text); }
.sec-card:hover h5 { color: var(--primary); }

/* ── Ürün Kartları ── */
.prod-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 28px; height: 100%;
  transition: all .3s; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.prod-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--primary);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.prod-card:hover::after { transform: scaleX(1); }
.prod-card:hover { border-color: rgba(14,165,233,.35); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.prod-ico {
  width: 50px; height: 50px;
  background: rgba(14,165,233,.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; color: var(--primary); margin-bottom: 16px; transition: .3s;
}
.prod-card:hover .prod-ico { background: var(--primary); color: #fff; }
.prod-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.prod-card p  { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── Süreç Adımları ── */
.step-card {
  position: relative; padding: 38px 28px 28px;
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 14px; height: 100%; transition: all .3s;
  box-shadow: var(--shadow-sm);
}
.step-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-no {
  position: absolute; top: -16px; left: 28px;
  width: 34px; height: 34px; background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 800; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(14,165,233,.4);
}
.step-ico {
  width: 54px; height: 54px; background: rgba(14,165,233,.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary); margin-bottom: 18px;
}
.step-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step-card p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── Neden Biz Kartları ── */
.why-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px; border-radius: 12px; border: 1.5px solid var(--border);
  background: var(--card); height: 100%; transition: all .3s;
  box-shadow: var(--shadow-sm);
}
.why-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); background: #f6fbff; }
.why-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(14,165,233,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; color: var(--primary); transition: .3s;
}
.why-card:hover .why-ico { background: var(--primary); color: #fff; }
.why-body h5 { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.why-body p  { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ── İstatistik ── */
.stats-sec { background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%); }
.stat-box { text-align: center; padding: 60px 20px; border-right: 1px solid rgba(255,255,255,.18); }
.stat-box:last-child { border-right: none; }
.stat-num  { font-size: 54px; font-weight: 900; color: #fff; line-height: 1; display: block; margin-bottom: 6px; }
.stat-lbl  { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .07em; }

/* ── Proje Kartları ── */
.proj-card {
  border-radius: 14px; overflow: hidden;
  border: 1.5px solid var(--border); background: var(--card);
  transition: all .4s; box-shadow: var(--shadow-sm); height: 100%;
}
.proj-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(14,165,233,.35); }
.proj-img { width: 100%; height: 210px; object-fit: cover; transition: transform .5s; }
.proj-card:hover .proj-img { transform: scale(1.06); }
.proj-body { padding: 22px; }
.proj-tag {
  display: inline-block; background: rgba(14,165,233,.1); color: var(--primary);
  font-size: 11px; font-weight: 700; padding: 3px 11px; border-radius: 50px;
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em;
}
.proj-body h5  { font-size: 16px; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.proj-loc      { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.proj-body p   { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── Şantiye Kartları ── */
.const-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 26px 28px;
  display: flex; gap: 20px; align-items: flex-start; transition: all .3s;
  box-shadow: var(--shadow-sm);
}
.const-card:hover { border-color: var(--primary); transform: translateX(5px); box-shadow: var(--shadow-md); }
.const-card .ico {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(14,165,233,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary);
}
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(5,150,105,.1); color: var(--success);
  font-size: 11px; font-weight: 700; padding: 3px 11px;
  border-radius: 50px; margin-bottom: 6px;
}
.live-dot {
  width: 6px; height: 6px; background: var(--success);
  border-radius: 50%; animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.const-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.const-card p  { font-size: 13px; color: var(--muted); margin: 0; }

/* ── Uluslararası ── */
.intl-sec {
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.flag-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px; border: 1.5px solid var(--border);
  border-radius: 12px; background: var(--card);
  font-size: 14px; font-weight: 600; transition: all .3s;
  box-shadow: var(--shadow-sm);
}
.flag-pill:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.flag-pill .fl { font-size: 22px; }
.flag-pill h6  { font-size: 15px; font-weight: 700; margin: 0 0 2px; color: var(--text); }
.flag-pill small { font-size: 12px; color: var(--muted); font-weight: 400; }

/* ── SSS ── */
.faq-item {
  border: 1.5px solid var(--border); border-radius: 12px;
  margin-bottom: 10px; overflow: hidden; background: var(--card);
  box-shadow: var(--shadow-sm);
}
.faq-item .accordion-button {
  background: transparent; color: var(--text);
  font-size: 15px; font-weight: 600; padding: 20px 26px;
  box-shadow: none; border-radius: 0 !important;
}
.faq-item .accordion-button:not(.collapsed) { background: rgba(14,165,233,.05); color: var(--primary); }
.faq-item .accordion-button::after { filter: none; }
.faq-item .accordion-button:not(.collapsed)::after { filter: invert(46%) sepia(87%) saturate(1500%) hue-rotate(175deg) brightness(100%); }
.faq-item .accordion-body { padding: 0 26px 20px; color: var(--muted); font-size: 14.5px; line-height: 1.75; }

/* ── CTA ── */
.cta-sec {
  background: linear-gradient(135deg, #0369a1 0%, #0c4a6e 60%, #082f4a 100%);
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; top: -40%; left: -15%; width: 55%; height: 180%;
  background: radial-gradient(ellipse, rgba(56,189,248,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-sec::after {
  content: ''; position: absolute; bottom: -40%; right: -15%; width: 55%; height: 180%;
  background: radial-gradient(ellipse, rgba(14,165,233,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; text-align: center; padding: 100px 0; }
.cta-inner h2 { font-size: clamp(26px,4vw,42px); font-weight: 900; max-width: 680px; margin: 0 auto 18px; color: #fff; }
.cta-inner p  { font-size: 16px; color: rgba(255,255,255,.72); max-width: 540px; margin: 0 auto 40px; line-height: 1.75; }

/* ── Footer ── */
footer { background: #0c1c2e; border-top: 1px solid rgba(255,255,255,.06); }
.ft-top { padding: 70px 0 50px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-brand { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -.02em; }
.ft-brand span { color: var(--primary); }
.ft-desc { font-size: 13.5px; color: rgba(255,255,255,.5); margin-top: 10px; line-height: 1.7; max-width: 270px; }
.ft-heading { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.ft-links { list-style: none; padding: 0; margin: 0; }
.ft-links li { margin-bottom: 9px; }
.ft-links a { color: rgba(255,255,255,.5); font-size: 13.5px; transition: color .2s; display: flex; align-items: center; gap: 7px; }
.ft-links a:hover { color: var(--primary); }
.ft-links a i { font-size: 11px; color: var(--primary); }
.ft-cnt { display: flex; gap: 12px; margin-bottom: 14px; }
.ft-cnt .ico {
  width: 34px; height: 34px; min-width: 34px;
  background: rgba(14,165,233,.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--primary);
}
.ft-cnt p      { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; line-height: 1.4; }
.ft-cnt strong { display: block; font-size: 12.5px; color: rgba(255,255,255,.85); font-weight: 600; margin-bottom: 2px; }
.ft-bot {
  padding: 18px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.ft-bot p { font-size: 12.5px; color: rgba(255,255,255,.4); margin: 0; }
.soc-links { display: flex; gap: 8px; }
.soc-btn {
  width: 34px; height: 34px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; transition: all .2s;
}
.soc-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── Blog Kartları ── */
.blog-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: all .3s; box-shadow: var(--shadow-sm); height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(14,165,233,.35); }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-date {
  font-size: 12px; color: var(--primary); font-weight: 600;
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.blog-card-body h5 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.blog-card-body p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.blog-card-link {
  font-size: 13px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px; transition: gap .2s;
}
.blog-card-link:hover { gap: 10px; color: var(--primary-dk); }

/* ── Sidebar ── */
.sidebar-widget {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 24px; margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 {
  font-size: 16px; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--border); color: var(--text);
}
.sidebar-menu { list-style: none; padding: 0; margin: 0; }
.sidebar-menu li { margin-bottom: 4px; }
.sidebar-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: 14px; font-weight: 500;
  color: var(--sub); border-radius: 8px; transition: all .2s;
}
.sidebar-menu a:hover,
.sidebar-menu a.active { background: rgba(14,165,233,.08); color: var(--primary); }
.sidebar-menu a i { font-size: 11px; color: var(--primary); }

/* ── Özellik Kutuları ── */
.feature-box {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border: 1.5px solid var(--border);
  border-radius: 12px; background: var(--card);
  transition: all .3s; box-shadow: var(--shadow-sm); height: 100%;
}
.feature-box:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.feature-box .f-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(14,165,233,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--primary);
}
.feature-box h5 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.feature-box p  { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ── Detay Sayfaları ── */
.detail-img {
  width: 100%; height: 380px; object-fit: cover;
  border-radius: 14px; border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.detail-content h3 { font-size: 22px; margin-bottom: 16px; }
.detail-content p  { font-size: 15px; line-height: 1.8; margin-bottom: 16px; }

/* ── Galeri ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.gallery-grid img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: 10px; border: 1.5px solid var(--border);
  transition: all .3s; cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* ── Lightbox ── */
.dc-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.dc-lightbox.active { opacity: 1; visibility: visible; }
.dc-lightbox img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: 10px; user-select: none;
  animation: dcLbFade .25s ease;
}
@keyframes dcLbFade { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.dc-lb-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none; color: #fff; font-size: 36px;
  cursor: pointer; line-height: 1; z-index: 2;
  opacity: .7; transition: opacity .2s;
}
.dc-lb-close:hover { opacity: 1; }
.dc-lb-prev, .dc-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; z-index: 2;
  opacity: .7; transition: opacity .2s, background .2s;
}
.dc-lb-prev:hover, .dc-lb-next:hover { opacity: 1; background: rgba(255,255,255,.22); }
.dc-lb-prev { left: 18px; }
.dc-lb-next { right: 18px; }
.dc-lb-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600;
}
@media (max-width: 576px) {
  .dc-lb-prev, .dc-lb-next { width: 38px; height: 38px; font-size: 14px; }
  .dc-lb-prev { left: 8px; }
  .dc-lb-next { right: 8px; }
}

/* ── Teknik Özellik Tablosu ── */
.spec-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; border: 1.5px solid var(--border); }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 14px 18px; font-size: 14px; }
.spec-table td:first-child { font-weight: 600; color: var(--text); width: 40%; background: rgba(14,165,233,.03); }
.spec-table td:last-child  { color: var(--muted); }

/* ── İletişim Formu ── */
.dc-form .form-control,
.dc-form .form-select {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 14px 18px; font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text); background: var(--card);
  transition: border-color .2s, box-shadow .2s;
}
.dc-form .form-control:focus,
.dc-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,.12);
  outline: none;
}
.dc-form textarea.form-control { min-height: 140px; resize: vertical; }
.dc-form label { font-size: 13px; font-weight: 600; color: var(--sub); margin-bottom: 6px; }

/* ── Ofis Kartları ── */
.office-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 28px;
  transition: all .3s; box-shadow: var(--shadow-sm); height: 100%;
}
.office-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.office-card h5 { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.office-card .info-line {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--muted); margin-bottom: 8px;
}
.office-card .info-line i { color: var(--primary); font-size: 13px; width: 16px; text-align: center; }

/* ── İçerik Sayfası ── */
.content-body { font-size: 15px; line-height: 1.85; color: var(--sub); }
.content-body h2 { font-size: 24px; margin: 32px 0 14px; }
.content-body h3 { font-size: 20px; margin: 26px 0 12px; }
.content-body p  { margin-bottom: 16px; color: var(--muted); }
.content-body ul { padding-left: 20px; margin-bottom: 16px; }
.content-body ul li { margin-bottom: 8px; color: var(--muted); font-size: 14.5px; }

/* ── Animasyonlar ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: all .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }
.fade-up-d5 { transition-delay: .5s; }

/* ── Responsive ── */
@media(max-width:991.98px) {
  .sec { padding: 70px 0; }
  .trust-item + .trust-item { border-left: none; border-top: 1px solid rgba(255,255,255,.15); }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat-box:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-hero { padding: 140px 0 50px; }
}
@media(max-width:767.98px) {
  .hero-title  { font-size: 28px; }
  .astat-box   { border-right: none; border-bottom: 1px solid var(--border); padding: 14px; }
  .astat-box:last-child { border-bottom: none; }
  .cta-inner   { padding: 70px 0; }
  .ft-top      { padding: 50px 0 36px; }
  .svc-card    { padding: 22px; }
  .detail-img  { height: 240px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 150px; }
  .inner-hero-title { font-size: 26px; }
}
