/* ===== HERO WITH FORM ===== */
.hero {
  position: relative;
  min-height: 720px;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 56px) 0 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 55%, var(--primary) 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(13,110,110,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(232,97,45,0.12) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content-form {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: center;
}

.hero-left { color: white; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 13px; font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.6s var(--ease) both;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800;
  line-height: 1.15; letter-spacing: -0.5px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s var(--ease) 0.1s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px; line-height: 1.7; opacity: 0.8;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s var(--ease) 0.2s both;
}
.hero-stats {
  display: flex; gap: 32px;
  animation: fadeInUp 0.6s var(--ease) 0.25s both;
}
.hero-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; }
.hero-stat-label { font-size: 13px; opacity: 0.6; }

/* ===== HERO FORM CARD ===== */
.hero-right { animation: fadeInUp 0.6s var(--ease) 0.3s both; }

.hero-form-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.hero-form-header {
  background: var(--primary);
  padding: 20px 28px;
  color: white;
}
.hero-form-header h2 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  margin-bottom: 4px;
}
.hero-form-header p { font-size: 13px; opacity: 0.85; }

.hero-form-body { padding: 24px 28px 28px; }

.hf-row { margin-bottom: 16px; }
.hf-row-2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.hf-group label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--dark-700);
  margin-bottom: 6px;
}
.hf-group label .req { color: var(--accent); }

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

.hf-select, .hf-input {
  width: 100%;
  padding: 10px 12px;
  background: var(--light-100);
  border: 1.5px solid var(--light-300);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--dark);
  outline: none;
  transition: all 0.2s;
  appearance: none;
}
.hf-select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23546E7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}
.hf-select:disabled { opacity: 0.5; cursor: not-allowed; }
.hf-select:focus, .hf-input:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px var(--primary-ghost);
}
.hf-input::placeholder { color: var(--dark-100); }

/* Ev tipi chip'leri */
.hf-home-types {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hf-chip {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--light-300);
  background: white;
  font-size: 13px; font-weight: 600;
  color: var(--dark-500);
  cursor: pointer;
  transition: all 0.2s;
}
.hf-chip:hover { border-color: var(--primary); color: var(--primary); }
.hf-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.hf-submit {
  margin-top: 4px;
  font-size: 16px;
  padding: 14px 24px;
}

.hf-privacy {
  display: flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-size: 12px; color: var(--dark-100);
  justify-content: center;
}
.hf-privacy svg { color: var(--dark-100); }

/* ===== SECTIONS ===== */
.section { padding: 32px 0; }
.section-header { text-align: center; margin-bottom: 20px; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.section-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--dark); line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 6px; }
.section-desc { font-size: 14px; color: var(--dark-300); max-width: 560px; margin: 0 auto; line-height: 1.6; }

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

/* How it works */
.how-it-works { background: var(--light-100); }
.steps-visual { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { text-align: center; padding: 24px 20px; }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--primary-ghost); line-height: 1; margin-bottom: 10px; position: relative; }
.step-num::after { content: ''; position: absolute; bottom: 4px; left: 50%; width: 32px; height: 4px; background: var(--accent); border-radius: 2px; transform: translateX(-50%); }
.step-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--dark-300); line-height: 1.6; }

/* CTA */
/* ===== LOGO SHOWCASE ===== */
.logo-showcase {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--light-100) 0%, white 100%);
}
.logo-showcase-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.logo-showcase-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.08));
  transition: transform 0.4s ease;
}
.logo-showcase-img:hover { transform: scale(1.03); }
.logo-showcase-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-300);
  letter-spacing: 0.5px;
}
.logo-showcase-text span {
  color: var(--primary);
  font-style: italic;
}

@media (max-width: 768px) {
  .logo-showcase { padding: 32px 0; }
  .logo-showcase-img { max-width: 240px; }
  .logo-showcase-text { font-size: 15px; }
}

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); border-radius: var(--radius-xl); padding: 40px; text-align: center; color: white; position: relative; overflow: hidden; margin: 0 24px; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%); }
.cta-section h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; margin-bottom: 8px; position: relative; }
.cta-section p { font-size: 15px; opacity: 0.85; margin-bottom: 20px; position: relative; }
.cta-actions { position: relative; display: flex; gap: 14px; justify-content: center; }

/* ===== SERVICES HOME GRID ===== */
.services-home-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-home-card {
  display: flex; gap: 20px; padding: 24px;
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--light-200);
  transition: all 0.3s var(--ease);
}
.service-home-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.shc-icon { font-size: 48px; flex-shrink: 0; width: 72px; height: 72px; background: rgba(26,175,160,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.shc-content h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.shc-content p { font-size: 14px; color: var(--dark-300); line-height: 1.7; margin-bottom: 12px; }
.shc-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.shc-features span { font-size: 12px; font-weight: 600; color: #1AAFA0; background: rgba(26,175,160,0.1); padding: 4px 10px; border-radius: var(--radius-full); }

/* ===== ROUTES GRID ===== */
.routes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.route-card {
  display: block; padding: 20px;
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--light-200);
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.route-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--primary); }
.route-badge { position: absolute; top: 8px; right: 8px; font-size: 11px; font-weight: 600; background: var(--accent-ghost); color: var(--accent); padding: 2px 8px; border-radius: var(--radius-full); }
.route-cities { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.route-from, .route-to { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.route-arrow { color: var(--primary); font-size: 16px; }
.route-info { display: flex; justify-content: space-between; align-items: center; }
.route-price { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--primary); }
.route-time { font-size: 12px; color: var(--dark-300); }

/* ===== STATS BANNER ===== */
.stats-banner { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; text-align: center; color: white; }
.stat-item { padding: 8px; }
.stat-icon { width: 52px; height: 52px; margin: 0 auto 10px; background: rgba(255,255,255,0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; margin-bottom: 4px; }
.stat-text { font-size: 13px; opacity: 0.75; }

/* ===== REVIEWS GRID ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--light-200);
  padding: 20px; transition: all 0.3s var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 44px; height: 44px; background: var(--primary); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 15px; }
.review-route { font-size: 12px; color: var(--dark-300); }
.review-stars { margin-left: auto; color: #F2C94C; font-size: 14px; letter-spacing: 1px; flex-shrink: 0; }
.review-text { font-size: 14px; color: var(--dark-500); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.review-bottom { display: flex; justify-content: space-between; font-size: 12px; color: var(--dark-100); border-top: 1px solid var(--light-200); padding-top: 12px; }
.review-company { color: var(--dark-300); font-weight: 500; }

/* ===== GUIDE GRID ===== */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.guide-card {
  background: white; border-radius: var(--radius-lg);
  padding: 20px; border: 1px solid var(--light-200);
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide-num { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--primary-ghost); position: absolute; top: 16px; right: 20px; line-height: 1; }
.guide-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 10px; padding-right: 40px; }
.guide-card p { font-size: 13px; color: var(--dark-300); line-height: 1.7; }

/* ===== PRICE TABLE ===== */
.price-table-wrapper { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table thead { background: var(--primary); color: white; }
.price-table th { padding: 16px 20px; font-size: 14px; font-weight: 600; text-align: center; }
.price-table th small { font-weight: 400; opacity: 0.8; }
.price-table td { padding: 14px 20px; text-align: center; font-size: 14px; border-bottom: 1px solid var(--light-200); }
.price-table tbody tr:hover td { background: var(--primary-ghost); }
.price-table td:first-child { text-align: left; font-size: 15px; }
.price-note { margin-top: 16px; font-size: 13px; color: var(--dark-300); text-align: center; }
.price-note a { color: var(--primary); font-weight: 600; }

/* ===== CITIES GRID ===== */
.cities-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.city-chip {
  padding: 10px 20px; background: white;
  border-radius: var(--radius-full); border: 1px solid var(--light-300);
  font-size: 14px; font-weight: 500; color: var(--dark-500);
  transition: all 0.2s;
}
.city-chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-ghost); }
.city-chip-more { background: var(--primary); color: white; border-color: var(--primary); font-weight: 600; }
.city-chip-more:hover { background: var(--primary-dark); color: white; }

/* ===== FAQ ===== */
.faq-list { margin: 0 auto; }
.faq-item {
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--light-200);
  margin-bottom: 10px; overflow: hidden;
  cursor: pointer; transition: all 0.2s;
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; font-weight: 600; font-size: 15px; }
.faq-arrow { transition: transform 0.3s; flex-shrink: 0; color: var(--dark-300); }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 18px; }
.faq-answer p { font-size: 14px; color: var(--dark-300); line-height: 1.7; }

/* ===== BLOG HOME GRID ===== */
.blog-home-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.blog-home-card { background: white; border-radius: var(--radius-lg); border: 1px solid var(--light-200); overflow: hidden; transition: all 0.3s var(--ease); }
.blog-home-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.bhc-image { height: 140px; background: linear-gradient(135deg, var(--primary-ghost), var(--light-200)); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.bhc-content { padding: 20px; }
.bhc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.bhc-date { font-size: 12px; color: var(--dark-100); }
.bhc-content h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.bhc-content p { font-size: 13px; color: var(--dark-300); line-height: 1.6; }

/* ===== SEO BLOCK ===== */
/* ===== FIRMA PROFILE ===== */
.firma-profile-page { padding-top: calc(var(--header-h) + 24px); padding-bottom: 48px; }
.firma-profile-header {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.firma-profile-logo {
  width: 100px; height: 100px;
  border-radius: 20px;
  background: var(--light-100);
  border: 2px solid var(--light-200);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.firma-profile-info { flex: 1; min-width: 0; }
.firma-profile-info h1 { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 2px; }
.firma-profile-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--dark-300); margin-top: 6px; }

@media (max-width: 768px) {
  .firma-profile-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .firma-profile-logo { width: 80px; height: 80px; }
  .firma-profile-info h1 { font-size: 20px; }
}

/* ===== LIVE REQUESTS ===== */
.live-requests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.live-req-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--light-200);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.2s;
  position: relative;
}
.live-req-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.live-req-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes clickAnim {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-3px) scale(1.15); opacity: 0.8; }
}
.live-req-body { flex: 1; min-width: 0; }
.live-req-route {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-req-user {
  font-size: 12px;
  color: var(--dark-300);
  margin-bottom: 4px;
}
.live-req-status {
  font-size: 12px;
  font-weight: 600;
}
.live-req-time {
  font-size: 11px;
  color: var(--dark-100);
  white-space: nowrap;
}
.live-req-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.live-req-offer-btn {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-ghost);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all 0.2s;
}
.live-req-offer-btn:hover {
  background: var(--accent);
  color: white;
}

@media (max-width: 1024px) {
  .live-requests-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .live-requests-grid { grid-template-columns: 1fr; }
}

.seo-block { padding: 32px 0; }
.seo-content { max-width: 900px; margin: 0 auto; }
.seo-content h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.seo-content p { font-size: 15px; color: var(--dark-300); line-height: 1.8; margin-bottom: 14px; }

/* Teklif Al */
.quote-page { padding-top: calc(var(--header-h) + 40px); min-height: 100vh; }
.quote-form-container { max-width: 720px; margin: 0 auto; }
.quote-form-card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.quote-form-header { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; padding: 32px; }
.quote-form-header h1 { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.quote-form-header p { opacity: 0.8; font-size: 15px; }
.quote-form-body { padding: 32px; }

/* Firmalar */
.companies-page { padding-top: calc(var(--header-h) + 40px); min-height: 100vh; }
.companies-header { text-align: center; padding: 40px 0 32px; }
.companies-header h1 { font-family: var(--font-display); font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.companies-header p { color: var(--dark-300); font-size: 16px; margin-bottom: 24px; }
.companies-grid { display: grid; gap: 16px; margin-top: 24px; }
.companies-filters { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.filter-chip { padding: 8px 18px; border-radius: var(--radius-full); border: 1.5px solid var(--light-300); font-size: 14px; font-weight: 500; background: white; cursor: pointer; transition: all 0.2s; }
.filter-chip:hover, .filter-chip.active { border-color: var(--primary); background: var(--primary-ghost); color: var(--primary); }

/* Auth */
.auth-page { padding-top: var(--header-h); min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--light-100); }
.auth-card { width: 100%; max-width: 440px; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px; }
.auth-card h2 { font-family: var(--font-display); font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 8px; }
.auth-card .auth-subtitle { text-align: center; color: var(--dark-300); font-size: 15px; margin-bottom: 32px; }
.auth-divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; color: var(--dark-100); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--light-300); }
.auth-switch { text-align: center; margin-top: 24px; font-size: 14px; color: var(--dark-300); }
.auth-switch a { color: var(--primary); font-weight: 600; }

/* İletişim */
.contact-page { padding-top: calc(var(--header-h) + 40px); min-height: 100vh; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; padding: 40px 0; align-items: start; }
.contact-info h1 { font-family: var(--font-display); font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.contact-info p { color: var(--dark-300); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 48px; height: 48px; background: var(--primary-ghost); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--dark-300); margin: 0; }

/* Canlı Takip */
.tracking-page { padding-top: calc(var(--header-h) + 40px); min-height: 100vh; }
.tracking-search { text-align: center; padding: 48px 0 32px; }
.tracking-search h1 { font-family: var(--font-display); font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.tracking-search p { color: var(--dark-300); margin-bottom: 24px; }
.tracking-map { height: 400px; background: var(--light-200); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--dark-300); border: 2px dashed var(--light-300); margin-top: 24px; }

/* Hizmetler */
.services-page { padding-top: calc(var(--header-h) + 40px); }
.services-hero { text-align: center; padding: 48px 0 32px; }
.services-hero h1 { font-family: var(--font-display); font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.service-detail-card { background: white; border-radius: var(--radius-lg); border: 1px solid var(--light-200); padding: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; align-items: center; margin-bottom: 32px; }
.service-detail-card:nth-child(even) { direction: rtl; }
.service-detail-card:nth-child(even) > * { direction: ltr; }
.service-detail-content h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.service-detail-content p { color: var(--dark-300); line-height: 1.7; margin-bottom: 20px; }
.service-visual { height: 280px; background: rgba(26,175,160,0.08); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 72px; }

/* ===== WIZARD FORM ===== */
.wizard-progress { margin-bottom: 32px; }
.wizard-bar { height: 6px; background: var(--light-200); border-radius: 3px; overflow: hidden; }
.wizard-bar-fill { height: 100%; background: var(--primary); border-radius: 3px; transition: width 0.4s var(--ease); }
.wizard-step-label { text-align: center; font-size: 13px; color: var(--dark-300); margin-top: 8px; font-weight: 500; }

.wizard-card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }

.wz-step { display: none; padding: 32px; }
.wz-step.active { display: block; animation: fadeInUp 0.3s var(--ease); }

.wz-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 24px; color: var(--dark); }

.wz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.wz-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--light-100);
  border: 2px solid var(--light-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 16px; font-weight: 500;
  transition: all 0.2s var(--ease);
}
.wz-option:hover { border-color: var(--primary-light); background: var(--primary-ghost); }
.wz-option.selected { border-color: var(--primary); background: rgba(13,110,110,0.06); }

.wz-option input { display: none; }
.wz-radio {
  width: 22px; height: 22px;
  border: 2px solid var(--light-300);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}
.wz-option.selected .wz-radio {
  border-color: var(--primary);
  background: var(--primary);
}
.wz-option.selected .wz-radio::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px;
  width: 10px; height: 10px;
  background: white;
  border-radius: 50%;
}

.wz-nav { display: flex; gap: 12px; margin-top: 24px; }

.wz-select { font-size: 16px; padding: 14px 16px; }

@media (max-width: 768px) {
  .wz-step { padding: 24px 18px; }
  .wz-title { font-size: 20px; margin-bottom: 18px; }
  .wz-option { padding: 14px 16px; font-size: 15px; }
  .wz-radio { width: 20px; height: 20px; }
  .wz-option.selected .wz-radio::after { top: 3px; left: 3px; width: 10px; height: 10px; }
}

/* ===== VERIFICATION CODE INPUTS ===== */
.verify-code-inputs {
  display: flex; gap: 10px; justify-content: center; margin: 20px 0;
}
.verify-digit {
  width: 52px; height: 60px;
  text-align: center; font-size: 24px; font-weight: 700;
  font-family: var(--font-display);
  border: 2px solid var(--light-300);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s;
}
.verify-digit:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,110,110,0.1); }

@media (max-width: 480px) {
  .verify-digit { width: 44px; height: 52px; font-size: 20px; }
  .verify-code-inputs { gap: 6px; }
}

/* ===== HERO WIZARD STEPS ===== */
.hf-step { display: none; }
.hf-step.active { display: block; animation: fadeInUp 0.25s var(--ease); }
.hf-progress { height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; margin-bottom: 16px; overflow: hidden; }
.hf-progress-fill { height: 100%; background: var(--accent); border-radius: 2px; transition: width 0.4s var(--ease); }
.hf-nav { display: flex; gap: 8px; margin-top: 16px; align-items: center; }
.hf-chips { display: flex; flex-wrap: wrap; gap: 6px; }

/* ===== HERO FORM RADIO OPTIONS ===== */
.hf-radios { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.hf-radio-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--light-100);
  border: 2px solid var(--light-200);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px; font-weight: 500; color: var(--dark);
  transition: all 0.2s;
}
.hf-radio-opt:hover { border-color: var(--primary-light); background: var(--primary-ghost); }
.hf-radio-opt.selected { border-color: var(--primary); background: rgba(13,110,110,0.06); }
.hf-radio-opt input { display: none; }
.hf-radio-dot {
  width: 20px; height: 20px;
  border: 2px solid var(--light-300);
  border-radius: 50%; flex-shrink: 0;
  position: relative; transition: all 0.2s;
}
.hf-radio-opt.selected .hf-radio-dot {
  border-color: var(--primary); background: var(--primary);
}
.hf-radio-opt.selected .hf-radio-dot::after {
  content: ''; position: absolute;
  top: 3px; left: 3px; width: 10px; height: 10px;
  background: white; border-radius: 50%;
}
.hf-question {
  display: block; font-size: 15px; font-weight: 700;
  color: var(--dark); margin-bottom: 12px;
}
.hf-step-info { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

@media (max-width: 768px) {
  .hf-radio-opt { padding: 10px 12px; font-size: 13px; }
  .hf-radio-dot { width: 18px; height: 18px; }
  .hf-radio-opt.selected .hf-radio-dot::after { top: 2px; left: 2px; width: 10px; height: 10px; }
  .hf-question { font-size: 14px; margin-bottom: 10px; }
  .verify-code-inputs { gap: 5px; }
  .verify-digit { width: 40px; height: 48px; font-size: 18px; }
}

/* FAQ Grid - masaüstünde yan yana */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) {
  .faq-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ===== TÜRKİYE HARİTASI ===== */
.turkey-map-section { overflow: hidden; }
.map-wrap { position: relative; max-width: 960px; margin: 0 auto; }
.map-svg-container { width: 100%; }
.map-svg-container svg { width: 100%; height: auto; display: block; }

/* Normal görünüm — beyaz zeminde yeşil tonları */
.map-il {
  fill: #E0F2F1;
  stroke: #0D6E6E;
  stroke-width: 0.6;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Firma olan iller */
.map-il.map-il-has {
  fill: #B2DFDB;
}

/* Hover — yeşil highlight */
.map-il.active {
  fill: #0D6E6E !important;
  stroke: #F07B2E;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px rgba(13,110,110,0.4));
}

/* Tooltip */
.map-tooltip {
  position: absolute;
  display: none;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
  min-width: 180px;
}
.map-tooltip.show { display: block; }

.map-tooltip.has-firma {
  background: white;
  border-left: 4px solid var(--primary);
}
.map-tooltip.has-firma .map-tooltip-city {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800;
  color: var(--dark); margin-bottom: 4px;
}
.mt-count { font-size: 14px; font-weight: 700; color: var(--primary); }

.map-tooltip.no-firma {
  background: var(--dark);
  border-left: 4px solid var(--accent);
}
.map-tooltip.no-firma .map-tooltip-city {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800;
  color: white; margin-bottom: 4px;
}
.mt-empty { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.mt-link { display: block; font-size: 12px; font-weight: 700; color: var(--accent); }

@media (max-width: 768px) {
  .map-wrap { padding: 0; }
  .map-il { stroke-width: 0.5; }
  .map-tooltip { min-width: 150px; padding: 10px 14px; }
}

/* Firma listesi maskelenmiş iletişim */
.company-contact-masked {
  display: flex; gap: 16px; margin-top: 6px;
  font-size: 13px; color: var(--dark-100);
}
.company-contact-masked span { letter-spacing: 0.5px; }

/* ============================================================
   HİZMETLER SAYFASI V2 - Grid layout with image cards
   ============================================================ */
.services-page-v2 {
  padding: 32px 0 60px;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
  min-height: calc(100vh - 200px);
}
.services-page-v2 .services-hero {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 40px;
}
.services-page-v2 .services-hero h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 14px;
  color: var(--dark-600);
}
.services-page-v2 .services-hero .section-desc {
  font-size: 16px;
  color: var(--dark-300);
  line-height: 1.7;
}

.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.service-card-v2 {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--light-200);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(13,110,110,0.12);
  border-color: var(--primary);
}
.service-card-v2.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(13,110,110,0.1);
}
.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--accent), #E06520);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(240,123,46,0.3);
}
.service-card-icon {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--primary-ghost) 0%, rgba(26,175,160,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-body {
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark-600);
}
.service-card-body p {
  color: var(--dark-300);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.service-features li {
  font-size: 13px;
  color: var(--dark-400);
  padding: 5px 0;
  line-height: 1.5;
  border-bottom: 1px dashed var(--light-200);
}
.service-features li:last-child {
  border-bottom: none;
}

/* SEO text block */
.services-seo-text {
  background: white;
  padding: 36px 32px;
  border-radius: 16px;
  margin: 40px 0;
  border: 1px solid var(--light-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.services-seo-text h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark-600);
}
.services-seo-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark-400);
  margin-bottom: 14px;
}
.services-features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.sf-item {
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: var(--primary-ghost);
  border-radius: 12px;
}
.sf-item .sf-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.sf-item strong {
  display: block;
  font-size: 14px;
  color: var(--dark-600);
  margin-bottom: 4px;
}
.sf-item span {
  font-size: 12px;
  color: var(--dark-300);
  line-height: 1.5;
}

/* CTA */
.services-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 18px;
  padding: 44px 28px;
  text-align: center;
  margin-top: 40px;
}
.services-cta h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}
.services-cta p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 24px;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .services-page-v2 .services-hero h1 { font-size: 28px; }
  .services-grid-v2 { grid-template-columns: 1fr; gap: 18px; }
  .services-seo-text { padding: 24px 20px; }
  .services-seo-text h2 { font-size: 22px; }
  .services-cta h2 { font-size: 22px; }
  .services-cta { padding: 32px 20px; }
}
