/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1AAFA0;
  --primary-dark: #148F83;
  --primary-light: #2ECDB9;
  --primary-ghost: rgba(26,175,160,0.08);
  --accent: #F07B2E;
  --accent-dark: #D4631E;
  --accent-light: #FF9A56;
  --accent-ghost: rgba(240,123,46,0.1);
  --dark: #0F1923;
  --dark-700: #1A2A38;
  --dark-500: #2C3E50;
  --dark-300: #546E7A;
  --dark-100: #8FA3B0;
  --light: #FFFFFF;
  --light-100: #F7F9FB;
  --light-200: #EDF2F6;
  --light-300: #DDE5ED;
  --light-400: #C5D0DB;
  --success: #27AE60;
  --warning: #F2994A;
  --danger: #EB5757;
  --info: #2D9CDB;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(15,25,35,0.06), 0 1px 2px rgba(15,25,35,0.04);
  --shadow-md: 0 4px 12px rgba(15,25,35,0.08), 0 2px 4px rgba(15,25,35,0.04);
  --shadow-lg: 0 12px 40px rgba(15,25,35,0.12), 0 4px 12px rgba(15,25,35,0.06);
  --shadow-xl: 0 24px 64px rgba(15,25,35,0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --header-h: 72px;
  --container-max: 1320px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--dark); background: var(--light-100); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ===== HEADER ===== */
#main-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-300);
  z-index: 1000;
  transition: box-shadow 0.3s var(--ease);
}
#main-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px; }

.logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; text-decoration: none; }
#site-logo-img { height: 40px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.footer-logo-img { height: 34px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.logo-text-fallback { display: flex; align-items: baseline; gap: 0; line-height: 1; }
.logo-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg, .logo-icon img { display: block; border-radius: 10px; object-fit: contain; }
.logo-text { display: flex; align-items: baseline; gap: 0; line-height: 1; }
.logo-brand {
  font-family: var(--font-display);
  font-weight: 800; font-size: 18px;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
}
.logo-sub {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.3px;
}

#main-nav { display: flex; align-items: center; gap: 2px; }
.mobile-auth-btns { display: none; }

/* Mobile header auth buttons (next to hamburger) */
.header-mobile-auth { display: none; }
.btn-mob-hdr {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-mob-hdr-green { background: var(--primary); color: white; }
.btn-mob-hdr-orange { background: var(--accent); color: white; }
.nav-link {
  padding: 8px 12px; font-size: 13.5px; font-weight: 500;
  color: var(--dark-500); border-radius: var(--radius-sm);
  transition: all 0.2s; white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: var(--primary-ghost); }
.nav-link.active { color: var(--primary); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.header-search {
  display: flex; align-items: center;
  background: var(--light-100);
  border: 1px solid var(--light-300);
  border-radius: var(--radius-full);
  padding: 6px 14px; gap: 6px;
  transition: all 0.2s;
}
.header-search:focus-within { border-color: var(--primary); background: white; }
.header-search input {
  border: none; outline: none; background: transparent;
  font-size: 13px; width: 160px; color: var(--dark);
}
.header-search input::placeholder { color: var(--dark-100); }
.header-search svg { color: var(--dark-100); flex-shrink: 0; }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ===== FOOTER ===== */
#main-footer { background: var(--dark); color: var(--light-300); padding: 28px 0 0; margin-top: 48px; }

/* Brand row */
.footer-brand-row {
  display: flex; align-items: center; gap: 20px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-row .logo { flex-shrink: 0; }
.footer-tagline { font-size: 12px; line-height: 1.5; opacity: 0.5; margin: 0; }

/* Nav row */
.footer-nav-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px 20px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-nav-row a {
  font-size: 13px; color: var(--light-400); transition: color 0.2s; white-space: nowrap;
}
.footer-nav-row a:hover { color: var(--primary-light); }
.footer-nav-sep {
  width: 1px; height: 14px; background: rgba(255,255,255,0.15); flex-shrink: 0;
}

/* Legal row */
.footer-legal-row {
  display: flex; flex-wrap: wrap; gap: 4px 16px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-legal-row a {
  font-size: 11px; color: rgba(255,255,255,0.3); transition: color 0.2s; white-space: nowrap;
}
.footer-legal-row a:hover { color: var(--primary-light); }

/* Bottom row */
.footer-bottom-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; padding: 14px 0;
  font-size: 11px; opacity: 0.7;
}
.footer-copy { margin: 0; white-space: nowrap; }
.footer-badges { display: flex; gap: 12px; font-size: 11px; }
.footer-badges span { display: flex; align-items: center; gap: 3px; white-space: nowrap; }
.footer-payment-logos { display: flex; align-items: center; gap: 8px; }
.footer-payment-logos svg, .footer-payment-logos img {
  background: rgba(255,255,255,0.95); border-radius: 4px; padding: 3px 6px;
}

/* Legacy fallbacks */
.footer-grid { display: none; }
.footer-links, .footer-email, .footer-trust, .footer-trust-item, .footer-contact p { display: none; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--light-400); font-size: 12px; font-weight: 700; transition: all 0.2s; }
.social-links a:hover { background: var(--primary); color: white; }

/* ===== TOAST ===== */
#toast-container { position: fixed; top: 90px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast { display: flex; align-items: center; gap: 10px; padding: 14px 20px; background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); font-size: 14px; font-weight: 500; transform: translateX(120%); transition: transform 0.3s var(--ease); min-width: 280px; }
.toast.show { transform: translateX(0); }
.toast-success { border-left: 4px solid var(--success); }
.toast-error { border-left: 4px solid var(--danger); }
.toast-icon { font-size: 18px; }
.toast-success .toast-icon { color: var(--success); }
.toast-error .toast-icon { color: var(--danger); }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,25,35,0.5); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; transition: opacity 0.3s; }
.modal-overlay.show { opacity: 1; }
.modal-box { background: white; border-radius: var(--radius-lg); max-width: 540px; width: 90%; max-height: 80vh; overflow-y: auto; box-shadow: var(--shadow-xl); transform: scale(0.95); transition: transform 0.3s; }
.modal-overlay.show .modal-box { transform: scale(1); }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--light-200); }
.modal-header h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.modal-close { width: 32px; height: 32px; background: var(--light-200); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--dark-300); border: none; cursor: pointer; }
.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--light-200); display: flex; gap: 12px; justify-content: flex-end; }

/* ===== CHAT MODAL ===== */
.chat-modal {
  background: white;
  border-radius: 16px;
  width: 460px;
  max-width: 95vw;
  height: 75vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: transform 0.3s;
  overflow: hidden;
}
.modal-overlay.show .chat-modal { transform: scale(1); }

.chat-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--primary);
  color: white;
  flex-shrink: 0;
}
.chat-modal-user { display: flex; align-items: center; gap: 12px; }
.chat-modal-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: white;
}
.chat-modal-name { font-weight: 700; font-size: 15px; }
.chat-modal-status { font-size: 11px; opacity: 0.8; }
.chat-modal-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border: none; border-radius: 50%;
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.chat-modal-close:hover { background: rgba(255,255,255,0.3); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f0f2f5;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.chat-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--dark-300);
  text-align: center;
  padding: 40px 20px;
}
.chat-empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }
.chat-empty p { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.chat-empty span { font-size: 13px; opacity: 0.7; }

.chat-date-sep {
  text-align: center;
  margin: 16px 0 12px;
}
.chat-date-sep span {
  background: rgba(0,0,0,0.06);
  color: var(--dark-300);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.chat-bubble-row {
  display: flex;
  margin-bottom: 6px;
}
.chat-bubble-row.mine { justify-content: flex-end; }
.chat-bubble-row.theirs { justify-content: flex-start; }

.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.chat-bubble.mine {
  background: var(--primary);
  color: white;
  border-radius: 16px 16px 4px 16px;
}
.chat-bubble.theirs {
  background: white;
  color: var(--dark);
  border-radius: 16px 16px 16px 4px;
}
.chat-bubble.sending { opacity: 0.7; }
.chat-bubble.error { background: #ffebee; color: #c62828; }

.chat-bubble-text { white-space: pre-wrap; }
.chat-bubble-time {
  font-size: 10px;
  opacity: 0.6;
  margin-top: 4px;
  text-align: right;
}

.chat-input-bar {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border-top: 1px solid var(--light-200);
  flex-shrink: 0;
  align-items: center;
}
.chat-text-input {
  flex: 1;
  border: 1.5px solid var(--light-300);
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: var(--light-100);
  min-width: 0;
}
.chat-text-input:focus { border-color: var(--primary); background: white; }
.chat-text-input::placeholder { color: var(--dark-100); }

.chat-send-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.chat-send-btn:hover { background: var(--primary-dark, #D4631E); transform: scale(1.05); }
.chat-send-btn:active { transform: scale(0.95); }

/* Chat loading animation */
.chat-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 40px;
}
.chat-loading-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dark-100);
  animation: chatDot 1.4s infinite ease-in-out both;
}
.chat-loading-dot:nth-child(1) { animation-delay: 0s; }
.chat-loading-dot:nth-child(2) { animation-delay: 0.16s; }
.chat-loading-dot:nth-child(3) { animation-delay: 0.32s; }
@keyframes chatDot {
  0%, 80%, 100% { transform: scale(0.4); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* ===== CHAT MOBILE ===== */
@media (max-width: 768px) {
  .chat-modal {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: 100vw;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
  }
  .chat-modal-header { padding: 12px 16px; }
  .chat-modal-avatar { width: 36px; height: 36px; font-size: 14px; }
  .chat-modal-name { font-size: 14px; }
  .chat-messages { padding: 12px; }
  .chat-bubble { max-width: 85%; font-size: 14px; padding: 9px 12px; }
  .chat-input-bar { 
    padding: 10px 12px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
  .chat-text-input { padding: 10px 16px; font-size: 16px; /* iOS zoom fix */ }
  .chat-send-btn { width: 40px; height: 40px; }
}

@media (max-width: 420px) {
  .chat-bubble { max-width: 88%; font-size: 13px; }
  .chat-bubble-time { font-size: 9px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 25% { transform: translateY(-14px) rotate(3deg); } 50% { transform: translateY(-6px) rotate(-2deg); } 75% { transform: translateY(-18px) rotate(4deg); } }
@keyframes floatSlow { 0%, 100% { transform: translateY(0) rotate(0deg); } 30% { transform: translateY(-20px) rotate(-5deg); } 60% { transform: translateY(-8px) rotate(6deg); } }
@keyframes drift { 0%, 100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(8px,-12px) rotate(4deg); } 66% { transform: translate(-6px,-20px) rotate(-3deg); } }

/* Hero floating white SVG icons */
.hero-floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hfi {
  position: absolute;
  width: 30px; height: 30px;
  fill: none;
  stroke: rgba(255,255,255,0.13);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: float 5s ease-in-out infinite;
}
.hfi:nth-child(odd) { animation-name: floatSlow; animation-duration: 6.5s; }
.hfi:nth-child(3n) { animation-name: drift; animation-duration: 7s; }
.hfi-lg { width: 42px; height: 42px; stroke: rgba(255,255,255,0.16); stroke-width: 1.3; }
.hfi-sm { width: 24px; height: 24px; stroke: rgba(255,255,255,0.10); }
.hfi-xs { width: 18px; height: 18px; stroke: rgba(255,255,255,0.07); animation-duration: 8s !important; }
.hero-left { position: relative; z-index: 1; }
.hero-right { position: relative; z-index: 1; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

.animate-up { animation: fadeInUp 0.6s var(--ease) both; }
.skeleton { background: linear-gradient(90deg, var(--light-200) 25%, var(--light-100) 50%, var(--light-200) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-md); }

.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover { background: var(--accent-dark); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover { background: var(--primary-ghost); }

.btn-outline {
  background: transparent;
  color: var(--dark-500);
  border-color: var(--light-300);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

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

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: var(--radius-sm); }
.btn-full { width: 100%; }

.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn-loading::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-200);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-body { padding: 24px; }
.card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--light-200);
  display: flex; justify-content: space-between; align-items: center;
}
.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--light-200);
  background: var(--light-100);
}
.card-image {
  width: 100%; height: 200px;
  object-fit: cover;
}

.card-flat {
  box-shadow: none;
  border: 1px solid var(--light-300);
}
.card-flat:hover { border-color: var(--primary); }

/* ===== FORM ELEMENTS ===== */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--dark-700);
  margin-bottom: 6px;
}
.form-label .required { color: var(--danger); margin-left: 2px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: white;
  border: 1.5px solid var(--light-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--dark);
  transition: all 0.2s var(--ease);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-ghost);
}
.form-input::placeholder { color: var(--dark-100); }
.form-input.error { border-color: var(--danger); }

.form-textarea { min-height: 100px; resize: vertical; }
.form-select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23546E7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-help { font-size: 12px; color: var(--dark-100); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }

.form-row {
  display: grid; gap: 16px;
}
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-check {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--primary);
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  font-size: 12px; font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
}
.badge-primary { background: var(--primary-ghost); color: var(--primary); }
.badge-success { background: rgba(39,174,96,0.1); color: var(--success); }
.badge-warning { background: rgba(242,153,74,0.1); color: var(--warning); }
.badge-danger { background: rgba(235,87,87,0.1); color: var(--danger); }
.badge-info { background: rgba(45,156,219,0.1); color: var(--info); }
.badge-secondary { background: var(--light-200); color: var(--dark-300); }

/* ===== STARS ===== */
.star { font-size: 16px; }
.star.filled { color: #F2C94C; }
.star.half { color: #F2C94C; }
.star.empty { color: var(--light-300); }

/* ===== TABS ===== */
.tabs {
  display: flex; gap: 4px;
  border-bottom: 2px solid var(--light-200);
  margin-bottom: 24px;
}
.tab-btn {
  padding: 12px 20px;
  font-size: 14px; font-weight: 600;
  color: var(--dark-300);
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ===== STAT BOX ===== */
.stat-box {
  text-align: center; padding: 24px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px; color: var(--dark-300); font-weight: 500;
}

/* ===== SEARCH BAR ===== */
.search-bar {
  display: flex; align-items: center;
  background: white;
  border: 1.5px solid var(--light-300);
  border-radius: var(--radius-full);
  padding: 4px 6px 4px 20px;
  transition: all 0.3s var(--ease);
  max-width: 480px;
}
.search-bar:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-ghost); }
.search-bar input {
  flex: 1; border: none; outline: none;
  font-size: 15px; padding: 8px 0;
  background: transparent;
}
.search-bar .btn { border-radius: var(--radius-full); }

/* ===== COMPANY CARD ===== */
.company-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-200);
  padding: 24px;
  display: flex; gap: 20px;
  transition: all 0.3s var(--ease);
}
.company-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary-light);
}
.company-avatar {
  width: 64px; height: 64px;
  background: var(--primary-ghost);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.company-info { flex: 1; }
.company-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.company-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--dark-300);
  margin-bottom: 8px;
}
.company-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.company-tag {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px;
  background: var(--light-100);
  border-radius: var(--radius-full);
  color: var(--dark-300);
}

/* ===== STEP INDICATOR ===== */
.steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 40px;
}
.step {
  display: flex; align-items: center; gap: 10px;
}
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--light-300);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  color: var(--dark-300);
  transition: all 0.3s;
}
.step.active .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.step.completed .step-circle {
  background: var(--success);
  border-color: var(--success);
  color: white;
}
.step-label { font-size: 14px; font-weight: 500; color: var(--dark-300); }
.step.active .step-label { color: var(--primary); font-weight: 600; }
.step-line {
  width: 60px; height: 2px;
  background: var(--light-300);
  margin: 0 12px;
}
.step.completed + .step-line,
.step.completed ~ .step-line { background: var(--success); }

/* ===== FEATURE CARD ===== */
.feature-card {
  text-align: center; padding: 32px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-200);
  transition: all 0.3s var(--ease);
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.feature-icon {
  width: 64px; height: 64px;
  background: var(--primary-ghost);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.1);
}
.feature-card:hover .feature-icon svg { color: white; }
.feature-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 14px; color: var(--dark-300);
  line-height: 1.6;
}

/* ===== TABLE ===== */
.table-wrapper { overflow-x: auto; }
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-300);
  border-bottom: 2px solid var(--light-200);
}
.data-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--light-200);
}
.data-table tr:hover td { background: var(--light-100); }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center; padding: 60px 24px;
}
.empty-icon { font-size: 56px; margin-bottom: 16px; opacity: 0.4; }
.empty-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  margin-bottom: 8px;
}
.empty-desc { font-size: 15px; color: var(--dark-300); margin-bottom: 24px; }

/* Auth tabs (email / phone login) */
.auth-tabs {
  display: flex; gap: 0; margin-bottom: 20px;
  border: 2px solid var(--light-200); border-radius: var(--radius-md); overflow: hidden;
}
.auth-tab {
  flex: 1; padding: 12px; text-align: center;
  font-size: 14px; font-weight: 600;
  background: var(--light-100); color: var(--dark-300);
  cursor: pointer; border: none; transition: all 0.2s;
}
.auth-tab.active {
  background: var(--primary); color: white;
}
.auth-tab-content { display: none; }
.auth-tab-content.active { display: block; }

/* ===== FLOATING TEKLİF AL BUTONU ===== */
.fab-teklif {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 8888;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f97316 0%, #ea6c0a 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(249,115,22,0.45), 0 2px 8px rgba(0,0,0,0.15);
  animation: fabBounceIn 0.6s cubic-bezier(0.34,1.56,0.64,1) both, fabFloat 3.5s ease-in-out 1s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.fab-teklif:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(249,115,22,0.55), 0 4px 12px rgba(0,0,0,0.2);
}
.fab-teklif:active { transform: scale(0.97); }

.fab-teklif-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fab-teklif-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  animation: fabPulse 2.5s ease-out 2s infinite;
  pointer-events: none;
}

@keyframes fabBounceIn {
  0%   { opacity: 0; transform: translateY(60px) scale(0.7); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fabFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-6px); }
}
@keyframes fabPulse {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

/* Panel modunda ve teklif al sayfasında gizle */
.panel-mode .fab-teklif,
body.hide-fab .fab-teklif { display: none !important; }

/* Mobil - biraz küçük */
@media (max-width: 768px) {
  .fab-teklif {
    bottom: 20px;
    right: 16px;
    padding: 12px 18px;
    font-size: 14px;
    gap: 8px;
  }
}
/* ===== 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.25; 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: 10px; right: 10px; font-size: 10px; font-weight: 700; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; padding: 4px 9px; border-radius: var(--radius-full); display: inline-flex; align-items: center; gap: 4px; text-transform: uppercase; letter-spacing: 0.2px; box-shadow: 0 2px 6px rgba(240, 123, 46, 0.25); z-index: 2; }
.route-cities { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.route-from, .route-to { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.route-arrow { color: var(--primary); font-size: 16px; }
.route-info { display: flex; justify-content: space-between; align-items: center; }
.route-price { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--primary); }
.route-time { font-size: 12px; color: var(--dark-300); }

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

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

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

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

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

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

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

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

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

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

.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 */
    scroll-padding: 0;
  }
  .firma-photos-gallery::-webkit-scrollbar { display: none; }

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

  .firma-photos-dots { display: flex; }
}

/* 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; }
}
/* ===== TABLET (769 - 1024) ===== */
@media (max-width: 1024px) {
  /* Hero */
  .hero-content-form { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-left { order: 1; }
  .hero-right { order: 2; max-width: 520px; margin: 0 auto; width: 100%; text-align: left; }
  .hero h1 { font-size: 36px; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 28px; max-width: 500px; }
  .hero-badge { margin: 0 auto 28px; }

  /* Grids */
  .services-home-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-home-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-visual { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card:nth-child(even) { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .header-search { display: none; }
}

/* ===== MOBILE (max 768) ===== */
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .container { padding: 0 16px; }

  /* ---- HEADER ---- */
  .header-inner { gap: 12px; }
  .logo { gap: 8px; }
  .logo-icon svg { width: 34px; height: 34px; }
  .logo-brand { font-size: 14px; }
  .logo-sub { font-size: 14px; }
  #site-logo-img { height: 32px; max-width: 160px; }

  .mobile-toggle { display: flex; }
  #main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: white; flex-direction: column; padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: all 0.3s var(--ease); z-index: 999;
    border-top: 1px solid var(--light-200);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  #main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link {
    padding: 14px 16px; width: 100%;
    font-size: 15px; border-radius: var(--radius-sm);
  }
  .nav-link:active { background: var(--primary-ghost); }

  .header-actions .btn { display: none; }
  .header-search { display: none; }
  .header-mobile-auth { display: flex; gap: 6px; align-items: center; }

  /* Mobil menüde giriş butonları */
  #main-nav .mobile-auth-btns {
    display: flex;
    gap: 10px;
    padding: 16px 0 6px;
    margin-top: 8px;
    border-top: 1px solid var(--light-200);
  }
  #main-nav .mobile-auth-btns .btn {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    display: block;
  }
  #main-nav .mobile-auth-btns .btn-mob-login {
    background: var(--primary);
    color: white;
  }
  #main-nav .mobile-auth-btns .btn-mob-firma {
    background: var(--accent);
    color: white;
  }

  /* ---- HERO ---- */
  .hero { 
    min-height: 100svh;
    min-height: 100vh;
    padding: var(--header-h) 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content-form { gap: 24px; }
  .hero h1 { font-size: 26px; line-height: 1.3; margin-bottom: 14px; }
  .hero-desc { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 16px; }

  .hero-stats { 
    gap: 16px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 0;
  }
  .hero-stat-num { font-size: 20px; }
  .hero-stat-label { font-size: 11px; }

  /* ---- HERO FORM ---- */
  .hero-right { max-width: 100%; }
  .hero-form-card { border-radius: var(--radius-md); }
  .hero-form-header { padding: 14px 16px; }
  .hero-form-header h2 { font-size: 17px; }
  .hero-form-header p { font-size: 12px; }
  .hero-form-body { padding: 16px; }

  .hf-row { margin-bottom: 12px; }
  .hf-group label { font-size: 12px; margin-bottom: 5px; }
  .hf-split { grid-template-columns: 1fr 1fr; gap: 6px; }
  .hf-select, .hf-input { padding: 9px 10px; font-size: 13px; }
  .hf-row-2 { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hf-chip { padding: 6px 12px; font-size: 12px; }
  .hf-home-types { gap: 6px; }
  .hf-submit { padding: 12px 20px; font-size: 15px; }
  .hf-privacy { font-size: 11px; margin-top: 10px; }

  /* ---- SECTIONS ---- */
  .section { padding: 28px 0; }
  .section-tag { font-size: 11px; letter-spacing: 1px; margin-bottom: 8px; }
  .section-title { font-size: 24px; margin-bottom: 8px; }
  .section-desc { font-size: 14px; }
  .section-header { margin-bottom: 32px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 20px 16px; }
  .feature-icon { width: 48px; height: 48px; margin-bottom: 12px; }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-title { font-size: 14px; margin-bottom: 6px; }
  .feature-desc { font-size: 12px; line-height: 1.5; }

  /* Steps */
  .steps-visual { gap: 20px; }
  .step-num { font-size: 48px; margin-bottom: 10px; }
  .step-card h3 { font-size: 17px; }
  .step-card p { font-size: 13px; }
  .step-card { padding: 20px 16px; }

  /* Services home */
  .service-home-card { flex-direction: column; padding: 20px; gap: 16px; }
  .shc-icon { width: 56px; height: 56px; font-size: 36px; }
  .shc-content h3 { font-size: 16px; }
  .shc-content p { font-size: 13px; }
  .shc-features span { font-size: 11px; padding: 3px 8px; }

  /* Routes */
  .routes-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .route-card { padding: 14px; }
  .route-from, .route-to { font-size: 13px; }
  .route-price { font-size: 13px; }
  .route-time { font-size: 11px; }
  .route-badge { font-size: 10px; }

  /* Stats banner */
  .stats-banner { padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-icon { font-size: 24px; margin-bottom: 6px; }
  .stat-num { font-size: 22px; }
  .stat-text { font-size: 11px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }
  .review-card { padding: 18px; }
  .review-avatar { width: 38px; height: 38px; font-size: 16px; }
  .review-text { font-size: 13px; }

  /* Guide */
  .guide-grid { grid-template-columns: 1fr; gap: 12px; }
  .guide-card { padding: 20px; }
  .guide-card h3 { font-size: 15px; }
  .guide-card p { font-size: 12px; }
  .guide-num { font-size: 32px; }

  /* Price table */
  .price-table th, .price-table td { padding: 8px 6px; font-size: 11px; }
  .price-table th { font-size: 11px; }
  .price-table td:first-child { font-size: 12px; }
  .price-note { font-size: 11px; }

  /* Cities */
  .city-chip { padding: 8px 14px; font-size: 13px; }
  .cities-grid { gap: 8px; }

  /* FAQ */
  .faq-question { padding: 14px 18px; font-size: 14px; }
  .faq-answer p { font-size: 13px; }
  .faq-item.open .faq-answer { padding: 0 18px 14px; }

  /* Blog */
  .blog-home-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bhc-image { height: 100px; font-size: 36px; }
  .bhc-content { padding: 14px; }
  .bhc-content h3 { font-size: 13px; }
  .bhc-content p { font-size: 12px; }

  /* CTA */
  .cta-section { padding: 32px 20px; margin: 0; border-radius: var(--radius-lg); }
  .cta-section h2 { font-size: 22px; }
  .cta-section p { font-size: 14px; margin-bottom: 20px; }
  .cta-actions { flex-direction: column; align-items: center; gap: 10px; }

  /* SEO */
  .seo-content h2 { font-size: 20px; }
  .seo-content p { font-size: 14px; }

  /* Footer mobile */
  #main-footer { padding-top: 20px; margin-top: 32px; }
  .footer-brand-row { flex-direction: column; gap: 8px; text-align: center; }
  .footer-brand-row .logo { justify-content: center; }
  .footer-tagline { text-align: center; }
  .footer-nav-row { justify-content: center; gap: 6px 14px; }
  .footer-nav-sep { display: none; }
  .footer-legal-row { justify-content: center; gap: 4px 10px; }
  .footer-legal-row a { font-size: 10px; }
  .footer-bottom-row { flex-direction: column; text-align: center; gap: 10px; align-items: center; }
  .footer-badges { justify-content: center; }
  .footer-payment-logos { justify-content: center; }

  /* Auth / Form pages */
  .auth-page { padding-top: calc(var(--header-h) + 16px); }
  .auth-card { padding: 24px 18px; margin: 16px; max-width: none; }
  .auth-card h2 { font-size: 20px; }
  .quote-page { padding-top: calc(var(--header-h) + 16px); }
  .quote-form-header { padding: 20px 18px; }
  .quote-form-header h1 { font-size: 22px; }
  .quote-form-body { padding: 18px; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .company-card { flex-direction: column; }

  /* Blog list page grid */
  div[style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
}

/* ===== SMALL MOBILE (max 420) ===== */
@media (max-width: 420px) {
  .hero h1 { font-size: 22px; }
  .hero-stats { gap: 12px; }
  .hero-stat-num { font-size: 18px; }
  .btn-lg { padding: 12px 20px; font-size: 14px; }
  .logo-brand { font-size: 12px; }
  .logo-sub { font-size: 12px; }
  .logo-icon svg { width: 30px; height: 30px; }
  .logo { gap: 6px; }

  .hf-split { grid-template-columns: 1fr; }
  .hf-row-2 { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .routes-grid { grid-template-columns: 1fr; }
  .blog-home-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: 1fr; }
}
