:root {
  /* Palette — anthracite + warm construction orange */
  --bg: #eef1f5;
  --bg-subtle: #f6f8fa;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --text: #0c1222;
  --text-secondary: #334155;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.07);
  --border-strong: rgba(15, 23, 42, 0.11);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.03);
  --shadow: 0 10px 32px rgba(15, 23, 42, 0.07), 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.11), 0 8px 20px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 16px 40px rgba(232, 119, 34, 0.22);
  --accent: #e87722;
  --accent-hover: #d96a1a;
  --accent-2: #f4a261;
  --accent-soft: rgba(232, 119, 34, 0.1);
  --accent-border: rgba(232, 119, 34, 0.28);
  --accent-glow: rgba(232, 119, 34, 0.4);
  --anthracite: #2f3439;
  --anthracite-deep: #1a1f24;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.25rem;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 0% -20%, rgba(232, 119, 34, 0.07), transparent 50%),
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(47, 52, 57, 0.05), transparent 45%),
    linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 45%, #e9edf2 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(232, 119, 34, 0.2);
  color: var(--text);
}

a {
  transition: color 0.22s var(--ease-out), opacity 0.22s var(--ease-out);
}

.font-display {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: -0.035em;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  letter-spacing: -0.03em;
  text-wrap: balance;
}

/* Editorial section label — calm, not shouty */
.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0;
}

.section-eyebrow--accent {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.section-eyebrow--accent::before {
  content: "";
  width: 2.25rem;
  height: 3px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.lead-tight {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 34rem;
}

.text-muted-2 {
  color: var(--muted) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.bg-surface {
  background: var(--surface);
}

/* Fixed vertical social rail (left) */
.social-rail {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1036;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.5rem;
  background: var(--surface-glass);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-left: none;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.social-rail__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  color: rgba(11, 18, 32, 0.78);
  background: rgba(11, 18, 32, 0.05);
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, color 0.3s ease,
    box-shadow 0.3s ease;
}

.social-rail__link:hover {
  color: #fff;
  transform: translateX(5px) scale(1.12);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.18);
}

.social-rail__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.social-rail__link--instagram:hover {
  background: linear-gradient(145deg, #f58529, #dd2a7b, #8134af);
}

.social-rail__link--facebook:hover {
  background: #1877f2;
}

.social-rail__link--linkedin:hover {
  background: #0a66c2;
}

/* Tablet: yan rail biraz kompakt */
@media (min-width: 768px) and (max-width: 991.98px) {
  .social-rail {
    padding: 0.6rem 0.45rem;
    gap: 0.45rem;
  }

  .social-rail__link {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.1rem;
    border-radius: 11px;
  }
}

@media (max-width: 767.98px) {
  .social-rail {
    top: auto;
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    transform: none;
    padding: 0.45rem 0.38rem;
    gap: 0.32rem;
    border-radius: 0 12px 12px 0;
  }

  .social-rail__link {
    width: 2.05rem;
    height: 2.05rem;
    font-size: 0.92rem;
    border-radius: 10px;
  }

  .social-rail__link:hover {
    transform: translateX(3px) scale(1.06);
  }
}

@media (max-width: 374.98px) {
  .social-rail__link {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.82rem;
  }
}

@media print {
  .social-rail {
    display: none !important;
  }
}

/* Fixed vertical contact CTA (right) */
.contact-rail {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1036;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.15rem 0.65rem;
  margin: 0;
  border: none;
  background: linear-gradient(165deg, #f4a261 0%, var(--accent) 42%, var(--accent-hover) 100%);
  color: #fff;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: -6px 16px 36px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, filter 0.3s ease;
}

.contact-rail:hover {
  transform: translateY(-50%) translateX(-6px);
  box-shadow: -10px 14px 40px rgba(2, 6, 23, 0.2);
  filter: brightness(1.04);
}

.contact-rail:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.55);
  outline-offset: 3px;
}

.contact-rail__icon {
  font-size: 1.35rem;
  line-height: 1;
}

.contact-rail__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
  max-height: 11rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .contact-rail {
    padding: 1rem 0.55rem;
    gap: 0.55rem;
  }

  .contact-rail__icon {
    font-size: 1.25rem;
  }

  .contact-rail__label {
    font-size: 0.82rem;
  }
}

@media (max-width: 767.98px) {
  .contact-rail {
    top: auto;
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    transform: none;
    flex-direction: row;
    padding: 0.5rem 0.75rem;
    border-radius: 999px 0 0 999px;
    gap: 0.45rem;
    max-width: min(11.5rem, 52vw);
  }

  .contact-rail:hover {
    transform: translateX(-4px);
  }

  .contact-rail__icon {
    font-size: 1.1rem;
  }

  .contact-rail__label {
    writing-mode: horizontal-tb;
    letter-spacing: 0.03em;
    max-height: none;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
  }
}

@media print {
  .contact-rail {
    display: none !important;
  }
}

.contact-quick-modal .modal-content,
.showcase-video-modal .modal-content {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-quick-modal .modal-header,
.showcase-video-modal .modal-header {
  background: linear-gradient(180deg, var(--bg-subtle), var(--surface));
  border-bottom: 1px solid var(--border);
}

/* Modallar: küçük ekran / iOS güvenli alan, backdrop üstünde sabit UI ile çakışma yok */
.modal {
  --bs-modal-margin: 0.75rem;
}

.contact-quick-modal .modal-content,
.showcase-video-modal .modal-content {
  max-height: min(92vh, calc(100dvh - 2rem));
}

.contact-quick-modal .modal-body,
.showcase-video-modal .modal-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.contact-quick-modal .form-control,
.contact-quick-modal .form-select {
  font-size: 1rem;
}

@media (max-width: 575.98px) {
  .modal {
    --bs-modal-margin: 0.5rem;
  }

  .contact-quick-modal .modal-content,
  .showcase-video-modal .modal-content {
    max-height: calc(100dvh - 1rem);
    border-radius: calc(var(--radius) - 2px);
  }

  .contact-quick-modal .modal-header,
  .showcase-video-modal .modal-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Floating WhatsApp (bottom right) */
.whatsapp-float {
  position: fixed;
  z-index: 1040;
  right: 1.25rem;
  bottom: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-size: 1.85rem;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: whatsappPulse 2.2s ease-out infinite;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
  background: #20bd5a;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.55);
  outline-offset: 3px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  55% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 767.98px) {
  .whatsapp-float {
    right: 1rem;
    bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    width: 3.35rem;
    height: 3.35rem;
    font-size: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

@media print {
  .whatsapp-float {
    display: none !important;
  }
}

/* Navbar — antrasit header */
.nav-clean {
  --nav-z: 1048;
  --nav-bg: rgba(47, 52, 57, 0.92);
  --nav-bg-scrolled: rgba(30, 35, 40, 0.97);
  --nav-text: rgba(255, 255, 255, 0.82);
  --nav-text-hover: #ffffff;
  --nav-text-active: #ffffff;
  --nav-border: rgba(255, 255, 255, 0.08);
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition: background-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  z-index: var(--nav-z);
}

/* Header satırı: logo | menü | Teklif Al (sağda sabit) */
.navbar-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
}

.navbar-header-inner > .navbar-collapse {
  flex: 1 1 auto;
  min-width: 0;
}

.navbar-header-end {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-clean .navbar-cta {
  flex-shrink: 0;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (min-width: 992px) {
  .navbar-header-inner > .navbar-collapse {
    order: 0;
  }

  .navbar-header-end {
    margin-left: 0;
    order: 1;
  }
}

@media (max-width: 991.98px) {
  .navbar-header-inner > .navbar-collapse {
    flex: 1 1 100%;
    order: 10;
  }
}

.nav-clean .navbar-brand {
  min-width: 0;
  color: #fff;
}

.nav-clean .navbar-brand:hover,
.nav-clean .navbar-brand:focus-visible {
  color: #fff;
}

.nav-clean .navbar-brand .font-display {
  min-width: 0;
  max-width: min(13.5rem, 48vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
}

.nav-clean .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 0.5rem 0.65rem;
}

.nav-clean .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(232, 119, 34, 0.35);
}

.nav-clean .navbar-toggler-icon {
  width: 1.35em;
  height: 1.35em;
  filter: brightness(0) invert(1);
}

@media (min-width: 576px) {
  .nav-clean .navbar-brand .font-display {
    max-width: 18rem;
  }
}

@media (min-width: 992px) {
  .nav-clean .navbar-brand .font-display {
    max-width: none;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
  }
}

/* Hamburger menü paneli (tablet + mobil) */
@media (max-width: 991.98px) {
  .nav-clean .navbar-collapse {
    margin-top: 0.65rem;
    padding: 0.65rem 0.85rem 0.9rem;
    background: #252a30;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: calc(var(--radius) - 2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  }

  .nav-clean .navbar-nav {
    gap: 0.15rem;
    padding-top: 0.15rem;
  }

  .nav-clean .navbar-nav .nav-link {
    padding: 0.62rem 0.65rem;
    border-radius: 12px;
  }

  .nav-clean .navbar-nav .nav-link:hover,
  .nav-clean .navbar-nav .nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-clean .navbar-nav .nav-link::after {
    display: none;
  }
}

.nav-clean.is-scrolled {
  background: var(--nav-bg-scrolled);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-clean .brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.navbar-brand__logo {
  display: block;
  max-height: 2.25rem;
  width: auto;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
}

.nav-clean .nav-link {
  position: relative;
  font-weight: 600;
  color: var(--nav-text);
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-clean .nav-link::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: #e87722;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.nav-clean .nav-link:hover,
.nav-clean .nav-link:focus-visible {
  color: var(--nav-text-hover);
}

.nav-clean .nav-link:hover::after,
.nav-clean .nav-link:focus-visible::after,
.nav-clean .nav-link.active::after {
  transform: scaleX(1);
}

.nav-clean .nav-link.active {
  color: var(--nav-text-active);
}

/* Buttons */
.btn {
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    background 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out),
    color 0.28s var(--ease-out);
}

.btn-accent,
.btn-quote {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--accent-hover);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 232, 119, 34;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #c45f18;
  --bs-btn-active-border-color: transparent;
  background-image: linear-gradient(135deg, #f4a261 0%, var(--accent) 50%, var(--accent-hover) 100%);
  background-size: 160% 160%;
  background-position: 0% 50%;
  border: none;
  box-shadow: 0 4px 14px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-accent:hover,
.btn-quote:hover {
  background-position: 100% 50%;
  box-shadow: 0 8px 24px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-accent:active,
.btn-quote:active {
  transform: translateY(0);
}

.btn-outline-dark {
  border-color: var(--border-strong);
  background: var(--surface);
}

.btn-outline-dark:hover {
  transform: translateY(-2px);
  border-color: var(--accent-border);
  color: var(--accent);
  background: var(--accent-soft);
  box-shadow: var(--shadow-sm);
}

.btn-light {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Sections */
.section-pad {
  padding: 4.5rem 0;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .section-pad {
    padding: 5rem 0;
  }
}

@media (min-width: 992px) {
  .section-pad {
    padding: 6rem 0;
  }
}

/* Mobil alt menü (Anasayfa, Projeler, WhatsApp, İletişim) */
.mobile-bottom-nav {
  position: fixed;
  left: 0.65rem;
  right: 0.65rem;
  bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
  z-index: 1050;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 0.2rem;
  padding: 0.45rem 0.55rem;
  background: var(--surface-glass);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.mobile-bottom-nav__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.35rem 0.25rem;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-nav__item i {
  font-size: 1.35rem;
  line-height: 1;
}

.mobile-bottom-nav__item span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item:focus-visible {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
}

.mobile-bottom-nav__item.active {
  color: var(--accent);
  background: linear-gradient(180deg, var(--accent-soft), rgba(244, 162, 97, 0.08));
  box-shadow: inset 0 0 0 1px var(--accent-border);
}

.mobile-bottom-nav__item--whatsapp {
  color: #128c7e;
}

.mobile-bottom-nav__item--whatsapp:hover,
.mobile-bottom-nav__item--whatsapp:focus-visible {
  color: #0d7a6e;
  background: rgba(37, 211, 102, 0.1);
}

.mobile-bottom-nav__item--whatsapp.active {
  color: #128c7e;
  background: rgba(37, 211, 102, 0.12);
}

@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  .navbar-header-end .navbar-toggler {
    display: none !important;
  }

  .navbar .navbar-collapse {
    display: none !important;
  }

  .nav-clean .navbar-cta {
    padding-inline: 0.85rem;
    font-size: 0.8125rem;
  }

  .contact-rail,
  .whatsapp-float {
    display: none !important;
  }

  .social-rail {
    bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
}

@media print {
  .mobile-bottom-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* Hero slider (Bootstrap carousel + fade + motion) */
.hero-slider-wrap {
  padding: 0;
  border-bottom: none;
}

.hero-slider {
  --bs-carousel-transition-duration: 0.85s;
  touch-action: pan-y pinch-zoom;
}

.hero-slider .carousel-inner {
  min-height: min(78vh, 760px);
}

.hero-slider .carousel-item {
  position: relative;
  min-height: min(78vh, 760px);
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.carousel-item.active .hero-slide__bg {
  animation: heroKenBurns 8s ease-out forwards;
}

.carousel-item:not(.active) .hero-slide__bg {
  animation: none;
  transform: scale(1.08);
}

.carousel-item:not(.active) .hero-caption__kicker,
.carousel-item:not(.active) .hero-caption__title,
.carousel-item:not(.active) .hero-caption__lead,
.carousel-item:not(.active) .hero-caption__cta {
  opacity: 0;
  transform: translateY(1.5rem);
  animation: none;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(12, 18, 34, 0.88) 0%, rgba(12, 18, 34, 0.45) 38%, rgba(12, 18, 34, 0.08) 62%, transparent 78%),
    linear-gradient(180deg, transparent 50%, rgba(12, 18, 34, 0.55) 100%);
  pointer-events: none;
}

.hero-slider .carousel-caption.hero-caption {
  z-index: 2;
  top: 50%;
  bottom: auto;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 1.5rem 0 3rem;
  text-align: left;
  max-width: none;
}

.hero-caption__kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  opacity: 0;
  transform: translateY(1.25rem);
}

.hero-caption__title {
  font-size: clamp(2.25rem, 4.5vw + 1rem, 3.75rem);
  font-weight: 800;
  line-height: 1.04;
  color: #fff;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(1.5rem);
}

.hero-caption__lead {
  font-size: clamp(1rem, 1.1vw + 0.85rem, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 30rem;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(1.5rem);
}

.hero-caption__cta {
  opacity: 0;
  transform: translateY(1.25rem);
}

.carousel-item.active .hero-caption__kicker {
  animation: heroCaptionIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.carousel-item.active .hero-caption__title {
  animation: heroCaptionIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.carousel-item.active .hero-caption__lead {
  animation: heroCaptionIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.carousel-item.active .hero-caption__cta {
  animation: heroCaptionIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
}

@keyframes heroCaptionIn {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Indicators: ince çubuk (Bootstrap border hack sıfırlanır) */
.hero-indicators {
  margin-bottom: 1.75rem;
  gap: 0.4rem;
  align-items: center;
}

.hero-indicators [data-bs-target] {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 4px;
  min-width: 0;
  min-height: 0;
  padding: 10px 6px;
  margin: 0;
  border: 0 !important;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.35) !important;
  background-clip: content-box;
  box-sizing: content-box;
  opacity: 1;
  text-indent: -9999px;
  overflow: hidden;
  transition: width 0.35s var(--ease-out), background-color 0.35s var(--ease-out);
}

.hero-indicators [data-bs-target].active {
  width: 2.5rem;
  background: linear-gradient(90deg, var(--accent-2), var(--accent)) !important;
}

/* Controls: glass pills */
.hero-control {
  width: 3.35rem;
  height: 3.35rem;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 1;
  transition: background 0.28s var(--ease-out), transform 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.06);
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  width: 1.15rem;
  height: 1.15rem;
}

.hero-slider .carousel-control-prev {
  left: 1rem;
}

.hero-slider .carousel-control-next {
  right: 1rem;
}

@media (min-width: 992px) {
  .hero-slider .carousel-control-prev {
    left: 1.5rem;
  }

  .hero-slider .carousel-control-next {
    right: 1.5rem;
  }
}

/* Mobil / dokunmatik: katmanlar ayrı, kaydırma ile slayt, taşma yok */
@media (max-width: 767.98px) {
  .hero-slider-wrap,
  .hero-slider,
  .hero-slider .carousel-inner {
    overflow: hidden;
  }

  .hero-slider.carousel-fade .carousel-inner {
    min-height: min(68svh, 580px);
    position: relative;
  }

  .hero-slider .carousel-item {
    min-height: min(68svh, 580px);
    display: block;
  }

  .hero-slide__bg {
    transform: scale(1.03);
  }

  .carousel-item.active .hero-slide__bg {
    animation: none;
    transform: scale(1);
  }

  .hero-slide__overlay {
    background:
      linear-gradient(180deg, rgba(12, 18, 34, 0.2) 0%, rgba(12, 18, 34, 0.75) 55%, rgba(12, 18, 34, 0.92) 100%);
  }

  .hero-slider .carousel-caption.hero-caption {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    padding: 0 0 calc(3.25rem + env(safe-area-inset-bottom, 0px));
    margin: 0;
    text-align: left;
  }

  .hero-slider .carousel-caption.hero-caption .container {
    padding-top: 1.25rem;
    padding-bottom: 0.5rem;
  }

  .hero-caption__title {
    font-size: clamp(1.55rem, 5.5vw + 0.5rem, 2rem);
    max-width: 100%;
    line-height: 1.12;
  }

  .hero-caption__lead {
    font-size: 0.95rem;
    max-width: 100%;
    line-height: 1.55;
  }

  .hero-caption__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem !important;
    margin-top: 1rem !important;
  }

  .hero-caption__cta .btn {
    width: 100%;
    min-height: 3rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    font-size: 0.95rem;
  }

  /* Yan oklar gizli — parmakla kaydırma + göstergeler */
  .hero-control {
    display: none;
  }

  .hero-indicators {
    margin-bottom: 0.65rem;
    z-index: 4;
    gap: 0.35rem;
  }

  .carousel-item:not(.active) .hero-caption {
    pointer-events: none;
  }

  .hero-indicators [data-bs-target] {
    width: 1.35rem;
    height: 3px;
    padding: 8px 5px;
  }

  .hero-indicators [data-bs-target].active {
    width: 1.85rem;
  }

  .hero-slider .carousel-caption.hero-caption {
    padding-bottom: calc(2.35rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 374.98px) {
  .hero-slider.carousel-fade .carousel-inner,
  .hero-slider .carousel-item {
    min-height: min(64svh, 520px);
  }

  .hero-caption__kicker {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider {
    --bs-carousel-transition-duration: 0.01ms;
  }

  .carousel-item.active .hero-slide__bg,
  .carousel-item.active .hero-caption__kicker,
  .carousel-item.active .hero-caption__title,
  .carousel-item.active .hero-caption__lead,
  .carousel-item.active .hero-caption__cta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  @media (max-width: 767.98px) {
    .hero-slider .carousel-caption.hero-caption {
      transform: none !important;
    }
  }
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #e2e8f0;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.letter-spacing-1 {
  letter-spacing: 0.12em;
}

/* Project showcase (masonry-style grid + hover overlay + video) */
.showcase-section {
  background: transparent;
  overflow-x: clip;
}

/* Ana sayfa: projeler vitrini — hiyerarşide en baskın blok */
.showcase-section--lead {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 119, 34, 0.06), transparent 55%),
    linear-gradient(180deg, var(--bg-subtle) 0%, var(--surface) 35%, var(--bg-subtle) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.showcase-section--lead::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, black 0%, transparent 85%);
  pointer-events: none;
  opacity: 0.5;
}

.showcase-section--lead.section-pad {
  padding-top: clamp(3.75rem, 7vw, 5.75rem);
  padding-bottom: clamp(4.5rem, 9vw, 8.5rem);
}

.showcase-section--lead .container-xxl,
.showcase-section--lead .showcase-section__head,
.showcase-section--lead .showcase-grid {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .showcase-section--lead.section-pad {
    padding-top: 6.25rem;
    padding-bottom: 7.75rem;
  }
}

.showcase-section__head {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

@media (min-width: 992px) {
  .showcase-section__head {
    margin-bottom: 3.5rem;
  }
}

.showcase-section__title {
  font-size: clamp(2.35rem, 5vw + 1rem, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 14ch;
}

.showcase-section__lead {
  font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.2rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 28rem;
}

.showcase-section--lead .showcase-card {
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.1);
}

.showcase-section--lead .showcase-card:hover,
.showcase-section--lead .showcase-card:focus-within {
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px) scale(1.008);
}

.showcase-grid {
  display: grid;
  gap: clamp(0.85rem, 2.2vw, 1.5rem);
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  min-height: 0;
  width: 100%;
  max-width: 100%;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.showcase-card:hover,
.showcase-card:focus-within {
  transform: translateY(-5px) scale(1.008);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-border);
}

.showcase-card:hover::after,
.showcase-card:focus-within::after {
  opacity: 1;
}

.showcase-card__link,
.showcase-card__btn {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.showcase-card__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 200px;
}

.showcase-card--hero .showcase-card__media {
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  background: linear-gradient(145deg, #e8edf3 0%, #d5dde8 100%);
  color: var(--muted);
  font-size: 2rem;
}

.showcase-card:hover .showcase-card__media img,
.showcase-card:focus-within .showcase-card__media img {
  transform: scale(1.04);
}

.showcase-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(12, 18, 34, 0) 0%,
    rgba(12, 18, 34, 0.35) 50%,
    rgba(12, 18, 34, 0.82) 100%
  );
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  pointer-events: none;
}

.showcase-card:hover .showcase-card__overlay,
.showcase-card:focus-within .showcase-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Dokunmatik: hover yok — başlık her zaman okunur */
@media (max-width: 767.98px) {
  .showcase-card:not(.showcase-card--video) .showcase-card__overlay {
    opacity: 1;
    transform: none;
    padding: 1rem 1.1rem;
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0) 25%,
      rgba(15, 23, 42, 0.58) 100%
    );
  }
}

.showcase-card__title {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.showcase-card--hero .showcase-card__title {
  font-size: clamp(1.35rem, 2vw + 0.8rem, 1.85rem);
}

.showcase-section--lead .showcase-card--hero .showcase-card__title {
  font-size: clamp(1.5rem, 2.4vw + 0.85rem, 2.1rem);
}

.showcase-card__meta {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0.35rem 0 0;
  line-height: 1.45;
  max-width: 32rem;
}

.showcase-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  line-height: 1;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 0 6px rgba(232, 119, 34, 0.15);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out);
  pointer-events: none;
}

.showcase-card--video:hover .showcase-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.28);
}

.showcase-card--video .showcase-card__overlay {
  opacity: 1;
  transform: none;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 40%,
    rgba(15, 23, 42, 0.45) 100%
  );
}

.showcase-card--video .showcase-card__btn {
  min-height: 0;
}

/* Tablet: 2 sütun, eşit kartlar (row-span yok — boşluk hatası önlenir) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .showcase-card--hero {
    grid-column: 1 / -1;
  }

  .showcase-card--hero .showcase-card__media {
    aspect-ratio: 21 / 9;
    min-height: 260px;
  }

  .showcase-card--tall .showcase-card__media,
  .showcase-card--a .showcase-card__media,
  .showcase-card--b .showcase-card__media,
  .showcase-card--mid .showcase-card__media,
  .showcase-card--video .showcase-card__media {
    aspect-ratio: 4 / 3;
    min-height: 200px;
  }
}

/* Desktop: masonry alanları */
@media (min-width: 992px) {
  .showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(140px, auto);
    gap: 1.5rem;
    grid-template-areas:
      "hero hero a a"
      "hero hero b b"
      "hero hero vid vid"
      "tall mid vid vid";
    align-items: stretch;
  }

  .showcase-grid--lead {
    gap: 1.65rem;
    grid-auto-rows: minmax(150px, auto);
  }

  .showcase-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .showcase-card__link,
  .showcase-card__btn {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .showcase-card__media {
    flex: 1 1 auto;
    aspect-ratio: unset;
    min-height: 0;
    height: 100%;
  }

  .showcase-card--hero .showcase-card__media {
    aspect-ratio: unset;
    min-height: 0;
  }

  .showcase-card--hero {
    grid-area: hero;
    min-height: 520px;
  }

  .showcase-grid--lead .showcase-card--hero {
    min-height: 600px;
  }

  .showcase-card--a {
    grid-area: a;
  }

  .showcase-card--b {
    grid-area: b;
  }

  .showcase-card--tall {
    grid-area: tall;
  }

  .showcase-card--mid {
    grid-area: mid;
  }

  .showcase-card--video {
    grid-area: vid;
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-card,
  .showcase-card__media img,
  .showcase-card__overlay,
  .showcase-card__play {
    transition: none !important;
  }

  .showcase-card:hover,
  .showcase-card:focus-within {
    transform: none;
  }

  .showcase-card:hover .showcase-card__media img,
  .showcase-card:focus-within .showcase-card__media img {
    transform: none;
  }
}

/* Cards */
.card-clean {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  overflow: hidden;
}

.card-clean:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-border);
}

.icon-tile {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--accent-soft), rgba(244, 162, 97, 0.12));
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Project grid */
.project-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.34s ease, border-color 0.34s ease;
}

.project-tile:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border-color: var(--accent-border);
}

.project-thumb {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.project-thumb--img .project-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-thumb__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.project-thumb__view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #e87722;
  color: #fff;
  font-size: 1.15rem;
  transform: translateY(8px);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-tile:hover .project-thumb__overlay {
  opacity: 1;
}

.project-tile:hover .project-thumb__view {
  transform: translateY(0);
}

.project-tile:hover .project-thumb__img {
  transform: scale(1.06);
}

.project-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #eef2f7, #e2e8f0);
  color: var(--muted);
  font-size: 2.25rem;
}

.project-tile__cat {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}

@media (min-width: 992px) {
  .project-thumb {
    height: 260px;
  }
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, var(--anthracite) 0%, var(--anthracite-deep) 100%);
  color: rgba(255, 255, 255, 0.78);
}

.footer .font-display,
.footer .fw-bold {
  color: #fff;
}

.footer .text-muted-2,
.footer .small.text-muted-2 {
  color: rgba(255, 255, 255, 0.55) !important;
}

.footer .brand-mark {
  background: rgba(232, 119, 34, 0.15);
  border-color: rgba(232, 119, 34, 0.35);
  color: var(--accent-2);
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.22s var(--ease-out);
}

.footer a:hover {
  color: var(--accent-2);
  text-decoration: none;
}

.footer .btn-outline-dark {

  --bs-btn-border-color: rgba(255, 255, 255, 0.22);
  --bs-btn-bg: transparent;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.08);
  --bs-btn-hover-border-color: rgba(255, 255, 255, 0.35);
  --bs-btn-hover-color: #fff;
}

/* Son CTA — vurgulu panel */
.cta-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 252, 248, 1) 50%, var(--surface) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
}

.section-cta {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 992px) {
  .section-cta {
    padding-top: 3rem;
    padding-bottom: 4.25rem;
  }
}

/* Motion */
.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    --reveal-delay: 0ms !important;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card-clean,
  .project-tile {
    transition: none;
  }

  .card-clean:hover,
  .project-tile:hover {
    transform: none;
  }

  .btn-outline-dark {
    transition: none;
  }

  .btn-outline-dark:hover {
    transform: none;
    box-shadow: none;
  }

  .nav-link::after {
    transition: none;
  }
}

@media print {
  body {
    padding-bottom: 0;
  }
}

/* ——— Blog ——— */
.blog-hero {
  position: relative;
  padding: 3.5rem 0 2.75rem;
  overflow: hidden;
  color: #fff;
  background: #2f3439;
}

.blog-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(232, 119, 34, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 45% at 95% 90%, rgba(244, 162, 97, 0.12), transparent 50%),
    linear-gradient(135deg, var(--anthracite) 0%, #23282d 48%, var(--anthracite-deep) 100%);
}

.blog-hero__inner {
  position: relative;
  z-index: 1;
}

.blog-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 0.85rem;
  color: #fff;
}

.blog-hero__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 38rem;
}

.blog-hero__eyebrow.section-eyebrow--accent {
  color: #f4a261;
}

.blog-hero__eyebrow.section-eyebrow--accent::before {
  background: #e87722;
}

.blog-hero__stat.card-clean {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.blog-hero__stat.card-clean:hover {
  transform: none;
}

.blog-hero__stat .text-muted-2 {
  color: rgba(255, 255, 255, 0.65) !important;
}

.blog-hero__stat .icon-tile {
  background: rgba(232, 119, 34, 0.15);
  border-color: rgba(232, 119, 34, 0.35);
  color: #f4a261;
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-breadcrumb a:hover {
  color: #fff;
}

.blog-breadcrumb span:not([aria-hidden]) {
  color: rgba(255, 255, 255, 0.92);
}

.blog-breadcrumb span[aria-hidden] {
  color: rgba(255, 255, 255, 0.35);
}

.blog-category-nav {
  position: sticky;
  top: 4.5rem;
  z-index: 1020;
  padding: 0.85rem 0;
  background: rgba(244, 245, 247, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.blog-category-nav__track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.blog-category-nav__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease,
    box-shadow 0.25s ease;
}

.blog-category-nav__pill:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  transform: translateY(-1px);
}

.blog-category-nav__pill.is-active {
  background: linear-gradient(135deg, #e87722 0%, #d96a1a 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px rgba(232, 119, 34, 0.28);
}

.blog-category-nav__count {
  display: inline-flex;
  min-width: 1.35rem;
  justify-content: center;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(15, 23, 42, 0.06);
}

.blog-category-nav__pill.is-active .blog-category-nav__count {
  background: rgba(255, 255, 255, 0.2);
}

.blog-archive {
  padding-top: 2.5rem;
}

.blog-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

.blog-archive__grid--compact {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .blog-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-archive__grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .blog-archive__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-card {
  height: 100%;
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}

.blog-card__link:hover,
.blog-card__link:focus-visible {
  transform: translateY(-4px);
  border-color: var(--accent-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  color: inherit;
}

.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8edf3;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card__link:hover .blog-card__img,
.blog-card__link:focus-visible .blog-card__img {
  transform: scale(1.05);
}

.blog-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  color: var(--muted);
  background: linear-gradient(145deg, #eef2f7 0%, #e2e8f0 100%);
}

.blog-card__badge {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  z-index: 2;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--accent-border);
}

.blog-card__badge--light {
  color: #fff;
  background: rgba(232, 119, 34, 0.92);
  border-color: transparent;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.blog-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.blog-card__link:hover .blog-card__title,
.blog-card__link:focus-visible .blog-card__title {
  color: var(--accent);
}

.blog-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
}

/* Öne çıkan kart — tam genişlik */
.blog-card--featured {
  grid-column: 1 / -1;
}

.blog-card__link--featured {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: calc(var(--radius-lg) + 2px);
}

@media (min-width: 992px) {
  .blog-card__link--featured {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 22rem;
  }
}

.blog-card__media--featured {
  aspect-ratio: 16 / 9;
  min-height: 14rem;
}

@media (min-width: 992px) {
  .blog-card__media--featured {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.blog-card__featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.55) 100%);
  pointer-events: none;
}

.blog-card__body--featured {
  justify-content: center;
  padding: 1.5rem 1.35rem;
  background: linear-gradient(180deg, #2f3439 0%, #23282d 100%);
  color: #fff;
}

.blog-card__meta--light {
  color: rgba(255, 255, 255, 0.72);
}

.blog-card__title--featured {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  color: #fff;
}

.blog-card__link--featured:hover .blog-card__title--featured,
.blog-card__link--featured:focus-visible .blog-card__title--featured {
  color: #f4a261;
}

.blog-card__excerpt--featured {
  color: rgba(255, 255, 255, 0.78);
}

.blog-card__more--light {
  color: #f4a261;
}

.blog-card__label.section-eyebrow--accent {
  color: #f4a261;
}

.blog-card__label.section-eyebrow--accent::before {
  background: #e87722;
}

.blog-pagination {
  margin-top: 2.5rem;
}

.blog-pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-pagination__item a,
.blog-pagination__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.blog-pagination__item a:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}

.blog-pagination__item.is-active span {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.blog-pagination__item.is-dots span {
  border: none;
  background: transparent;
}

.blog-empty {
  max-width: 32rem;
  margin-inline: auto;
}

/* Single post */
.blog-single-hero {
  position: relative;
  margin-bottom: 2rem;
}

.blog-single-hero__media {
  position: relative;
  max-height: min(52vh, 28rem);
  overflow: hidden;
  background: #1a1f24;
}

.blog-single-hero__media--fallback {
  min-height: 12rem;
  background: linear-gradient(135deg, #2f3439 0%, #1a1f24 100%);
}

.blog-single-hero__img {
  width: 100%;
  height: min(52vh, 28rem);
  object-fit: cover;
}

.blog-single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.72) 100%);
}

.blog-single-hero__content {
  position: relative;
  margin-top: -4.5rem;
  padding-bottom: 1rem;
  z-index: 2;
}

.blog-single-hero__content .blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.blog-single-hero__content .blog-breadcrumb span:not([aria-hidden]) {
  color: #fff;
}

.blog-single-hero__cat {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: #e87722;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
}

.blog-single-hero__title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.75rem;
}

.blog-single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.blog-single__wrap {
  margin-bottom: 2rem;
}

.blog-content {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  margin-bottom: 1.1rem;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.25rem 0;
}

.blog-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid #e87722;
  background: var(--accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
}

.blog-content a {
  color: var(--accent);
  font-weight: 600;
}

.blog-tags a {
  display: inline-flex;
  margin: 0.2rem 0.35rem 0.2rem 0;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
}

.blog-tags a:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}

.blog-post-nav {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .blog-post-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.blog-post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: inherit;
}

.blog-post-nav__link:hover {
  color: inherit;
}

.blog-sidebar {
  position: sticky;
  top: 5.5rem;
}

.blog-sidebar-related li + li {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.blog-sidebar-related a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-sidebar-related__title {
  display: block;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.2rem;
  transition: color 0.2s ease;
}

.blog-sidebar-related a:hover .blog-sidebar-related__title {
  color: var(--accent);
}

.blog-sidebar-related__date {
  font-size: 0.8125rem;
  color: var(--muted);
}

.blog-related {
  padding-bottom: 3rem !important;
}

@media (max-width: 991.98px) {
  .blog-category-nav {
    top: 3.75rem;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-single-hero__content {
    margin-top: -3rem;
  }
}

/* ——— Proje single ——— */
.proje-hero {
  position: relative;
  min-height: min(72vh, 40rem);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.proje-hero__media {
  position: absolute;
  inset: 0;
  background: #1a1f24;
}

.proje-hero__media--fallback {
  background: linear-gradient(135deg, #3d454d 0%, #1a1f24 55%, #0f1419 100%);
}

.proje-hero__img {
  width: 100%;
  height: 100%;
  min-height: min(72vh, 40rem);
  object-fit: cover;
  object-position: center;
}

.proje-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.25) 0%,
    rgba(15, 23, 42, 0.45) 45%,
    rgba(15, 23, 42, 0.88) 100%
  );
  pointer-events: none;
}

.proje-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 0 2.75rem;
}

.proje-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.proje-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.proje-breadcrumb a:hover {
  color: #fff;
}

.proje-breadcrumb span[aria-current] {
  color: #fff;
}

.proje-breadcrumb span[aria-hidden] {
  color: rgba(255, 255, 255, 0.35);
}

.proje-hero__cat {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #e87722;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.proje-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 0.5rem;
  max-width: 18ch;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.proje-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.proje-hero__status .bi {
  color: #f4a261;
}

.proje-stats {
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
  padding-bottom: 0.5rem;
}

.proje-stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 576px) {
  .proje-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .proje-stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.proje-stats .card-clean:hover {
  transform: translateY(-3px);
}

.proje-single__wrap {
  padding: 2.5rem 0 1rem;
}

.proje-content__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
}

.proje-content__body p {
  margin-bottom: 1rem;
}

.proje-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.proje-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .proje-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.proje-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  background: #e8edf3;
}

.proje-gallery__item--wide {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .proje-gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
}

.proje-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.proje-gallery__zoom {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.proje-gallery__item:hover .proje-gallery__img,
.proje-gallery__item:focus-visible .proje-gallery__img {
  transform: scale(1.05);
}

.proje-gallery__item:hover .proje-gallery__zoom,
.proje-gallery__item:focus-visible .proje-gallery__zoom {
  opacity: 1;
  transform: translateY(0);
}

.proje-gallery__item--video {
  padding: 0;
  background: #0f1419;
}

.proje-gallery__video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  background: #000;
}

.proje-video__embed iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.smyapimimarlik-gallery-preview-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.35rem;
  background: #1a1f26;
  color: #fff;
}

.smyapimimarlik-gallery-preview-video .dashicons {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1.75rem;
}

.proje-sidebar {
  position: sticky;
  top: 5.5rem;
}

.proje-post-nav {
  padding-bottom: 1rem;
}

.proje-post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.proje-post-nav__link:hover {
  color: inherit;
}

.proje-related {
  padding-bottom: 0 !important;
}

/* Lightbox */
.proje-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 14, 22, 0.92);
  backdrop-filter: blur(8px);
}

.proje-lightbox[hidden] {
  display: none !important;
}

.proje-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.proje-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.proje-lightbox__figure {
  margin: 0;
  max-width: min(1200px, 100%);
  max-height: 90vh;
}

.proje-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 2rem);
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.proje-lightbox__caption {
  margin-top: 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .proje-sidebar {
    position: static;
  }

  .proje-stats {
    margin-top: -1.5rem;
  }

  .proje-hero {
    min-height: min(58vh, 28rem);
  }

  .proje-hero__img {
    min-height: min(58vh, 28rem);
  }
}

/* ——— Modern UI: forms, containers, proje hero ——— */
.form-control,
.form-select {
  border-radius: var(--radius);
  border-color: var(--border-strong);
  padding: 0.65rem 0.9rem;
  background: var(--surface);
  transition:
    border-color 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    background 0.22s var(--ease-out);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  background: #fff;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.container-xxl {
  --bs-gutter-x: clamp(1rem, 3vw, 2rem);
}

.project-tile {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.project-thumb__view {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 6px 16px var(--accent-glow);
}

.blog-card__link {
  border-radius: var(--radius-xl);
}

.blog-card__link:hover,
.blog-card__link:focus-visible {
  box-shadow: var(--shadow);
  border-color: var(--accent-border);
}

.blog-category-nav {
  background: var(--surface-glass);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-bottom-color: var(--border);
}

.proje-hero {
  position: relative;
}

.proje-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(12, 18, 34, 0.15) 0%,
    rgba(12, 18, 34, 0.55) 55%,
    rgba(12, 18, 34, 0.88) 100%
  );
}

.proje-hero__title {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.proje-stat.card-clean {
  border-radius: var(--radius-lg);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
}

.proje-stat.card-clean:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.showcase-empty.card-clean {
  border-radius: var(--radius-xl);
  border-style: dashed;
  border-color: var(--border-strong);
  background: linear-gradient(180deg, var(--surface), var(--bg-subtle));
}

@media (prefers-reduced-motion: reduce) {
  .btn-accent:hover,
  .btn-quote:hover,
  .hero-control:hover {
    transform: none;
  }
}

/* ——— Hizmetler & Hakkımızda (card-clean ile uyumlu) ——— */
body[data-page="services"] .page-content-header,
body[data-page="about"] .page-content-header {
  padding-bottom: 3rem;
}

.page-content-lead {
  max-width: 40rem;
}

.page-content-grid .card-clean {
  height: 100%;
}

.page-content-grid .card-body {
  display: flex;
  flex-direction: column;
}

.page-content-cta {
  border-color: var(--accent-border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 247, 240, 0.65) 100%);
}

body[data-page="about"] .page-content-values {
  border-color: rgba(47, 52, 57, 0.12);
  background: linear-gradient(160deg, #f8f9fb 0%, #ffffff 100%);
}

body[data-page="about"] .page-content-values__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

body[data-page="about"] .page-content-values__list li {
  position: relative;
  padding-left: 1.1rem;
}

body[data-page="about"] .page-content-values__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

body[data-page="about"] .page-content-story .hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (max-width: 991.98px) {
  body[data-page="about"] .page-content-values {
    margin-top: 0.5rem;
  }
}

