/* ================================================
   ESSE TAŞIMACILIK - CONVERSION OPTIMIZED CSS
   Reklam Dönüşümü için Özel Tasarım
   ================================================ */

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

/* ---- CSS VARIABLES ---- */
:root {
  --red: #d32f2f;
  --red-dark: #b71c1c;
  --red-light: #ef5350;
  --orange: #e8a000;
  --orange-dark: #c77a00;
  --dark: #0d0d0d;
  --dark2: #1a1a2e;
  --dark3: #16213e;
  --white: #ffffff;
  --gray: #f5f5f5;
  --text-dark: #1a1a1a;
  --text-gray: #555;
  --shadow-red: rgba(211, 47, 47, 0.4);
  --shadow-orange: rgba(232, 160, 0, 0.4);
}

/* ================================================
   GLOBAL RESET & BASE
   ================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ================================================
   STICKY EMERGENCY HEADER (Conversion #1)
   ================================================ */
.emergency-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #c62828 100%);
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.emergency-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
}

.emergency-logo {
  color: white;
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.emergency-logo span.badge {
  background: var(--orange);
  color: #000;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.emergency-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
}

.emergency-number {
  color: white;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
  display: none;
}

.emergency-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--red-dark) !important;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none !important;
  white-space: nowrap;
  animation: pulse-btn 2s infinite;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  letter-spacing: 0.3px;
}

.emergency-call-btn:hover {
  transform: scale(1.05);
  color: var(--red-dark) !important;
  text-decoration: none !important;
}

.emergency-call-btn .phone-icon {
  animation: wiggle-phone 1.5s infinite;
  font-size: 16px;
}

@keyframes wiggle-phone {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-20deg); }
  30% { transform: rotate(20deg); }
  45% { transform: rotate(-15deg); }
  60% { transform: rotate(15deg); }
  75% { transform: rotate(0deg); }
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 0 0 rgba(255,255,255,0.5); }
  50% { box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 0 8px rgba(255,255,255,0); }
}

/* ================================================
   HERO SECTION - CONVERSION OPTIMIZED
   ================================================ */
.cv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 54px; /* emergency header height */
}

.cv-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 40%, #16213e 70%, #0f3460 100%);
  z-index: 0;
}

.cv-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/new_car.jpg') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.cv-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.6) 0%, rgba(13,13,13,0.4) 50%, rgba(13,13,13,0.85) 100%);
  z-index: 1;
}

.cv-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 20px 40px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* URGENCY BADGE */
.cv-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 47, 47, 0.15);
  border: 1px solid rgba(211, 47, 47, 0.4);
  color: #ff6b6b;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* margin-bottom: 25px; */
  backdrop-filter: blur(10px);
  animation: badge-pulse 3s infinite;
  margin-top: 30px;
}

.cv-urgency-badge .dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: dot-blink 1s infinite;
}

@keyframes badge-pulse {
  0%, 100% { border-color: rgba(211,47,47,0.4); box-shadow: 0 0 0 0 rgba(211,47,47,0.2); }
  50% { border-color: rgba(211,47,47,0.8); box-shadow: 0 0 0 6px rgba(211,47,47,0); }
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* HERO TITLE */
.cv-hero-title {
  color: white;
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  letter-spacing: -1px;
}

.cv-hero-title .accent {
  color: var(--orange);
  display: block;
}

/* HERO SUBTITLE */
.cv-hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: clamp(15px, 2.5vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.cv-hero-subtitle strong {
  color: white;
  font-weight: 700;
}

/* MAIN CTA BUTTON */
.cv-main-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: white !important;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  padding: 20px 45px;
  border-radius: 60px;
  text-decoration: none !important;
  box-shadow: 0 10px 40px var(--shadow-red), 0 0 0 0 rgba(211,47,47,0.5);
  animation: main-cta-pulse 2.5s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.2);
}

.cv-main-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 50px var(--shadow-red);
  color: white !important;
  text-decoration: none !important;
}

.cv-main-cta .phone-ico {
  animation: wiggle-phone 2s infinite;
  font-size: clamp(18px, 2.5vw, 22px);
}

@keyframes main-cta-pulse {
  0%, 100% { box-shadow: 0 10px 40px var(--shadow-red), 0 0 0 0 rgba(211,47,47,0.4); }
  50% { box-shadow: 0 10px 40px var(--shadow-red), 0 0 0 15px rgba(211,47,47,0); }
}

/* SECONDARY WA CTA */
.cv-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid rgba(37, 211, 102, 0.5);
  color: #25d366 !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none !important;
  margin-left: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cv-secondary-cta:hover {
  background: rgba(37, 211, 102, 0.3);
  color: #25d366 !important;
  transform: translateY(-2px);
  text-decoration: none !important;
}

.cv-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

/* TRUST BADGES */
.cv-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
}

.cv-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.cv-trust-badge .icon {
  font-size: 16px;
}

/* RESPONSE TIME COUNTER */
.cv-response-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 160, 0, 0.1);
  border: 1px solid rgba(232, 160, 0, 0.3);
  color: var(--orange);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 25px;
}

.cv-response-counter .time {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
}

/* ================================================
   HERO STATS STRIP
   ================================================ */
.cv-stats-strip {
  background: var(--orange);
  padding: 18px 20px;
}

.cv-stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cv-stat-item {
  text-align: center;
  padding: 8px 30px;
  border-right: 1px solid rgba(0,0,0,0.15);
  flex: 1;
  min-width: 120px;
}

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

.cv-stat-number {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.cv-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,0,0,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* ================================================
   SOCIAL PROOF SECTION
   ================================================ */
.cv-social-proof {
  background: #f8f8f8;
  padding: 60px 20px;
}

.cv-section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.cv-section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

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

.cv-section-desc {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* REVIEW CARDS */
.cv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.cv-review-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cv-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.cv-review-stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.cv-review-text {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
  font-style: italic;
}

.cv-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cv-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.cv-review-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}

.cv-review-service {
  font-size: 12px;
  color: var(--text-gray);
}

.cv-review-badge {
  margin-left: auto;
  background: #f0fdf4;
  color: #15803d;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.cv-services {
  background: var(--dark);
  padding: 80px 20px;
}

.cv-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.cv-service-card {
  background: #1a1a2e;
  border-radius: 16px;
  padding: 35px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cv-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

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

.cv-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.15);
}

.cv-service-icon {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin-bottom: 20px;
}

.cv-service-icon.orange {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.cv-service-title {
  color: white;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cv-service-desc {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cv-service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.cv-service-features li {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.cv-service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.cv-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: white !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  justify-content: center;
}

.cv-service-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px var(--shadow-red);
  color: white !important;
  text-decoration: none !important;
}

.cv-service-cta.orange-cta {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.cv-service-cta.orange-cta:hover {
  box-shadow: 0 6px 20px var(--shadow-orange);
}

/* ================================================
   AREAS SECTION
   ================================================ */
.cv-areas {
  background: white;
  padding: 70px 20px;
}

.cv-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.cv-area-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cv-area-chip:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 15px var(--shadow-red);
  text-decoration: none;
}

.cv-area-chip .map-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.cv-area-chip:hover .map-dot {
  background: white;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.cv-how-it-works {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
  padding: 80px 20px;
}

.cv-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.cv-step {
  text-align: center;
  position: relative;
}

.cv-step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px var(--shadow-red);
  position: relative;
  z-index: 1;
}

.cv-step-title {
  color: white;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cv-step-desc {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
}

/* ================================================
   FAQ SECTION
   ================================================ */
.cv-faq {
  background: #f8f8f8;
  padding: 70px 20px;
}

.cv-faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.cv-faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.cv-faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cv-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  gap: 15px;
}

.cv-faq-question h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}

.cv-faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  font-weight: 700;
}

.cv-faq-item.active .cv-faq-toggle {
  transform: rotate(45deg);
  background: var(--red);
  color: white;
}

.cv-faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.cv-faq-item.active .cv-faq-answer {
  max-height: 300px;
  padding: 0 25px 20px;
}

.cv-faq-answer p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

/* ================================================
   FINAL CTA SECTION
   ================================================ */
.cv-final-cta {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #c62828 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cv-final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.04);
  transform: rotate(15deg);
  border-radius: 50%;
}

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

.cv-final-title {
  color: white;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  letter-spacing: -1px;
}

.cv-final-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cv-final-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: white;
  color: var(--red-dark) !important;
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 900;
  padding: 22px 50px;
  border-radius: 70px;
  text-decoration: none !important;
  box-shadow: 0 15px 50px rgba(0,0,0,0.25);
  animation: final-pulse 2.5s infinite;
  transition: transform 0.2s ease;
  letter-spacing: -0.5px;
}

.cv-final-phone-btn:hover {
  transform: scale(1.03) translateY(-3px);
  color: var(--red-dark) !important;
  text-decoration: none !important;
}

.cv-final-phone-btn .ico {
  animation: wiggle-phone 2s infinite;
  font-size: clamp(18px, 3vw, 26px);
}

@keyframes final-pulse {
  0%, 100% { box-shadow: 0 15px 50px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 15px 50px rgba(0,0,0,0.25), 0 0 0 20px rgba(255,255,255,0); }
}

.cv-final-or {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin: 20px 0;
}

.cv-final-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: white !important;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cv-final-wa-btn:hover {
  background: rgba(255,255,255,0.25);
  color: white !important;
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* ================================================
   FOOTER - COMPACT
   ================================================ */
.cv-footer {
  background: #050505;
  padding: 40px 20px 20px;
}

.cv-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cv-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cv-footer-brand {
  flex: 1;
  min-width: 200px;
}

.cv-footer-brand-name {
  color: white;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
  display: block;
}

.cv-footer-brand-name span {
  color: var(--orange);
}

.cv-footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.6;
  max-width: 280px;
}

.cv-footer-contact {
  flex: 1;
  min-width: 180px;
}

.cv-footer-title {
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.cv-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cv-footer-links li {
  margin-bottom: 8px;
}

.cv-footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cv-footer-links a:hover {
  color: var(--orange);
}

.cv-footer-info {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 2;
}

.cv-footer-info a {
  color: var(--orange);
  text-decoration: none;
}

.cv-footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}

/* ================================================
   MOBILE FLOATING CALL BAR (Conversion #2)
   ================================================ */
.cv-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: none;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 14px 20px;
  box-shadow: 0 -6px 25px rgba(0,0,0,0.3);
}

.cv-mobile-bar-inner {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.cv-mb-call {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: var(--red-dark) !important;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cv-mb-call .ico {
  animation: wiggle-phone 2s infinite;
  font-size: 18px;
}

.cv-mb-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: white !important;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: 50px;
  text-decoration: none !important;
}

/* ================================================
   MEDIA QUERIES
   ================================================ */
@media (max-width: 768px) {
  .emergency-number {
    display: none;
  }

  .cv-mobile-bar {
    display: block;
  }

  body {
    padding-bottom: 80px !important;
  }

  .cv-hero {
    min-height: 90vh;
  }

  .cv-hero-content {
    padding: 40px 15px 30px;
  }

  .cv-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .cv-secondary-cta {
    margin-left: 0;
  }

  .cv-stats-inner {
    gap: 0;
  }

  .cv-stat-item {
    padding: 10px 15px;
    min-width: 90px;
  }

  .cv-stat-number {
    font-size: 22px;
  }

  .cv-steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .cv-footer-top {
    gap: 25px;
  }

  .cv-final-phone-btn {
    padding: 18px 30px;
  }
}

@media (max-width: 480px) {
  .cv-hero-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .cv-main-cta {
    padding: 16px 30px;
    font-size: 18px;
  }

  .cv-steps {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .cv-stat-item {
    min-width: 75px;
    padding: 8px 10px;
  }

  .cv-stat-number {
    font-size: 18px;
  }

  .cv-stat-label {
    font-size: 10px;
  }
}

@media (min-width: 1024px) {
  .emergency-number {
    display: block;
  }
}

/* ================================================
   SCROLL REVEAL ANIMATIONS
   ================================================ */
.cv-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cv-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.cv-reveal-delay-1 { transition-delay: 0.1s; }
.cv-reveal-delay-2 { transition-delay: 0.2s; }
.cv-reveal-delay-3 { transition-delay: 0.3s; }
.cv-reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================
   KEYWORD TARGETING - AREA SPECIFIC COLORS
   ================================================ */
.cv-keyword-highlight {
  color: var(--orange);
  font-weight: 800;
}

/* ================================================
   SCHEMA / RICH SNIPPET HINT BADGES
   ================================================ */
.cv-rating-display {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #eee;
  padding: 10px 18px;
  border-radius: 30px;
  margin-top: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.cv-rating-stars {
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 2px;
}

.cv-rating-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.cv-rating-count {
  font-size: 13px;
  color: var(--text-gray);
}

/* ================================================
   BEFORE/AFTER TRUST SECTION
   ================================================ */
.cv-trust-section {
  background: white;
  padding: 70px 20px;
}

.cv-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.cv-trust-card {
  text-align: center;
  padding: 35px 25px;
  border-radius: 16px;
  background: #f9f9f9;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cv-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cv-trust-icon {
  font-size: 42px;
  margin-bottom: 15px;
  display: block;
}

.cv-trust-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.cv-trust-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ================================================
   SUBPAGE LAYOUT — ortak alt sayfa bileşenleri
   ================================================ */

/* Body override for subpages */
body.subpage {
  background: #0d0d0d;
  font-family: 'Inter', sans-serif !important;
  margin: 0;
  padding: 0;
  padding-top: 62px; /* emergency header height */
}

/* ---- Subpage Nav ---- */
.sp-nav {
  background: rgba(13,13,13,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 62px;
  z-index: 9000;
  backdrop-filter: blur(10px);
}

.sp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
}

.sp-nav-logo {
  color: white;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.sp-nav-logo .logo-esse { color: var(--orange); }

.sp-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.sp-nav-links li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.sp-nav-links li a:hover,
.sp-nav-links li a.active {
  color: white;
  background: rgba(255,255,255,0.08);
}

.sp-nav-cta {
  background: var(--red);
  color: white !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 8px 14px !important;
}

.sp-nav-cta:hover {
  background: var(--red-dark) !important;
}

/* Mobile hamburger */
.sp-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.sp-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- Page Hero (breadcrumb banner) ---- */
.sp-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #16213e 100%);
  padding: 55px 20px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(211,47,47,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211,47,47,0.15);
  border: 1px solid rgba(211,47,47,0.3);
  color: #ef5350;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.sp-hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: white;
  margin: 0 0 14px;
  line-height: 1.2;
}

.sp-hero h1 span { color: var(--orange); }

.sp-hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.sp-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.sp-breadcrumb li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.sp-breadcrumb li a:hover { color: var(--orange); }
.sp-breadcrumb li.active { color: rgba(255,255,255,0.7); }
.sp-breadcrumb li::after { content: '›'; margin-left: 8px; }
.sp-breadcrumb li:last-child::after { content: ''; }

/* ---- Subpage CTA Buttons (in hero) ---- */
.sp-hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.sp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--shadow-red);
}

.sp-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-red);
  color: white;
  text-decoration: none;
}

.sp-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}

.sp-cta-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  text-decoration: none;
}

/* ---- Content Sections ---- */
.sp-section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sp-section-dark {
  background: #111;
  padding: 70px 20px;
}

.sp-section-dark-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sp-section-red {
  background: linear-gradient(135deg, var(--red-dark), #8b0000);
  padding: 60px 20px;
  text-align: center;
}

.sp-section-label {
  display: inline-block;
  background: rgba(232,160,0,0.15);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  border: 1px solid rgba(232,160,0,0.25);
}

.sp-section-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: white;
  margin: 0 0 12px;
  line-height: 1.2;
}

.sp-section-title span { color: var(--orange); }
.sp-section-title.dark { color: var(--text-dark); }
.sp-section-title.dark span { color: var(--red); }

.sp-section-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ---- Two Column Layout ---- */
.sp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sp-two-col.reverse { direction: rtl; }
.sp-two-col.reverse > * { direction: ltr; }

.sp-col-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.sp-col-text h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
  line-height: 1.3;
}

.sp-col-text h2 span { color: var(--orange); }

.sp-col-text p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.sp-checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.5;
}

.sp-checklist li::before {
  content: '✓';
  background: var(--orange);
  color: #000;
  font-weight: 900;
  font-size: 11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Steps / Process ---- */
.sp-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.sp-step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.sp-step-card:hover {
  border-color: rgba(232,160,0,0.4);
  transform: translateY(-4px);
}

.sp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 16px;
}

.sp-step-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.sp-step-title {
  font-size: 17px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.sp-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ---- Feature Cards Grid ---- */
.sp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.sp-feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
}

.sp-feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,160,0,0.3);
  transform: translateY(-4px);
}

.sp-feature-icon {
  font-size: 38px;
  margin-bottom: 14px;
  display: block;
}

.sp-feature-title {
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.sp-feature-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ---- FAQ ---- */
.sp-faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.sp-faq-item.active {
  border-color: rgba(232,160,0,0.4);
}

.sp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}

.sp-faq-q-text {
  font-size: 15px;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

.sp-faq-q-icon {
  font-size: 18px;
  color: var(--orange);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.sp-faq-item.active .sp-faq-q-icon {
  transform: rotate(45deg);
}

.sp-faq-a {
  display: none;
  padding: 0 22px 18px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
}

.sp-faq-item.active .sp-faq-a {
  display: block;
}

/* ---- Contact Info Cards ---- */
.sp-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.sp-contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s;
}

.sp-contact-card:hover {
  border-color: rgba(232,160,0,0.3);
  transform: translateY(-4px);
}

.sp-contact-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.sp-contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.sp-contact-value {
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.sp-contact-value a {
  color: white;
  text-decoration: none;
}

.sp-contact-value a:hover {
  color: var(--orange);
}

/* ---- CTA Section ---- */
.sp-cta-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, #8b0000 100%);
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.sp-cta-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
}

.sp-cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  max-width: 550px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.sp-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.sp-cta-btns .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--red-dark);
  font-weight: 800;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.sp-cta-btns .btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.4);
  text-decoration: none;
  color: var(--red-dark);
}

.sp-cta-btns .btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}

.sp-cta-btns .btn-wa:hover {
  background: #1eb954;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* ---- Map ---- */
.sp-map-section {
  background: #0d0d0d;
  padding: 0;
  line-height: 0;
}

.sp-map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  filter: grayscale(30%) contrast(1.1);
}

/* ---- Testimonials ---- */
.sp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.sp-testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
}

.sp-testimonial-card:hover {
  border-color: rgba(232,160,0,0.3);
}

.sp-testimonial-stars {
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 12px;
}

.sp-testimonial-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.sp-testimonial-author {
  font-weight: 700;
  color: white;
  font-size: 14px;
}

.sp-testimonial-role {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ---- Gallery Grid ---- */
.sp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.sp-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.sp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.sp-gallery-item:hover img { transform: scale(1.05); }

/* ---- Subpage Footer ---- */
.sp-footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 20px 0;
}

.sp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sp-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.sp-footer-brand-name {
  font-size: 20px;
  font-weight: 900;
  color: white;
  display: block;
  margin-bottom: 12px;
}

.sp-footer-brand-name span { color: var(--orange); }

.sp-footer-desc {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sp-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.sp-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.sp-footer-social a:hover {
  background: var(--orange);
  color: #000;
}

.sp-footer-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.sp-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.sp-footer-links a:hover { color: var(--orange); }

.sp-footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-footer-info div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.4;
}

.sp-footer-info div i {
  color: var(--orange);
  width: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.sp-footer-info div a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.sp-footer-info div a:hover { color: var(--orange); }

.sp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}

/* ---- Mobile Bar (same as index) ---- */
.sp-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
}

.sp-mobile-bar-inner {
  display: flex;
}

.sp-mb-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: white;
  font-weight: 800;
  font-size: 14px;
  padding: 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.sp-mb-call:hover { background: var(--red-dark); color: white; }

.sp-mb-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  background: #25d366;
  color: white;
  font-size: 24px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}

.sp-mb-wa:hover { background: #1eb954; color: white; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .sp-two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sp-two-col.reverse { direction: ltr; }
  .sp-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sp-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    padding: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .sp-nav-links.open { display: flex; }
  .sp-nav-links li a { padding: 10px 16px; width: 100%; display: block; }
  .sp-nav-toggle { display: flex; }
  .sp-mobile-bar { display: block; }
  .sp-footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  body.subpage { padding-bottom: 60px; }
}

