/* ===== 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; }

.service-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }

/* ===== 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 Ticker */
.live-ticker-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.live-ticker-track {
  display: flex;
  gap: 16px;
  animation: tickerScroll 35s linear infinite;
  width: max-content;
  padding: 4px 0 12px;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.live-req-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1px solid var(--light-200);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  position: relative;
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
}
.live-req-card:hover { box-shadow: var(--shadow-sm); }
.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; }
}
.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: 480px) {
  .live-req-card { min-width: 250px; max-width: 280px; padding: 14px 16px; }
  .live-ticker-track { animation-duration: 25s; }
}

/* ============================================================
   NETWORK HERO — "Siz ↔ Nakliyeciler" (canli-firsatlar sayfası)
   ============================================================ */
.network-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, #fff7f0 0%, #fff 55%, #fff4e6 100%);
  border: 1px solid rgba(240,123,46,0.12);
  border-radius: 24px;
  padding: 48px 40px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.network-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(240,123,46,0.06) 0%, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(26,175,160,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.network-hero-left { position: relative; z-index: 1; }
.network-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(240,123,46,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.network-hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}
.network-hero-highlight {
  color: var(--accent);
  position: relative;
}
.network-hero-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  background: rgba(240,123,46,0.18);
  z-index: -1;
  border-radius: 4px;
}
.network-hero-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark-300);
  margin-bottom: 24px;
  max-width: 520px;
}
.network-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.network-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.network-tick {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: #1AAFA0;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.network-hero-bullets li > div { display: flex; flex-direction: column; gap: 2px; }
.network-hero-bullets strong { font-size: 15px; font-weight: 700; color: var(--dark); }
.network-hero-bullets small { font-size: 13px; color: var(--dark-300); }
.network-hero-cta {
  font-size: 15px;
  padding: 14px 28px;
  box-shadow: 0 8px 24px rgba(240,123,46,0.25);
}
.network-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(240,123,46,0.35); }

/* Diagram */
.network-hero-right { position: relative; z-index: 1; display: flex; justify-content: center; }
.network-diagram {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
}
.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.net-line {
  stroke: #F07B2E;
  stroke-width: 2;
  stroke-dasharray: 6 8;
  stroke-linecap: round;
  opacity: 0.55;
  animation: netLineDash 4s linear infinite;
}
.net-line:nth-child(2) { animation-delay: 0.4s; }
.net-line:nth-child(3) { animation-delay: 0.8s; }
.net-line:nth-child(4) { animation-delay: 1.2s; }
.net-line:nth-child(5) { animation-delay: 1.6s; }
.net-line:nth-child(6) { animation-delay: 2.0s; }
@keyframes netLineDash {
  0%   { stroke-dashoffset: 0;   opacity: 0.35; }
  50%  { opacity: 0.75; }
  100% { stroke-dashoffset: -28; opacity: 0.35; }
}

.net-truck {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: scale(0.7);
  animation: netTruckEnter 0.6s cubic-bezier(0.22, 0.99, 0.32, 1) forwards,
             netTruckFloat 5s ease-in-out infinite;
}
.net-truck[data-delay="0"]   { animation-delay: 0.1s, 0.1s; }
.net-truck[data-delay="200"] { animation-delay: 0.3s, 0.3s; }
.net-truck[data-delay="400"] { animation-delay: 0.5s, 0.5s; }
.net-truck[data-delay="600"] { animation-delay: 0.7s, 0.7s; }
.net-truck[data-delay="800"] { animation-delay: 0.9s, 0.9s; }
.net-truck[data-delay="1000"]{ animation-delay: 1.1s, 1.1s; }
@keyframes netTruckEnter {
  to { opacity: 1; transform: scale(1); }
}
@keyframes netTruckFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.03); }
}
.net-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(27,37,66,0.25);
}
.net-node svg { width: 26px; height: 26px; }
.net-node-truck {
  background: linear-gradient(135deg, #1B2542 0%, #2a3a66 100%);
  border: 2px solid rgba(255,255,255,0.15);
}
.net-node-you {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #F07B2E 0%, #FF9A4A 100%);
  border: 4px solid rgba(255,255,255,0.4);
  box-shadow: 0 10px 30px rgba(240,123,46,0.45), 0 0 0 0 rgba(240,123,46,0.5);
  animation: netYouPulse 2.8s ease-out infinite;
}
.net-node-you svg { width: 36px; height: 36px; }
@keyframes netYouPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(240,123,46,0.45), 0 0 0 0 rgba(240,123,46,0.55); }
  50%      { box-shadow: 0 10px 30px rgba(240,123,46,0.55), 0 0 0 18px rgba(240,123,46,0); }
}
.net-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--dark-300);
  background: rgba(255,255,255,0.9);
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.net-lbl-you {
  color: #F07B2E;
  font-weight: 700;
  font-size: 13px;
  margin-top: 8px;
  background: transparent;
}
.net-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.net-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F07B2E 0%, #FF9A4A 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(240,123,46,0.35);
  animation: netBadgeBob 3s ease-in-out infinite;
}
@keyframes netBadgeBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

@media (max-width: 900px) {
  .network-hero { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
  .network-diagram { max-width: 360px; margin: 0 auto; }
  .net-node-you { width: 66px; height: 66px; }
  .net-node { width: 48px; height: 48px; }
  .net-node svg { width: 22px; height: 22px; }
}
@media (max-width: 480px) {
  .network-hero { padding: 24px 18px; border-radius: 18px; }
  .network-hero-title { font-size: 24px; }
  .network-hero-desc { font-size: 14px; }
  .network-diagram { max-width: 300px; }
}

/* ============================================================
   MINI NETWORK TEASER — Anasayfa "Canlı Fırsatlar" üstü
   ============================================================ */
.network-mini {
  background: linear-gradient(135deg, #fff 0%, #fff7f0 100%);
  border: 1px solid rgba(240,123,46,0.15);
  border-radius: 18px;
  padding: 20px 24px;
  margin: 0 auto 32px;
  max-width: 880px;
  box-shadow: 0 4px 20px rgba(27,37,66,0.04);
}
.network-mini-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.network-mini-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nm-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.nm-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(27,37,66,0.2);
}
.nm-node-you {
  background: linear-gradient(135deg, #F07B2E 0%, #FF9A4A 100%);
  box-shadow: 0 4px 14px rgba(240,123,46,0.35), 0 0 0 0 rgba(240,123,46,0.5);
  animation: nmPulse 2.5s infinite;
}
@keyframes nmPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(240,123,46,0.35), 0 0 0 0 rgba(240,123,46,0.4); }
  50% { box-shadow: 0 4px 14px rgba(240,123,46,0.35), 0 0 0 10px rgba(240,123,46,0); }
}
.nm-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}
.nm-arrow {
  position: relative;
  width: 80px;
  height: 4px;
  display: flex;
  align-items: center;
}
.nm-pulse-line {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, #F07B2E 0 6px, transparent 6px 12px);
  opacity: 0.4;
}
.nm-pulse-dot {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #F07B2E;
  box-shadow: 0 0 10px rgba(240,123,46,0.8);
  animation: nmDot 1.5s linear infinite;
}
@keyframes nmDot {
  0% { left: 0; opacity: 1; transform: translateY(-50%) scale(0.8); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
  100% { left: 100%; opacity: 0; transform: translateY(-50%) scale(0.6); }
}
.nm-trucks {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nm-truck {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B2542 0%, #2a3a66 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(27,37,66,0.25);
  animation: nmTruckBob 2.5s ease-in-out infinite;
}
@keyframes nmTruckBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.nm-plus {
  font-size: 11px;
  font-weight: 800;
  color: var(--dark-300);
  margin-left: 4px;
}
.network-mini-text {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.network-mini-text strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.network-mini-text span {
  font-size: 13px;
  color: var(--dark-300);
  line-height: 1.5;
}
.network-mini-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.2s;
}
.network-mini-cta:hover {
  background: var(--accent-dark, #d66b1f);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240,123,46,0.35);
}
@media (max-width: 640px) {
  .network-mini-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .network-mini-left { justify-content: center; }
  .network-mini-text { text-align: center; }
  .network-mini-cta { align-self: center; }
}

/* ============================================================
   DEAL CARD V2 — Modern şık fırsat kartı
   ============================================================ */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.deal-card-v2 {
  background: white;
  border: 1px solid var(--light-200);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s cubic-bezier(0.22, 0.99, 0.32, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  animation: dcEnter 0.5s cubic-bezier(0.22, 0.99, 0.32, 1) forwards;
  animation-delay: calc(var(--stagger, 0) * 60ms);
}
/* Ticker versiyonunda direkt görünür (anasayfa için) */
.live-ticker-track .deal-card-v2 {
  opacity: 1;
  transform: none;
  animation: none;
  min-width: 320px;
  max-width: 340px;
  flex-shrink: 0;
}
@keyframes dcEnter {
  to { opacity: 1; transform: translateY(0); }
}
.deal-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ddd, transparent);
}
.deal-card-v2.dc-status-open::before    { background: linear-gradient(90deg, transparent, #1AAFA0, transparent); }
.deal-card-v2.dc-status-offered::before { background: linear-gradient(90deg, transparent, #F07B2E, transparent); }
.deal-card-v2.dc-status-matched::before { background: linear-gradient(90deg, transparent, #2D9CDB, transparent); }
.deal-card-v2.dc-status-done::before    { background: linear-gradient(90deg, transparent, #27AE60, transparent); }

.deal-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,37,66,0.12);
  border-color: var(--accent);
}

.dc-live-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(39,174,96,0.35);
}
.dc-live-dot {
  width: 7px; height: 7px;
  background: #2ECC71;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46,204,113,0.7);
  animation: dcLivePulse 1.2s ease-in-out infinite;
}
@keyframes dcLivePulse {
  0%   { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(46,204,113,0.7); }
  70%  { opacity: 0.6; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(46,204,113,0); }
  100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

.dc-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: linear-gradient(135deg, #f8f9fc 0%, #fff 100%);
  border-radius: 12px;
  border: 1px solid var(--light-100);
}
.dc-route-from, .dc-route-to {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.dc-route-to { text-align: right; }
.dc-route small {
  font-size: 10px;
  font-weight: 600;
  color: var(--dark-300);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.dc-route strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dc-route-arrow {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dcArrowSlide 2.5s ease-in-out infinite;
}
@keyframes dcArrowSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.dc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dc-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--dark-300);
  background: var(--light-100);
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.dc-chip-user {
  background: rgba(26,175,160,0.1);
  color: #1AAFA0;
}

/* Talep Kodu satırı */
.dc-code-row {
  font-size: 11px;
  font-weight: 600;
  color: var(--dark-300);
  letter-spacing: 0.3px;
  padding: 6px 10px;
  background: var(--light-100);
  border-radius: 8px;
  margin-bottom: 4px;
  display: inline-block;
  align-self: flex-start;
}
.dc-code-row strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-left: 2px;
}

/* Detay grid: kat/asansör/paketleme */
.dc-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(26,175,160,0.04) 0%, rgba(45,156,219,0.04) 100%);
  border: 1px dashed rgba(26,175,160,0.18);
  border-radius: 10px;
}
.dc-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.dc-detail-item small {
  font-size: 9px;
  font-weight: 700;
  color: var(--dark-300);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.dc-detail-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-600);
  line-height: 1.3;
}

.dc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0 0;
  border-top: 1px dashed var(--light-200);
}
.dc-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  min-width: 0;
}
.dc-status span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dc-status.dc-status-open    { color: #1AAFA0; }
.dc-status.dc-status-offered { color: #F07B2E; }
.dc-status.dc-status-matched { color: #2D9CDB; }
.dc-status.dc-status-done    { color: #27AE60; }
.dc-status-icon { font-size: 14px; }
.dc-price {
  text-align: right;
  flex-shrink: 0;
}
.dc-price small {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--dark-300);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.dc-price strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
}

.dc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.dc-time {
  font-size: 11px;
  color: var(--dark-300);
  font-weight: 500;
}
.dc-offer-btn {
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: var(--accent);
  padding: 7px 14px;
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(240,123,46,0.25);
}
.dc-offer-btn:hover {
  background: #d66b1f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240,123,46,0.4);
}

@media (max-width: 480px) {
  .deal-card-v2 { padding: 14px 16px; }
  .dc-route { padding: 10px 12px; }
  .dc-route strong { font-size: 13px; }
  .live-ticker-track .deal-card-v2 { min-width: 280px; max-width: 300px; }
}

.seo-block { padding: 8px 0 0; }
.seo-wrapper {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  gap: 32px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.seo-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.seo-icon {
  opacity: 0.35;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.seo-icon-1 { width: 64px; height: 64px; animation: seoFloat1 9s ease-in-out infinite; }
.seo-icon-2 { width: 48px; height: 48px; animation: seoFloat2 11s ease-in-out infinite 1.5s; }
.seo-icon-3 { width: 40px; height: 40px; animation: seoFloat1 8s ease-in-out infinite 0.8s; }
.seo-icon-4 { width: 56px; height: 56px; animation: seoFloat2 10s ease-in-out infinite 2s; }
.seo-icon-5 { width: 64px; height: 64px; animation: seoFloat1 12s ease-in-out infinite 0.5s; }
.seo-icon-6 { width: 40px; height: 40px; animation: seoFloat2 9s ease-in-out infinite 3s; }
@keyframes seoFloat1 {
  0%,100% { transform: translateY(0px) rotate(-3deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}
@keyframes seoFloat2 {
  0%,100% { transform: translateY(0px) rotate(2deg); }
  50%      { transform: translateY(-10px) rotate(-2deg); }
}
.seo-content { }
.seo-content h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 14px; color: var(--dark); }
.seo-content p { font-size: 14px; color: var(--dark-300); line-height: 1.8; margin-bottom: 12px; }
.seo-content p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .seo-wrapper { grid-template-columns: 1fr; }
  .seo-icons { flex-direction: row; justify-content: center; }
  .seo-icons-left .seo-icon-3,
  .seo-icons-right .seo-icon-6 { display: none; }
}

/* 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; }
}

/* ===== HAKKIMIZDA PAGE ===== */
.about-page { background: var(--light-100); }

/* Hero */
.about-hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 80px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 55%, var(--primary) 100%);
  z-index: 0;
}
.about-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%);
}
.about-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;
}
.about-hero-content {
  max-width: 720px;
  color: white;
}
.about-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: 24px;
  backdrop-filter: blur(8px);
  color: white;
}
.about-hero-content h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}

/* Sections */
.about-section {
  padding: 24px 0;
}

/* Story blocks (timeline) */
.about-story-block {
  position: relative;
  max-width: 720px;
  margin: 0 auto 48px;
  padding-left: 80px;
}
.about-story-block::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 64px;
  bottom: -48px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(13,110,110,0.25), rgba(13,110,110,0.05));
}
.about-story-block:last-child::before {
  display: none;
}
.about-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(13,110,110,0.08);
  border: 2px solid rgba(13,110,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.about-story-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.about-story-block h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.about-story-block p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark-400);
  margin-bottom: 8px;
}

/* Why us - features grid */
.about-why-section {
  background: white;
  border-top: 1px solid var(--light-200);
  border-bottom: 1px solid var(--light-200);
}
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.about-feature-card {
  background: var(--light-100);
  border: 1px solid var(--light-200);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,110,110,0.1);
  border-color: rgba(13,110,110,0.2);
}
.about-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(13,110,110,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.about-feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.about-feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark-400);
  margin: 0;
}

/* Closing section */
.about-closing-section {
  padding: 24px 0 0;
}
.about-closing {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 28px 32px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--light-200);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.about-closing-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark-500);
  margin-bottom: 20px;
}
.about-closing-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,110,110,0.06);
  border: 1px solid rgba(13,110,110,0.12);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
}

/* Stats bar */
.about-stats {
  padding: 32px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
}
.about-stat svg {
  stroke: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.about-stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.about-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero { padding: calc(var(--header-h) + 40px) 0 56px; min-height: auto; }
  .about-hero-content { text-align: center; }
  .about-hero-content h1 { font-size: 30px; }
  .about-hero-desc { font-size: 15px; margin: 0 auto; }
  .about-hero-badge { margin: 0 auto 24px; }
  .about-section { padding: 48px 0; }
  .about-story-block { padding-left: 68px; margin-bottom: 40px; }
  .about-icon-circle { width: 48px; height: 48px; }
  .about-icon-circle svg { width: 22px; height: 22px; }
  .about-story-block::before { left: 23px; top: 56px; }
  .about-story-block h2 { font-size: 20px; }
  .about-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-feature-card { padding: 24px 20px; text-align: center; }
  .about-feature-icon { margin: 0 auto 18px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-stat-number { font-size: 28px; }
  .about-closing { padding: 32px 20px; }
  .about-closing-text { font-size: 15px; }
  .about-closing-quote { font-size: 13px; padding: 8px 16px; }
}
@media (max-width: 480px) {
  .about-hero-content h1 { font-size: 26px; }
  .about-hero-badge { font-size: 12px; padding: 5px 12px; }
  .about-story-block { padding-left: 0; padding-top: 64px; text-align: center; }
  .about-icon-circle { position: relative; margin: 0 auto 12px; }
  .about-story-block::before { display: none; }
  .about-story-year { margin: 0 auto 12px; }
}

/* =======================================================================
   BLOG > NAKLİYAT SÖZLEŞMESİ - ANİMASYONLU CTA KARTI
   ======================================================================= */
.contract-hero-card {
  position: relative;
  display: block;
  margin: 28px 0 40px;
  padding: 0;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(26,175,160,0.18), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(240,123,46,0.14), transparent 55%),
    linear-gradient(135deg, #0F1923 0%, #1A2A38 60%, #0F1923 100%);
  border: 1.5px solid rgba(26,175,160,0.28);
  box-shadow:
    0 10px 30px -10px rgba(15,25,35,0.35),
    0 2px 6px rgba(15,25,35,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              box-shadow .35s cubic-bezier(.2,.8,.2,1),
              border-color .35s ease;
  isolation: isolate;
  animation: contractCardEnter .7s cubic-bezier(.2,.8,.2,1) both;
}
.contract-hero-card:hover {
  transform: translateY(-3px) scale(1.008);
  border-color: rgba(26,175,160,0.55);
  box-shadow:
    0 24px 50px -14px rgba(15,25,35,0.55),
    0 8px 20px -4px rgba(26,175,160,0.25),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.contract-hero-card:active { transform: translateY(-1px) scale(1.002); }
.contract-hero-card:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 3px;
}

/* Kartın giriş animasyonu */
@keyframes contractCardEnter {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* ---- Kenarlık parıltısı (ince conic gradient dönüşü) ---- */
.contract-hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0%,
    rgba(26,175,160,0.9) 10%,
    rgba(240,123,46,0.9) 22%,
    transparent 35%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: contractBorderSpin 6s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: .85;
}
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes contractBorderSpin {
  to { --angle: 360deg; }
}
/* @property desteklemeyen tarayıcılar için fallback (opaklıkla pulse) */
@supports not (background: paint(something)) {
  .contract-hero-card::before {
    animation: contractBorderFallback 4s ease-in-out infinite;
  }
  @keyframes contractBorderFallback {
    0%, 100% { opacity: .4; }
    50%      { opacity: 1;  }
  }
}

/* ---- Diagonal shine sweep ---- */
.contract-hero-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 10%,
    rgba(255,255,255,0.06) 40%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.06) 60%,
    transparent 90%
  );
  transform: skewX(-20deg);
  animation: contractShineSweep 5.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes contractShineSweep {
  0%       { left: -60%; }
  55%, 100% { left: 130%; }
}

/* ---- Partikül noktalar ---- */
.contract-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.contract-hero-particles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(26,175,160,0.55);
  box-shadow: 0 0 8px rgba(26,175,160,0.45);
  opacity: 0;
  animation: contractParticleFloat 9s linear infinite;
}
.contract-hero-particles span:nth-child(1)  { left: 5%;  bottom: -10px; width: 5px; height: 5px; animation-delay: 0s;   animation-duration: 10s; }
.contract-hero-particles span:nth-child(2)  { left: 18%; bottom: -10px; width: 8px; height: 8px; background: rgba(240,123,46,0.55); box-shadow: 0 0 10px rgba(240,123,46,0.5); animation-delay: 1.2s; animation-duration: 11s; }
.contract-hero-particles span:nth-child(3)  { left: 32%; bottom: -10px; width: 4px; height: 4px; animation-delay: 2.5s; animation-duration: 8s;  }
.contract-hero-particles span:nth-child(4)  { left: 45%; bottom: -10px; width: 7px; height: 7px; animation-delay: 0.6s; animation-duration: 12s; }
.contract-hero-particles span:nth-child(5)  { left: 58%; bottom: -10px; width: 5px; height: 5px; background: rgba(240,123,46,0.5);  box-shadow: 0 0 8px  rgba(240,123,46,0.45); animation-delay: 3.1s; animation-duration: 9s;  }
.contract-hero-particles span:nth-child(6)  { left: 68%; bottom: -10px; width: 6px; height: 6px; animation-delay: 1.8s; animation-duration: 10.5s; }
.contract-hero-particles span:nth-child(7)  { left: 76%; bottom: -10px; width: 4px; height: 4px; animation-delay: 4.2s; animation-duration: 8.5s; }
.contract-hero-particles span:nth-child(8)  { left: 84%; bottom: -10px; width: 7px; height: 7px; background: rgba(240,123,46,0.55); box-shadow: 0 0 10px rgba(240,123,46,0.5); animation-delay: 2.2s; animation-duration: 11.5s; }
.contract-hero-particles span:nth-child(9)  { left: 91%; bottom: -10px; width: 5px; height: 5px; animation-delay: 5s;   animation-duration: 9.5s; }
.contract-hero-particles span:nth-child(10) { left: 25%; bottom: -10px; width: 3px; height: 3px; animation-delay: 6s;   animation-duration: 7s; }
@keyframes contractParticleFloat {
  0%   { transform: translateY(0)      translateX(0);    opacity: 0; }
  10%  { opacity: .9; }
  50%  { transform: translateY(-200px) translateX(15px); opacity: .7; }
  90%  { opacity: .4; }
  100% { transform: translateY(-400px) translateX(-10px); opacity: 0; }
}

/* ---- Rozet ---- */
.contract-hero-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F07B2E, #D4631E);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(240,123,46,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  z-index: 3;
  animation: contractBadgeFloat 3.5s ease-in-out infinite;
}
.contract-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.9);
  animation: contractBadgePulse 1.8s ease-out infinite;
}
@keyframes contractBadgePulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,255,255,0.85); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0);   }
  100% { box-shadow: 0 0 0 0   rgba(255,255,255,0);    }
}
@keyframes contractBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* ---- İç içerik grid ---- */
.contract-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 36px 36px 32px;
}

/* ---- İkon ---- */
.contract-hero-icon {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: contractIconFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
}
.contract-hero-icon::after {
  content: "";
  position: absolute;
  inset: 10% 15% -10% 15%;
  background: radial-gradient(ellipse at center, rgba(26,175,160,0.35), transparent 65%);
  filter: blur(14px);
  z-index: -1;
  animation: contractIconGlow 4s ease-in-out infinite;
}
.contract-hero-icon svg {
  width: 100%;
  height: 100%;
}
@keyframes contractIconFloat {
  0%, 100% { transform: translateY(0)    rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg);  }
}
@keyframes contractIconGlow {
  0%, 100% { opacity: .6;  transform: scale(.95); }
  50%      { opacity: 1;   transform: scale(1.08); }
}
/* Check mark çizim animasyonu */
.contract-hero-check {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  animation: contractCheckDraw 2.2s cubic-bezier(.2,.8,.2,1) .6s infinite;
}
@keyframes contractCheckDraw {
  0%       { stroke-dashoffset: 28; opacity: 0; }
  15%      { opacity: 1; }
  40%      { stroke-dashoffset: 0;  opacity: 1; }
  80%      { stroke-dashoffset: 0;  opacity: 1; }
  100%     { stroke-dashoffset: 0;  opacity: 0; }
}
.contract-hero-card:hover .contract-hero-icon {
  animation-duration: 2s;
}

/* ---- Metin ---- */
.contract-hero-body { color: #fff; min-width: 0; }
.contract-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 10px;
  padding: 4px 10px;
  background: rgba(26,175,160,0.15);
  border: 1px solid rgba(26,175,160,0.35);
  border-radius: 6px;
}
.contract-hero-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.5px;
  background: linear-gradient(120deg, #ffffff 0%, #ffffff 40%, #2ECDB9 70%, #ffffff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: contractTitleShimmer 6s ease-in-out infinite;
}
@keyframes contractTitleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.contract-hero-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0 0 18px;
  max-width: 640px;
}
.contract-hero-desc strong {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(240,123,46,0.35) 60%);
  padding: 0 3px;
}

/* ---- Özellik rozetleri ---- */
.contract-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.contract-hero-feat {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 12.5px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.contract-hero-card:hover .contract-hero-feat {
  background: rgba(255,255,255,0.1);
  border-color: rgba(26,175,160,0.35);
}
.contract-hero-feat:nth-child(1) { animation: contractFeatEnter .6s ease .2s both; }
.contract-hero-feat:nth-child(2) { animation: contractFeatEnter .6s ease .35s both; }
.contract-hero-feat:nth-child(3) { animation: contractFeatEnter .6s ease .5s both; }
@keyframes contractFeatEnter {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- CTA butonu ---- */
.contract-hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.contract-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  box-shadow:
    0 6px 18px rgba(26,175,160,0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform .25s cubic-bezier(.2,.8,.2,1),
              box-shadow .25s ease,
              background .25s ease;
  position: relative;
  overflow: hidden;
}
.contract-hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left .55s ease;
}
.contract-hero-card:hover .contract-hero-btn {
  transform: translateX(4px);
  box-shadow:
    0 10px 26px rgba(26,175,160,0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.contract-hero-card:hover .contract-hero-btn::before { left: 100%; }
.contract-hero-btn svg {
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.contract-hero-card:hover .contract-hero-btn svg { transform: translateX(4px); }
.contract-hero-hint {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* ---- Mobile responsive ---- */
@media (max-width: 768px) {
  .contract-hero-card { margin: 20px 0 32px; border-radius: 16px; }
  .contract-hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 56px 22px 26px;
    text-align: left;
  }
  .contract-hero-icon {
    width: 92px;
    height: 92px;
    margin: 0;
  }
  .contract-hero-badge {
    top: 14px;
    right: 14px;
    font-size: 10px;
    padding: 6px 11px 6px 9px;
    letter-spacing: 0.6px;
  }
  .contract-hero-title    { font-size: 22px; }
  .contract-hero-desc     { font-size: 13.5px; line-height: 1.55; }
  .contract-hero-feat     { font-size: 11.5px; padding: 6px 10px; }
  .contract-hero-btn      { padding: 11px 18px; font-size: 14px; width: 100%; justify-content: center; }
  .contract-hero-hint     { width: 100%; text-align: center; }
}

/* ---- Hareket azaltma tercihi ---- */
@media (prefers-reduced-motion: reduce) {
  .contract-hero-card,
  .contract-hero-card::before,
  .contract-hero-shine,
  .contract-hero-particles span,
  .contract-hero-badge,
  .contract-hero-badge-dot,
  .contract-hero-icon,
  .contract-hero-icon::after,
  .contract-hero-check,
  .contract-hero-title,
  .contract-hero-feat {
    animation: none !important;
  }
  .contract-hero-particles { display: none; }
}

/* =======================================================================
   FİRMA PROFİLİ > DUYURULAR BÖLÜMÜ
   ======================================================================= */
.firma-announcements-wrap {
  position: relative;
  margin-bottom: 20px;
  padding: 22px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 10% 15%, rgba(240,123,46,0.08), transparent 55%),
    radial-gradient(circle at 90% 85%, rgba(26,175,160,0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  border: 1px solid var(--light-300);
  overflow: hidden;
}
.firma-announcements-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(
    120deg,
    rgba(240,123,46,0.5),
    rgba(26,175,160,0.5),
    rgba(240,123,46,0.5)
  );
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: firmaAnnBorder 6s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.7;
}
@keyframes firmaAnnBorder {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.firma-ann-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.firma-ann-megaphone {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 16px rgba(240,123,46,0.35);
  animation: firmaAnnMegaWiggle 3.2s ease-in-out infinite;
  position: relative;
}
.firma-ann-megaphone::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: rgba(240,123,46,0.35);
  z-index: -1;
  animation: firmaAnnMegaPulse 2s ease-out infinite;
}
.firma-ann-megaphone svg {
  width: 26px;
  height: 26px;
}
@keyframes firmaAnnMegaWiggle {
  0%, 100% { transform: rotate(-6deg); }
  25%      { transform: rotate(6deg);  }
  50%      { transform: rotate(-4deg); }
  75%      { transform: rotate(4deg);  }
}
@keyframes firmaAnnMegaPulse {
  0%       { transform: scale(1);   opacity: 0.7; }
  100%     { transform: scale(1.5); opacity: 0;   }
}
.firma-ann-title-main {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 2px;
  color: var(--dark-700);
  letter-spacing: -0.3px;
}
.firma-ann-subtitle {
  font-size: 12px;
  color: var(--dark-300);
  margin: 0;
}

.firma-ann-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* Her bir duyuru kartı */
.firma-ann-card {
  position: relative;
  display: flex;
  background: #ffffff;
  border: 1px solid var(--light-300);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15,25,35,0.04);
  transition: transform .28s cubic-bezier(.2,.8,.2,1),
              box-shadow .28s ease,
              border-color .28s ease;
  animation: firmaAnnCardEnter .5s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: var(--ann-delay, 0s);
}
.firma-ann-card:hover {
  transform: translateY(-2px);
  border-color: var(--ann-color);
  box-shadow: 0 8px 24px rgba(15,25,35,0.08),
              0 2px 6px color-mix(in srgb, var(--ann-color) 20%, transparent);
}
@keyframes firmaAnnCardEnter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.firma-ann-stripe {
  width: 5px;
  flex-shrink: 0;
  background: var(--ann-color);
  position: relative;
  overflow: hidden;
}
.firma-ann-stripe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  animation: firmaAnnStripeGlow 2.4s linear infinite;
}
@keyframes firmaAnnStripeGlow {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.firma-ann-content {
  flex: 1;
  padding: 14px 18px 14px 16px;
  min-width: 0;
}
.firma-ann-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.firma-ann-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 11px;
  border-radius: 999px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.firma-ann-date {
  font-size: 11.5px;
  color: var(--dark-300);
  font-weight: 500;
}
.firma-ann-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 6px;
  color: var(--dark-700);
}
.firma-ann-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--dark-500);
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Spark - hover'da köşede parıltı noktası */
.firma-ann-spark {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ann-color);
  box-shadow: 0 0 0 0 var(--ann-color);
  opacity: 0.7;
  animation: firmaAnnSparkPulse 2s ease-out infinite;
}
@keyframes firmaAnnSparkPulse {
  0%   { box-shadow: 0 0 0 0   color-mix(in srgb, var(--ann-color) 70%, transparent); opacity: .9; }
  70%  { box-shadow: 0 0 0 10px transparent; opacity: .3; }
  100% { box-shadow: 0 0 0 0   transparent; opacity: .9; }
}

/* Mobile */
@media (max-width: 600px) {
  .firma-announcements-wrap { padding: 16px; border-radius: 14px; }
  .firma-ann-header { gap: 10px; margin-bottom: 14px; }
  .firma-ann-megaphone { width: 42px; height: 42px; border-radius: 11px; }
  .firma-ann-megaphone svg { width: 22px; height: 22px; }
  .firma-ann-title-main { font-size: 16px; }
  .firma-ann-title { font-size: 15px; }
  .firma-ann-body  { font-size: 13px; }
  .firma-ann-content { padding: 12px 14px; }
}

/* Hareket azaltma */
@media (prefers-reduced-motion: reduce) {
  .firma-announcements-wrap::before,
  .firma-ann-megaphone,
  .firma-ann-megaphone::before,
  .firma-ann-stripe::after,
  .firma-ann-spark,
  .firma-ann-card {
    animation: none !important;
  }
}

/* =======================================================================
   FİRMA PANEL > DUYURU FORMU - İNLİNE UYARI & YAYINLAMA UYARI MODALI
   ======================================================================= */

/* Form altındaki inline uyarı satırı */
.fp-ann-warn-inline {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(235,87,87,0.08), rgba(242,153,74,0.08));
  border: 1px solid rgba(235,87,87,0.25);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--dark-600, var(--dark-500));
  position: relative;
  overflow: hidden;
}
.fp-ann-warn-inline::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #EB5757, #F2994A);
  animation: fpAnnWarnStripe 2.5s ease-in-out infinite;
}
@keyframes fpAnnWarnStripe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}
.fp-ann-warn-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  animation: fpAnnWarnShake 4s ease-in-out infinite;
}
@keyframes fpAnnWarnShake {
  0%, 90%, 100% { transform: rotate(0deg); }
  92%  { transform: rotate(-14deg); }
  94%  { transform: rotate(14deg); }
  96%  { transform: rotate(-8deg); }
  98%  { transform: rotate(8deg); }
}
.fp-ann-warn-inline strong { color: #C62828; }

/* Uyarı modalı - yüksek z-index, modal-overlay üzerinde */
.pub-warn-overlay {
  z-index: 10000;
  background: rgba(15,25,35,0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: pubWarnFadeIn .25s ease;
}
@keyframes pubWarnFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.pub-warn-box {
  max-width: 620px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(235,87,87,0.25);
  overflow: hidden;
  animation: pubWarnSlideUp .35s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
@keyframes pubWarnSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
/* Üst kırmızı-turuncu şerit animasyonu */
.pub-warn-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #EB5757, #F2994A, #EB5757);
  background-size: 200% 100%;
  animation: pubWarnTopStripe 3s linear infinite;
  z-index: 1;
}
@keyframes pubWarnTopStripe {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.pub-warn-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 26px 20px;
  background: linear-gradient(135deg, rgba(235,87,87,0.08), rgba(242,153,74,0.06));
  border-bottom: 1px solid var(--light-200);
}
.pub-warn-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EB5757, #F2994A);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(235,87,87,0.35);
  position: relative;
}
.pub-warn-badge::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(235,87,87,0.35);
  animation: pubWarnBadgePulse 1.6s ease-out infinite;
}
@keyframes pubWarnBadgePulse {
  0%       { transform: scale(1);   opacity: 1;   }
  100%     { transform: scale(1.4); opacity: 0;   }
}
.pub-warn-badge svg { width: 28px; height: 28px; }
.pub-warn-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 3px;
  color: var(--dark-700, var(--dark-500));
  letter-spacing: -0.3px;
}
.pub-warn-sub {
  font-size: 12.5px;
  color: var(--dark-300);
  margin: 0;
  font-weight: 500;
}

.pub-warn-body {
  padding: 20px 26px;
  overflow-y: auto;
  flex: 1;
}

.pub-warn-rule {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: rgba(235,87,87,0.06);
  border: 1px solid rgba(235,87,87,0.2);
  border-radius: 12px;
  margin-bottom: 14px;
}
.pub-warn-rule-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.pub-warn-rule strong {
  display: block;
  font-size: 14px;
  color: #C62828;
  line-height: 1.5;
  margin-bottom: 6px;
}
.pub-warn-rule p {
  font-size: 13px;
  color: var(--dark-500);
  line-height: 1.55;
  margin: 0;
}

.pub-warn-consequences {
  padding: 14px 16px;
  background: var(--light-100);
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid var(--light-200);
}
.pub-warn-cons-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark-500);
  margin-bottom: 10px;
}
.pub-warn-consequences ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
}
.pub-warn-consequences li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--dark-500);
  line-height: 1.5;
}
.pub-warn-consequences li span {
  font-size: 15px;
  line-height: 1.3;
  flex-shrink: 0;
}
.pub-warn-consequences li strong { color: #C62828; font-weight: 700; }

/* Maskelenen içerikler kutusu */
.pub-warn-hits {
  padding: 14px 16px;
  background: rgba(240,123,46,0.06);
  border: 1px dashed rgba(240,123,46,0.4);
  border-radius: 12px;
  margin-bottom: 14px;
  animation: pubWarnHitsPulse 2.5s ease-in-out infinite;
}
@keyframes pubWarnHitsPulse {
  0%, 100% { border-color: rgba(240,123,46,0.4); }
  50%      { border-color: rgba(240,123,46,0.8); }
}
.pub-warn-hits-title {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.pub-warn-hits-icon {
  font-size: 20px;
  line-height: 1;
}
.pub-warn-hits-title strong {
  font-size: 13.5px;
  color: #D4631E;
  font-weight: 700;
  line-height: 1.4;
}
.pub-warn-hits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 180px;
  overflow-y: auto;
}
.pub-warn-hits-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.4;
  padding: 6px 10px;
  background: white;
  border-radius: 7px;
  flex-wrap: wrap;
}
.pub-warn-hit-type {
  font-weight: 600;
  color: var(--dark-500);
  font-size: 11.5px;
}
.pub-warn-hit-orig {
  font-family: monospace;
  background: rgba(235,87,87,0.1);
  color: #C62828;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: line-through;
  word-break: break-all;
}
.pub-warn-hit-arrow {
  color: var(--dark-300);
  font-weight: 700;
}
.pub-warn-hit-rep {
  font-family: monospace;
  background: rgba(39,174,96,0.1);
  color: #1E8449;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  word-break: break-all;
}

/* Onay checkbox */
.pub-warn-check {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: white;
  border: 2px solid var(--light-300);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
  user-select: none;
}
.pub-warn-check:hover {
  border-color: var(--primary);
  background: rgba(26,175,160,0.03);
}
.pub-warn-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}
.pub-warn-check span {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--dark-500);
}
.pub-warn-check input[type="checkbox"]:checked ~ span {
  color: var(--dark-700, var(--dark-500));
  font-weight: 500;
}
.pub-warn-check:has(input:checked) {
  border-color: var(--primary);
  background: rgba(26,175,160,0.06);
}

.pub-warn-footer {
  display: flex;
  gap: 10px;
  padding: 16px 26px 22px;
  border-top: 1px solid var(--light-200);
  background: var(--light-100);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.pub-warn-footer .btn { min-width: 140px; justify-content: center; }
.pub-warn-footer .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.3);
}

/* Mobile */
@media (max-width: 600px) {
  .pub-warn-overlay { padding: 10px; }
  .pub-warn-box { max-height: 94vh; border-radius: 14px; }
  .pub-warn-header { padding: 18px 18px 16px; gap: 12px; }
  .pub-warn-badge { width: 44px; height: 44px; }
  .pub-warn-badge svg { width: 22px; height: 22px; }
  .pub-warn-title { font-size: 16px; }
  .pub-warn-body { padding: 16px 18px; }
  .pub-warn-footer { padding: 14px 18px 18px; flex-direction: column-reverse; }
  .pub-warn-footer .btn { width: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .pub-warn-box::before,
  .pub-warn-badge::before,
  .pub-warn-hits,
  .fp-ann-warn-inline::before,
  .fp-ann-warn-icon { animation: none !important; }
}

/* =======================================================================
   FİRMA PROFİLİ > HİZMET FOTOĞRAFLARI GALERİSİ
   Masaüstü: 3 sütun grid
   Mobil (<=768px): Yatay scroll, tek fotoğraf, swipe, snap, dot gösterge
   ======================================================================= */
.firma-photos-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.firma-photo-item {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light-100);
  position: relative;
}
.firma-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.firma-photos-dots {
  display: none; /* Masaüstünde gizli - sadece mobilde görünür */
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.firma-photo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-300);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, width .3s ease;
  border: none;
  padding: 0;
}
.firma-photo-dot.active {
  background: var(--primary);
  width: 22px;
  border-radius: 4px;
}
.firma-photo-dot:hover { transform: scale(1.2); }
.firma-photo-dot.active:hover { transform: none; }

@media (max-width: 768px) {
  .firma-photos-gallery {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 4px; /* scrollbar yerine alt boşluk */
    /* ORTALAMA — sol/sağ eşit padding ile foto tam ortada görünür */
    padding-left: 0;
    padding-right: 0;
    scroll-padding-inline: 0;
    scroll-snap-align: center;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
  }
  .firma-photos-gallery::-webkit-scrollbar { display: none; }

  .firma-photo-item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    border-radius: 10px;
    margin: 0;
    box-sizing: border-box;
  }

  .firma-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }

  .firma-photos-dots {
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }
}

/* Hareket azaltma: smooth scroll'u kapat */
@media (prefers-reduced-motion: reduce) {
  .firma-photos-gallery { scroll-behavior: auto; }
  .firma-photo-dot { transition: none; }
}

/* =======================================================================
   İL/İLÇE SAYFASI DETAYLI SEO BLOĞU
   ======================================================================= */
.city-seo-block {
  margin: 20px 0 28px;
  padding: 28px 28px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  border: 1px solid var(--light-300);
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(15,25,35,0.04);
  position: relative;
  overflow: hidden;
}
.city-seo-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: citySeoStripe 6s linear infinite;
}
@keyframes citySeoStripe {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.city-seo-header { margin-bottom: 20px; }
.city-seo-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  padding: 4px 12px;
  background: rgba(26,175,160,0.1);
  border-radius: 999px;
}
.city-seo-header h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: var(--dark-700, var(--dark-500));
  letter-spacing: -0.5px;
}

.city-seo-intro {
  margin-bottom: 28px;
}
.city-seo-intro p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dark-500);
  margin: 0 0 14px;
}
.city-seo-intro p:last-child { margin-bottom: 0; }

/* Hizmet grid */
.city-seo-services-wrap {
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--light-300);
}
.city-seo-services-wrap > h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--dark-700, var(--dark-500));
  text-align: center;
}
.city-seo-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.city-seo-service {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: var(--light-100);
  border: 1px solid var(--light-200);
  border-radius: 12px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1),
              border-color .25s ease,
              background .25s ease;
}
.city-seo-service:hover {
  transform: translateY(-2px);
  border-color: rgba(26,175,160,0.35);
  background: rgba(26,175,160,0.04);
}
.city-seo-service-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--light-200);
}
.city-seo-service h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--dark-700, var(--dark-500));
  line-height: 1.3;
}
.city-seo-service p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--dark-300);
  margin: 0;
}

/* İlçeler */
.city-seo-districts {
  padding-top: 24px;
  border-top: 1px dashed var(--light-300);
  margin-bottom: 28px;
}
.city-seo-districts h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--dark-700, var(--dark-500));
}
.city-seo-districts p {
  font-size: 13.5px;
  color: var(--dark-300);
  margin: 0 0 14px;
}
.city-seo-district-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-seo-district-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--light-300);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-500);
  text-decoration: none;
  transition: all .2s ease;
}
.city-seo-district-tag:hover {
  border-color: var(--primary);
  background: rgba(26,175,160,0.06);
  color: var(--primary);
  transform: translateY(-1px);
}
.city-seo-district-tag span { font-size: 11px; }

/* CTA alt kutusu */
.city-seo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(26,175,160,0.08), rgba(240,123,46,0.05));
  border: 1px solid rgba(26,175,160,0.25);
  border-radius: 14px;
  flex-wrap: wrap;
}
.city-seo-cta-text { flex: 1; min-width: 240px; }
.city-seo-cta-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-700, var(--dark-500));
  margin-bottom: 4px;
}
.city-seo-cta-text p {
  font-size: 13px;
  color: var(--dark-500);
  margin: 0;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .city-seo-block { padding: 20px 18px 18px; border-radius: 14px; margin: 16px 0 22px; }
  .city-seo-header h2 { font-size: 20px; }
  .city-seo-intro p { font-size: 14px; line-height: 1.65; }
  .city-seo-services-wrap { padding-top: 18px; margin-bottom: 22px; }
  .city-seo-services-wrap > h3 { font-size: 16px; margin-bottom: 14px; }
  .city-seo-services-grid { grid-template-columns: 1fr; gap: 10px; }
  .city-seo-service { padding: 12px 14px; }
  .city-seo-districts { padding-top: 18px; margin-bottom: 22px; }
  .city-seo-districts h3 { font-size: 15px; }
  .city-seo-cta { flex-direction: column; align-items: stretch; padding: 18px; }
  .city-seo-cta .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .city-seo-block::before,
  .city-seo-service { animation: none !important; transition: none !important; }
}
