﻿/* ========== Theme: html-tasarimlar/index.html ========== */

/* ===== RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --surface: #ffffff;
  --surface-dim: #f8f9fc;
  --surface-container: #f0f1f5;
  --surface-container-high: #e6eaf0;
  --surface-container-highest: #cdd4dc;
  --on-surface: #121317;
  --on-surface-variant: #45474d;
  --on-surface-muted: #9098a8;
  --primary: #121317;
  --primary-soft: #2f3034;
  --on-primary: #ffffff;
  --accent: #d4a053;
  --accent-soft: rgba(212, 160, 83, 0.08);
  --accent-hover: #c4903f;
  --outline: rgba(33, 34, 38, 0.08);
  --outline-variant: rgba(33, 34, 38, 0.04);
  --secondary-btn: rgba(183, 191, 217, 0.12);
  --secondary-btn-hover: rgba(183, 191, 217, 0.22);
  --radius-pill: 999px;
  --radius-card: 1.5rem;
  --radius-sm: 0.75rem;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

::selection {
  background: var(--accent);
  color: #fff;
}

::-moz-selection {
  background: var(--accent);
  color: #fff;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-restoration: manual;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface-dim);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--surface-dim);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--surface);
  color: var(--on-surface-variant);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--on-surface);
  line-height: 1.12;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--on-primary);
  padding: 0.75em 1.8em;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: "DM Sans", sans-serif;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.btn-primary:hover {
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.btn-primary i {
  font-size: 0.85em;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-btn);
  color: var(--on-surface);
  padding: 0.75em 1.8em;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: "DM Sans", sans-serif;
  border: 1px solid var(--outline);
  cursor: pointer;
  transition: background 0.2s,
    transform 0.2s;
}

.btn-secondary:hover {
  background: var(--secondary-btn-hover);
  transform: translateY(-1px);
}

/* ===== SECTION HEADER ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--on-surface-muted);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 400;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.stagger-1 {
  transition-delay: 0.06s;
}

.stagger-2 {
  transition-delay: 0.12s;
}

.stagger-3 {
  transition-delay: 0.18s;
}

.stagger-4 {
  transition-delay: 0.24s;
}

.stagger-5 {
  transition-delay: 0.3s;
}

.stagger-6 {
  transition-delay: 0.36s;
}

/* ===== TOPBAR ===== */
.topbar {
  background: linear-gradient(100deg,
      #12151c 0%,
      #1a2332 38%,
      #243044 62%,
      #1a2740 100%);
  border-bottom: 1px solid rgba(212, 160, 83, 0.28);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  height: auto;
}

.topbar-left {
  display: flex;
  gap: 1.8rem;
}

.topbar-left a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}

.topbar-left a:hover {
  color: var(--accent);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar-right a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.25s;
}

.topbar-right a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

/* ===== HEADER ===== */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.header-wrapper.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.header-wrapper.hidden {
  transform: translateY(-100%);
}

.header {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--on-surface);
  flex-shrink: 0;
}

.logo img {
  display: block;
  max-height: 44px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  width: 2.3rem;
  height: 2.3rem;
  background: var(--accent);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
}

/* ===== NAV MENU (centered) ===== */
.nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item>a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--on-surface-variant);
  padding: 0 1.1rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
  position: relative;
}

.nav-item>a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-item>a:hover {
  color: var(--on-surface);
}

.nav-item:hover>a::after {
  transform: scaleX(1);
}

.nav-item>a .arrow {
  font-size: 0.55rem;
  transition: transform 0.25s;
  color: var(--on-surface-muted);
}

.nav-item:hover>a .arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

/* ===== DROPDOWN (stagger/step animation) ===== */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s,
    visibility 0.2s,
    transform 0.2s;
}

.nav-item:hover>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Stagger: her item sırayla kayarak gelir */
.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  font-size: 0.85rem;
  color: var(--on-surface-variant);
  transition: all 0.15s;
  opacity: 0;
  transform: translateX(-8px);
}

.nav-item:hover>.dropdown a {
  opacity: 1;
  transform: translateX(0);
}

.nav-item:hover>.dropdown a:nth-child(1) {
  transition-delay: 0.04s;
}

.nav-item:hover>.dropdown a:nth-child(2) {
  transition-delay: 0.08s;
}

.nav-item:hover>.dropdown a:nth-child(3) {
  transition-delay: 0.12s;
}

.nav-item:hover>.dropdown a:nth-child(4) {
  transition-delay: 0.16s;
}

.nav-item:hover>.dropdown a:nth-child(5) {
  transition-delay: 0.2s;
}

.nav-item:hover>.dropdown a:nth-child(6) {
  transition-delay: 0.24s;
}

.dropdown a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.dropdown a:hover::before {
  opacity: 1;
}

.dropdown a:hover {
  background: var(--accent-soft);
  color: var(--on-surface);
  padding-left: 1.5rem;
}

.dropdown-divider {
  height: 1px;
  background: var(--outline);
  margin: 0.35rem 0;
}

/* ===== MEGA DROPDOWN (stagger columns) ===== */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 680px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s,
    visibility 0.25s,
    transform 0.25s;
  overflow: hidden;
}

.nav-item:hover>.mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-cols {
  display: flex;
}

.mega-col {
  flex: 1;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Stagger: kolonlar sırayla gelir */
.nav-item:hover>.mega-dropdown .mega-col:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.nav-item:hover>.mega-dropdown .mega-col:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.nav-item:hover>.mega-dropdown .mega-col:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.mega-col+.mega-col {
  border-left: 1px solid var(--outline);
}

.mega-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--surface-dim);
  border-top: 1px solid var(--outline);
  font-size: 0.8rem;
  color: var(--on-surface-muted);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease 0.3s,
    transform 0.3s ease 0.3s;
}

.nav-item:hover>.mega-dropdown .mega-footer {
  opacity: 1;
  transform: translateY(0);
}

.mega-col-title {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--outline);
}

.mega-col a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.5rem;
  border-radius: 0.4rem;
  font-size: 0.85rem;
  color: var(--on-surface-variant);
  transition: all 0.15s;
}

.mega-col a:hover {
  background: var(--accent-soft);
  color: var(--on-surface);
  padding-left: 0.8rem;
}

.mega-col a .mega-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--surface-container-high);
  flex-shrink: 0;
  transition: background 0.15s;
}

.mega-col a:hover .mega-dot {
  background: var(--accent);
}

.mega-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 0.1rem;
}

.mega-text span {
  font-size: 0.73rem;
  color: var(--on-surface-muted);
  line-height: 1.3;
}

.mega-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5em 1.2em;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.2s;
  flex-shrink: 0;
}

.mega-cta-btn:hover {
  background: var(--accent-hover);
}

/* ===== HEADER CTA ===== */
.header-cta {
  flex-shrink: 0;
}

.header-cta .btn-primary {
  padding: 0.6em 1.5em;
  font-size: 0.85rem;
  background: var(--accent);
  color: #fff;
}

.header-cta .btn-primary:hover {
  background: var(--accent-hover);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.hamburger:hover {
  background: var(--accent-soft);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--on-surface);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--surface);
  z-index: 200;
  padding: 0;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--outline);
}

.mobile-nav-close {
  width: 2.2rem;
  height: 2.2rem;
  background: var(--surface-dim);
  border: none;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-nav-close:hover {
  background: var(--accent);
  color: #fff;
}

.mobile-nav-body {
  padding: 1rem 0;
}

.mobile-nav-item>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--on-surface);
  transition: all 0.2s;
}

.mobile-nav-item>a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.mobile-nav-item>a .m-arrow {
  font-size: 0.65rem;
  color: var(--on-surface-muted);
  transition: transform 0.3s;
}

.mobile-nav-item.open>a .m-arrow {
  transform: rotate(180deg);
}

.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--surface-dim);
}

.mobile-nav-item.open .mobile-sub {
  max-height: 500px;
}

.mobile-sub a {
  display: block;
  padding: 0.7rem 1.5rem 0.7rem 2.5rem;
  font-size: 0.85rem;
  color: var(--on-surface-variant);
  transition: all 0.15s;
  position: relative;
}

.mobile-sub a::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--surface-container-high);
  transform: translateY(-50%);
  transition: background 0.15s;
}

.mobile-sub a:hover {
  color: var(--accent);
  padding-left: 2.8rem;
}

.mobile-sub a:hover::before {
  background: var(--accent);
}

.mobile-sub-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  padding: 0.75rem 1.25rem 0.25rem;
  margin-top: 0.25rem;
}

.mobile-sub-title:first-child {
  margin-top: 0;
}

.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--outline);
}

.mobile-nav-footer .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 0.9em;
  background: var(--accent);
  color: #fff;
}

.mobile-nav-footer .btn-primary:hover {
  background: var(--accent-hover);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 19, 23, 0.4);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mobile-overlay.show {
  opacity: 1;
}

/* ===== HERO SLIDER (Split Column) ===== */
/* Birebir orijinal CodePen slider CSS'i */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#sliderCols {
  display: flex;
}

#sliderCols .part {
  flex: 1;
}

#sliderCols .part .section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#sliderCols .part .section img {
  width: 100vw;
  max-width: none;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

/* Dark overlay on slider */
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10, 10, 15, 0.75) 0%,
      rgba(10, 10, 15, 0.45) 45%,
      transparent 70%),
    linear-gradient(180deg,
      rgba(10, 10, 15, 0.3) 0%,
      transparent 40%,
      rgba(10, 10, 15, 0.5) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Slide counter */
/* Slider bottom bar: counter */
.slider-bottom {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1320px;
  padding: 0 3rem;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slide-counter {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Bricolage Grotesque", sans-serif;
}

.slide-counter-current {
  font-size: 1.8rem;
  font-weight: 700;
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2;
  position: relative;
}

.slide-counter-current .num {
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-counter-current .num.flip-out-up {
  animation: flipOutUp 0.3s ease forwards;
}

.slide-counter-current .num.flip-in-up {
  animation: flipInUp 0.4s 0.15s ease forwards;
  opacity: 0;
}

@keyframes flipOutUp {
  from {
    transform: translateY(0) rotateX(0);
    opacity: 1;
  }

  to {
    transform: translateY(-80%) rotateX(40deg);
    opacity: 0;
  }
}

@keyframes flipInUp {
  from {
    transform: translateY(80%) rotateX(-40deg);
    opacity: 0;
  }

  to {
    transform: translateY(0) rotateX(0);
    opacity: 1;
  }
}

.slide-counter-sep {
  font-size: 0.9rem;
  opacity: 0.4;
  margin: 0 0.2rem;
}

.slide-counter-total {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.5;
}

/* Slider nav buttons */
.slider-nav button {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.slider-nav button:hover {
  background: rgba(255, 255, 255, 0.25);
}

.slider-nav button:active {
  transform: scale(0.92);
}

/* Slide progress bar */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.slide-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.3s ease;
}

/* Hero content overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-overlay>.container {
  pointer-events: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content-wrap {
  max-width: 700px;
}

.hero-slider-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.hero-slider-nav button {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.hero-slider-nav button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-slider-nav button:active {
  transform: scale(0.92);
}

/* Slide text container */
.hero-slide-texts {
  position: relative;
  min-height: 260px;
}

.hero-slide-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.hero-slide-text.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

/* Tag */
.hero-slide-text .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4a053;
  margin-bottom: 1.5rem;
}

.hero-slide-text .hero-tag::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #d4a053;
  opacity: 0.5;
}

/* Başlık */
.hero-slide-text h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2.5px;
  color: #fff;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.hero-slide-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4a053, rgba(212, 160, 83, 0));
  width: 0;
}

.hero-slide-text.active h2::after {
  animation: borderGrow 1.2s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes borderGrow {
  from {
    width: 0;
  }

  to {
    width: 120px;
  }
}

.hero-slide-text h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  display: block;
  margin-top: 0.1em;
  font-size: 0.85em;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.8),
      rgba(212, 160, 83, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Alt açıklama */
.hero-slide-text .hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  line-height: 1.8;
  max-width: 400px;
}

/* Anim */
.hero-slide-text .anim-el {
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide-text.active .anim-el {
  animation: slideTextIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide-text.active .anim-el:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-slide-text.active .anim-el:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-slide-text.active .anim-el:nth-child(3) {
  animation-delay: 0.38s;
}

@keyframes slideTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideTextOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* ===== MARQUEE (River Cross) ===== */
.marquee-wrapper {
  position: relative;
  padding: 1.8rem 0;
  overflow: hidden;
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
}

.marquee-band {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  font-family: "Bricolage Grotesque", sans-serif;
}

.marquee-band:hover {
  animation-play-state: paused;
}

/* Band 1: sola kayar, hafif yukarıdan başlar */
.marquee-band-1 {
  animation: riverLeft 35s linear infinite;
  margin-bottom: -6px;
}

/* Band 2: sağa kayar, hafif aşağıdan başlar */
.marquee-band-2 {
  animation: riverRight 35s linear infinite;
}

@keyframes riverLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes riverRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-band span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-surface);
  opacity: 0.15;
  transition:
    opacity 0.3s,
    color 0.3s;
  letter-spacing: -0.2px;
}

.marquee-band span:hover {
  opacity: 0.6;
  color: var(--accent);
}

.marquee-band .m-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  flex-shrink: 0;
}

/* Ortadaki kesişim çizgisi */
.marquee-cross {
  height: 1px;
  background: linear-gradient(90deg,
      transparent 10%,
      var(--outline) 30%,
      var(--accent) 50%,
      var(--outline) 70%,
      transparent 90%);
  opacity: 0.5;
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 10rem 0;
  background: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80") center/cover no-repeat fixed;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      var(--surface) 0%,
      rgba(255, 255, 255, 0.92) 20%,
      rgba(255, 255, 255, 0.88) 80%,
      var(--surface) 100%);
}

.about .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--on-surface);
  margin-bottom: 1.5rem;
}

.about-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.about-desc {
  font-size: 1.05rem;
  color: var(--on-surface-variant);
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

/* Counter satırı */
.about-counters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.about-counter {
  flex: 0 0 200px;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 160, 83, 0.12);
  border-radius: 1rem;
  transition: all 0.35s;
}

.about-counter:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--accent);
}

.about-counter-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about-counter-num .cnt-accent {
  color: var(--accent);
}

.about-counter-label {
  font-size: 0.8rem;
  color: var(--on-surface-muted);
}

/* Özellik kartları */
.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.about-card {
  flex: 1 1 200px;
  max-width: 300px;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--outline);
  border-radius: 1rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(212, 160, 83, 0.2);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 1rem;
}

.about-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.about-card p {
  font-size: 0.82rem;
  color: var(--on-surface-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about {
    padding: 6rem 0;
  }

  .about-title {
    font-size: 2.4rem;
  }

  .about-counters {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .about-counter {
    flex: 1 1 calc(50% - 0.4rem);
  }

  .about-counter-num {
    font-size: 2.2rem;
  }

  .about-cards {
    flex-direction: column;
    align-items: center;
  }

  .about-card {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 2rem;
  }

  .about-counter {
    flex: 1 1 100%;
  }
}

/* ===== SERVICES ===== */
.services {
  padding: 8rem 0;
  background: var(--surface-dim);
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-desc {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.srv-card {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.srv-card:hover {
  border-color: rgba(212, 160, 83, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

/* Çift kartlarda sıra tersine */
.srv-card:nth-child(even) {
  flex-direction: row-reverse;
}

.srv-text {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.srv-text h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 0.6rem;
}

.srv-text p {
  font-size: 0.88rem;
  color: var(--on-surface-muted);
  line-height: 1.7;
  max-width: 380px;
}

.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 1rem;
  transition: gap 0.3s;
}

.srv-card:hover .srv-link {
  gap: 0.8rem;
}

.srv-img {
  flex: 0 0 320px;
  overflow: hidden;
}

.srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.srv-card:hover .srv-img img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .srv-img {
    flex: 0 0 200px;
  }

  .srv-text {
    padding: 1.8rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .srv-card,
  .srv-card:nth-child(even) {
    flex-direction: column;
  }

  .srv-img {
    flex: none;
    height: 200px;
  }
}

/* ===== STATS ===== */
.stats {
  padding: 5rem 0;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 2.5rem 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 3.5rem;
  background: var(--outline);
}

.stat-number {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number .counter-suffix {
  color: var(--accent);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--on-surface-muted);
}

/* ===== PROCESS (Accordion Cards) ===== */
.process {
  padding: 8rem 0;
  border-top: 1px solid var(--outline);
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header .section-desc {
  margin: 0 auto;
}

.process-cards {
  display: flex;
  gap: 0.5rem;
}

.p-card {
  flex: 1;
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: none;
  border-top: 2px solid var(--outline);
  overflow: hidden;
  cursor: pointer;
  transition:
    flex 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
}

.p-card:first-child {
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  border-radius: 1rem 0 0 1rem;
}

.p-card:last-child {
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 0 1rem 1rem 0;
}

.p-card:hover {
  flex: 3;
  border-top-color: var(--accent);
}

.p-card-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: auto;
  transition: opacity 0.3s;
}

.p-card:hover .p-card-num {
  opacity: 1;
}

.p-card-content h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 0;
  transition: margin 0.4s;
}

.p-card:hover .p-card-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.p-card-content p {
  font-size: 0.85rem;
  color: var(--on-surface-muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s;
}

.p-card:hover .p-card-content p {
  max-height: 80px;
  opacity: 1;
}

/* Alt çizgi animasyonu */
.p-card-content::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  margin-top: 0.8rem;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-card:hover .p-card-content::after {
  width: 50px;
}

@media (max-width: 768px) {
  .process-cards {
    flex-direction: column;
    gap: 0.5rem;
  }

  .p-card {
    clip-path: none !important;
    border-radius: 0.75rem !important;
    min-height: auto;
    padding: 1.5rem;
    flex: none;
  }

  .p-card-num {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .p-card-content p {
    max-height: 80px;
    opacity: 1;
  }

  .p-card-content::after {
    width: 40px;
  }
}

/* ===== TESTIMONIALS (Stacked Cards) ===== */
.testimonials {
  padding: 8rem 0;
  background: var(--surface-dim);
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
}

.testimonials .container {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.testimonials-left {
  flex: 0 0 340px;
}

.testimonials-left .section-desc {
  margin-top: 1rem;
}

.tst-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.tst-nav button {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--outline);
  color: var(--on-surface-variant);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.tst-nav button:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Stack wrapper */
.tst-stack-wrap {
  flex: 1;
  position: relative;
  height: 300px;
  perspective: 1200px;
}

.tst-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 1rem;
  padding: 2.5rem;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  opacity: 0;
  transform: translateY(60px) scale(0.88) rotateX(4deg);
  transform-origin: center bottom;
}

.tst-card.active {
  z-index: 3;
  transform: translateY(0) scale(1) rotateX(0);
  opacity: 1;
  pointer-events: auto;
}

.tst-card.next {
  z-index: 2;
  transform: translateY(20px) scale(0.95) rotateX(2deg);
  opacity: 0.7;
  pointer-events: none;
}

.tst-card.after {
  z-index: 1;
  transform: translateY(40px) scale(0.9) rotateX(4deg);
  opacity: 0.35;
  pointer-events: none;
}

.tst-card .tst-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.tst-card .tst-stars i {
  color: #fbbf24;
  font-size: 0.85rem;
}

.tst-card .tst-text {
  font-size: 1.05rem;
  color: var(--on-surface-variant);
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.tst-card .tst-text::before {
  content: "\201C";
  font-size: 2rem;
  color: var(--accent);
  font-style: normal;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.2rem;
}

.tst-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tst-avatar {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  font-family: "Bricolage Grotesque", sans-serif;
}

.tst-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--on-surface);
  font-weight: 600;
}

.tst-author span {
  font-size: 0.75rem;
  color: var(--on-surface-muted);
}

@media (max-width: 1024px) {
  .testimonials .container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .testimonials-left {
    flex: none;
    text-align: center;
  }

  .tst-nav {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .tst-stack-wrap {
    height: 300px;
  }

  .tst-card {
    padding: 1.8rem;
  }
}

/* ===== BLOG (3D Cards) ===== */
.blog {
  padding: 8rem 0;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
}

.blog-grid {
  display: flex;
  gap: 1.5rem;
  perspective: 1200px;
}

.blog-card {
  flex: 1;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 420px;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

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

.blog-card:hover img {
  transform: scale(1.06);
}

/* Gradient overlay */
.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(0, 0, 0, 0.50) 100%);
  pointer-events: none;
  transition: background 0.4s;
}

.blog-card:hover::after {
  background: linear-gradient(180deg,
      transparent 25%,
      rgba(0, 0, 0, 0.60) 100%);
}

.blog-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem;
  z-index: 1;
}

.blog-card-tag {
  display: inline-block;
  padding: 0.25em 0.8em;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title a {
  color: #fff;
}

.blog-card-title a:hover {
  color: var(--accent);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.blog-card-meta i {
  margin-right: 0.25rem;
  font-size: 0.65rem;
}

/* 3D gölge efekti - kart altı */
.blog-card::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 8%;
  right: 8%;
  height: 20px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  filter: blur(10px);
  z-index: -1;
  transition: all 0.5s;
}

.blog-card:hover::before {
  bottom: -14px;
  left: 4%;
  right: 4%;
  background: rgba(0, 0, 0, 0.12);
  filter: blur(16px);
}

@media (max-width: 768px) {
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .blog-grid {
    flex-direction: column;
    perspective: none;
  }

  .blog-card {
    height: 340px;
  }

  .blog-card:hover {
    transform: translateY(-4px);
  }
}

/* ===== CTA ===== */
.cta-section {
  padding: 6rem 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  min-height: 400px;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80") center/cover no-repeat;
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(18, 19, 23, 0.92) 0%,
      rgba(18, 19, 23, 0.7) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 4rem;
  max-width: 560px;
}

.cta-content .section-label {
  color: var(--accent);
}

.cta-content .section-title {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.cta-content .section-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.cta-content .section-desc {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-buttons .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);
  transition: left 0.5s;
}

.cta-buttons .btn-primary:hover::before {
  left: 100%;
}

.cta-buttons .btn-primary:hover {
  background: var(--accent-hover);
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Sağ taraf dekoratif daireler */
.cta-decor {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 83, 0.15);
}

.cta-ring-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: 0;
  animation: ctaRingSpin 20s linear infinite;
}

.cta-ring-2 {
  width: 280px;
  height: 280px;
  top: -140px;
  right: 60px;
  border-color: rgba(212, 160, 83, 0.1);
  animation: ctaRingSpin 15s linear infinite reverse;
}

.cta-ring-3 {
  width: 160px;
  height: 160px;
  top: -80px;
  right: 120px;
  border-color: rgba(212, 160, 83, 0.2);
  animation: ctaRingSpin 10s linear infinite;
}


@keyframes ctaRingSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .cta-card {
    min-height: 340px;
  }

  .cta-content {
    padding: 2.5rem;
  }

  .cta-content .section-title {
    font-size: 2rem;
  }

  .cta-decor {
    display: none;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--surface-dim);
  color: var(--on-surface-variant);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Üst bulanıklık geçişi */
.footer::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--surface-dim));
  pointer-events: none;
  z-index: 1;
}

/* Üst kısım: logo + sosyal medya */
.footer-top {
  padding: 4rem 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-desc {
  max-width: 380px;
  font-size: 0.85rem;
  color: var(--on-surface-muted);
  margin-top: 1rem;
}

/* Orta: linkler grid */
.footer-grid {
  display: flex;
  gap: 3rem;
  padding: 3rem 0;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: var(--on-surface-muted);
  transition: all 0.25s;
  display: inline-block;
}

.footer-col ul a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: var(--on-surface-muted);
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* Alt bar */
.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--on-surface-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--on-surface-muted);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* Dekoratif arka plan yazı */
.footer-ghost {
  position: absolute;
  bottom: -1.5rem;
  left: -1%;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 12vw;
  font-weight: 800;
  color: var(--on-surface);
  opacity: 0.02;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  animation: footerGhostScroll 45s linear infinite;
}

@keyframes footerGhostScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.footer-bottom-center {
  font-size: 0.78rem;
  color: var(--on-surface-muted);
}

.footer-bottom-center a {
  color: var(--accent);
  font-weight: 600;
  transition: opacity 0.2s;
}

.footer-bottom-center a:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .footer-grid {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .footer-ghost {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 3.2rem;
  height: 3.2rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  animation: wpFloat 3s ease-in-out infinite;
}

.whatsapp-btn::before,
.whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  pointer-events: none;
  animation: wpRipple 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.whatsapp-btn::after {
  animation-delay: 1.2s;
}

.whatsapp-btn i {
  animation: wpWiggle 2.6s ease-in-out infinite;
  transform-origin: 50% 55%;
  display: inline-block;
}

@keyframes wpFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes wpRipple {
  0%   { transform: scale(1);   opacity: 0.55; }
  80%  { opacity: 0; }
  100% { transform: scale(2.1); opacity: 0; }
}

@keyframes wpWiggle {
  0%, 70%, 100% { transform: rotate(0); }
  78%           { transform: rotate(-14deg); }
  86%           { transform: rotate(12deg); }
  94%           { transform: rotate(-6deg); }
}

.whatsapp-btn:hover {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  animation-play-state: paused;
}

.whatsapp-btn:hover::before,
.whatsapp-btn:hover::after {
  animation-play-state: paused;
}

/* ===== STICKY FOOTER (Mobil 5'li) ===== */
.sticky-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--outline);
  z-index: 95;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.sticky-footer .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  padding: 8px 6px 10px;
  position: relative;
  overflow: visible;
}

.sticky-footer .sf-item,
.sticky-footer .sf-fab {
  color: var(--on-surface-variant);
  font-size: 10.5px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  text-align: center;
  padding: 6px 2px;
  text-decoration: none;
  transition: color .25s ease;
  line-height: 1.1;
}

.sticky-footer .sf-item i {
  font-size: 18px;
  color: var(--on-surface-muted);
  transition: color .25s ease, transform .25s ease;
}

.sticky-footer .sf-item:hover,
.sticky-footer .sf-item:active,
.sticky-footer .sf-fab:hover,
.sticky-footer .sf-fab:active {
  color: var(--accent);
}

.sticky-footer .sf-item:hover i,
.sticky-footer .sf-item:active i {
  color: var(--accent);
  transform: translateY(-2px);
}

.sticky-footer .sf-fab {
  position: relative;
  font-weight: 600;
}

.sticky-footer .sf-fab-circle {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), color .25s ease, background .25s ease;
}

.sticky-footer .sf-fab-label {
  margin-top: 32px;
}

.sticky-footer .sf-fab:hover .sf-fab-circle,
.sticky-footer .sf-fab:active .sf-fab-circle {
  transform: translateX(-50%) scale(1.08);
  background: var(--accent);
  color: var(--on-primary);
}

.sticky-footer .sf-fab--disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-slide-text h2 {
    font-size: 4rem;
  }

  .hero-slide-texts {
    min-height: 240px;
  }

  .about .container {
    gap: 3rem;
  }
}

@media (max-width: 1024px) {

  .nav-menu,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .about .container {
    flex-direction: column;
  }

  .about-visual {
    max-width: 420px;
    width: 100%;
  }

  .service-card {
    flex: 1 1 calc(50% - 0.625rem);
  }

  .service-card.featured {
    flex: 1 1 100%;
  }

  .process-timeline {
    flex-wrap: wrap;
    gap: 2.5rem;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex: 0 0 calc(50% - 1.25rem);
  }

  .blog-grid {
    flex-wrap: wrap;
  }

  .blog-card {
    flex: 1 1 calc(50% - 0.625rem);
  }

  .footer-grid {
    flex-wrap: wrap;
  }

  .footer-brand {
    flex: 1 1 100%;
  }

  .footer-col {
    flex: 1 1 calc(33.333% - 2rem);
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .container {
    padding: 0 1.5rem;
  }

  .header {
    padding: 0.65rem 1.5rem;
  }

  .hero-slide-text h2 {
    font-size: 2.8rem;
  }

  .hero-slide-texts {
    min-height: 220px;
  }

  .hero-overlay {
    padding: 0 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .slider-bottom {
    padding: 0 1.5rem;
    bottom: 1.5rem;
  }

  .hero-slider-nav button {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.85rem;
  }

  .hero-slider-nav {
    gap: 0.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .service-card.featured {
    flex-direction: column;
  }

  .stats-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    flex: 0 0 50%;
    text-align: center;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .process-step {
    flex: 0 0 100%;
  }

  /* Testimonials mobil - slide modu */
  .testimonials {
    padding: 4rem 0;
  }

  .testimonials .container {
    flex-direction: column;
    gap: 2rem;
  }

  .testimonials-left {
    flex: none;
    text-align: center;
  }

  .tst-nav {
    justify-content: center;
  }

  .tst-stack-wrap {
    height: auto;
    perspective: none;
    overflow: hidden;
  }

  .tst-card {
    position: relative;
    padding: 1.5rem;
    display: none;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .tst-card.active {
    display: block;
    transform: none;
    animation: tstSlideIn 0.4s ease;
  }

  .tst-card.next,
  .tst-card.after {
    display: none;
  }

  .tst-card .tst-text {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  @keyframes tstSlideIn {
    from {
      opacity: 0;
      transform: translateX(20px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .blog-card {
    flex: 1 1 100%;
    height: 300px;
  }

  .blog {
    padding: 4rem 0;
  }

  .cta-section {
    padding: 2rem 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }

  .whatsapp-btn {
    bottom: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-slide-text h2 {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .hero-slide-texts {
    min-height: 200px;
  }

  .about-badge {
    width: 6rem;
    height: 6rem;
    bottom: -0.8rem;
    right: -0.8rem;
  }

  .about-badge-number {
    font-size: 1.8rem;
  }

  .hero-slider-cols {
    display: flex;
  }

  .hero-slider-cols .part:nth-child(3) {
    display: none;
  }
}


/* ========== referanslar.html (inner page + ref sections) ========== */
/* ===== PAGE HERO / BREADCRUMB ===== */
.page-hero {
  position: relative;
  padding: 5rem 0 2rem;
  background: var(--surface-dim);
  overflow: hidden;
}

.page-hero-line {
  position: absolute;
  right: 12%;
  top: 0;
  width: 2px;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.page-hero-line::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: lineUpDown 3.5s ease-in-out infinite;
}

@keyframes lineUpDown {
  0% {
    top: -40%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: -40%;
  }
}

.page-hero-line2 {
  position: absolute;
  right: 18%;
  top: 0;
  width: 1px;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.4;
}

.page-hero-line2::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: lineUpDown2 4.5s ease-in-out 1s infinite;
}

@keyframes lineUpDown2 {
  0% {
    top: 100%;
  }

  50% {
    top: -30%;
  }

  100% {
    top: 100%;
  }
}

.page-hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: dotFloat 6s ease-in-out infinite;
}

.page-hero-dot:nth-child(1) {
  right: 8%;
  top: 25%;
  animation-delay: 0s;
}

.page-hero-dot:nth-child(2) {
  right: 15%;
  top: 60%;
  animation-delay: 1.2s;
}

.page-hero-dot:nth-child(3) {
  right: 22%;
  top: 35%;
  animation-delay: 2.4s;
}

.page-hero-dot:nth-child(4) {
  right: 10%;
  top: 75%;
  animation-delay: 0.8s;
}

.page-hero-dot:nth-child(5) {
  right: 25%;
  top: 50%;
  animation-delay: 3s;
}

@keyframes dotFloat {

  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }

  20% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.8;
    transform: translateY(-20px) scale(1);
  }

  80% {
    opacity: 0.4;
  }
}

.page-hero-grid {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(212, 160, 83, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideRight 0.6s ease 0.2s forwards;
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-hero-breadcrumb a {
  color: var(--on-surface-muted);
  transition: color var(--transition);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.page-hero-breadcrumb a:hover {
  color: var(--accent);
}

.page-hero-breadcrumb .breadcrumb-sep {
  font-size: 0.6rem;
  color: var(--on-surface-muted);
  opacity: 0.4;
}

.page-hero-breadcrumb .breadcrumb-current {
  color: var(--accent);
  font-weight: 600;
  position: relative;
}

.page-hero-breadcrumb .breadcrumb-current::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  animation: pulseWidth 2.5s ease-in-out infinite;
}

@keyframes pulseWidth {

  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.8;
  }

  50% {
    transform: scaleX(0.5);
    opacity: 0.3;
  }
}

.page-hero-title {
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--on-surface);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1rem;
  overflow: hidden;
}

.page-hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: charUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes charUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent);
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--on-surface-muted);
  max-width: 520px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeSlideRight 0.7s ease 0.5s forwards;
}

.page-hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
  opacity: 0.3;
}

/* ===== CLIENTS GRID ===== */
.clients-section {
  padding: 5rem 0;
  background: var(--surface-dim);
}

.clients-header {
  text-align: center;
  margin-bottom: 3rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.client-cell {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
  transition: background 0.3s ease;
}

.client-cell:nth-child(5n) {
  border-right: none;
}

.client-cell:nth-last-child(-n+5) {
  border-bottom: none;
}

.client-cell:hover {
  background: var(--surface);
}

.client-cell span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--on-surface-muted);
  opacity: 0.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.client-cell:hover span {
  opacity: 1;
  color: var(--accent);
  animation: electric 0.3s ease;
}

@keyframes electric {
  0% {
    opacity: 0.4;
    transform: translateX(0);
  }

  10% {
    opacity: 1;
    transform: translateX(-2px);
  }

  20% {
    transform: translateX(3px);
  }

  30% {
    transform: translateX(-1px);
  }

  40% {
    transform: translateX(2px);
  }

  50% {
    transform: translateX(-2px);
  }

  60% {
    transform: translateX(1px);
  }

  70% {
    transform: translateX(-1px);
  }

  80% {
    transform: translateX(1px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.client-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212, 160, 83, 0.12), transparent 60%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.client-cell:hover::after {
  opacity: 1;
}

.client-cell {
  position: relative;
}

/* ===== PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-hero-title {
    font-size: 2.8rem;
  }

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .client-cell:nth-child(5n) {
    border-right: 1px solid var(--outline);
  }

  .client-cell:nth-child(4n) {
    border-right: none;
  }

  .client-cell:nth-last-child(-n+5) {
    border-bottom: 1px solid var(--outline);
  }

  .client-cell:nth-last-child(-n+4) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 1.75rem;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .page-hero-line,
  .page-hero-line2,
  .page-hero-dots {
    opacity: 0.4;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-cell:nth-child(4n) {
    border-right: 1px solid var(--outline);
  }

  .client-cell:nth-child(3n) {
    border-right: none;
  }

  .client-cell:nth-last-child(-n+4) {
    border-bottom: 1px solid var(--outline);
  }

  .client-cell:nth-last-child(-n+3) {
    border-bottom: none;
  }

}

@media (max-width: 480px) {
  .page-hero {
    padding: 3.5rem 0 1.5rem;
  }

  .page-hero-title {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
  }

  .page-hero-desc {
    font-size: 0.92rem;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-cell:nth-child(3n) {
    border-right: 1px solid var(--outline);
  }

  .client-cell:nth-child(2n) {
    border-right: none;
  }

  .client-cell:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--outline);
  }

  .client-cell:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .client-cell {
    padding: 1.5rem 1rem;
  }
}

/* ========== blog.html (listing sections) ========== */
/* ===== FEATURED POST ===== */
.blog-featured {
  padding: 5rem 0 0;
}

.blog-featured-card {
  display: flex;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--outline);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-featured-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
  border-color: transparent;
}

.blog-featured-image {
  flex: 1.3;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.blog-featured-card:hover .blog-featured-image img {
  transform: scale(1.05);
}

.blog-featured-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-tag {
  display: inline-flex;
  padding: 0.3rem 0.8rem;
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 1rem;
}

.blog-featured-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.blog-featured-content h2 a {
  color: var(--on-surface);
  transition: color var(--transition);
}

.blog-featured-content h2 a:hover {
  color: var(--accent);
}

.blog-featured-content p {
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.78rem;
  color: var(--on-surface-muted);
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-meta-item i {
  color: var(--accent);
  font-size: 0.7rem;
}

/* ===== BLOG GRID ===== */
.blog-grid-section {
  padding: 5rem 0 7rem;
}

.blog-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.blog-grid-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-grid .blog-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--outline);
  background: var(--surface);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: auto;
  position: relative;
  transform-style: flat;
}

.blog-grid .blog-card::after,
.blog-grid .blog-card::before {
  display: none;
}

.blog-grid .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-image .blog-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.7rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  z-index: 1;
}

.blog-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.blog-card-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  z-index: 1;
  pointer-events: none;
}

.blog-card-image-overlay h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-grid .blog-card-body {
  padding: 1.5rem;
  position: static;
  background: var(--surface);
  z-index: auto;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.blog-card-body h3 a {
  color: var(--on-surface);
  transition: color var(--transition);
}

.blog-card-body h3 a:hover {
  color: var(--accent);
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--outline);
}

.blog-card-read {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.blog-card:hover .blog-card-read {
  gap: 0.7rem;
}

.blog-card-read i {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card-read i {
  transform: translateX(3px);
}

/* ===== HORIZONTAL BLOG CARD ===== */
.blog-card-h {
  display: flex;
  flex-direction: row;
  height: auto;
}

.blog-card-h-image {
  position: relative;
  flex: 0 0 140px;
  overflow: hidden;
  display: block;
}

.blog-card-h-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card-h:hover .blog-card-h-image img {
  transform: scale(1.08);
}

.blog-card-h-image .blog-card-tag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 1;
}

.blog-card-h-body {
  flex: 1;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.blog-card-h-body h3 {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.blog-card-h-body h3 a {
  color: var(--on-surface);
  transition: color var(--transition);
}

.blog-card-h-body h3 a:hover {
  color: var(--accent);
}

.blog-card-h-body p {
  font-size: 0.8rem;
  color: var(--on-surface-variant);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-h-body .blog-card-read {
  align-self: flex-start;
  margin-top: 0.2rem;
}

/* ===== PAGINATION ===== */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}

.blog-pagination a,
.blog-pagination span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--outline);
  color: var(--on-surface-variant);
  transition: all var(--transition);
}

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

.blog-pagination .active {
  background: var(--on-surface);
  color: var(--on-primary);
  border-color: var(--on-surface);
}

/* ===== PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-hero-title {
    font-size: 2.8rem;
  }

  .blog-featured-content {
    padding: 2.5rem;
  }

  .blog-featured-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 1.75rem;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .page-hero-line,
  .page-hero-line2,
  .page-hero-dots {
    opacity: 0.4;
  }

  .blog-featured-card {
    flex-direction: column;
  }

  .blog-featured-image {
    min-height: 240px;
  }

  .blog-featured-content {
    padding: 2rem;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-card-h {
    flex-direction: column;
  }

  .blog-card-h-image {
    flex: 0 0 180px;
    height: 180px;
  }

  .blog-grid-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 3.5rem 0 1.5rem;
  }

  .page-hero-title {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
  }

  .page-hero-desc {
    font-size: 0.92rem;
  }

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

  .blog-card-image {
    height: 200px;
  }
}

/* ========== hizmet-detay-1.html ========== */
/* ===== SERVICE INTRO ===== */
.svc-intro {
  padding: 7rem 0;
}

.svc-intro-grid {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

/* ===== DETAIL LAYOUT (hizmet/blog detay + blog liste) ===== */
.detail-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.detail-main {
  flex: 1;
  min-width: 0;
}

.detail-sidebar {
  flex: 0 0 340px;
  position: sticky;
  top: 20px;
}

/* ===== SIDEBAR FORM ===== */
.sidebar-form-wrap {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.sidebar-form-header {
  margin-bottom: 1.25rem;
}

.sidebar-form-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--on-surface);
  margin: 0.35rem 0 0;
  line-height: 1.25;
}

.sidebar-form .form-row {
  display: flex;
  gap: 0.5rem;
}

.sidebar-form .form-row .form-group {
  flex: 1;
  min-width: 0;
}

.sidebar-form .form-group {
  margin-bottom: 0.5rem;
}

.sidebar-form .form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 0.35rem;
  letter-spacing: 0.2px;
}

.sidebar-form .req {
  color: var(--accent);
  margin-left: 1px;
}

.sidebar-form .form-group input,
.sidebar-form .form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--surface-dim);
  border: 1px solid var(--outline);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--on-surface);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.sidebar-form .form-group input:focus,
.sidebar-form .form-group textarea:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.sidebar-form .form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.sidebar-form .form-privacy {
  font-size: 0.75rem;
  color: var(--on-surface-muted);
  margin: 0.75rem 0;
  line-height: 1.5;
}

.sidebar-form .form-privacy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sidebar-form .form-captcha {
  display: flex;
  align-items: center;
  padding: 4px 0;
}

.sidebar-form .g-recaptcha {
  position: relative;
  display: inline-block;
}

.sidebar-form .fake_error {
  left: 0 !important;
  top: auto !important;
  bottom: calc(100% + 10px);
  transform: none !important;
  white-space: nowrap;
  padding: 5px 15px !important;
}

.sidebar-form .fake_error:before {
  left: 22px !important;
  margin-left: 0 !important;
  top: 100%;
  bottom: auto;
  border-top-color: #F44336;
  border-bottom-color: transparent;
}

.sidebar-form .form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.sidebar-form .btn-form-submit {
  width: 100%;
  justify-content: center;
}

.svc-intro-content {
  flex: 1;
}

.svc-intro-content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.svc-intro-content h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent);
}

.svc-intro-content p {
  font-size: 1rem;
  color: var(--on-surface-variant);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.svc-intro-content p strong {
  color: var(--on-surface);
}

/* ============================================
         RICH CONTENT — editörden gelen HTML çıktısı
         h2/h3/h4, p, ul/ol, a, iframe, img, blockquote
      ============================================ */
.rich-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.rich-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.rich-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.rich-content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rich-content h6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rich-content h2:first-child,
.rich-content h3:first-child,
.rich-content h4:first-child,
.rich-content h5:first-child,
.rich-content h6:first-child {
  margin-top: 0;
}

.rich-content p {
  font-size: 1rem;
  color: var(--on-surface-variant);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.rich-content p:last-child {
  margin-bottom: 0;
}

.rich-content strong {
  font-weight: 600;
  color: var(--on-surface);
}

.rich-content em {
  font-style: italic;
  color: var(--accent);
}

.rich-content u {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rich-content del,
.rich-content s {
  text-decoration: line-through;
  opacity: 0.6;
}

.rich-content sub {
  font-size: 0.75em;
  vertical-align: sub;
}

.rich-content sup {
  font-size: 0.75em;
  vertical-align: super;
}

.rich-content kbd {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8em;
  background: var(--surface-dim);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 4px;
  padding: 0.1em 0.45em;
  color: var(--on-surface);
  white-space: nowrap;
}

.rich-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.rich-content a:hover {
  opacity: 0.75;
}

.rich-content ul,
.rich-content ol {
  padding-left: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--on-surface-variant);
  line-height: 1.85;
}

.rich-content ul {
  list-style: disc;
}

.rich-content ol {
  list-style: decimal;
}

.rich-content li {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.rich-content li strong {
  color: var(--on-surface);
}

.rich-content li:last-child {
  margin-bottom: 0;
}

.rich-content ul ul,
.rich-content ol ol,
.rich-content ul ol,
.rich-content ol ul {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
  padding-left: 1.4rem;
}

.rich-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.25rem;
  margin: 1.75rem 0;
  background: rgba(var(--accent-rgb, 180, 140, 60), 0.06);
  border-radius: 0 8px 8px 0;
  color: var(--on-surface-variant);
  font-style: italic;
}

.rich-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* Responsive iframe (YouTube vb.) */
.rich-content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: none;
  border-radius: 12px;
  margin: 2rem 0;
}

.rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  display: block;
}

.rich-content img[style*="margin: auto"],
.rich-content img[style*="margin:auto"],
.rich-content figure.image-style-align-center img {
  margin-left: auto;
  margin-right: auto;
}

.rich-content figure.image-style-align-left {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  max-width: 50%;
}

.rich-content figure.image-style-align-right {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  max-width: 50%;
}

.rich-content::after {
  content: '';
  display: table;
  clear: both;
}

/* Table */
.rich-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
  overflow-x: auto;
  display: block;
}

.rich-content thead th {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  white-space: nowrap;
}

.rich-content tbody tr {
  border-bottom: 1px solid var(--border);
}

.rich-content tbody tr:nth-child(even) {
  background: rgba(var(--accent-rgb, 180, 140, 60), 0.04);
}

.rich-content td {
  padding: 0.7rem 1rem;
  color: var(--on-surface-variant);
  vertical-align: top;
}

/* Code */
.rich-content pre {
  background: var(--surface-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
  font-size: 0.875rem;
  line-height: 1.7;
}

.rich-content code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.875em;
  background: rgba(var(--accent-rgb, 180, 140, 60), 0.1);
  color: var(--accent);
  padding: 0.15em 0.45em;
  border-radius: 4px;
}

.rich-content pre code {
  background: none;
  color: var(--on-surface);
  padding: 0;
  font-size: inherit;
}

/* Figure / caption */
.rich-content figure {
  margin: 2rem 0;
}

.rich-content figcaption {
  font-size: 0.85rem;
  color: var(--on-surface-muted, var(--on-surface-variant));
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Mark / highlight */
.rich-content mark {
  background: rgba(var(--accent-rgb, 180, 140, 60), 0.2);
  color: var(--on-surface);
  padding: 0.1em 0.3em;
  border-radius: 3px;
}

.svc-intro-highlights {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.svc-intro-highlight {
  flex: 1;
  padding: 1.2rem;
  background: var(--surface-dim);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.4s ease;
}

.svc-intro-highlight:hover {
  background: var(--accent-soft);
}

.svc-intro-highlight i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.svc-intro-highlight span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: 0.3px;
}

.svc-intro-image {
  flex: 0.85;
  position: relative;
}

.svc-intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

/* ===== WHAT'S INCLUDED ===== */
.svc-scope {
  padding: 7rem 0;
  background: var(--surface-dim);
}

.svc-scope-header {
  text-align: center;
  margin-bottom: 4rem;
}

.svc-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-scope-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 2rem;
  border: 1px solid var(--outline);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-scope-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.svc-scope-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-scope-card:hover::before {
  transform: scaleX(1);
}

.svc-scope-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--surface-container-high);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.svc-scope-card:hover .svc-scope-num {
  color: var(--accent-soft);
}

.svc-scope-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.svc-scope-card p {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
}

/* ===== PROCESS HORIZONTAL ===== */
.svc-process {
  padding: 7rem 0;
}

.svc-process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.svc-process-track {
  display: flex;
  position: relative;
}

.svc-process-track::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--surface-container-high);
}

.svc-process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.svc-process-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--surface-container-high);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  color: var(--on-surface-muted);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-process-step:hover .svc-process-icon {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.svc-process-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.svc-process-step p {
  font-size: 0.82rem;
  color: var(--on-surface-muted);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

/* ===== COMPARISON SPLIT ===== */
.svc-comparison {
  padding: 7rem 0;
  background: var(--surface-dim);
}

.svc-comparison-header {
  text-align: center;
  margin-bottom: 4rem;
}

.svc-comparison-split {
  display: flex;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.svc-comparison-col {
  flex: 1;
  border-radius: var(--radius-card);
  padding: 2.5rem;
  position: relative;
}

.svc-comparison-col--before {
  background: var(--surface);
  border: 1px solid var(--outline);
}

.svc-comparison-col--after {
  background: var(--on-surface);
  color: #fff;
}

.svc-comparison-col h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.svc-comparison-col--before h3 {
  color: var(--on-surface-muted);
}

.svc-comparison-col--after h3 {
  color: var(--accent);
}

.svc-comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svc-comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.svc-comparison-col--before .svc-comparison-list li {
  color: var(--on-surface-variant);
}

.svc-comparison-col--after .svc-comparison-list li {
  color: rgba(255, 255, 255, 0.7);
}

.svc-comparison-list li i {
  margin-top: 0.25rem;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.svc-comparison-col--before .svc-comparison-list li i {
  color: var(--on-surface-muted);
  opacity: 0.4;
}

.svc-comparison-col--after .svc-comparison-list li i {
  color: var(--accent);
}

/* ===== FAQ ACCORDION ===== */
.svc-faq {
  padding: 7rem 0;
}

.svc-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.svc-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.svc-faq-item {
  border-bottom: 1px solid var(--outline);
}

.svc-faq-item:first-child {
  border-top: 1px solid var(--outline);
}

.svc-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--on-surface);
  text-align: left;
  transition: color 0.3s ease;
}

.svc-faq-question:hover {
  color: var(--accent);
}

.svc-faq-question i {
  font-size: 0.8rem;
  color: var(--on-surface-muted);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.svc-faq-item.active .svc-faq-question i {
  transform: rotate(45deg);
  color: var(--accent);
}

.svc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.92rem;
  color: var(--on-surface-variant);
  line-height: 1.8;
}

/* ===== CTA INLINE ===== */
.svc-cta {
  padding: 5rem 0;
  background: var(--surface-dim);
}

.svc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.svc-cta-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}

.svc-cta-text h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent);
}

.svc-cta-text p {
  font-size: 1rem;
  color: var(--on-surface-muted);
}

.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--on-surface);
  color: var(--on-primary);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.svc-cta-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 160, 83, 0.3);
}

/* ===== PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-hero-title {
    font-size: 2.8rem;
  }

  .detail-layout {
    gap: 2.5rem;
  }

  .detail-sidebar {
    flex: 0 0 300px;
  }

  .svc-intro-grid {
    gap: 3rem;
  }

  .svc-intro-content h2 {
    font-size: 1.9rem;
  }

  .svc-intro-image img {
    height: 400px;
  }

  .svc-scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 1.75rem;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .page-hero-line,
  .page-hero-line2,
  .page-hero-dots {
    opacity: 0.4;
  }

  .detail-layout {
    flex-direction: column;
  }

  .detail-sidebar {
    flex: none;
    width: 100%;
    position: static;
  }

  .svc-intro-grid {
    flex-direction: column;
    gap: 2.5rem;
  }

  .svc-intro-image img {
    height: 300px;
  }

  .svc-intro-highlights {
    flex-wrap: wrap;
  }

  .svc-intro-highlight {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .svc-scope-grid {
    grid-template-columns: 1fr;
  }

  .svc-process-track {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .svc-process-track::before {
    display: none;
  }

  .svc-process-step {
    flex: 1 1 calc(50% - 1rem);
  }

  .svc-comparison-split {
    flex-direction: column;
  }

  .svc-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 3.5rem 0 1.5rem;
  }

  .page-hero-title {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
  }

  .page-hero-desc {
    font-size: 0.92rem;
  }

  .svc-intro-content h2 {
    font-size: 1.6rem;
  }

  .svc-intro-highlight {
    flex: 1 1 100%;
  }

  .svc-process-step {
    flex: 1 1 100%;
  }

  .svc-cta-text h2 {
    font-size: 1.6rem;
  }
}

/* ========== hizmet-detay-2.html ========== */
/* ===== FULL-WIDTH INTRO ===== */
.svc2-intro {
  padding: 7rem 0;
}

.svc2-intro-top {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.svc2-intro-top h2 {
  flex: 1;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.svc2-intro-top h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent);
}

.svc2-intro-top p {
  flex: 1;
  font-size: 1rem;
  color: var(--on-surface-variant);
  line-height: 1.85;
}

.svc2-intro-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

/* ===== FEATURES ZIGZAG ===== */
.svc2-features {
  padding: 5rem 0 7rem;
}

.svc2-feature {
  display: flex;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.svc2-feature:last-child {
  margin-bottom: 0;
}

.svc2-feature:nth-child(even) {
  flex-direction: row-reverse;
}

.svc2-feature-content {
  flex: 1;
}

.svc2-feature-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--surface-container-high);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.svc2-feature-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.svc2-feature-content p {
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.svc2-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.svc2-feature-tag {
  padding: 0.35rem 0.9rem;
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.svc2-feature-visual {
  flex: 1;
  height: 340px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.svc2-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc2-feature:hover .svc2-feature-visual img {
  transform: scale(1.04);
}

/* ===== TECH STACK ===== */
.svc2-tech {
  padding: 5rem 0;
  background: var(--surface-dim);
}

.svc2-tech-header {
  text-align: center;
  margin-bottom: 3rem;
}

.svc2-tech-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.svc2-tech-item {
  width: 120px;
  height: 120px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc2-tech-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.svc2-tech-item i {
  font-size: 1.6rem;
  color: var(--accent);
}

.svc2-tech-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--on-surface-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== RESULTS ===== */
.svc2-results {
  padding: 7rem 0;
}

.svc2-results-header {
  text-align: center;
  margin-bottom: 4rem;
}

.svc2-results-grid {
  display: flex;
  gap: 1.5rem;
}

.svc2-result-card {
  flex: 1;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-card);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.svc2-result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.svc2-result-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.svc2-result-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.svc2-result-card p {
  font-size: 0.82rem;
  color: var(--on-surface-muted);
}

/* ===== FAQ ===== */
.svc2-faq {
  padding: 7rem 0;
  background: var(--surface-dim);
}

.svc2-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.svc2-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.svc2-faq-card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc2-faq-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.svc2-faq-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--on-surface);
}

.svc2-faq-card p {
  font-size: 0.88rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
}

/* ===== CTA ===== */
.svc2-cta {
  padding: 5rem 0;
}

.svc2-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.svc2-cta-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}

.svc2-cta-text h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent);
}

.svc2-cta-text p {
  font-size: 1rem;
  color: var(--on-surface-muted);
}

.svc2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--on-surface);
  color: var(--on-primary);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.svc2-cta-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 160, 83, 0.3);
}

/* ===== PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-hero-title {
    font-size: 2.8rem;
  }

  .svc2-intro-top h2 {
    font-size: 2rem;
  }

  .svc2-intro-img {
    height: 340px;
  }

  .svc2-feature {
    gap: 3rem;
  }

  .svc2-feature-visual {
    height: 280px;
  }

  .svc2-results-grid {
    flex-wrap: wrap;
  }

  .svc2-result-card {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 1.75rem;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .page-hero-line,
  .page-hero-line2,
  .page-hero-dots {
    opacity: 0.4;
  }

  .svc2-intro-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .svc2-intro-img {
    height: 280px;
  }

  .svc2-feature,
  .svc2-feature:nth-child(even) {
    flex-direction: column;
    gap: 2rem;
  }

  .svc2-feature-visual {
    height: 240px;
    width: 100%;
  }

  .svc2-tech-item {
    width: 100px;
    height: 100px;
  }

  .svc2-results-grid {
    flex-direction: column;
  }

  .svc2-faq-grid {
    grid-template-columns: 1fr;
  }

  .svc2-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 3.5rem 0 1.5rem;
  }

  .page-hero-title {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
  }

  .page-hero-desc {
    font-size: 0.92rem;
  }

  .svc2-intro-top h2 {
    font-size: 1.6rem;
  }

  .svc2-feature-num {
    font-size: 3rem;
  }

  .svc2-cta-text h2 {
    font-size: 1.6rem;
  }
}

/* ========== sirket-profili.html ========== */
/* ===== COMPANY INTRO ===== */
.company-intro {
  padding: 7rem 0;
}

.company-intro-grid {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

.company-intro-text {
  flex: 1;
}

.company-intro-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.company-intro-text h2 em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
}

.company-intro-text .intro-lead {
  font-size: 1.1rem;
  color: var(--on-surface);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.company-intro-text p {
  font-size: 1rem;
  color: var(--on-surface-variant);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.company-intro-stats {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
}

.company-intro-stat {
  flex: 1;
  padding: 1.5rem 0;
  border-top: 2px solid var(--outline);
  transition: border-color 0.4s ease;
  text-align: center;
}

.company-intro-stat:hover {
  border-color: var(--accent);
}

.company-intro-stat .stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.company-intro-stat .stat-number span {
  color: var(--accent);
}

.company-intro-stat .stat-label {
  font-size: 0.8rem;
  color: var(--on-surface-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* 3D Flip card area */
.company-intro-flipper {
  flex: 1;
  perspective: 1200px;
  height: 520px;
}

.flip-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: cardFlip 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.flip-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.flip-card-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flip-card-back {
  transform: rotateY(180deg);
}

@keyframes cardFlip {

  0%,
  42% {
    transform: rotateY(0deg);
  }

  50%,
  92% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/* ===== VISION MISSION ===== */
.vision-mission {
  padding: 7rem 0;
  background: var(--surface-dim);
}

.vm-header {
  text-align: center;
  margin-bottom: 4rem;
}

.vm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.vm-card {
  flex: 1 1 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
  padding: 2.5rem;
  background: var(--surface);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--outline);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.vm-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vm-card:hover::after {
  transform: scaleX(1);
}

.vm-card-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--surface-container);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.vm-card:hover .vm-card-num {
  color: var(--accent-soft);
}

.vm-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.vm-card p {
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  line-height: 1.8;
}

/* ===== VALUES (light bg) ===== */
.values-section {
  padding: 7rem 0;
  background: var(--surface);
  position: relative;
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.value-card {
  flex: 1 1 calc(25% - 1.5rem);
  max-width: calc(25% - 1.5rem);
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.value-card:hover::before {
  height: 100%;
}

.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: background 0.4s ease, color 0.4s ease;
}

.value-card:hover .value-card-icon {
  background: var(--accent);
  color: #fff;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
}

/* Value card bubbles */
.value-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.value-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  will-change: transform, opacity;
  animation: bubbleFloat linear infinite;
}

.value-bubble:nth-child(1) {
  width: 12px;
  height: 12px;
  left: 12%;
  bottom: -12px;
  animation-duration: 5s;
  animation-delay: 0s;
}

.value-bubble:nth-child(2) {
  width: 8px;
  height: 8px;
  left: 40%;
  bottom: -10px;
  animation-duration: 6s;
  animation-delay: 1s;
}

.value-bubble:nth-child(3) {
  width: 14px;
  height: 14px;
  left: 68%;
  bottom: -14px;
  animation-duration: 5.5s;
  animation-delay: 2s;
}

.value-bubble:nth-child(4) {
  width: 9px;
  height: 9px;
  left: 25%;
  bottom: -10px;
  animation-duration: 6.5s;
  animation-delay: 0.5s;
}

.value-bubble:nth-child(5) {
  width: 6px;
  height: 6px;
  left: 82%;
  bottom: -8px;
  animation-duration: 7s;
  animation-delay: 3s;
}

.value-bubble:nth-child(6) {
  width: 10px;
  height: 10px;
  left: 52%;
  bottom: -12px;
  animation-duration: 5.8s;
  animation-delay: 1.5s;
}

.value-bubble:nth-child(7) {
  display: none;
}

.value-bubble:nth-child(8) {
  display: none;
}

.value-bubble:nth-child(9) {
  display: none;
}

.value-bubble:nth-child(10) {
  display: none;
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(0) translateX(0) scale(0.5);
    opacity: 0;
  }

  10% {
    opacity: 0.35;
  }

  40% {
    opacity: 0.25;
    transform: translateY(-120px) translateX(20px) scale(1);
  }

  70% {
    opacity: 0.18;
    transform: translateY(-220px) translateX(-15px) scale(0.8);
  }

  100% {
    transform: translateY(-350px) translateX(10px) scale(0.4);
    opacity: 0;
  }
}

/* ===== TEAM ===== */
.team-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.team-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(18rem, 100%), 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.team-card {
  position: relative;
  cursor: pointer;
}

.team-card::before {
  position: absolute;
  content: '';
  width: 5rem;
  height: 6.25rem;
  z-index: 0;
  transition: transform 0.3s ease-in-out;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
}

/* Odd cards: accent top-left, even cards: accent bottom-left + offset down */
.team-card:nth-child(odd)::before {
  top: -0.375rem;
  left: -0.375rem;
}

.team-card:nth-child(even)::before {
  bottom: -0.375rem;
  left: -0.375rem;
  top: auto;
}

.team-card:hover::before {
  transform: scale(1.05);
}

.team-card:nth-child(3n+2) {
  transform: translateY(15%);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  position: relative;
}

.team-card:hover img {
  filter: grayscale(0%);
}

.team-card::after {
  position: absolute;
  inset: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(18, 19, 23, 0.15),
      rgba(18, 19, 23, 0.85));
  pointer-events: none;
}

.team-card-content {
  position: absolute;
  bottom: 0;
  z-index: 2;
  left: 0;
  color: #fff;
  width: 100%;
  padding: 2rem 1.5rem;
  text-align: center;
}

.team-card-content h3 {
  font-size: clamp(1rem, 0.92rem + 0.27vw, 1.25rem);
  font-weight: 500;
  color: #f6f6f6;
  text-transform: capitalize;
  margin-bottom: 0.2rem;
}

.team-card-content p {
  font-size: clamp(0.82rem, 0.75rem + 0.3vw, 1rem);
  letter-spacing: 0.12rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: capitalize;
  margin-bottom: 0;
  max-width: 100%;
}

.team-card-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1rem;
  list-style: none;
}

.team-card-content ul a {
  color: #fff;
  font-size: clamp(0.9rem, 0.83rem + 0.3vw, 1.1rem);
  transition: color var(--transition);
}

.team-card-content ul a:hover {
  color: var(--accent);
}

/* ===== PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-hero-title {
    font-size: 2.8rem;
  }

  .company-intro-grid {
    gap: 3rem;
  }

  .company-intro-text h2 {
    font-size: 2.1rem;
  }

  .company-intro-flipper {
    height: 420px;
  }

  .values-grid {
    flex-wrap: wrap;
  }

  .value-card {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 1.75rem;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .page-hero-line,
  .page-hero-line2,
  .page-hero-dots {
    opacity: 0.4;
  }

  .company-intro-grid {
    flex-direction: column;
    gap: 2.5rem;
  }

  .company-intro-flipper {
    height: 350px;
  }

  .company-intro-stats {
    flex-wrap: wrap;
  }

  .company-intro-stat {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .company-intro-stat .stat-number {
    font-size: 2rem;
  }

  .vm-grid {
    flex-direction: column;
  }

  .values-grid {
    flex-direction: column;
  }

  .value-card {
    flex: 1 1 100%;
  }

  .team-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card:nth-child(3n+2) {
    transform: none;
  }
}

@media (max-width: 540px) {
  .team-cards {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 3.5rem 0 1.5rem;
  }

  .page-hero-title {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
  }

  .page-hero-desc {
    font-size: 0.92rem;
  }

  .company-intro-text h2 {
    font-size: 1.7rem;
  }

  .company-intro-flipper {
    height: 280px;
  }

  .company-intro-stat {
    flex: 1 1 100%;
  }

  .company-intro-stat .stat-number {
    font-size: 1.8rem;
  }

  .vm-card {
    padding: 2rem 1.5rem;
  }

  .vm-card-num {
    font-size: 3.5rem;
  }

  .timeline-year {
    font-size: 1.8rem;
  }
}

/* ========== neden-biz.html ========== */
/* ===== HEADLINE STATS ===== */
.headline-stats {
  padding: 5rem 0;
  border-bottom: 1px solid var(--outline);
}

.headline-stats-grid {
  display: flex;
  gap: 0;
}

.headline-stat {
  flex: 1;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.headline-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--outline);
}

.headline-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.headline-stat-num span {
  color: var(--accent);
}

.headline-stat-label {
  font-size: 0.85rem;
  color: var(--on-surface-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== COMPARISON TABLE ===== */
.comparison {
  padding: 7rem 0;
}

.comparison-header {
  text-align: center;
  margin-bottom: 4rem;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--outline);
}

.comparison-table thead th {
  padding: 1.5rem 2rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  background: var(--surface-dim);
  color: var(--on-surface);
  border-bottom: 2px solid var(--outline);
}

.comparison-table thead th:first-child {
  text-align: left;
  width: 40%;
}

.comparison-table thead th.highlight {
  background: var(--on-surface);
  color: var(--on-primary);
  position: relative;
}

.comparison-table thead th.highlight::before {
  content: 'Önerilen';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.2rem 0.8rem;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.comparison-table tbody td {
  padding: 1.2rem 2rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--on-surface-variant);
  border-bottom: 1px solid var(--outline);
  transition: background 0.3s ease;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover td {
  background: var(--surface-dim);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--on-surface);
}

.comparison-table tbody td.highlight {
  background: rgba(212, 160, 83, 0.04);
  font-weight: 600;
  color: var(--on-surface);
}

.comparison-table tbody tr:hover td.highlight {
  background: rgba(212, 160, 83, 0.08);
}

.comparison-table .icon-yes {
  color: var(--accent);
  font-size: 1.1rem;
}

.comparison-table .icon-no {
  color: var(--on-surface-muted);
  opacity: 0.3;
  font-size: 1.1rem;
}

/* ===== ADVANTAGES MARQUEE ===== */
.advantages-marquee {
  padding: 3rem 0;
  background: var(--on-surface);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.marquee-item i {
  color: var(--accent);
  font-size: 0.7rem;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== PROCESS / HOW WE WORK ===== */
.process-section {
  padding: 7rem 0;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--surface-container-high);
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.process-step-num {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--surface-container-high);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--on-surface-muted);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.process-step:hover .process-step-num {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px var(--accent-soft);
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}


/* ===== TESTIMONIAL HIGHLIGHT ===== */
.testimonial-highlight {
  padding: 7rem 0;
  position: relative;
}

.testimonial-highlight-inner {
  background: var(--on-surface);
  border-radius: 2rem;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-highlight-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 160, 83, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 160, 83, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: -1rem;
  opacity: 0.5;
}

.testimonial-highlight-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-highlight-author {
  position: relative;
  z-index: 1;
}

.testimonial-highlight-author strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}

.testimonial-highlight-author span {
  color: var(--accent);
  font-size: 0.85rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 5rem 0;
  background: var(--surface-dim);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-banner-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.cta-banner-text h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent);
}

.cta-banner-text p {
  font-size: 1rem;
  color: var(--on-surface-muted);
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--on-surface);
  color: var(--on-primary);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.cta-banner-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 160, 83, 0.3);
}

/* ===== PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-hero-title {
    font-size: 2.8rem;
  }

  .headline-stat-num {
    font-size: 2.8rem;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    flex: 1 1 calc(50% - 1rem);
  }

  .testimonial-highlight-inner {
    padding: 4rem 3rem;
  }

  .testimonial-highlight-text {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 1.75rem;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .page-hero-line,
  .page-hero-line2,
  .page-hero-dots {
    opacity: 0.4;
  }

  .headline-stats-grid {
    flex-wrap: wrap;
  }

  .headline-stat {
    flex: 1 1 50%;
  }

  .headline-stat:not(:last-child)::after {
    display: none;
  }

  .headline-stat-num {
    font-size: 2.2rem;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 1rem;
  }

  .process-step {
    flex: 1 1 100%;
  }

  .testimonial-highlight-inner {
    padding: 3rem 2rem;
  }

  .testimonial-highlight-text {
    font-size: 1.2rem;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 3.5rem 0 1.5rem;
  }

  .page-hero-title {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
  }

  .page-hero-desc {
    font-size: 0.92rem;
  }

  .headline-stat {
    flex: 1 1 100%;
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody td:first-child {
    padding: 0.8rem;
    font-size: 0.8rem;
  }

  .cta-banner-text h2 {
    font-size: 1.7rem;
  }
}

/* ========== iletisim.html (contact) ========== */
/* ===== CONTACT MAIN ===== */
.contact-main {
  padding: 5rem 0 7rem;
}

.contact-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.contact-form-col {
  flex: 1.2;
}

.contact-side-col {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* FORM */
.contact-form-header {
  margin-bottom: 2.5rem;
}

.contact-form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
}

.contact-form-header p {
  font-size: 0.95rem;
  color: var(--on-surface-muted);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: var(--surface-dim);
  border: 1px solid var(--outline);
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  color: var(--on-surface);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--on-surface-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%239098a8' stroke-width='1.5' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--on-surface-muted);
  line-height: 1.6;
}

.form-privacy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.85em 2.2em;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: "DM Sans", sans-serif;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 83, 0.3);
}

.btn-form-submit i {
  font-size: 0.85em;
  transition: transform var(--transition);
}

.btn-form-submit:hover i {
  transform: translateX(3px);
}

.btn-form-submit:disabled,
.btn-form-submit[disabled] {
  background: var(--on-surface-muted) !important;
  color: #fff !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
  opacity: 0.75;
  pointer-events: none;
}

/* SIDE: QUICK CONTACT */
.side-card {
  background: var(--surface-dim);
  border: 1px solid var(--outline);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.side-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
}

.side-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.side-contact-item .icon {
  width: 2.2rem;
  height: 2.2rem;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.side-contact-item .text span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--on-surface-muted);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.side-contact-item .text a,
.side-contact-item .text p {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  font-weight: 500;
}

.side-contact-item .text a:hover {
  color: var(--accent);
}

/* SIDE: WORKING HOURS */
.side-hours {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.side-hours h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.3px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--outline-variant);
}

.hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-item .day {
  color: var(--on-surface-variant);
  font-weight: 500;
}

.hours-item .time {
  color: var(--on-surface);
  font-weight: 600;
}

.hours-item .time.closed {
  color: var(--on-surface-muted);
  font-weight: 400;
}

/* ===== MAP ===== */
.map-section {
  padding: 0 0 7rem;
}

.map-wrapper {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--outline);
  height: 420px;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.map-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--on-surface);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.map-label i {
  color: var(--accent);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(212, 160, 83, 0.07);
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(212, 160, 83, 0.05);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-banner-text .section-label {
  color: var(--accent);
}

.cta-banner-text .section-label::before,
.cta-banner-text .section-label::after {
  background: var(--accent);
}

.cta-banner-text h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.cta-banner-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  max-width: 400px;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--primary);
  padding: 0.85em 2em;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: "DM Sans", sans-serif;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-cta-white:hover {
  background: var(--surface-dim);
  transform: translateY(-2px);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  padding: 0.85em 2em;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: "DM Sans", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.6);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 3rem;
}

.footer .logo {
  color: #fff;
}

.footer .logo img {
  filter: brightness(0) invert(1);
}

.footer .logo-icon {
  background: var(--accent);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  transition: all 0.25s;
}

.footer-social a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-col ul a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom-center a {
  color: var(--accent);
}

.footer-bottom-center a:hover {
  color: var(--accent-hover);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

.footer-ghost {
  font-size: clamp(3rem, 8vw, 7rem);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: 2rem;
  letter-spacing: -2px;
  user-select: none;
}

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.2rem;
  height: 3.2rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-layout {
    gap: 2.5rem;
  }

  .contact-side-col {
    flex: 0 0 300px;
  }

  .form-row {
    flex-direction: column;
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {

  .nav-menu,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .contact-layout {
    flex-direction: column;
  }

  .contact-side-col {
    flex: none;
    width: 100%;
  }

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-text p {
    max-width: 100%;
  }

  .cta-banner-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-ghost {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.5rem;
  }

  .topbar {
    display: none;
  }

  .page-hero {
    padding: 3rem 0 1.5rem;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-banner-text h2 {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-wrapper {
    height: 300px;
  }
}

/* ==============================
   LEGAL PAGES
   ============================== */
.legal-content {
  padding: 80px 0 100px;
}

.legal-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--on-surface);
}

.legal-body h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--heading);
}

.legal-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--heading);
}

.legal-body p {
  margin-bottom: 1rem;
}

/* ===================================================
   404 / Error Sayfasi
   =================================================== */
.error-section {
  padding: 120px 0;
  background: var(--surface-dim);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.error-code {
  font-size: clamp(120px, 20vw, 240px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 8px;
}

.error-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--on-surface);
  margin: 0 0 16px;
  line-height: 1.2;
}

.error-desc {
  font-size: 16px;
  color: var(--on-surface-variant);
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 560px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-actions .btn-primary,
.error-actions .btn-secondary {
  min-width: 200px;
  justify-content: center;
}

@media (max-width: 640px) {
  .error-section { padding: 72px 0; min-height: 55vh; }
  .error-title { font-size: 26px; }
  .error-desc { font-size: 15px; }
  .error-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .error-actions .btn-primary,
  .error-actions .btn-secondary { width: 100%; min-width: 0; }
}

/* ==============================
   ÜRÜN KATEGORILERI
   ============================== */
.products-categories {
  padding: 80px 0;
  background: var(--surface);
}

.products-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-cat-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-card);
  padding: 2rem;
  background: var(--surface-dim);
  border: 1px solid var(--outline);
  transition: all var(--transition);
  color: inherit;
}

.product-cat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-cat-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-cat-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  color: var(--accent);
}

.product-cat-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--on-surface);
}

.product-cat-desc {
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  line-height: 1.6;
  margin: 0;
}

.product-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 500;
  transition: gap var(--transition);
}

.product-cat-card:hover .product-cat-link {
  gap: 0.75rem;
}

/* ==============================
   ÜRÜN KARTLARı
   ============================== */
.products-section {
  padding: 80px 0;
  background: var(--surface);
}

#urunler.products-section {
  padding: 8rem 0;
  background: var(--surface-dim);
  border-top: 1px solid var(--outline);
}

#urunler.products-section .services-header {
  text-align: center;
  margin-bottom: 4rem;
}

#urunler.products-section .products-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  #urunler.products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #urunler.products-section .products-grid {
    grid-template-columns: 1fr;
  }
}

.products-more {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--outline);
  transition: all var(--transition);
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.product-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: var(--surface-dim);
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover .product-card-media img {
  transform: scale(1.05);
}

.product-card-media-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--primary) 18%, transparent) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, color-mix(in srgb, var(--primary) 12%, transparent) 0%, transparent 50%),
    linear-gradient(135deg, var(--surface-container) 0%, var(--surface-dim) 100%);
}

.product-card-media-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--outline-variant) 1px, transparent 1px),
    linear-gradient(90deg, var(--outline-variant) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .35;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  pointer-events: none;
}

.product-card-media-placeholder i {
  position: relative;
  z-index: 1;
  font-size: 3.25rem;
  color: var(--primary);
  opacity: .55;
  filter: drop-shadow(0 4px 12px color-mix(in srgb, var(--primary) 25%, transparent));
  transition: transform var(--transition), opacity var(--transition);
}

.product-card:hover .product-card-media-placeholder i {
  transform: scale(1.08) rotate(-4deg);
  opacity: .85;
}

.product-card-media-placeholder::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary) 22%, transparent) 0%, transparent 70%);
  pointer-events: none;
}

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-surface);
  margin: 0 0 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.product-card-arrow {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.85rem;
  transition: transform var(--transition);
}

.product-card:hover .product-card-arrow {
  transform: translateX(4px);
}

/* ==============================
   ÜRÜN DETAY
   ============================== */
.product-detail-section {
  padding: 60px 0;
  background: var(--surface);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  margin-bottom: 4rem;
}

.product-gallery-col {
  display: flex;
  flex-direction: column;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: var(--surface-dim);
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: zoom-in;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface);
  cursor: pointer;
  opacity: 0;
  transition: all var(--transition);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-gallery-main:hover .product-gallery-nav,
.product-gallery-nav:focus-visible {
  opacity: 1;
}

.product-gallery-nav:hover {
  background: var(--accent);
  color: white;
}

.product-gallery-nav-prev { left: 1rem; }
.product-gallery-nav-next { right: 1rem; }

@media (max-width: 768px) {
  .product-gallery-nav { opacity: 1; }
}

.product-gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--on-surface-muted);
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-gallery-thumb {
  flex: 0 0 70px;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  padding: 0;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumb:hover {
  transform: translateY(-2px);
  border-color: var(--on-surface-muted);
}

.product-gallery-thumb.is-active {
  border-color: var(--accent);
}

/* ÜRÜN BİLGİ CARD */
.product-info-col {
  display: flex;
  flex-direction: column;
}

.product-info-card {
  background: var(--surface-dim);
  border: 1px solid var(--outline);
  border-radius: var(--radius-card);
  padding: 2rem;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.product-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--on-surface);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.product-info-code {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  margin-bottom: 1rem;
}

.product-info-code span {
  font-weight: 500;
}

.product-info-code strong {
  color: var(--on-surface);
}

.product-info-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.product-info-excerpt {
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-info-specs {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--outline);
}

.product-info-specs h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--outline-variant);
}

.specs-table td {
  padding: 0.5rem 0;
}

.spec-key {
  color: var(--on-surface-variant);
  font-weight: 500;
  width: 40%;
}

.spec-value {
  color: var(--on-surface);
  font-weight: 600;
}

.product-info-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-info-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ==============================
   TAB BÖLÜMÜ
   ============================== */
.product-tabs-wrapper {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--outline);
}

.product-tabs {
  display: flex;
  flex-direction: column;
}

.product-tabs-head {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--outline);
  margin-bottom: 2rem;
}

.product-tab {
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--on-surface-variant);
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.product-tab:hover {
  color: var(--on-surface);
}

.product-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.product-tab-panel {
  display: none;
}

.product-tab-panel.is-active {
  display: block;
}

.content-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--on-surface);
}

.content-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--on-surface);
  margin: 1.5rem 0 0.75rem;
}

.content-body p {
  margin-bottom: 1rem;
}

.content-body ul,
.content-body ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-body li {
  margin-bottom: 0.5rem;
}

/* BENZER ÜRÜNLER */
.product-related {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--outline);
}

.product-related h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 2rem;
}

/* LIGHTBOX */
.product-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 41, 0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 72px;
  opacity: 0;
  transition: opacity .3s;
}

.product-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.product-lightbox-stage {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lightbox-stage img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  animation: prdLbIn .35s cubic-bezier(.16, 1, .3, 1);
}

@keyframes prdLbIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}

.product-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, transform .25s;
  backdrop-filter: blur(8px);
}

.product-lightbox-close:hover {
  background: rgba(255, 255, 255, .22);
  transform: rotate(90deg);
}

.product-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
  backdrop-filter: blur(8px);
}

.product-lightbox-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.product-lightbox-nav-prev { left: 24px; }
.product-lightbox-nav-next { right: 24px; }

@media (max-width: 600px) {
  .product-lightbox { padding: 40px 16px; }
  .product-lightbox-nav { width: 40px; height: 40px; font-size: 15px; }
  .product-lightbox-nav-prev { left: 10px; }
  .product-lightbox-nav-next { right: 10px; }
  .product-lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 15px; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-info-card {
    position: static;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-detail-section {
    padding: 40px 0;
  }

  .product-detail-layout {
    gap: 2rem;
  }

  .product-info-card {
    padding: 1.5rem;
  }

  .product-info-title {
    font-size: 1.25rem;
  }

  .product-info-price {
    font-size: 1.5rem;
  }

  .product-gallery-thumbs {
    gap: 0.5rem;
  }

  .product-gallery-thumb {
    flex: 0 0 60px;
  }

  .products-cat-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-cat-grid {
    grid-template-columns: 1fr;
  }

  .product-tabs-head {
    gap: 0.5rem;
    overflow-x: auto;
  }

  .product-tab {
    white-space: nowrap;
    padding: 0.75rem 0;
  }

  .product-gallery-thumbs {
    gap: 0.4rem;
  }

  .product-gallery-thumb {
    flex: 0 0 50px;
  }

  .product-info-card {
    padding: 1.25rem;
  }

  .product-info-specs {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }

  .specs-table {
    font-size: 0.85rem;
  }

  .spec-key {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .sticky-footer { display: block; }
}