/* ============================================
   EYLÜL FORKLİFT – style.css
   Industrial / Bold / High-Impact Design
   ============================================ */

/* --- VARIABLES --- */
:root {
  --yellow: #f5c400;
  --yellow-dark: #d4aa00;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --gray: #888888;
  --gray-light: #cccccc;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.07);
  --accent-red: #e53e3e;

  --font-display: "Bebas Neue", sans-serif;
  --font-cond: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-yellow: 0 0 30px rgba(245, 196, 0, 0.2);
}

/* --- LIGHT THEME --- */
[data-theme="light"] {
  --black: #ffffff;
  --dark: #f5f5f5;
  --dark2: #e8e8e8;
  --dark3: #d0d0d0;
  --gray: #666666;
  --gray-light: #333333;
  --white: #0a0a0a;
  --white-dim: rgba(0, 0, 0, 0.07);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

/* --- RESET --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 3px;
}

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTION BASE --- */
.section {
  padding: 100px 0;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(245, 196, 0, 0.2);
  transition: var(--transition);
}
[data-theme="light"] .header {
  background: rgba(255, 255, 255, 0.95);
}
.header.scrolled {
  border-bottom-color: var(--yellow);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
[data-theme="light"] .header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  font-size: 28px;
  color: var(--yellow);
  line-height: 1;
  display: inline-block;
  animation: spin 8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
}

/* Nav */
.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}
.nav a:hover {
  color: var(--yellow);
}
.nav a:hover::after {
  width: 100%;
}

/* CTA Button */
.cta-btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--yellow);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.cta-btn:hover,
.btn-primary:hover {
  background: transparent;
  color: var(--yellow);
  box-shadow: var(--shadow-yellow);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn-primary.large,
.btn-outline.large {
  padding: 16px 36px;
  font-size: 16px;
}
.btn-primary.small,
.btn-outline.small {
  padding: 8px 16px;
  font-size: 12px;
}
.mt-2 {
  margin-top: 32px;
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: 2px solid rgba(245, 196, 0, 0.3);
  border-radius: var(--radius);
  padding: 8px 12px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.theme-toggle:hover {
  border-color: var(--yellow);
  background: rgba(245, 196, 0, 0.1);
}
.theme-icon {
  font-size: 20px;
  line-height: 1;
  transition: transform var(--transition);
  pointer-events: none;
}
.theme-toggle:hover .theme-icon {
  transform: rotate(20deg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.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);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 32px 20px;
  border-top: 1px solid var(--white-dim);
  gap: 4px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--white-dim);
  transition: color var(--transition);
}
.mobile-nav a:hover {
  color: var(--yellow);
}
.mobile-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: var(--radius);
  margin-top: 8px;
  border: none !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url("forklift6.png");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: grayscale(0.1);
}
[data-theme="light"] .hero-bg-image {
  opacity: 0.15;
  filter: grayscale(0) brightness(1.1);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 196, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 196, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.accent-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(245, 196, 0, 0.12) 0%,
    transparent 70%
  );
  right: -100px;
  top: 100px;
}
.accent-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(229, 62, 62, 0.08) 0%,
    transparent 70%
  );
  left: -50px;
  bottom: 100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 60px 80px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}
.title-line {
  display: block;
}
.accent-text {
  color: var(--yellow);
}

.hero-desc {
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}
[data-theme="light"] .hero-desc {
  color: var(--gray);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}
.stat:first-child {
  padding-left: 0;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gray-light);
  text-transform: uppercase;
  font-weight: 700;
}
[data-theme="light"] .stat-label {
  color: var(--gray);
}
.stat-divider {
  width: 2px;
  height: 48px;
  background: var(--white-dim);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll-hint span {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gray-light);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
[data-theme="light"] .hero-scroll-hint span {
  color: var(--gray);
}
.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ============================================
   TICKER
   ============================================ */
.ticker-wrap {
  background: var(--yellow);
  overflow: hidden;
  padding: 14px 0;
  border-top: 2px solid var(--yellow-dark);
  border-bottom: 2px solid var(--yellow-dark);
}
.ticker {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--black);
  flex-shrink: 0;
}
.ticker-dot {
  color: var(--black) !important;
  opacity: 0.5;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(245, 196, 0, 0.3);
  padding: 4px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-tag.light {
  color: var(--yellow);
  border-color: rgba(245, 196, 0, 0.5);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title.light {
  color: var(--white);
}
.section-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}
.section-desc.light {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   HİZMETLER
   ============================================ */
.hizmetler {
  background: var(--dark);
}
.services-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  background: var(--dark3);
  border: 2px solid var(--dark3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--dark2);
  padding: 40px 32px;
  position: relative;
  transition: background var(--transition);
}
.service-card:hover {
  background: var(--dark3);
}
.service-card.featured {
  background: var(--dark);
  border-right: 2px solid var(--dark3);
}
.service-card.featured::before {
  content: "POPÜLER";
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--yellow);
  color: var(--black);
  padding: 3px 10px;
  border-radius: 2px;
}
.service-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(245, 196, 0, 0.1);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
[data-theme="light"] .service-num {
  color: rgba(245, 196, 0, 0.15);
}
.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-cond);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray-light);
  padding: 8px 12px;
  background: var(--white-dim);
  border-left: 2px solid var(--yellow);
  border-radius: 2px;
}
.service-cta {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--yellow);
  text-transform: uppercase;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-cta:hover {
  gap: 12px;
}

/* ============================================
   GALERİ
   ============================================ */
.galeri {
  background: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid var(--dark3);
  background: var(--dark2);
  transition: all var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-yellow);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   BROŞÜR BÖLÜMÜ
   ============================================ */
.brosur-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.brosur-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 196, 0, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.brosur-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.brosur-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brosur-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
  width: 100%;
}
.brosur-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.brosur-feature:hover {
  background: var(--dark3);
  transform: translateX(4px);
  border-left-width: 4px;
}
.feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.brosur-feature h4 {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 6px;
}
.brosur-feature p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.brosur-image {
  position: relative;
}
.brosur-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow-yellow);
  transition: transform var(--transition);
}
.brosur-image:hover img {
  transform: scale(1.02);
}

/* ============================================
   NEDEN BİZ
   ============================================ */
.neden {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.neden-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 196, 0, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}
[data-theme="light"] .neden-bg {
  background: linear-gradient(
    135deg,
    rgba(245, 196, 0, 0.08) 0%,
    transparent 60%
  );
}
.neden-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.neden-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.avantaj-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: all var(--transition);
}
.avantaj-card:hover {
  border-left-color: var(--yellow);
  background: var(--dark3);
  transform: translateX(4px);
}
.avantaj-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.avantaj-card h4 {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 6px;
}
.avantaj-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   HAKKIMIZDA
   ============================================ */
.hakkimizda {
  background: var(--dark);
}
.hakkimizda-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.hakkimizda-img {
  position: relative;
}
.hakkimizda-img img {
  width: 100%;
  height: auto;
  border: 2px solid var(--dark3);
  border-radius: var(--radius-lg);
  display: block;
}
.img-placeholder {
  background: var(--dark2);
  border: 2px solid var(--dark3);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray);
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 196, 0, 0.05) 0%,
    transparent 60%
  );
}
.img-icon {
  font-size: 64px;
  opacity: 0.4;
}
.img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 24px;
  padding: 8px 20px;
  border-radius: var(--radius);
  letter-spacing: 1px;
}

.hakkimizda-text {
  display: flex;
  flex-direction: column;
}
.hakkimizda-text p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.hakkimizda-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item strong {
  display: block;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}
.info-item span,
.info-item a {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}
.info-item a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

/* ============================================
   MAP
   ============================================ */
.map-section {
  padding-top: 80px;
  padding-bottom: 0;
  background: var(--black);
}
.map-wrap {
  position: relative;
  margin-top: 40px;
}
.map-wrap iframe {
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.8);
}
[data-theme="light"] .map-wrap iframe {
  filter: none;
}
.map-overlay-card {
  position: absolute;
  top: 40px;
  right: 40px;
  background: var(--dark);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-width: 260px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
.map-card-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--yellow);
  letter-spacing: 2px;
}
.map-overlay-card p {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: var(--yellow);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 8px;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
}
.cta-banner .btn-primary {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
  font-size: 18px;
  padding: 18px 40px;
  flex-shrink: 0;
}
.cta-banner .btn-primary:hover {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
  border-top: 2px solid var(--dark3);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 14px;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--yellow);
}
.footer-contact p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.footer-phone {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow) !important;
  letter-spacing: 1px;
  transition: color var(--transition);
}
.footer-phone:hover {
  color: var(--white) !important;
}
.footer-contact a:not(.footer-phone) {
  font-size: 14px;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-contact a:not(.footer-phone):hover {
  color: var(--yellow);
}
.footer-bottom {
  border-top: 1px solid var(--dark3);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--gray);
}
.footer-credit {
  margin-top: 8px;
}
.footer-credit a {
  color: var(--yellow);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-credit a:hover {
  color: var(--white);
}

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.float-call {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245, 196, 0, 0.4);
  transition: all var(--transition);
}
.float-call:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(245, 196, 0, 0.5);
}
.float-call-icon {
  font-size: 20px;
  animation: ring 2s ease infinite;
}
@keyframes ring {
  0%,
  100% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(-15deg);
  }
  20% {
    transform: rotate(15deg);
  }
  30% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0);
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card.featured {
    border-right: none;
    border-bottom: 2px solid var(--dark3);
  }
  .neden-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hakkimizda-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .brosur-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero-inner {
    padding: 60px 32px;
  }
  .hero-scroll-hint {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .theme-toggle {
    padding: 10px 14px;
    min-width: 44px;
    min-height: 44px;
  }
  .theme-icon {
    font-size: 20px;
  }
  .hamburger {
    display: flex;
  }
  .header-inner {
    padding: 16px 20px;
  }

  .hero-inner {
    padding: 40px 20px;
  }
  .hero-title {
    font-size: clamp(60px, 16vw, 100px);
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 0;
  }
  .stat {
    padding: 0 16px;
  }
  .stat-num {
    font-size: 36px;
  }

  .section {
    padding: 64px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .map-overlay-card {
    display: none;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-inner .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .float-call-text {
    display: none;
  }
  .float-call {
    padding: 16px;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .stat-divider {
    display: none;
  }
  .hakkimizda-info {
    gap: 12px;
  }
}
