/* ============================================
   EMBA BOBİNAJ — DESIGN SYSTEM
   Industrial Precision / Heritage Authority
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");

:root {
  --navy: #0c1a2e;
  --navy-mid: #152848;
  --navy-light: #1e3a6e;
  --steel: #2c4a70;
  --amber: #ffffff;
  --amber-light: #ffffff;
  --amber-dark: #1e3a6e;
  --white: #ffffff;
  --off-white: #f4f5f7;
  --light-gray: #e6eaf0;
  --mid-gray: #8899aa;
  --text: #1a2433;
  --text-light: #4a5870;
  --red-cta: rgba(196, 28, 12, 0.88);
  --t: 0.4s cubic-bezier(0.25, 1, 0.5, 1);

  --font: "Montserrat", sans-serif;

  --shadow-sm: 0 2px 8px rgba(12, 26, 46, 0.1);
  --shadow-md: 0 6px 20px rgba(12, 26, 46, 0.14);
  --shadow-lg: 0 16px 48px rgba(12, 26, 46, 0.2);
  --shadow-xl: 0 28px 72px rgba(12, 26, 46, 0.28);

  --radius: 8px;
  --radius-lg: 14px;
  --t: 0.3s ease;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: 80px; /* FAB space on mobile */
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t);
}
#header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg {
  width: 20px;
  height: 20px;
  fill: var(--amber);
}
.logo span.accent {
  color: var(--amber);
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition:
    background var(--t),
    color var(--t);
  white-space: nowrap;
}
nav a:hover,
nav a.active {
  background: var(--off-white);
  color: var(--amber-dark);
}
nav a.nav-contact {
  background: var(--navy);
  color: var(--white);
  margin-left: 8px;
}
nav a.nav-contact:hover {
  background: var(--navy-light);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
  background: transparent;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.28s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 12px 20px 20px;
  z-index: 899;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background var(--t);
}
.mobile-nav a:hover {
  background: var(--off-white);
}
.mobile-nav a.active {
  color: var(--amber-dark);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
#hero {
  margin-top: 0;
  padding: 0;
  height: 80vh; /* 90vh yerine daha dengeli bir yükseklik (örneğin ekranın %60'ı) */
  min-height: 650px; /* 650px çok yüksekti, daraltmak için bunu 450px civarına çekmelisin */
  /* Çok büyük monitörlerde de gereksiz uzamasını engeller */
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
}
.slide {
  width: 20%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  background-size: cover !important;
  background-position: center top; /* 'center top' yerine 'center center' yaparak kırpılmayı dengeliyoruz */
  background-repeat: no-repeat;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 16, 30, 0.8) 0%,
    rgba(8, 16, 30, 0.5) 50%,
    rgba(8, 16, 30, 0.25) 100%
  );
}
.slide-1 {
  background-image: url("images/dukkandis.webp");
}
.slide-2 {
  background-image: url("images/motorici.webp");
}
.slide-3 {
  background-image: url("images/pompa.webp");
}
.slide-4 {
  background-image: url("images/elektrikpano.webp");
}
.slide-5 {
  background-image: url("images/kompanzasyon.webp");
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 8vw, 120px);
  max-width: 1200px;
  padding-top: 0;
}
.slide-inner {
  max-width: 9000px;
}
.slide-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber-light);
  background: rgba(212, 121, 58, 0.18);
  border: 1px solid rgba(212, 121, 58, 0.35);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.slide-title {
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.slide-desc {
  font-size: clamp(0.875rem, 1.6vw, 1.05rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  max-width: 520px;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--t),
    transform var(--t);
}
.slider-btn:hover {
  background: rgba(212, 121, 58, 0.7);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev {
  left: 20px;
}
.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.dot.active {
  background: var(--amber-light);
  width: 26px;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section {
  padding: 88px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 540px;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 18px 0 36px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: var(--off-white);
}
.services-header {
  margin-bottom: 52px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--light-gray);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--amber), var(--amber-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  position: absolute;
  top: -20px; /* Yukarı doğru ne kadar kayacağı (kendi zevkine göre rakamla oynayabilirsin) */
  right: -25px; /* Sağa doğru ne kadar kayacağı */
  font-size: 140px; /* Emojinin büyüklüğü */
  opacity: 0.05; /* Yarı saydamlık ayarı (0.10 ile 0.20 arası idealdir) */
  background: transparent; /* Orijinalindeki lacivert arkaplanı siliyoruz */
  z-index: 0; /* Emojiyi en arka plana atıyoruz */
  pointer-events: none; /* Fareyle yazıları seçmeni engellememesi için */
  margin: 0;
  width: auto;
  height: auto;
  display: block;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}
.service-card .service-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: rgba(212, 121, 58, 0.1);
  padding: 4px 10px;
  border-radius: 3px;
}

.service-card h3,
.service-card p,
.service-card .service-badge {
  position: relative;
  z-index: 1; /* Yazıların yarı şeffaf ikonun altında ezilmemesi, üstte durması için */
}

/* ============================================================
   LOGISTICS / FEATURE SECTION
   ============================================================ */
#logistics {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}
.logistics-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.logistics-image {
  background-image: url(images/kargo.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}
.logistics-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--navy) 100%);
}
.logistics-content {
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.logistics-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.logistics-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: right;
}
.logistics-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.logistics-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ============================================================
   USP / WHY US SECTION
   ============================================================ */
#usp {
  background: var(--white);
  padding: 80px 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.usp-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden; /* EKLENDİ: İkonun dışarı taşmasını engeller */
}
.usp-item:last-child {
  border-right: none;
}
/* ESKİ .usp-icon-wrap, .usp-icon-wrap::after VE hover KODLARINI SİL, BUNU YAPIŞTIR */
.usp-icon-wrap {
  position: absolute;
  top: -20px; /* Yukarıdan dışarı taşma */
  right: -20px; /* Sağdan dışarı taşma */
  font-size: 140px; /* Dev boyut */
  opacity: 0.1; /* Yarı saydamlık */
  background: transparent; /* Eski yuvarlak gri arkaplanı sildik */
  z-index: 0; /* En arka plana atıyoruz */
  pointer-events: none;
  margin: 0;
  width: auto; /* Eski 72px limitini kaldırdık */
  height: auto; /* Eski 72px limitini kaldırdık */
  display: block;
}

.usp-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.usp-number span {
  color: var(--amber);
}
.usp-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.usp-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* YAZILARI ÖNE AL */
.usp-number,
.usp-item h3,
.usp-item p {
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.footer-map {
  position: relative;
  overflow: hidden;
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  filter: grayscale(20%);
}
.footer-info {
  padding: clamp(36px, 5vw, 60px) clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}
.footer-logo span {
  color: var(--amber);
}

.footer-detail h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.footer-detail p,
.footer-detail a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  display: block;
}
.footer-detail a {
  transition: color var(--t);
}
.footer-detail a:hover {
  color: var(--white);
}
.phone-link {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.phone-link::before {
  content: "📞";
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   FLOATING ACTION BUTTON
   ============================================================ */
.fab-wrapper {
  position: fixed;
  z-index: 800;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Kapsayıcı Desktop Konumu */
@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
  .fab-wrapper {
    bottom: 28px;
    right: 28px;
  }
}
/* Kapsayıcı Mobil Konumu */
@media (max-width: 768px) {
  .fab-wrapper {
    bottom: 12px;
    left: 16px;
    right: 16px;
  }
}

/* 2. Ortak Buton (.fab) Stilleri (Senin kodunun aynısı, sadece position çıkarıldı) */
.fab-container {
  position: fixed;
  z-index: 800;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Desktop Konumu */
@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
  .fab-container {
    bottom: 28px;
    /* Sağa doğru ayrılırken ekran dışına taşmaması için sağ margin'i biraz artırdık */
    right: 70px;
  }
}

/* Mobil Konumu - Orantısızlığı çözen yer burası */
@media (max-width: 768px) {
  .fab-container {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%); /* Kutuyu ekranın tam merkezine kilitler */
  }
}

/* Ortak Buton Stilleri */
.fab-btn {
  background: var(--red-cta);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--t);
  box-shadow: 0 6px 24px rgba(196, 28, 12, 0.45);
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.fab-btn:hover {
  background: rgba(218, 40, 20, 0.92);
  box-shadow: 0 10px 32px rgba(196, 28, 12, 0.55);
  color: var(--white);
}

.fab-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Desktop Boyutları */
@media (min-width: 769px) {
  .fab-btn {
    padding: 14px 26px;
    border-radius: 40px;
    min-width: 120px;
  }
}

/* Mobil Boyutları */
@media (max-width: 768px) {
  .fab-btn {
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 0.95rem;
    min-width: 130px;
  }
}

/* --- ANİMASYON DURUMLARI --- */

/* Ana buton ortada durur ve container'ın boyutunu belirler */
.main-btn {
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

/* Ayrılacak alt butonlar başlangıçta gizli ve üst üste */
.split-left,
.split-right {
  position: absolute;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) scale(0.8); /* Merkezde ufacık bekliyorlar */
}

/* TUŞA BASILDIĞINDA (is-open eklendiğinde) */

/* 1. Ana buton küçülüp kaybolur */
.fab-container.is-open .main-btn {
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}

/* 2. Sol buton sola kayarak belirir */
.fab-container.is-open .split-left {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(calc(-50% - 6px)) scale(1);
}

/* 3. Sağ buton sağa kayarak belirir */
.fab-container.is-open .split-right {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(calc(50% + 6px)) scale(1);
}

/* ============================================================
   HAKKIMIZDA PAGE
   ============================================================ */
.page-hero {
  margin-top: 68px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.015) 60px,
    rgba(255, 255, 255, 0.015) 61px
  );
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  line-height: 1.7;
}

#about-content {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-text strong {
  color: var(--navy);
  font-weight: 700;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-stat {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--amber);
}
.about-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-num span {
  color: var(--amber);
}
.about-stat p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

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

/* Gallery */
#gallery {
  background: var(--off-white);
  padding: 80px 0;
}
.gallery-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-top: 40px;
}
.gallery-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.65, 0, 0.35, 1);
}
.gallery-slide {
  min-width: calc(33.333% - 12px);
  margin-right: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-slide:hover img {
  transform: scale(1.05);
}
.gallery-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.gallery-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--t),
    transform var(--t);
}
.gallery-btn:hover {
  background: var(--amber);
  transform: scale(1.05);
}

/* ============================================================
   İLETİŞİM PAGE
   ============================================================ */
#contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.contact-block {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--t);
}
.contact-block:hover {
  box-shadow: var(--shadow-md);
}
.contact-block h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 10px;
}
.contact-block a,
.contact-block p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}
.contact-block a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--t);
}
.contact-block a:hover {
  color: var(--amber-dark);
}
.contact-block .phone-icon::before {
  content: "📞 ";
}
.contact-map-large {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 440px;
}
.contact-map-large iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-side {
    order: -1;
  }
  .about-image-side img {
    height: 280px;
  }
  .gallery-slide {
    min-width: calc(50% - 9px);
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 60px 0;
  }

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

  .logistics-inner {
    grid-template-columns: 1fr;
  }
  .logistics-image {
    height: 240px;
  }
  .logistics-image::after {
    background: linear-gradient(to top, var(--navy) 10%, transparent 100%);
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }
  .usp-item {
    border-right: none;
    border-bottom: 1px solid var(--light-gray);
  }
  .usp-item:last-child {
    border-bottom: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-map {
    height: 260px;
  }
  .footer-map iframe {
    height: 260px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-large {
    height: 280px;
  }

  .gallery-slide {
    min-width: calc(100% - 0px);
    margin-right: 0;
  }

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

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  .slider-prev {
    left: 10px;
  }
  .slider-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
