/* ============================================
   AYS MÜHENDİSLİK - PREMIUM TASARIM SİSTEMİ
   v1.0 - Always Marka + B2B Bayi Merkezi
   ============================================ */

/* === RENK PALETİ - YUMUŞAK YEŞİL + SICAK TURUNCU === */
:root {
  /* Ana Marka - Yumuşak Doğa Yeşili */
  --ays-primary: #2D8659;        /* Orman Yeşili - güven & doğa */
  --ays-primary-dark: #1F6242;   /* Koyu Yeşil - hover/koyu alanlar */
  --ays-primary-light: #4FAB7C;  /* Açık Yeşil - vurgu */
  --ays-primary-soft: #E8F5EF;   /* Çok açık yeşil - arkaplan */
  
  /* Vurgu - Sıcak Turuncu */
  --ays-accent: #F08C3D;          /* Sıcak Turuncu - dikkat */
  --ays-accent-dark: #D67524;     /* Koyu Turuncu */
  --ays-accent-light: #FFA968;    /* Açık Turuncu */
  --ays-accent-soft: #FFF4E8;     /* Çok açık turuncu */
  
  /* İkincil Renkler */
  --ays-gold: #E8A93D;             /* Sarı-Altın - premium dokunuş */
  --ays-mint: #5FBFA0;             /* Nane - su hissi */
  --ays-coral: #FF7A59;            /* Mercan - canlı vurgu */
  --ays-green: #2D8659;            /* Eski uyumluluk */
  
  /* Nötr Tonlar - Yumuşak/Sıcak */
  --ays-bg: #FFFFFF;
  --ays-bg-alt: #FAFBF9;           /* Hafif sıcak beyaz */
  --ays-bg-warm: #FDF8F3;          /* Krem - sıcak ton */
  --ays-bg-soft: #F4F8F5;          /* Hafif yeşil ton */
  --ays-bg-dark: #1A2A23;          /* Koyu yeşil-siyah */
  --ays-text: #1F2D26;             /* Koyu yeşil-siyah */
  --ays-text-light: #4A5950;       /* Yumuşak gri-yeşil */
  --ays-text-mute: #748079;        /* Açık gri-yeşil */
  --ays-border: #E5EBE7;           /* Çok açık yeşil border */
  
  /* Sistem */
  --ays-success: #00A86B;
  --ays-warning: #F39C12;
  --ays-danger: #E74C3C;
  
  /* Gölgeler */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  
  /* Geçişler */
  --t-fast: 0.2s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.5s ease;
  
  /* Spacing */
  --container: 1280px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ays-text);
  background: var(--ays-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--ays-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--ays-accent);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* === TİPOGRAFİ === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--ays-text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  margin-bottom: 1rem;
}

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

/* === BUTONLAR === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--t-base);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--ays-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

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

.btn-accent:hover {
  background: var(--ays-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--ays-accent) 0%, var(--ays-accent-dark) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(240, 140, 61, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--ays-accent-dark) 0%, var(--ays-accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240, 140, 61, 0.4);
  color: white;
}

.btn-orange {
  background: linear-gradient(135deg, var(--ays-accent) 0%, var(--ays-accent-dark) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(240, 140, 61, 0.3);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240, 140, 61, 0.4);
  color: white;
}

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

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1EA952;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* === HEADER === */
.topbar {
  background: var(--ays-primary-dark);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.topbar-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.9);
}

.topbar-item:hover {
  color: white;
}

.topbar-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.topbar-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  transition: color var(--t-fast);
}

.topbar-link:hover {
  color: var(--ays-gold);
}

.header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base);
}

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

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ays-primary);
}


.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-image .logo-img {
  filter: brightness(0) invert(1);
  max-width: 70%;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--ays-primary) 0%, var(--ays-mint) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(45, 134, 89, 0.25);
}

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

.logo-text strong {
  font-size: 1.25rem;
  color: var(--ays-primary);
  letter-spacing: -0.02em;
}

.logo-text small {
  font-size: 0.7rem;
  color: var(--ays-text-mute);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.6rem 1rem;
  color: var(--ays-text);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all var(--t-fast);
}

.nav-link:hover {
  color: var(--ays-primary);
  background: var(--ays-bg-alt);
}

.nav-link.active {
  color: var(--ays-primary);
  background: var(--ays-bg-alt);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-base);
  list-style: none;
  border: 1px solid var(--ays-border);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.6rem 0.75rem;
  color: var(--ays-text);
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all var(--t-fast);
}

.dropdown-link:hover {
  background: var(--ays-bg-alt);
  color: var(--ays-primary);
  padding-left: 1rem;
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ays-primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, 
    var(--ays-primary-dark) 0%, 
    var(--ays-primary) 35%, 
    var(--ays-primary-light) 75%,
    var(--ays-mint) 100%);
  color: white;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 75% 25%, rgba(240, 140, 61, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 25% 75%, rgba(232, 169, 61, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(95, 191, 160, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--ays-bg) 0%, transparent 100%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--ays-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 4px rgba(240, 140, 61, 0.2);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  color: var(--ays-accent-light);
  display: inline-block;
  position: relative;
  background: linear-gradient(120deg, var(--ays-accent) 0%, var(--ays-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  max-width: 600px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

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

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ays-accent-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: linear-gradient(135deg, rgba(240, 140, 61, 0.12), rgba(45, 134, 89, 0.08));
  color: var(--ays-accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(240, 140, 61, 0.2);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--ays-text);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--ays-text-light);
  line-height: 1.7;
}

/* === FEATURES (Why Us) === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ays-border);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--ays-accent);
  transition: height var(--t-base);
}

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

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--ays-primary) 0%, var(--ays-mint) 100%);
  color: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(45, 134, 89, 0.25);
  transition: all var(--t-base);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--ays-accent) 0%, var(--ays-accent-light) 100%);
  box-shadow: 0 8px 20px rgba(240, 140, 61, 0.35);
  transform: scale(1.05) rotate(-3deg);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ays-text);
}

.feature-desc {
  color: var(--ays-text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === BRAND SHOWCASE === */
.brand-showcase {
  background: var(--ays-bg-alt);
  position: relative;
  overflow: hidden;
}

.brand-showcase::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 139, 61, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.brand-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--ays-text);
}

.brand-features {
  list-style: none;
  margin: 1.5rem 0;
}

.brand-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--ays-text);
  font-size: 1rem;
  border-bottom: 1px dashed var(--ays-border);
}

.brand-features li:last-child {
  border-bottom: none;
}

.brand-features li::before {
  content: '✓';
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--ays-primary) 0%, var(--ays-mint) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.9rem;
  box-shadow: 0 3px 8px rgba(45, 134, 89, 0.25);
}

.brand-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: 
    radial-gradient(circle at 20% 30%, rgba(240, 140, 61, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(95, 191, 160, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, var(--ays-primary-dark) 0%, var(--ays-primary) 50%, var(--ays-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-image-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  color: var(--ays-text);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

/* === PRODUCTS === */
.products-section {
  background: white;
}

.products-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.product-tab {
  padding: 0.75rem 1.5rem;
  background: var(--ays-bg-alt);
  border: 2px solid transparent;
  border-radius: 100px;
  color: var(--ays-text);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  font-size: 0.9rem;
}

.product-tab:hover {
  background: white;
  border-color: var(--ays-primary);
}

.product-tab.active {
  background: var(--ays-primary);
  color: white;
  border-color: var(--ays-primary);
}

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

.product-card {
  background: white;
  border: 1px solid var(--ays-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--ays-accent);
}

.product-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

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

.product-image-placeholder {
  font-size: 4rem;
  color: var(--ays-primary);
  opacity: 0.3;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ays-gold);
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-info {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat {
  font-size: 0.75rem;
  color: var(--ays-text-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ays-text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  flex: 1;
}

.product-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ays-primary);
  margin-bottom: 1rem;
}

.product-price .price-old {
  font-size: 0.9rem;
  color: var(--ays-text-mute);
  text-decoration: line-through;
  font-weight: 500;
  margin-right: 0.5rem;
}

.product-cta {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: var(--ays-bg-alt);
  color: var(--ays-primary);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--t-fast);
}

.product-card:hover .product-cta {
  background: var(--ays-primary);
  color: white;
}

/* === DEALER NETWORK === */
.dealers-section {
  background: linear-gradient(135deg, 
    var(--ays-primary-dark) 0%, 
    var(--ays-primary) 50%, 
    var(--ays-primary-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.dealers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 30%, rgba(240, 140, 61, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(95, 191, 160, 0.20) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(232, 169, 61, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.dealers-section .section-header {
  position: relative;
  z-index: 2;
}

.dealers-section .section-tag {
  background: rgba(240, 140, 61, 0.20);
  color: var(--ays-accent-light);
  border-color: rgba(240, 140, 61, 0.4);
}

.dealers-section .section-title,
.dealers-section .section-desc {
  color: white;
}

.dealers-section .section-desc {
  color: rgba(255,255,255,0.85);
}

.dealers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  position: relative;
  z-index: 2;
}

.dealer-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--t-base);
}

.dealer-stat:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: rgba(240, 140, 61, 0.5);
}

.dealer-stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ays-accent-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(240, 140, 61, 0.3);
}

.dealer-stat-label {
  font-size: 1rem;
  color: white;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.dealer-stat-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.dealers-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* === BRANCHES === */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.branch-card {
  background: white;
  border: 2px solid var(--ays-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--t-base);
  cursor: pointer;
}

.branch-card:hover {
  border-color: var(--ays-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.branch-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--ays-primary) 0%, var(--ays-mint) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 16px rgba(45, 134, 89, 0.25);
  transition: all var(--t-base);
}

.branch-card:hover .branch-icon {
  background: linear-gradient(135deg, var(--ays-accent) 0%, var(--ays-accent-light) 100%);
  box-shadow: 0 8px 20px rgba(240, 140, 61, 0.35);
  transform: scale(1.05);
}

.branch-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ays-text);
  margin-bottom: 0.5rem;
}

.branch-info {
  color: var(--ays-text-light);
  font-size: 0.9rem;
}

/* === REFERANSLAR === */
.references-section {
  background: var(--ays-bg-alt);
  padding: 4rem 0;
}

.ref-marquee {
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}

.ref-marquee::before,
.ref-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ref-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--ays-bg-alt), transparent);
}

.ref-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--ays-bg-alt), transparent);
}

.ref-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  align-items: center;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ref-logo {
  flex-shrink: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: white;
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--ays-text-mute);
  font-size: 1rem;
  min-width: 160px;
  transition: all var(--t-fast);
}

.ref-logo:hover {
  color: var(--ays-primary);
  transform: scale(1.05);
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ays-border);
  position: relative;
  transition: all var(--t-base);
}

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

.testimonial-stars {
  color: var(--ays-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ays-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ays-primary) 0%, var(--ays-mint) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(45, 134, 89, 0.25);
}

.testimonial-name {
  font-weight: 700;
  color: var(--ays-text);
  font-size: 0.95rem;
}

.testimonial-loc {
  font-size: 0.8rem;
  color: var(--ays-text-mute);
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, 
    var(--ays-accent-dark) 0%, 
    var(--ays-accent) 50%, 
    var(--ays-accent-light) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.95);
}

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

.cta-section .btn-primary {
  background: white;
  color: var(--ays-primary);
}

.cta-section .btn-primary:hover {
  background: var(--ays-primary);
  color: white;
}

/* === FOOTER === */
.footer {
  background: var(--ays-bg-dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text strong {
  color: white;
  font-size: 1.5rem;
}

.footer-brand .logo-text small {
  color: var(--ays-gold);
}

.footer-about {
  margin: 1.5rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-contact {
  list-style: none;
  margin-top: 1.5rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.footer-contact .ico {
  color: var(--ays-gold);
  flex-shrink: 0;
  width: 20px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--ays-gold);
  border-radius: 100px;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  padding: 0.4rem 0;
}

.footer-list a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-list a:hover {
  color: var(--ays-gold);
  padding-left: 0.5rem;
}

.footer-list a::before {
  content: '›';
  color: var(--ays-gold);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--ays-gold);
  transform: translateY(-3px);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

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

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--t-base);
  animation: wa-pulse 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 20px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.2); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    transform: translateY(-150%);
    transition: transform var(--t-base);
    align-items: stretch;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-link {
    padding: 0.875rem 1rem;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    background: var(--ays-bg-alt);
    margin-top: 0.5rem;
    display: none;
  }

  .nav-item.open .dropdown {
    display: block;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta .btn:not(.btn-whatsapp) {
    display: none;
  }

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

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

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

@media (max-width: 640px) {
  .topbar-left {
    width: 100%;
    justify-content: center;
  }
  
  .topbar-right {
    display: none;
  }

  .section {
    padding: 3rem 0;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3rem 0;
  }

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

  .hero-cta .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .wa-float {
    width: 54px;
    height: 54px;
    bottom: 16px;
    right: 16px;
    font-size: 1.5rem;
  }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-primary { color: var(--ays-primary); }
.text-gold { color: var(--ays-gold); }
.text-white { color: white; }
.bg-light { background: var(--ays-bg-alt); }
.bg-dark { background: var(--ays-bg-dark); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========================================
   INNER SAYFA BİLEŞENLERİ
   ======================================== */

/* === PAGE HEADER (Sayfa başlığı) === */
.page-header {
  position: relative;
  background: linear-gradient(135deg, 
    var(--ays-primary-dark) 0%, 
    var(--ays-primary) 50%, 
    var(--ays-primary-light) 100%);
  color: white;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 75% 25%, rgba(240, 140, 61, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(95, 191, 160, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--ays-bg) 0%, transparent 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: white;
}

.breadcrumb a {
  color: rgba(255,255,255,0.8);
  transition: color var(--t-fast);
}

.breadcrumb a:hover {
  color: var(--ays-accent-light);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.5);
  margin: 0 0.25rem;
}

/* === CONTENT SECTIONS === */
.content-section {
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.content-main {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ays-text);
}

.content-main h2 {
  color: var(--ays-primary-dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--ays-accent);
  display: inline-block;
}

.content-main h3 {
  color: var(--ays-primary);
  margin: 2rem 0 1rem;
}

.content-main p {
  margin-bottom: 1.25rem;
  color: var(--ays-text-light);
}

.content-main ul, .content-main ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.content-main li {
  margin-bottom: 0.5rem;
  color: var(--ays-text-light);
}

.content-main blockquote {
  border-left: 4px solid var(--ays-accent);
  background: var(--ays-accent-soft);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--ays-text);
}

.sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-card {
  background: white;
  border: 1px solid var(--ays-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
  font-size: 1.1rem;
  color: var(--ays-primary-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ays-primary-soft);
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li {
  border-bottom: 1px dashed var(--ays-border);
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list a {
  display: block;
  padding: 0.75rem 0;
  color: var(--ays-text);
  font-size: 0.95rem;
  transition: all var(--t-fast);
}

.sidebar-list a:hover {
  color: var(--ays-accent);
  padding-left: 0.5rem;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--ays-accent) 0%, var(--ays-accent-dark) 100%);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 1.5rem;
}

.sidebar-cta h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.sidebar-cta p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.95);
}

/* === ALWAYS BRAND PAGE === */
.always-hero {
  position: relative;
  background: 
    radial-gradient(circle at 30% 50%, rgba(240, 140, 61, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(95, 191, 160, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, var(--ays-primary-dark) 0%, var(--ays-primary) 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.always-logo-display {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(120deg, white 0%, var(--ays-accent-light) 50%, white 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
}

.always-tagline {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.always-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.always-meta-item {
  text-align: center;
}

.always-meta-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ays-accent-light);
  line-height: 1;
}

.always-meta-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* === MODELS GRID === */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.model-card {
  background: white;
  border: 1px solid var(--ays-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base);
  position: relative;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--ays-accent);
}

.model-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ays-primary-soft), var(--ays-bg-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ays-primary);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
}

.model-info {
  padding: 1.5rem;
}

.model-series {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ays-accent-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.model-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ays-primary-dark);
  margin-bottom: 0.5rem;
}

.model-desc {
  color: var(--ays-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.model-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.model-spec {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ays-primary-soft);
  color: var(--ays-primary-dark);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.model-prices {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px dashed var(--ays-border);
}

.model-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--ays-text-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ays-primary-dark);
}

.price-orange {
  color: var(--ays-accent-dark);
}

/* === TURKEY MAP === */
.turkey-map-container {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.city-card {
  background: var(--ays-primary-soft);
  border: 2px solid transparent;
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--t-fast);
  cursor: pointer;
  position: relative;
}

.city-card.has-dealer {
  background: linear-gradient(135deg, var(--ays-primary) 0%, var(--ays-mint) 100%);
  color: white;
}

.city-card.has-dealer:hover {
  background: linear-gradient(135deg, var(--ays-accent) 0%, var(--ays-accent-light) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(240, 140, 61, 0.3);
}

.city-card:not(.has-dealer):hover {
  border-color: var(--ays-accent);
  transform: translateY(-3px);
}

.city-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.city-info {
  font-size: 0.75rem;
  opacity: 0.85;
}

.city-card.has-dealer .city-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--ays-accent);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid white;
}

/* === FORM === */
.form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ays-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: var(--ays-text);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-label .required {
  color: var(--ays-accent-dark);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--ays-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--ays-bg-alt);
  color: var(--ays-text);
  transition: all var(--t-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--ays-accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(240, 140, 61, 0.1);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23748079' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.form-help {
  font-size: 0.8rem;
  color: var(--ays-text-mute);
  margin-top: 0.4rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.form-check input {
  margin-top: 0.2rem;
  accent-color: var(--ays-accent);
  width: 18px;
  height: 18px;
}

.form-check label {
  font-size: 0.9rem;
  color: var(--ays-text-light);
  cursor: pointer;
  line-height: 1.5;
}

/* === BENEFITS GRID (Bayilik avantajları) === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  border: 2px solid var(--ays-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--t-base);
  position: relative;
}

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

.benefit-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--ays-accent) 0%, var(--ays-accent-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(240, 140, 61, 0.3);
}

.benefit-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--ays-primary), var(--ays-mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.benefit-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ays-text);
  margin-bottom: 0.75rem;
}

.benefit-desc {
  color: var(--ays-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === TIMELINE === */
.timeline {
  position: relative;
  margin: 3rem 0;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--ays-primary), var(--ays-accent));
  border-radius: 2px;
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 24px;
  height: 24px;
  background: white;
  border: 4px solid var(--ays-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--ays-accent-soft);
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--ays-accent) 0%, var(--ays-accent-dark) 100%);
  color: white;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  box-shadow: 0 3px 8px rgba(240, 140, 61, 0.25);
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ays-primary-dark);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--ays-text-light);
  line-height: 1.7;
}

/* === BRANCH DETAIL === */
.branch-hero {
  background: linear-gradient(135deg, var(--ays-primary-dark), var(--ays-primary));
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.branch-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(240, 140, 61, 0.25) 0%, transparent 60%);
}

.branch-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.info-list {
  list-style: none;
  margin: 1.5rem 0;
}

.info-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ays-border);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--ays-primary-soft);
  color: var(--ays-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.info-content {
  flex: 1;
}

.info-label {
  font-size: 0.8rem;
  color: var(--ays-text-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.info-value {
  color: var(--ays-text);
  font-weight: 600;
}

.info-value a {
  color: var(--ays-text);
}

.info-value a:hover {
  color: var(--ays-accent);
}

/* === MAP EMBED === */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ays-bg-alt);
  aspect-ratio: 4/3;
  border: 1px solid var(--ays-border);
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .branch-info-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .always-meta {
    gap: 1rem;
  }
  
  .always-meta-item {
    flex: 1;
    min-width: 100px;
  }
  
  .form-wrap {
    padding: 1.5rem;
  }
}

/* ============================================
   V8 GELİŞTİRMELER - Nisan 2026
   ============================================ */

/* === ÜRÜN KARTI - Daha Canlı Hover === */
.product-card {
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.product-image img {
  transition: transform 0.4s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.06);
}

/* === HERO - Ürün Resmi Alanı İyileştirildi === */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(45,134,89,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* === MARKA GRID - Ürün Önizleme === */
.brand-grid {
  align-items: center;
}

/* === FEATURe CARD - İkon Rengi İyileştirme === */
.feature-icon {
  background: linear-gradient(135deg, var(--ays-primary-soft), rgba(240,140,61,0.08));
  border: 1px solid var(--ays-border);
}

/* === ÜRÜN BADGE - Daha Canlı === */
.product-badge {
  background: linear-gradient(135deg, var(--ays-accent), var(--ays-accent-dark));
  font-size: .8rem;
  letter-spacing: .02em;
}

/* === SIDEBAR ÜRÜN GALERİSİ - Thumbnail Hover === */
.sidebar img[onclick] {
  transition: all .2s ease;
}
.sidebar img[onclick]:hover {
  border-color: var(--ays-accent) !important;
  transform: scale(1.05);
}

/* === ALWAYS MARKA BÖLÜMÜ - Ürün Grid === */
.brand-image a:hover img {
  transform: scale(1.08);
}
.brand-image a {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.brand-image a:hover {
  box-shadow: 0 6px 20px rgba(45,134,89,0.15);
}

/* === MODEL KART - İyileştirilmiş === */
.model-card {
  transition: all var(--t-base);
}
.model-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ays-primary-light);
}

/* === BAYI KARTLARI === */
.branch-card {
  transition: all var(--t-base);
}
.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* === FOOTER - Alt Ayraç İyileştirme === */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* === ANIMATE ON SCROLL - Hafif Görünüm === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-card,
.feature-card,
.branch-card,
.model-card {
  animation: fadeInUp 0.5s ease both;
}

/* === WHATSAPP FLOAT - Pulse Efekti === */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-float {
  position: relative;
}

/* === BREADCRUMB - Daha Görünür === */
.breadcrumb a {
  color: rgba(255,255,255,0.85);
}
.breadcrumb a:hover {
  color: white;
  text-decoration: underline;
}

/* === SIDEBAR CTA - Daha Vurgulu === */
.sidebar-cta {
  background: linear-gradient(135deg, #128C7E, #25D366);
}

/* === PAGE HEADER - Gradient İyileştirme === */
.page-header {
  background: linear-gradient(135deg, var(--ays-primary-dark) 0%, var(--ays-primary) 50%, var(--ays-primary-light) 100%);
}

/* === SECTION TAG - Turuncu Nokta === */
.section-tag::before {
  content: '●';
  margin-right: .4rem;
  color: var(--ays-accent);
  font-size: .7rem;
}

/* === RESPONSIVE BRAND GRID FIX === */
@media (max-width: 768px) {
  .brand-image > div {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* === ÜRÜN FİYAT - Daha Dikkat Çekici === */
.product-price {
  background: linear-gradient(135deg, rgba(240,140,61,0.95), rgba(214,117,36,0.95));
  font-weight: 700;
  letter-spacing: .01em;
}

/* === CTA HOVER - Turuncu Buton === */
.product-cta:hover {
  background: var(--ays-primary);
  color: white;
  transform: translateX(0);
}
