/* ===========================
   FORUM OTO LASTİK - ANA STİL
   =========================== */

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

/* === ROOT VARIABLES === */
:root {
  --yellow: #F5C518;
  --yellow-dark: #D4A017;
  --yellow-light: #FFD700;
  --black: #0A0A0A;
  --black-2: #111111;
  --dark: #1A1A1A;
  --dark-2: #222222;
  --dark-3: #2A2A2A;
  --gray: #3A3A3A;
  --gray-2: #555555;
  --gray-3: #888888;
  --gray-light: #CCCCCC;
  --white: #FFFFFF;
  --white-soft: #F5F5F5;
  --orange: #FF6B00;
  --red: #E63946;
  --green: #2DC653;

  --font-main: 'Inter', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
  --shadow-yellow: 0 0 30px rgba(245, 197, 24, 0.3);
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* === RESET === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  animation: pageTransition 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes pageTransition {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* === UTILITY === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}

.section-title span {
  color: var(--yellow);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-3);
  margin-top: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-header {
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn-yellow:hover {
  background: var(--yellow-light);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}
.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark-2);
  color: var(--white);
  border: 1px solid var(--gray);
}
.btn-dark:hover {
  background: var(--dark-3);
  border-color: var(--yellow);
  color: var(--yellow);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
}

.badge-dark {
  background: var(--dark-3);
  color: var(--gray-3);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.15);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--black);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-text span {
  font-size: 0.65rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-light);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* === DROPDOWN MENU === */
.nav-dropdown {
  position: relative;
}

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

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--dark-2);
  border: 1px solid var(--gray);
  border-radius: var(--radius-md);
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--dark-2);
  border-top: 1px solid var(--gray);
  border-left: 1px solid var(--gray);
}

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

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--gray-light) !important;
  text-decoration: none;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  border-radius: var(--radius);
  transition: var(--transition);
  text-transform: none !important;
}

.nav-dropdown-item::after {
  display: none !important;
}

.nav-dropdown-item:hover {
  background: rgba(245,197,24,0.08);
  color: var(--yellow) !important;
}

.nav-dd-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.nav-dropdown-item--highlight {
  color: var(--yellow) !important;
}
.nav-dropdown-item--highlight:hover {
  background: rgba(245,197,24,0.15);
}


.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.nav-phone svg {
  color: var(--yellow);
}

.nav-phone:hover {
  color: var(--yellow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.7) 50%,
    rgba(245,197,24,0.08) 100%
  );
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: 
    linear-gradient(rgba(245,197,24,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--yellow);
}

.hero-eyebrow span {
  font-size: 0.8rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.hero-title .line-1 { color: var(--white); }
.hero-title .line-2 { 
  color: var(--yellow);
  display: block;
  text-shadow: 0 0 60px rgba(245,197,24,0.4);
}
.hero-title .line-3 { 
  color: var(--gray-3);
  font-size: 0.55em;
  display: block;
  letter-spacing: 4px;
  margin-top: 8px;
}

.hero-desc {
  max-width: 560px;
  color: var(--gray-3);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

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

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

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  color: var(--gray-3);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-dot {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* === TICKER BAR === */
.ticker-bar {
  background: var(--yellow);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-content span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--black);
  padding: 0 40px;
}

.ticker-content span.sep {
  padding: 0;
  color: var(--black-2);
  opacity: 0.4;
}

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

/* === STATS SECTION === */
.stats-section {
  background: var(--dark);
  padding: 80px 0;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,197,24,0.03) 0%, transparent 60%);
}

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

.stat-item {
  padding: 40px;
  text-align: center;
  border-right: 1px solid var(--gray);
  position: relative;
  transition: var(--transition);
}

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

.stat-item:hover {
  background: rgba(245,197,24,0.04);
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,197,24,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--yellow);
  transition: var(--transition);
}

.stat-item:hover .stat-icon {
  background: var(--yellow);
  color: var(--black);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  display: block;
}

/* === SERVICES SECTION === */
.services-section {
  padding: 120px 0;
  background: var(--black-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray);
}

.service-card {
  background: var(--dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  group: true;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,197,24,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover {
  background: var(--dark-2);
  transform: translateY(-4px);
}

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(245,197,24,0.08);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  transition: var(--transition);
}

.service-card:hover .service-num {
  color: rgba(245,197,24,0.15);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(245,197,24,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-icon-wrap svg {
  width: 30px;
  height: 30px;
  color: var(--yellow);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--yellow);
}

.service-card:hover .service-icon-wrap svg {
  color: var(--black);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover .service-name {
  color: var(--yellow);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-3);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-link svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition-slow);
  z-index: 0;
}

.service-img-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

/* === VIDEO SECTION === */
.video-section {
  padding: 80px 0;
  background: var(--black);
  position: relative;
}

.video-section-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.video-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.video-text-left .section-subtitle { margin-bottom: 12px; display: inline-block; }
.video-text-left .section-title { margin-bottom: 16px; }

.video-text-left p {
  color: var(--gray-3);
  line-height: 1.6;
  margin-bottom: 24px;
}

.video-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  width: 100%;
}

.video-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--dark);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.video-feature-item svg {
  color: var(--yellow);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.video-feature-item span {
  font-size: 0.9rem;
  color: var(--gray-light);
  font-weight: 500;
}

.slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  max-height: 600px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
}

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

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.slider-btn:hover {
  background: var(--yellow);
  color: var(--black);
}

.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
  background: var(--yellow);
  transform: scale(1.2);
}

/* === TIRES SECTION === */
.tires-section {
  padding: 120px 0;
  background: var(--black-2);
}

.tires-filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  align-items: center;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--dark-3);
  border: 1px solid var(--gray);
  color: var(--gray-3);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}

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

.tires-search {
  margin-left: auto;
  position: relative;
}

.tires-search input {
  background: var(--dark-3);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 10px 16px 10px 42px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.85rem;
  width: 220px;
  transition: var(--transition);
}

.tires-search input:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--dark-2);
}

.tires-search input::placeholder {
  color: var(--gray-3);
}

.tires-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-3);
  width: 16px;
  height: 16px;
}

.tires-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.tire-card {
  background: var(--dark);
  border: 1px solid var(--gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.tire-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-yellow);
}

.tire-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--dark-3);
  overflow: hidden;
}

.tire-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: var(--transition-slow);
}

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

.tire-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.tire-info {
  padding: 24px;
}

.tire-brand {
  font-size: 0.7rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tire-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.2;
}

.tire-size {
  font-size: 0.82rem;
  color: var(--gray-3);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tire-size svg {
  width: 14px;
  height: 14px;
  color: var(--yellow);
}

.tire-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray);
}

.tire-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
}

.tire-price span {
  font-size: 0.9rem;
  color: var(--gray-3);
  font-weight: 400;
  font-family: var(--font-main);
}

.tire-stock {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tire-stock.in-stock { color: var(--green); }
.tire-stock.out-stock { color: var(--red); }

.tires-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--gray-3);
}

.tires-empty svg {
  width: 64px;
  height: 64px;
  color: var(--gray);
  margin: 0 auto 20px;
}

.tires-empty h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--gray-2);
}

/* === WHY US SECTION === */
.why-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 70%);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-subtitle { margin-bottom: 16px; }
.why-text .section-title { margin-bottom: 32px; }

.why-text p {
  color: var(--gray-3);
  line-height: 1.8;
  margin-bottom: 40px;
}

.why-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.why-feature {
  background: var(--dark-2);
  border: 1px solid var(--gray);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--yellow);
  transition: var(--transition);
}

.why-feature:hover::before {
  height: 100%;
}

.why-feature:hover {
  border-color: rgba(245,197,24,0.3);
  background: var(--dark-3);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,197,24,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.why-feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
}

.why-feature:hover .why-feature-icon {
  background: var(--yellow);
}

.why-feature:hover .why-feature-icon svg {
  color: var(--black);
}

.why-feature h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.why-feature p {
  font-size: 0.85rem;
  color: var(--gray-3);
  line-height: 1.6;
  margin: 0;
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 120px 0;
  background: var(--black-2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info .section-subtitle { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 32px; }

.contact-info p {
  color: var(--gray-3);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,197,24,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--yellow);
}

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.contact-item-text span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.contact-hours {
  background: var(--dark);
  border: 1px solid var(--gray);
  border-radius: var(--radius-md);
  padding: 24px;
}

.contact-hours h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray);
  font-size: 0.88rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--gray-3); }
.hours-row span:last-child { font-weight: 600; }
.hours-row.today span { color: var(--yellow); }

/* CONTACT CTA BOX */
.contact-cta-box {
  background: var(--dark);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.contact-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-3);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--dark-2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-2);
}

.form-group select option {
  background: var(--dark-3);
}

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

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

/* === MAP === */
.map-section {
  height: 400px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--yellow);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(0.8);
}

.map-overlay-info {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(10,10,10,0.95);
  border: 1px solid var(--yellow);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.map-overlay-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.map-overlay-info p {
  font-size: 0.82rem;
  color: var(--gray-3);
}

/* === FOOTER === */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gray);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-3);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--dark-3);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

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

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--gray-3);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-col ul li a::before {
  content: '›';
  color: var(--yellow);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.87rem;
  color: var(--gray-3);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-3);
}

.footer-bottom p span {
  color: var(--yellow);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--gray-3);
  transition: var(--transition);
}

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

/* === SERVICE MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

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

.modal-box {
  background: var(--dark);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: var(--transition);
  position: relative;
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--dark-3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--red);
  color: var(--white);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-media {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 40px;
}

.modal-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(245,197,24,0.1);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  border: 1px solid rgba(245,197,24,0.3);
  margin-bottom: 16px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.modal-desc {
  color: var(--gray-3);
  line-height: 1.8;
  margin-bottom: 28px;
}

.modal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--dark-3);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--gray-light);
}

.modal-feature svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
  flex-shrink: 0;
}

/* === FLOATING WHATSAPP === */
.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  cursor: pointer;
  transition: var(--transition);
  animation: pulse-wp 3s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  color: white;
}

@keyframes pulse-wp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* === NOTIFICATION === */
.notification {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--dark-2);
  border: 1px solid var(--gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 300px;
  transform: translateX(120%);
  transition: var(--transition-slow);
}

.notification.show {
  transform: translateX(0);
}

.notification.success { border-left: 4px solid var(--green); }
.notification.error { border-left: 4px solid var(--red); }

.notification svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.notification.success svg { color: var(--green); }
.notification.error svg { color: var(--red); }

.notification span {
  font-size: 0.9rem;
  color: var(--white);
  flex: 1;
}

/* === LOADING ANIMATION === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--dark);
  border-left: 1px solid var(--gray);
  z-index: 1500;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-light);
  border-bottom: 1px solid var(--gray);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--yellow);
  padding-left: 8px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--gray); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-text {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .nav-phone { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-stats { gap: 24px; }

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

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

  .tires-filter-bar {
    gap: 8px;
  }

  .tires-search {
    margin-left: 0;
    width: 100%;
  }

  .tires-search input {
    width: 100%;
  }

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

  .why-features,
  .video-features {
    grid-template-columns: 1fr;
  }

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

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

  .contact-form-wrap {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* === TIRES CTA SECTION (Ana sayfa) === */
.tires-cta-section {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  position: relative;
  overflow: hidden;
}

.tires-cta-section::before {
  content: '';
  position: absolute;
  left: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.tires-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.tires-cta-left {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex: 1;
  min-width: 280px;
}

.tires-cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(245,197,24,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
  border: 1px solid rgba(245,197,24,0.2);
}

.tires-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tires-cta-inner { flex-direction: column; align-items: flex-start; }
  .tires-cta-right { width: 100%; }
  .tires-cta-right .btn { width: 100%; justify-content: center; }
}

