/* ============================================================
   ETİ ZEMİN — Ana Stil Dosyası
   Bexon Home-02 + Seoly Premium Tasarım
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ── Değişkenler — Bexon Home-02 Renk Paleti ── */
:root {
  /* Ana renkler — Bexon koyu tema */
  --bg: #F5F7FA;
  --bg-dark: #0A0E1A;
  --surface: #FFFFFF;
  --surface-2: #EDF0F5;
  --surface-dark: #111827;
  --surface-dark-2: #1C2333;

  /* Vurgu renkleri — Bexon sarı/altın */
  --amber: #E8A020;
  --amber-dark: #C4841A;
  --amber-light: #F5B800;
  --amber-glow: rgba(232, 160, 32, 0.25);

  /* Metin renkleri */
  --text: #0D1117;
  --text-muted: #4A5568;
  --text-dim: #9CA3AF;
  --text-light: #F8FAFC;

  /* Sınır & gölge */
  --border: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);
  --glow: 0 8px 32px rgba(232, 160, 32, 0.2);
  --glow-sm: 0 4px 16px rgba(232, 160, 32, 0.12);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* Şekil & geçiş */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Tipografi */
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Navbar yüksekliği */
  --nav-h: 80px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Seoly-tarzı hafif desen overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(232, 160, 32, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232, 160, 32, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* Subtle nokta deseni */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ── Tipografi ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--amber);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--amber-light);
}

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

ul,
ol {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* ── Layout ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* ── Elite Arka Plan Teknik Çizimler (Technical Blueprints) ── */
.bg-blueprint-left {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 600px;
  background-image: url('../images/machines/fore-kazik-diagram.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  opacity: 0.05;
  /* Çok hafif, son derece elit ve asil bir görünüm */
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bg-blueprint-right {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 600px;
  background-image: url('../images/machines/jet-grout-diagram.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Bölüm hover edildiğinde çizimlerin zarifçe süzülmesi (Mikro Parallaks) */
.section:hover .bg-blueprint-left {
  transform: translateY(-52%) scale(1.03);
  opacity: 0.07;
}

.section:hover .bg-blueprint-right {
  transform: translateY(-48%) scale(1.03);
  opacity: 0.07;
}

/* Koyu renkli veya karanlık mod bölümlerde siyah çizgileri beyaza çevirir */
[class*="dark"] .bg-blueprint-left,
[class*="dark"] .bg-blueprint-right,
.stats-section .bg-blueprint-left,
.stats-section .bg-blueprint-right {
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.07;
}

.section-sm {
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

/* ── Navbar — Bexon Home-02 Stili ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
  gap: 0;
}

/* ── Premium Logo Crest / Borderless Minimal Floating Logo ── */
.nav-logo-crest {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  height: 72px;
  /* Large size, fills the 80px navbar perfectly without stretching it */
  align-self: center;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
}

.nav-logo-crest img {
  height: 100% !important;
  width: auto !important;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.03));
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-logo-crest:hover img {
  transform: scale(1.05);
  /* Refined, high-end amber shadow highlighting only the logo contours */
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.25));
}

.nav-logo-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--bg-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color var(--transition);
}

.nav-logo-title span {
  color: var(--amber);
}

.nav-logo:hover .nav-logo-title {
  color: var(--amber);
}

.nav-logo-sub {
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}

/* ── Nav Links — Bexon Stili ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
}

.nav-links>li>a {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links>li>a:hover::after,
.nav-links>li>a.aktif::after {
  width: calc(100% - 1.8rem);
}

.nav-links>li>a:hover {
  color: var(--amber);
}

.nav-links>li>a.aktif {
  color: var(--amber);
}

/* Dropdown — Bexon premium stili */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown>a::before {
  display: none;
}

.nav-dropdown>a .dd-arrow {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  opacity: 0.5;
  font-size: 0.65rem;
  margin-top: 1px;
}

.nav-dropdown>a::after {
  content: '▾';
  font-size: 0.65rem;
  transition: transform var(--transition);
  opacity: 0.6;
  position: static;
  width: auto;
  height: auto;
  background: none;
}

.nav-dropdown:hover>a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
  z-index: 200;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--surface);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

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

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(232, 160, 32, 0.08);
  color: var(--amber);
  padding-left: 1.2rem;
}

.dropdown-menu a .dd-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.1), rgba(232, 160, 32, 0.05));
  border: 1px solid rgba(232, 160, 32, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.dropdown-menu a:hover .dd-icon {
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.2), rgba(232, 160, 32, 0.1));
  border-color: rgba(232, 160, 32, 0.3);
}

/* Nav Actions — Bexon premium buton stili */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.45rem 0.9rem;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.nav-phone:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(232, 160, 32, 0.04);
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #25D366, #1DA851);
  border-radius: 10px;
  padding: 0.45rem 0.9rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.nav-whatsapp:hover {
  background: linear-gradient(135deg, #1DA851, #25D366);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* CTA butonu — Bexon sarı */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  border-radius: 10px;
  padding: 0.5rem 1.1rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 16px var(--amber-glow);
  letter-spacing: -0.01em;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--amber-glow);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* Mobile Menu — Bexon tam ekran stili */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* Start from top so it scrolls naturally */
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6rem 2rem 2rem 2rem;
  /* Prevent overlap with the logo header */
  overflow-y: auto;
  /* Enable scroll if menu overflows screen height */
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  transition: var(--transition);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  letter-spacing: -0.02em;
}

.mobile-menu a:hover {
  color: var(--amber);
  background: rgba(232, 160, 32, 0.06);
}

.mobile-menu-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  margin: 0.75rem auto;
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A2E 50%, #0D0D0D 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-particles::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-particles::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  border-radius: 50%;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -30px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease forwards;
}

.hero h1 {
  color: var(--text);
  font-size: 1.1em;
  margin-bottom: 1.8rem;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero h1 .accent {
  color: var(--amber);
}

.hero .hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero .hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero .hero-badge-bottom {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeInUp 0.6s 0.5s ease both;
}

/* ── Butonlar — Bexon Stili ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 16px var(--amber-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--amber-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
}

.btn-ghost:hover {
  background: var(--amber);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--amber-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--surface-2);
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg-dark);
  color: #FFFFFF;
  border: none;
}

.btn-dark:hover {
  background: var(--surface-dark);
  color: var(--amber-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ── İstatistikler — Slider ile büytünleşik Premium Stili ── */
.stats-section {
  background: linear-gradient(180deg,
      var(--bg-dark) 0%,
      #0E1628 40%,
      #131B2E 70%,
      #162035 100%);
  position: relative;
  overflow: hidden;
  margin-top: -2px;
  /* Slider ile sıfır boşluk */
}

/* Sol üst ışık patlaması */
.stats-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232, 160, 32, 0.1) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  pointer-events: none;
}

/* Sağ alt ışık patlaması */
.stats-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(232, 160, 32, 0.07) 0%, transparent 70%);
  bottom: 50px;
  right: -100px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 4rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-light), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(232, 160, 32, 0.05);
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 900;
  color: var(--amber-light);
  line-height: 1;
  display: block;
  letter-spacing: -0.04em;
  text-shadow: 0 0 40px rgba(245, 184, 0, 0.3);
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

/* Stats wave geçiş dalgası */
.stats-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.stats-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── Bölüm Başlığı — Premium Seoly & Bexon Stili ── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 2;
}

/* Arka plan soft altın ışık halkası */
.section-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  transition: var(--transition);
}

.section-header:hover::before {
  width: 340px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.08) 0%, transparent 70%);
}

/* Premium Kapsayıcı Tag (Rozet - Buton Görünümü Tamamen Kaldırıldı) */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent !important;
  border: none !important;
  color: var(--amber) !important;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 !important;
  border-radius: 0 !important;
  margin-bottom: 1.2rem;
  box-shadow: none !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

/* Şık sol ve sağ denge çizgileri */
.section-tag::before {
  content: '' !important;
  width: 16px !important;
  height: 1.5px !important;
  background-color: var(--amber) !important;
  display: inline-block !important;
  opacity: 0.7 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  animation: none !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.section-tag::after {
  content: '';
  width: 16px;
  height: 1.5px;
  background-color: var(--amber);
  display: inline-block;
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section-header:hover .section-tag {
  color: var(--amber-light) !important;
  letter-spacing: 0.26em;
  transform: none !important;
}

.section-header:hover .section-tag::before,
.section-header:hover .section-tag::after {
  width: 32px !important;
  background-color: var(--amber-light) !important;
  opacity: 1 !important;
}

/* Ana H2 Başlığı */
.section-header h2 {
  color: var(--text);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1.2rem;
  line-height: 1.25;
  background: linear-gradient(135deg, var(--text) 50%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

/* İki Katmanlı Premium Animasyonlu Başlık Çizgisi */
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  /* Geniş taban çizgisi (Katman 1) */
  height: 2px;
  background: rgba(232, 160, 32, 0.15);
  /* Hafif altın rengi taban */
  border-radius: 4px;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section-header h2::before {
  content: '';
  position: absolute;
  bottom: -0.5px;
  /* Taban çizgisinin tam üstüne basar */
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  /* Aktif dar çizgi (Katman 2) */
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--amber-light), var(--amber), transparent);
  border-radius: 100px;
  box-shadow: 0 0 8px rgba(232, 160, 32, 0.4);
  animation: shineLineShift 3s ease-in-out infinite;
  /* Sürekli akan kinetik dalga */
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

@keyframes shineLineShift {
  0% {
    width: 30px;
    opacity: 0.7;
    box-shadow: 0 0 4px rgba(232, 160, 32, 0.3);
  }

  50% {
    width: 60px;
    opacity: 1;
    box-shadow: 0 0 12px rgba(232, 160, 32, 0.7);
  }

  100% {
    width: 30px;
    opacity: 0.7;
    box-shadow: 0 0 4px rgba(232, 160, 32, 0.3);
  }
}

/* Hover'da başlık ve çift katmanlı alt çizginin etkileşimi */
.section-header:hover h2 {
  background: linear-gradient(135deg, var(--text) 30%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header:hover h2::after {
  width: 180px;
  /* Taban çizgisi genişler */
  background: rgba(232, 160, 32, 0.3);
}

.section-header:hover h2::before {
  width: 100px;
  /* Üst çizgi genişler */
  box-shadow: 0 0 16px var(--amber-light);
  animation-duration: 1.5s;
  /* Işık akışı hızlanır */
}

/* Alt Açıklama Yazısı */
.section-header p {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 500;
  opacity: 0.85;
  transition: all 0.4s ease;
}

.section-header:hover p {
  opacity: 1;
  color: var(--text);
}

/* ── Koyu Temalı Bölüm Başlığı (Koyu alanlar için - Renk Uyumlu Çift Katmanlı Çizgi) ── */
.section-header.dark::before {
  background: radial-gradient(circle, rgba(232, 160, 32, 0.08) 0%, transparent 70%);
}

.section-header.dark h2 {
  background: linear-gradient(135deg, #FFFFFF 60%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Koyu arka planda taban çizgisi uyumu */
.section-header.dark h2::after {
  background: rgba(255, 255, 255, 0.15) !important;
  width: 90px;
}

/* Koyu arka planda üst parlayan çizgi uyumu */
.section-header.dark h2::before {
  background: linear-gradient(90deg, transparent, var(--amber-light), #FFFFFF, var(--amber-light), transparent) !important;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4) !important;
  border: none !important;
  border-radius: 100px !important;
}

.section-header.dark p {
  color: rgba(255, 255, 255, 0.6);
}

.section-header.dark .section-tag {
  background: transparent !important;
  border: none !important;
  color: var(--amber-light) !important;
  box-shadow: none !important;
}

.section-header.dark .section-tag::before,
.section-header.dark .section-tag::after {
  background-color: var(--amber-light) !important;
}

.section-header.dark:hover h2 {
  background: linear-gradient(135deg, #FFFFFF 40%, var(--amber-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header.dark:hover h2::after {
  background: rgba(255, 255, 255, 0.25) !important;
  width: 180px;
}

.section-header.dark:hover h2::before {
  box-shadow: 0 0 16px #FFFFFF !important;
  width: 100px;
}

.section-header.dark:hover p {
  color: rgba(255, 255, 255, 0.95);
}

/* Stats wave geçiş dalgası */
.stats-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.stats-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* Harita bölümü */
.map-section {
  padding-top: 4rem;
  background: var(--bg);
}

.map-section .activities-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-section .activities-map img {
  border-radius: 20px;
  display: block;
  width: 100%;
}

/* ── Hizmet Kartları — Seoly + Bexon Stili ── */
#hizmetler {
  background: linear-gradient(-45deg, #0A0E1A, #101626, #1C2B4C, #131E33, #0A0E1A) !important;
  background-size: 400% 400% !important;
  animation: gradientShiftAnimation 15s ease infinite !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: none !important;
  /* Alt geçişteki tüm çizgileri engeller */
  position: relative;
  overflow: hidden;
  padding-bottom: 7.5rem !important;
  /* Alt dalga için ekstra güvenli nefes alanı */
}

/* Hizmetler alt geçiş dalgası */
.hizmetler-bottom-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.hizmetler-bottom-wave svg {
  display: block;
  width: 100%;
  height: 65px;
}

@keyframes gradientShiftAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Bölümdeki başlığı karanlık tema yap */
#hizmetler .section-header h2 {
  background: linear-gradient(135deg, #FFFFFF 60%, rgba(255, 255, 255, 0.75) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

#hizmetler .section-header p {
  color: rgba(255, 255, 255, 0.65) !important;
}

#hizmetler .section-header .section-tag {
  color: var(--amber-light) !important;
}

#hizmetler .section-header .section-tag::before,
#hizmetler .section-header .section-tag::after {
  background-color: var(--amber-light) !important;
}

/* Arka plan ışık halkaları */
#hizmetler::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#hizmetler::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Karanlık modda arka plan teknik filigranı beyaz çizgili olmalı */
#hizmetler .bg-blueprint-right {
  filter: invert(1) !important;
  opacity: 0.07 !important;
  mix-blend-mode: screen !important;
}

/* Koyu arka planda parlayan cam (glassmorphic) hizmet kartları */
#hizmetler .service-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25) !important;
}

#hizmetler .service-card::after {
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.08), transparent 60%) !important;
}

#hizmetler .service-card-header h3 {
  color: #FFFFFF !important;
}

#hizmetler .service-card p {
  color: rgba(255, 255, 255, 0.55) !important;
}

#hizmetler .service-illustration {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

#hizmetler .service-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(232, 160, 32, 0.4) !important;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 8px 24px rgba(232, 160, 32, 0.15) !important;
}

#hizmetler .service-card:hover .service-card-header h3 {
  color: var(--amber-light) !important;
}

#hizmetler .service-card:hover .service-illustration {
  border-color: var(--amber-light) !important;
}

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

.service-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-light), var(--amber));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(232, 160, 32, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1), var(--glow-sm);
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.service-illustration {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 160, 32, 0.25);
  background: var(--surface-2);
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
}

.service-card:hover .service-illustration {
  border-color: var(--amber);
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 6px 16px rgba(232, 160, 32, 0.2);
}

.service-card-header h3 {
  font-size: 1.15rem !important;
  color: var(--text);
  margin-bottom: 0 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  line-height: 1.35;
  flex: 1;
  transition: color var(--transition);
}

.service-card:hover .service-card-header h3 {
  color: var(--amber);
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.service-card:hover .service-link {
  gap: 0.7rem;
}

/* ── CTA Banner — Bexon Koyu Stili ── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1A2644 50%, #0D1830 100%);
  border-radius: var(--radius-xl);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.08) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Modern Blog & Haber Kartları ── */
/* ── Haber & Makaleler Carousel Düzeni ── */
.blog-carousel-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  /* Ok butonları ile şerit arasında boşluk */
}

/* Kaydırma şeridi penceresi */
.blog-carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
  /* Kart gölgelerinin kesilmemesi için dikey boşluk */
}

/* Kaydırma şeridi */
.blog-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 1.5rem) / 3);
  /* Masaüstünde 3 haber kartı */
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}

/* Orta Boy Tablet (2 haber sığar) */
@media (max-width: 992px) {
  .blog-carousel-track {
    grid-auto-columns: calc((100% - 1.5rem) / 2);
  }
}

/* Mobil ebatları (1 haber sığar) */
@media (max-width: 600px) {
  .blog-carousel-track {
    grid-auto-columns: 100%;
    gap: 0;
  }

  .blog-carousel-container {
    gap: 0.5rem;
  }
}

/* Yan Kaydırma Butonları (Oklar) */
.blog-carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  z-index: 10;
  user-select: none;
}

.blog-carousel-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--text-light) !important;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.25);
}

.blog-carousel-btn:active {
  transform: scale(0.95);
}

.blog-carousel-btn.disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 160, 32, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08), var(--glow-sm);
}

/* Görsel Kapsayıcı - Hover durumunda taşmayı engeller ve zoom efekti sağlar */
.blog-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--surface-2);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Görsel üzerine binen modern yarı saydam kategori rozeti */
.blog-card .blog-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 14, 26, 0.75) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--amber-light) !important;
  border: 1px solid rgba(232, 160, 32, 0.3) !important;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: all 0.4s ease;
  margin-bottom: 0 !important;
}

.blog-card:hover .blog-category-badge {
  background: var(--amber) !important;
  color: var(--text) !important;
  border-color: var(--amber) !important;
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.blog-card:hover h3 {
  color: var(--amber);
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* Kart altındaki modern meta veri ve buton barı */
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  margin-top: auto;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.blog-read-more {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-read-more {
  color: var(--amber-light);
  gap: 0.6rem;
}

/* ── Google Reviews Badge ── */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  transition: all var(--transition);
}

.google-badge:hover {
  border-color: var(--amber);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

.google-g {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.google-badge-info {
  line-height: 1.2;
}

.google-badge-stars {
  font-size: 0.9rem;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 2px;
}

.google-badge-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ── İç Sayfa Hero ── */
.page-hero {
  padding: 6rem 0 2rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 70%, rgba(240, 244, 248, 1) 100%), var(--hero-bg, url('../images/references_banner.png')) center/cover no-repeat;
  position: relative;
  text-align: center;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-top: 10px;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.9);
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: none !important;
}

/* ── İçerik Bölümü ── */
.content-section {
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.content-body h2 {
  font-size: 1.75rem;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.content-body h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.content-body h3 {
  font-size: 1.25rem;
  color: var(--amber);
  margin: 1.5rem 0 0.75rem;
}

.content-body p {
  color: var(--text-muted);
}

.content-body ul,
.content-body ol {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.content-body ol {
  counter-reset: steps;
  padding-left: 0;
  list-style: none;
}

.content-body ol li {
  counter-increment: steps;
  padding-left: 3rem;
  position: relative;
  margin-bottom: 1rem;
}

.content-body ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--amber);
  color: #0D0D0D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  line-height: 28px;
  text-align: center;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.sidebar-contact-item:last-child {
  border-bottom: none;
}

.sidebar-contact-item .icon {
  color: var(--amber);
  font-size: 1rem;
}

.sidebar-contact-item a {
  color: var(--text);
  font-weight: 600;
}

.sidebar-contact-item a:hover {
  color: var(--amber);
}

/* ── FAQ ── */
.faq-section {
  padding: 4rem 0;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(245, 158, 11, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--transition);
}

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

.faq-item.open .faq-question {
  color: var(--amber);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
  font-size: 1.2rem;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Galeri ── */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #ffffff;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ── İletişim Formu ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-control::placeholder {
  color: var(--text-dim);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* ── Lightbox ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
  user-select: none;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--amber);
  color: #000;
  border-color: var(--amber);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* ── Footer — Premium Kart ve Izgara Tasarımı ── */
.footer {
  background: var(--bg-dark);
  /* Koyu sayfa rengi (#0A0E1A) */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 10;
}

.footer-layout-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
  align-items: start;
}

.footer-card-column {
  position: relative;
}

.premium-footer-card {
  background: var(--surface-dark-2);
  /* Sayfa içi koyu kart rengi (#1C2333) */
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 4px solid var(--amber);
  /* Marka sarı/altın rengi vurgusu */
  border-radius: 24px;
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-lg);
  margin-top: -125px;
  /* Üst kısımdan taşarak havada durması için negatif margin */
  position: relative;
  z-index: 20;
}

.card-logo-area {
  margin-bottom: 1.5rem;
  text-align: center;
}

.card-logo {
  height: 128px;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.card-corp-details {
  text-align: left;
  margin-bottom: 1.5rem;
}

.card-corp-details h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.card-corp-details p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.card-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.55rem 0.75rem;
  transition: all var(--transition);
}

.card-btn.btn-green {
  background: linear-gradient(135deg, #1ecc6d 0%, #15a355 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(30, 204, 109, 0.2);
}

.card-btn.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30, 204, 109, 0.35);
}

.card-btn.btn-dark {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-btn.btn-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--amber);
  transform: translateY(-2px);
}

.btn-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.btn-green .btn-icon {
  background: rgba(0, 0, 0, 0.12);
}

.btn-dark .btn-icon {
  background: rgba(255, 255, 255, 0.05);
}

.btn-icon svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.btn-text {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.btn-address .btn-text {
  font-size: 0.78rem;
  font-weight: 500;
}

.card-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-circle {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  transition: all var(--transition);
}

.social-circle:hover {
  background: var(--amber);
  color: #000000;
  border-color: var(--amber);
  transform: translateY(-2px);
}

.social-circle svg {
  display: block;
}

/* Sağ Taraf Bağlantı Kolonları */
.footer-links-column {
  margin-top: 1rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
}

.footer-links-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  color: var(--text-dim);
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list a:hover {
  color: var(--amber-light);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0 0;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}

@media (max-width: 991px) {
  .footer-layout-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .premium-footer-card {
    margin-top: -60px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
  animation: waPulse 5s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  animation: none;
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
}

@keyframes waPulse {

  0%,
  85%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  90% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

/* Scroll To Top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  z-index: 997;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
  text-decoration: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #1d8df5;
  border-color: #0b4479;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ── Hakkımızda Timeline ── */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--amber), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline-dot {
  position: absolute;
  left: -2.4rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.timeline-year {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Makine Kartları ── */
.machines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.machine-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.machine-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.machine-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--surface-2);
}

.machine-body {
  padding: 1.5rem;
}

.machine-brand {
  display: inline-block;
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.machine-card h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.machine-specs {
  list-style: none;
  padding: 0;
}

.machine-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.machine-specs li:last-child {
  border-bottom: none;
}

.machine-specs li strong {
  color: var(--text);
}

/* ── Referans Kartları ── */
.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.reference-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
}

.reference-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
}

.reference-year {
  font-size: 0.75rem;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.reference-card h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.reference-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Yerel Sinyal Bölümü ── */
.local-signal {
  background: var(--surface);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 3rem 0;
}

.local-signal p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* ── Animasyonlar ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── Yardımcı Sınıflar ── */
.text-amber {
  color: var(--amber);
}

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

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.w-100 {
  width: 100%;
}

/* Uyarı/Başarı Mesajları */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ============================================================
   ── GOOGLE REVIEWS SECTION (PREMIUM REDESIGN) ──
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.review-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.45) 100%);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 20px;
  padding: 2.25rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.review-card::before {
  content: '“';
  position: absolute;
  bottom: -20px;
  right: 15px;
  font-size: 10rem;
  font-family: Georgia, serif;
  color: rgba(245, 158, 11, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease, transform 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.45);
}

.review-card:hover::before {
  color: rgba(245, 158, 11, 0.09);
  transform: translateY(-5px) scale(1.05);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.reviewer-info {
  flex: 1;
}

.reviewer-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.reviewer-info h4::after {
  content: '✓';
  font-size: 0.65rem;
  color: #34D399;
  background: rgba(52, 211, 153, 0.15);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  margin-top: 0.35rem;
}

.review-stars .star {
  color: #F59E0B;
  font-size: 1.15rem;
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-left: 0.6rem;
  font-weight: 500;
}

.google-icon-small {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  position: relative;
  z-index: 2;
}

.review-text::before {
  content: '"';
  font-family: serif;
  font-size: 1.25rem;
  color: var(--amber);
  margin-right: 0.2rem;
}

.review-text::after {
  content: '"';
  font-family: serif;
  font-size: 1.25rem;
  color: var(--amber);
  margin-left: 0.1rem;
}

/* ============================================================
   ── MODERN TABLE (REFERANSLAR) ──
   ============================================================ */
.references-table-container {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.modern-table th {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border);
}

.modern-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  vertical-align: middle;
}

.modern-table tr:last-child td {
  border-bottom: none;
}

.modern-table tr {
  transition: background-color 0.2s ease;
}

.modern-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.ref-company {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ref-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.8) contrast(1.2);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 4px;
}

.ref-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.ref-year {
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .sidebar {
    position: static;
  }

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

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

@media (max-width: 768px) {
  :root {
    --nav-h: 70px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }
}

/* ============================================================
   ── ELITE HERO SLIDER & FLOATING GOOGLE BADGE ──
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  /* Navbar yüksekliğini çıkarıyoruz */
  margin-top: var(--nav-h);
  /* Slider'ı navbar'ın altına yerleştiriyoruz */
  overflow: hidden;
  background: #090909;
}

/* Stats bölümüne geçiş overlay'i */
.hero-slider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(10, 14, 26, 0.7) 60%,
      var(--bg-dark) 100%);
  z-index: 4;
  pointer-events: none;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  visibility: visible;
}

/* Tam Ekran Arka Plan Görseli ve Malcolm Drilling Stili Sol/Sağ Geçişi */
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--bg-dark);
  /* Bexon koyu tema - sağ taraftaki düz koyu alan */
  overflow: hidden;
}

.slide-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  /* Resim sadece sol yarıyı kaplar */
  height: 100%;
  object-fit: cover;
  object-position: center left;
  filter: brightness(0.7) contrast(1.05) saturate(0.9);
  transform: scale(1);
  transition: none;
  /* Inaktif slaytlar için anında geri dön */
}

.slide.active .slide-bg img {
  transform: scale(1.08);
  transition: transform 6s linear;
  /* Aktif slayt için 6s Ken Burns */
}

/* Sol taraftaki resmi sağdaki koyu renk alanıyla pürüssüzce birleştiren degrade katman */
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(10, 14, 26, 0.1) 0%,
      rgba(10, 14, 26, 0.2) 35%,
      rgba(10, 14, 26, 1) 50%,
      rgba(10, 14, 26, 1) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Sağ Blok Modern Raw Tipografi Tasarımı (Bexon Stili) */
.slide-content-exact {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  margin-left: 50%;
  text-align: left;
  border-left: 6px solid var(--amber-light);
  /* Bexon sarı/altın çizgi */
  padding-left: 2rem;
}

.slide-content-exact h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3.1vw, 2.8rem);
  /* Biraz küçültüldü ve tek satıra sığması sağlandı */
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.slide-content-exact h1 .highlight {
  color: var(--amber-light);
  font-weight: 800;
}

.slide-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 580px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Slayt Elemanlarının Süzülme Animasyonları */
.slide .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.slide.active .reveal {
  opacity: 1;
  transform: translateY(0);
}

.slide.active .reveal-delay-1 {
  transition-delay: 0.18s;
}

.slide.active .reveal-delay-2 {
  transition-delay: 0.32s;
}

.slide.active .reveal-delay-3 {
  transition-delay: 0.45s;
}

/* Slider Ok Kontrolleri */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(13, 13, 13, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.8rem;
  font-family: monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  user-select: none;
}

.slider-arrow:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #0D0D0D;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.45);
  transform: translateY(-50%) scale(1.06);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-arrow.prev {
  left: 3rem;
}

.slider-arrow.next {
  right: 3rem;
}

/* Slider İlerleyen Dolan Çizgili Sekme Navigasyonu */
.slider-tabs-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 15;
  background: linear-gradient(to top, rgba(9, 9, 9, 0.95) 0%, rgba(9, 9, 9, 0) 100%);
  padding-bottom: 2.25rem;
  padding-top: 4rem;
}

.slider-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
}

.slider-tab {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-family: inherit;
  position: relative;
  cursor: pointer;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  opacity: 0.55;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  user-select: none;
  width: 100%;
}

.slider-tab:hover {
  opacity: 0.85;
}

.slider-tab.active {
  opacity: 1;
}

.tab-progress-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  overflow: hidden;
}

.tab-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--amber) 0%, #FBBF24 100%);
  border-radius: 100px;
  transition: none;
  /* Normalde anında 0% olsun */
}

/* Aktif olunca 6 saniyede dolma animasyonu */
.slider-tab.active .tab-progress {
  width: 100%;
  transition: width 6s linear;
}

.tab-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 0.25rem;
  font-family: monospace;
  letter-spacing: 0.05em;
}

.tab-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

/* Elite Floating Google Badge */
.hero-google-badge-container {
  position: absolute;
  bottom: 8.5rem;
  right: 4rem;
  left: auto;
  z-index: 12;
}

.elite-google-badge {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(13, 13, 13, 0.45);
  border: 1px solid rgba(245, 158, 11, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.badge-glass-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.elite-google-badge:hover .badge-glass-glow {
  opacity: 1;
}

.elite-google-badge:hover {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.75), 0 0 20px rgba(245, 158, 11, 0.18);
  transform: translateY(-4px);
}

.badge-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.badge-body .google-g {
  width: 30px;
  height: 30px;
}

.stars-gold {
  color: #F59E0B;
  font-weight: bold;
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
  .hero-slider {
    height: auto;
    min-height: 100vh;
    padding: 8rem 0 7rem;
    display: flex;
    align-items: center;
  }

  .slide {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
    display: flex;
    align-items: center;
  }

  .slide.active {
    opacity: 1;
    visibility: visible;
    display: flex;
  }

  .slide-content-exact {
    margin: 0 auto;
    max-width: 680px;
    padding: 0 1.5rem;
  }

  .slide-content-exact h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin-bottom: 0.8rem;
  }

  .slide-desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .slider-arrow {
    display: none;
    /* Tablet ve mobilde okları gizliyoruz */
  }

  .slider-tabs-container {
    padding-bottom: 1.5rem;
  }

  .slider-tabs {
    gap: 1rem;
  }

  .tab-label {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .tab-num {
    font-size: 0.75rem;
  }

  .hero-google-badge-container {
    position: absolute;
    bottom: 5.5rem;
    right: 1.5rem;
    transform: scale(0.85);
    transform-origin: bottom right;
    z-index: 12;
  }
}

@media (max-width: 768px) {
  .slider-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .tab-label {
    display: none;
    /* Mobilde sadece sayı ve dolan çizgi kalsın */
  }

  .slider-tab {
    align-items: center;
    padding-top: 1rem;
  }

  .tab-num {
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  .slide-content-exact h1 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .slide-desc {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-google-badge-container {
    display: none;
    /* Mobilde çakışmayı önlemek için gizliyoruz */
  }
}

@media (max-width: 480px) {
  .slide-content-exact {
    padding-left: 1.25rem;
    border-left: 4px solid var(--amber-light);
  }

  .slide-content-exact h1 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }

  .slide-desc {
    font-size: 0.85rem;
  }
}

/* ============================================================
   ── PREMIUM GEOTEKNIK SVG ICON STYLES ──
   ============================================================ */
.hizmet-svg-icon {
  width: 38px;
  height: 38px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-card:hover .hizmet-svg-icon {
  transform: scale(1.22) rotate(4deg);
  filter: drop-shadow(0 0 8px rgba(232, 160, 32, 0.7)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.dropdown-menu .hizmet-svg-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.dropdown-menu a:hover .hizmet-svg-icon {
  transform: scale(1.2) translate(1px, -1px);
}

.sidebar .hizmet-svg-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

.mobile-menu .hizmet-svg-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* ── Faaliyet Alanları İnteraktif Harita ── */
.activities-map {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: visible;
}

.activities-map img {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.am-hotspot {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.am-hotspot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  background: rgba(0, 212, 255, 0.2);
  border: 2px solid #00d4ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: amPulseRing 2s infinite;
}

.am-hotspot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #00d4ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.am-tooltip {
  position: absolute;
  left: 20px;
  bottom: 35px;
  width: 260px;
  background: rgba(8, 17, 31, .95);
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #00d4ff;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.am-tooltip b {
  color: #00d4ff;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}

.am-hotspot:hover .am-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

@keyframes amPulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.btn-accent {
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px var(--amber-glow);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--amber-glow);
}

/* ── Bexon tarzı CTA actions hizalama ── */
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── Review card — açık tema ── */
.review-card {
  border-color: var(--border);
}

.review-card:hover {
  border-color: rgba(232, 160, 32, 0.25);
  box-shadow: var(--shadow-lg);
}

/* ── Scroll top — Bexon vurgu rengi ── */
.scroll-top:hover {
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  border-color: var(--amber);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--amber-glow);
}

/* ── Modern tablo sınır ── */
.modern-table th {
  background: rgba(232, 160, 32, 0.08);
}

.modern-table tbody tr:hover {
  background: rgba(232, 160, 32, 0.03);
}

/* ============================================================
   ETİ ZEMİN — REDESIGNED "BIZ KIMIZ?" SECTION STYLES
   ============================================================ */

.about-teaser-section {
  background: var(--surface);
  border-bottom: none;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 7rem;
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

/* Sol Sütun: Özellik Listesi */
.about-features-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-features-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}

.about-features-list li:hover {
  transform: translateX(6px);
}

.about-features-list .feat-icon {
  background: rgba(232, 160, 32, 0.08);
  color: var(--amber);
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(232, 160, 32, 0.18);
  transition: var(--transition);
}

.about-features-list li:hover .feat-icon {
  background: var(--amber);
  color: #FFFFFF;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px var(--amber-glow);
}

.about-features-list .feat-icon svg {
  width: 18px;
  height: 18px;
}

.about-features-list .feat-content {
  display: flex;
  flex-direction: column;
}

.about-features-list .feat-content strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  transition: var(--transition);
}

.about-features-list li:hover .feat-content strong {
  color: var(--amber);
}

.about-features-list .feat-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.about-actions {
  margin-top: 2rem;
}

/* Sağ Sütun: Overlapping Showcase & Glassmorphic Floating Badges */
.about-teaser-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-teaser-showcase {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 3.4;
  z-index: 2;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 3px solid #FFFFFF;
  z-index: 2;
  transition: var(--transition);
}

.about-teaser-showcase:hover .about-image-wrapper {
  transform: scale(1.025) translateY(-4px);
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-teaser-showcase:hover .about-main-image {
  transform: scale(1.06);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, 0.25), transparent);
  pointer-events: none;
}

/* Dekoratifler */
.about-deco-dots {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(var(--amber) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}

.about-deco-border {
  position: absolute;
  bottom: -22px;
  left: -22px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px dashed rgba(232, 160, 32, 0.45);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
  transition: var(--transition);
}

.about-teaser-showcase:hover .about-deco-border {
  transform: translate(-6px, 6px);
  border-color: var(--amber);
}

/* Cam İnce Katmanlı İstatistik Kartları (Glassmorphic Floating Badges) */
.about-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-floating-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.4), rgba(232, 160, 32, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.about-floating-badge:hover {
  transform: scale(1.06) translateY(-5px) !important;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 35px rgba(232, 160, 32, 0.18), 0 3px 6px rgba(0, 0, 0, 0.04);
}

.about-floating-badge .badge-icon {
  font-size: 1.4rem;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.15);
  flex-shrink: 0;
}

.about-floating-badge .badge-info {
  display: flex;
  flex-direction: column;
}

.about-floating-badge .badge-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.15;
}

.about-floating-badge .badge-txt {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

/* Konumlandırmalar & Bağımsız Float Animasyonları */
.badge-experience {
  top: 12%;
  left: -55px;
  animation: float-badge-1 6s ease-in-out infinite;
}

.badge-projects {
  bottom: 12%;
  right: -55px;
  animation: float-badge-2 8s ease-in-out infinite;
}

.badge-countries {
  bottom: -22px;
  left: 15%;
  animation: float-badge-3 7s ease-in-out infinite;
}

@keyframes float-badge-1 {

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

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float-badge-2 {

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

  50% {
    transform: translateY(-15px);
  }
}

@keyframes float-badge-3 {

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

  50% {
    transform: translateY(-9px);
  }
}

/* Responsive Düzenler */
@media (max-width: 1024px) {
  .about-teaser-grid {
    gap: 4rem;
  }

  .badge-experience {
    left: -35px;
  }

  .badge-projects {
    right: -35px;
  }
}

@media (max-width: 992px) {
  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .about-teaser-right {
    margin-top: 2rem;
  }

  .about-teaser-showcase {
    max-width: 480px;
    margin: 0 auto;
  }

  .badge-experience {
    left: -40px;
  }

  .badge-projects {
    right: -40px;
  }
}

@media (max-width: 576px) {
  .about-teaser-section {
    padding: 4rem 0 5rem;
  }

  .about-teaser-showcase {
    aspect-ratio: 4 / 3.6;
  }

  .about-floating-badge {
    padding: 0.6rem 0.8rem;
    gap: 0.6rem;
  }

  .about-floating-badge .badge-icon {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
  }

  .about-floating-badge .badge-num {
    font-size: 1rem;
  }

  .badge-experience {
    left: -15px;
    top: 5%;
  }

  .badge-projects {
    right: -15px;
    bottom: 5%;
  }

  .badge-countries {
    left: 5%;
    bottom: -15px;
  }
}

/* ============================================================
   ── GOOGLE REVIEWS SECTION (INTERACTIVE ELEMENTS) ──
   ============================================================ */
.review-card-gold {
  border-color: rgba(245, 158, 11, 0.3) !important;
  background: #1e1b15 !important;
}

.review-card-gold:hover {
  border-color: rgba(245, 158, 11, 0.6) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

.review-card-cyan {
  border-color: rgba(6, 182, 212, 0.3) !important;
  background: #141d24 !important;
}

.review-card-cyan:hover {
  border-color: rgba(6, 182, 212, 0.6) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

.review-card-amber {
  border-color: rgba(234, 88, 12, 0.3) !important;
  background: #201a17 !important;
}

.review-card-amber:hover {
  border-color: rgba(234, 88, 12, 0.6) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

.google-trust-widget {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #1a1a2e;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  max-width: 480px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  margin: 1.5rem auto 0;
  text-align: left;
}

.trust-score {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.trust-score span {
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.trust-meta {
  flex: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 1.5rem;
}

.trust-meta h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.trust-meta p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}

.review-tag-container {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.review-tag {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.tag-service {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-highlight-gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.tag-highlight-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.tag-highlight-amber {
  background: rgba(234, 88, 12, 0.15);
  color: #fb923c;
  border: 1px solid rgba(234, 88, 12, 0.25);
}

.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(52, 211, 153, 0.15);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  animation: widgetPulse 2s infinite;
}

@keyframes widgetPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

/* ============================================================
   ── REVIEWS CAROUSEL CSS ──
   ============================================================ */
.reviews-carousel-container {
  position: relative;
  width: 100%;
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
}

.reviews-carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0.5rem;
}

.reviews-carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.reviews-carousel-track .review-card {
  flex: 0 0 calc(33.333% - 1.334rem);
  min-width: 320px;
}

@media (max-width: 992px) {
  .reviews-carousel-track .review-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .reviews-carousel-track .review-card {
    flex: 0 0 100%;
  }
}

.reviews-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #1a1a2e;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  color: var(--amber);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  user-select: none;
}

.reviews-carousel-btn:hover {
  background: var(--amber);
  color: #1a1a2e;
  border-color: var(--amber);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.reviews-carousel-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.reviews-carousel-btn.prev {
  left: -20px;
}

.reviews-carousel-btn.next {
  right: -20px;
}

@media (max-width: 1200px) {
  .reviews-carousel-btn.prev {
    left: -10px;
  }

  .reviews-carousel-btn.next {
    right: -10px;
  }
}

/* ============================================================
   ── MACHINE PARK HOMEPAGE TEASER ──
   ============================================================ */
.machines-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.machine-teaser-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.machine-teaser-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.4);
}

.machine-teaser-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  overflow: hidden;
}

.machine-teaser-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.machine-teaser-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.machine-teaser-brand {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.machine-teaser-body h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.machine-teaser-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.machine-teaser-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.machine-teaser-spec-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
}

@media (max-width: 992px) {
  .machines-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── Bold Navigation Menu Override ── */
.nav-links a {
  font-weight: 700 !important;
}

.dropdown-menu a {
  font-weight: 700 !important;
}

.mobile-menu a {
  font-weight: 700 !important;
}