/* ============================================
   MANAY KABLO – Corporate Design System
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary palette – derived from logo */
  --navy: #3D5A80;
  --navy-dark: #2B3A4E;
  --navy-light: #4A6FA5;
  --slate: #334155;
  --orange: #E67E22;
  --orange-hover: #D35400;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8F9FB;
  --light-gray: #F1F3F6;
  --border: #E2E6ED;
  --text-muted: #6B7280;
  --text-body: #374151;
  --text-dark: #1A1A2E;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sizing */
  --container: 1200px;
  --header-height: 80px;
  --radius: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration) var(--ease);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* Bolum basligi icindeki alt metin sayfaya ortalansin.
   .section-subtitle'in max-width'i var; otomatik kenar boslugu olmadan
   600px'lik kutu sola yaslaniyor ve metin ortalanmamis gorunuyordu. */
.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   HEADER
   ============================================ */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.8125rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-left a {
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
}

.top-bar-left a:hover {
  color: var(--white);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  position: relative;
}

.lang-switch-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--duration) var(--ease);
}

.lang-switch-btn:hover {
  background: rgba(255,255,255,0.15);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration) var(--ease);
  z-index: 100;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--text-body);
  font-size: 0.875rem;
  transition: background var(--duration) var(--ease);
}

.lang-dropdown a:hover {
  background: var(--light-gray);
}

.lang-dropdown a.active-lang {
  color: var(--navy);
  font-weight: 600;
}

/* Main Nav */
.main-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow var(--duration) var(--ease);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 53px;
  width: auto;
}

/* --- Buyutulmus header logosu (masaustu) ---
   Logo 53px -> 72px buyutuldu; sigmasi icin header 80px -> 100px yukseltildi.
   Ust serit (top-bar) hic degismez, iletisim bilgileri yerinde kalir.
   --header-height'a dokunulmuyor: o degeri mobil menu konumu da kullaniyor. */
@media (min-width: 769px) {
  .main-header .container {
    height: 100px;
  }

  .main-header .logo img {
    height: 72px;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a,
.main-nav .nav-dropdown > a {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  position: relative;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav a.active,
.main-nav .nav-dropdown:hover > a {
  color: var(--navy);
  background: rgba(61, 90, 128, 0.06);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Mega Menu Dropdown */
.nav-dropdown {
  position: relative;
}

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

.nav-dropdown > a svg {
  width: 14px;
  height: 14px;
  transition: transform var(--duration) var(--ease);
}

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

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  min-width: 680px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
  border: 1px solid var(--border);
  z-index: 100;
}

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

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}

.mega-menu-item:hover {
  background: var(--off-white);
}

.mega-menu-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.mega-menu-item span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}

.mega-menu-item:hover span {
  color: var(--navy);
}

.mega-menu-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.mega-menu-footer a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mega-menu-footer a:hover {
  gap: 10px;
}

.mega-menu-footer a svg {
  width: 16px;
  height: 16px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--light-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}

.search-toggle:hover {
  background: var(--navy);
  color: var(--white);
}

.search-toggle svg {
  width: 20px;
  height: 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
  backdrop-filter: blur(4px);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 680px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  transform: translateY(-20px);
  transition: transform var(--duration) var(--ease);
}

.search-overlay.active .search-box {
  transform: translateY(0);
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.search-input-wrapper svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: var(--text-dark);
}

.search-input-wrapper input::placeholder {
  color: var(--text-muted);
}

.search-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}

.search-close:hover { color: var(--text-dark); }

.search-results {
  max-height: 420px;
  overflow-y: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.search-results a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease);
}

.search-results a:hover {
  background: var(--light-gray);
}

.search-results .search-result-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  object-fit: cover;
}

.search-results .search-result-text h4 {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.search-results .search-result-text p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.search-popular {
  margin-top: 16px;
}

.search-popular h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-tags a {
  padding: 6px 14px;
  background: var(--light-gray);
  border-radius: 20px;
  font-size: 0.8125rem;
  color: var(--text-body);
  transition: all var(--duration) var(--ease);
}

.search-tags a:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: var(--font-body);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.pg-btn:hover:not(.pg-disabled):not(.pg-active) {
  background: var(--off-white);
  border-color: var(--navy);
  color: var(--navy);
}

.pg-btn.pg-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.pg-btn.pg-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pg-btn.pg-prev,
.pg-btn.pg-next {
  padding: 0 10px;
}

.pg-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 40px;
  color: var(--text-muted);
  font-size: 0.875rem;
  letter-spacing: 2px;
}

@media (max-width: 480px) {
  .pagination { gap: 4px; }
  .pg-btn { min-width: 36px; height: 36px; font-size: 0.8125rem; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  /* Hero yuksekligi tek yerden yonetilir; full slider da bu degeri kullanir
     ki gorsel alanin tamamini kaplasin, kenarlarda eski arka plan gorunmesin. */
  --hero-min-h: 580px;
  position: relative;
  min-height: var(--hero-min-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(43, 58, 78, 0.92) 0%,
    rgba(61, 90, 128, 0.82) 50%,
    rgba(43, 58, 78, 0.88) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
  padding: 72px 0;
}

.hero-content {
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-content .hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Right – Product Image */
.hero-product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero-product-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(
    ellipse at center,
    rgba(78, 205, 196, 0.25) 0%,
    rgba(61, 90, 128, 0.15) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: heroGlowPulse 4s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero-product-image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
  animation: heroImageFloat 5s ease-in-out infinite;
}

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

/* Hero Slider Carousel */
.hero-slider {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  z-index: 0;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Full Slider — görsel slider alanının tamamını kaplar.
   .hero-slider .container icinde durdugu icin, gorseli 100vw ile kenardan kenara tasiriz.
   .hero'da overflow:hidden oldugu icin tasma sorun cikarmaz. */
.hero-slide-bg {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background-image: var(--bg-d);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

/* Full slider'da gorselin uzerine KARARTMA KATMANI KONMAZ —
   arka plan oldugu gibi, net gorunur.
   Yazilarin okunabilirligi katman yerine yaziya uygulanan golge ile saglanir. */
.hero-slide--full .hero-content h1 {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero-slide--full .hero-content p {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 3px 14px rgba(0, 0, 0, 0.45);
}

/* Butonlar acik renkli gorsel uzerinde de secilebilsin.
   Arka plani karartmak yerine yalnizca butonun kendisine zemin veriliyor. */
.hero-slide--full .hero-cta .btn {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.hero-slide--full .hero-cta .btn-outline {
  background: rgba(20, 28, 40, 0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-color: rgba(255, 255, 255, 0.65) !important;
}

.hero-slide--full .hero-cta .btn-outline:hover {
  background: rgba(20, 28, 40, 0.55);
}

/* Full tipte sag sutun yok — icerik tek kolon.
   Yukseklik: gorselin en/boy oranindan hesaplanir (--slide-ratio = boy/en),
   300px ile 780px arasina sikistirilir. Boylece gorsel alani tam doldurur:
   ne ustte/altta eski arka plan gorunur, ne de kenarlardan kirpilir.
   Karisik kullanimda var(--hero-min-h) tabani devrede kalir. */
.hero-slide--full .hero-inner {
  grid-template-columns: 1fr;
  min-height: max(
    var(--hero-min-h),
    clamp(140px, calc(100vw * var(--slide-ratio, 0.36)), 780px)
  );
}

/* --- Butonlarin slider uzerindeki konumu (yalnizca full tipte) ---
   Konum .hero-slide'a gore hesaplanir; sol/sag kenarlar container ile hizali kalir.
   Varsayilan sag alt (bottom-right). */
.hero-slide--full .hero-cta[class*="hero-cta--"] {
  position: absolute;
  z-index: 2;
  margin: 0;
  width: max-content;
  max-width: 100%;
}

.hero-cta--top-left,
.hero-cta--top-center,
.hero-cta--top-right    { top: 40px; }

/* Alt konumlarda 72px: arama cubugu hero'nun altina -36px bindigi icin
   butonlar onun altinda kalmasin diye pay birakiliyor. */
.hero-cta--bottom-left,
.hero-cta--bottom-center,
.hero-cta--bottom-right { bottom: 72px; }

.hero-cta--middle-left,
.hero-cta--middle-center,
.hero-cta--middle-right { top: 50%; transform: translateY(-50%); }

.hero-cta--top-left,
.hero-cta--middle-left,
.hero-cta--bottom-left   { left: 0; }

.hero-cta--top-right,
.hero-cta--middle-right,
.hero-cta--bottom-right  { right: 0; }

.hero-cta--top-center,
.hero-cta--bottom-center { left: 50%; transform: translateX(-50%); }

.hero-cta--middle-center { left: 50%; transform: translate(-50%, -50%); }

/* Sadece full slider varsa hero'nun sabit yuksekligi kalkar,
   alan tamamen gorselin oranina gore sekillenir.
   Iki sinif birlikte yazildi: mobil medya sorgusundaki .hero kuralini da gecsin. */
.hero.hero--full-slider {
  --hero-min-h: 0px;
}

.hero-slide--full .hero-content {
  max-width: 640px;
}

/* Urun tipinde icerik gizlenince slide cokmesin (full tip yukarida hero boyunu alir) */
.hero-slide--product.hero-slide--image-only .hero-inner {
  min-height: 420px;
}

/* Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-slider-arrow:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.08);
}

.hero-slider-prev { left: -60px; }
.hero-slider-next { right: -60px; }

/* Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slider-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

.hero-slider-dot:hover {
  border-color: #fff;
}

/* ============================================
   SEARCH BAR SECTION (below hero)
   ============================================ */
.search-bar-section {
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -36px;
}

.search-bar-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 60px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--border);
}

.search-bar-inner input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: transparent;
  border-radius: 60px;
}

.search-bar-inner input::placeholder {
  color: var(--text-muted);
}

.search-bar-inner button {
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 60px;
  transition: background var(--duration) var(--ease);
}

.search-bar-inner button:hover {
  background: var(--navy-dark);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.partners-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
  min-width: 160px;
  height: 80px;
}

.partner-logo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--navy);
}

.partner-logo img {
  max-height: 44px;
  max-width: 130px;
  object-fit: contain;
  /* Logolar dogrudan kendi renkleriyle gosterilir (gri filtre yok) */
  transition: transform var(--duration) var(--ease);
}

.partner-logo:hover img {
  transform: scale(1.04);
}

/* ============================================
   PRODUCT CATEGORIES SECTION
   ============================================ */
.categories-section {
  padding: 96px 0;
  background: var(--off-white);
}

.categories-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.categories-section .section-subtitle {
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  border: 1px solid var(--border);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.5s var(--ease);
}

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

.category-card-body {
  padding: 20px 24px;
}

.category-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.category-card-body p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: gap var(--duration) var(--ease);
}

.category-card:hover .category-card-link {
  gap: 10px;
}

.category-card-link svg {
  width: 16px;
  height: 16px;
}

.categories-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 96px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content .section-label {
  margin-bottom: 12px;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--text-body);
  line-height: 1.75;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(61, 90, 128, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
}

.about-feature h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
}

.about-image-badge span {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-image-badge small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-section {
  padding: 96px 0;
  background: var(--navy-dark);
  color: var(--white);
}

.why-section .section-label {
  color: var(--orange);
}

.why-section .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.why-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.why-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-section .section-subtitle {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--duration) var(--ease);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(230, 126, 34, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

/* Adminde boş bırakılan istatistikler gösterilmez; kalanlar alanı eşit paylaşır.
   Mobil kurallar dosyanın altında olduğu için küçük ekranlarda onlar geçerli olur. */
.stats-grid--1 { grid-template-columns: 1fr; }
.stats-grid--2 { grid-template-columns: repeat(2, 1fr); }
.stats-grid--3 { grid-template-columns: repeat(3, 1fr); }

.stat-item {
  padding: 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
  padding: 96px 0;
  background: var(--off-white);
}

.news-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.news-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.news-card-body {
  padding: 24px;
}

.news-card-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.news-card-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  color: var(--white);
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-brand .logo img {
  height: 38px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: all var(--duration) var(--ease);
}

.footer-col ul a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.footer-contact li span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}

.footer-social a svg {
  width: 13px;
  height: 13px;
}

/* ============================================
   PAGE HEADER (Inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 60px 0 48px;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover { color: var(--white); }

.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-page {
  padding: 80px 0;
  background: var(--off-white);
}

.products-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page-section {
  padding: 80px 0;
}

.about-page-section:nth-child(even) {
  background: var(--off-white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding: 0 0 48px;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  padding-right: 40px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: 40px;
  margin-left: 50%;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy);
  position: absolute;
  top: 4px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -7px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -7px;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

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

/* ============================================
   QUALITY PAGE
   ============================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(61, 90, 128, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.cert-icon svg {
  width: 32px;
  height: 32px;
}

.cert-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--duration) var(--ease);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
  outline: none;
  border-color: var(--navy);
}

.contact-form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
}

.contact-info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.contact-info-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-map {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 49;
  padding: calc(var(--header-height) + 32px) 24px 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  padding: 14px 16px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--light-gray);
  color: var(--navy);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }
}

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

  .main-nav { display: none; }

  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

  .hero-product-image { display: none; }

  .hero { --hero-min-h: 460px; }

  /* Full slider mobilde: yazi tam genislik (karartma katmani yok) */
  .hero-slide--full .hero-content { max-width: 100%; }

  /* Mobil gorsel yuklenmisse onu kullan; yoksa masaustu gorseline don */
  .hero-slide-bg {
    background-image: var(--bg-m, var(--bg-d));
  }

  /* Yukseklik de mobil gorselin oranini izler (yoksa masaustu orani) */
  .hero-slide--full .hero-inner {
    min-height: max(
      var(--hero-min-h),
      clamp(140px, calc(100vw * var(--slide-ratio-m, var(--slide-ratio, 0.36))), 620px)
    );
  }

  /* Telefonda butonlar kenara sifir yapismasin */
  .hero-cta--top-left,
  .hero-cta--top-center,
  .hero-cta--top-right    { top: 24px; }

  .hero-cta--bottom-left,
  .hero-cta--bottom-center,
  .hero-cta--bottom-right { bottom: 56px; }

  .hero-slide--product.hero-slide--image-only .hero-inner { min-height: 300px; }

  .hero-slider-prev { left: 8px; }
  .hero-slider-next { right: 8px; }
  .hero-slider-arrow { width: 40px; height: 40px; font-size: 1.5rem; }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .search-bar-inner {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 8px;
  }

  .search-bar-inner button {
    width: 100%;
    justify-content: center;
  }

  .partners-grid {
    gap: 16px;
  }

  .partner-logo {
    min-width: 120px;
    height: 60px;
  }

  .partner-logo span {
    font-size: 0.875rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-card-img { height: 160px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

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

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

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

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 32px;
    padding-right: 0;
    text-align: left;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: -7px;
  }
}

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

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

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

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    justify-content: center;
    width: 100%;
  }
}

/* ============================================
   FLOATING CONTACT BUTTONS
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

/* Toggle button */
.float-toggle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.3s var(--ease);
  order: 10;
  color: var(--navy-dark);
}

.float-toggle:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.2);
  transform: scale(1.05);
}

.float-toggle svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s var(--ease);
}

.float-toggle .icon-close {
  display: none;
}

.floating-buttons.open .float-toggle .icon-open {
  display: none;
}

.floating-buttons.open .float-toggle .icon-close {
  display: block;
}

/* Pill-shaped action buttons */
.float-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-dark);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  white-space: nowrap;
}

.floating-buttons.open .float-pill {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-buttons.open .float-pill:nth-child(1) {
  transition-delay: 0.08s;
}
.floating-buttons.open .float-pill:nth-child(2) {
  transition-delay: 0.04s;
}
.floating-buttons.open .float-pill:nth-child(3) {
  transition-delay: 0s;
}

.float-pill:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
}

.float-pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.float-pill-icon svg {
  width: 20px;
  height: 20px;
}

.float-pill-icon.whatsapp {
  background: #25D366;
}

.float-pill-icon.call {
  background: #3478F6;
}

.float-pill-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.float-pill span {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Mobile bottom bar */
.mobile-contact-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 90;
  padding: 8px 0;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}

.mobile-contact-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}

.mobile-contact-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-contact-btn span {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-contact-btn.whatsapp { color: #25D366; }
.mobile-contact-btn.call { color: var(--navy); }
.mobile-contact-btn.instagram { color: #E1306C; }

.mobile-contact-btn:active {
  background: var(--light-gray);
}

/* News card image zoom */
.news-card-img img {
  transition: transform 0.5s var(--ease);
}
.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

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

  .mobile-contact-bar {
    display: block;
  }

  /* Add bottom padding to footer for mobile bar */
  .footer {
    padding-bottom: 72px;
  }

  .partner-logo img {
    max-height: 32px;
    max-width: 100px;
  }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ============================================
   REFERANSLAR SAYFASI (referanslar.php)
   Ana sayfadaki .partner-logo kartını ızgara düzeninde kullanır.
   ============================================ */
.references-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.references-grid .partner-logo {
  min-width: 0;
  height: 130px;
  padding: 20px;
  text-decoration: none;
}

.references-grid .partner-logo img {
  max-height: 64px;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .references-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .references-grid .partner-logo {
    height: 100px;
    padding: 14px;
  }

  .references-grid .partner-logo img {
    max-height: 46px;
  }
}

/* İletişim sayfası — adres kartındaki "Yol Tarifi Al" bağlantısı */
.contact-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.contact-directions-link:hover {
  color: var(--orange);
}

/* Footer / iletişim kartlarındaki tıklanabilir telefon & e-posta */
.footer-contact a,
.contact-info-card p a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.footer-contact a:hover,
.contact-info-card p a:hover {
  color: var(--orange);
}
