/* 
  Gaziantep Evden Eve Taşımacılık - High Performance Design System
  PageSpeed 100 & Core Web Vitals Optimized (Zero Bloat, High Contrast, Modern Luxury Dark/Glass Theme)
*/

:root {
  --bg-primary: #070d18;
  --bg-secondary: #0f172a;
  --bg-card: #152238;
  --bg-card-hover: #1c2e4c;
  --bg-light: #f8fafc;
  
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-light: rgba(245, 158, 11, 0.12);
  
  --accent-cyan: #06b6d4;
  --accent-green: #10b981;
  --accent-emerald: #059669;
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --border-color: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(245, 158, 11, 0.35);
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 24px rgba(245, 158, 11, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --container-max: 1240px;
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  padding-bottom: 70px; /* offset for sticky mobile bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Typography & Utility */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  line-height: 1.25;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000000;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ee071, #1aa390);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 17px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

/* Top Announcement Bar */
.top-bar {
  background: #050b14;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  padding: 6px 0;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-info {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.top-phone {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.phone-pulse {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Header & Nav */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 13, 24, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 28px;
}

.brand-name {
  display: block;
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.brand-tagline {
  display: block;
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-links li a:hover {
  color: var(--primary);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btn {
  display: none;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s;
}

@media (min-width: 992px) {
  .nav-links { display: flex; }
  .header-btn { display: inline-flex; }
  .mobile-toggle { display: none; }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 50px 0 70px 0;
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
              var(--bg-primary);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-title {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .hero-title { font-size: 46px; }
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.hf-item {
  font-size: 15px;
  color: #cbd5e1;
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 35px;
}

@media (min-width: 576px) {
  .hero-cta-box {
    flex-direction: row;
  }
}

.btn-call-hero {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000000;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.btn-wa-hero {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-icon {
  font-size: 28px;
}

.btn-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.btn-main {
  font-size: 17px;
  font-weight: 900;
}

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

@media (min-width: 576px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Calculator Card in Hero */
.hero-calculator-wrap {
  position: relative;
}

.calculator-card {
  background: var(--bg-card);
  border: 2px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.calc-header {
  margin-bottom: 20px;
}

.calc-badge {
  display: inline-block;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.calc-header h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.calc-header p {
  font-size: 13px;
  color: var(--text-muted);
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
}

.form-control {
  background: #0b1526;
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.calc-result-box {
  background: linear-gradient(135deg, #091a2e, #132742);
  border: 1px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  margin-top: 6px;
}

.calc-price-label {
  font-size: 13px;
  color: var(--text-muted);
}

.calc-price-val {
  font-size: 28px;
  font-weight: 900;
  color: #fbbf24;
  margin: 4px 0;
  letter-spacing: -0.5px;
}

.calc-included-badge {
  font-size: 12px;
  color: var(--accent-emerald);
  font-weight: 700;
}

.calc-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/* Keywords Bar */
.keywords-bar-section {
  background: #091220;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  overflow-x: auto;
}

.keywords-strip {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .keywords-strip {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.kw-tag {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

/* Sections Global */
.section {
  padding: 70px 0;
}

.section-header {
  margin-bottom: 45px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .section-title { font-size: 36px; }
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.featured-service {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.06), var(--bg-card));
}

.service-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.service-icon {
  font-size: 38px;
  margin-bottom: 16px;
}

.service-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 13px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-features li::before {
  content: "✔";
  color: var(--primary);
  font-weight: bold;
}

.service-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-start {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.btn-link {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.btn-link:hover {
  color: var(--primary);
}

/* Districts Grid */
.districts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .districts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.district-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.district-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.district-header h3 {
  font-size: 18px;
}

.district-badge {
  font-size: 11px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.district-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.neighborhood-tags span {
  background: #0a1322;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.district-cta {
  margin-top: auto;
  padding-top: 10px;
}

/* Process Section */
.process-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .process-steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  position: relative;
  text-align: center;
}

.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000000;
  font-size: 20px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.step-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Pricing Table */
.pricing-table-responsive {
  overflow-x: auto;
  margin-bottom: 16px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 14px;
  min-width: 700px;
}

.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
  background: #091322;
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.popular-row {
  background: rgba(245, 158, 11, 0.05);
}

.badge-pop {
  background: var(--primary);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  margin-left: 6px;
}

.price-highlight {
  font-weight: 800;
  font-size: 16px;
  color: #fbbf24;
}

.btn-table-call {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.btn-table-call:hover {
  background: var(--primary);
  color: #000;
}

.pricing-notice {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* Interstate Routes */
.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .routes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.route-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.route-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.route-header h4 {
  font-size: 16px;
}

.route-time {
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.route-card p {
  font-size: 13px;
  color: var(--text-muted);
  flex-grow: 1;
}

.route-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

/* 100+ FAQ Section with Search & Filter */
.faq-section {
  background: #08111e;
}

.faq-search-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 30px;
}

.faq-input-wrap {
  position: relative;
  margin-bottom: 16px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--text-muted);
}

#faq-search-input {
  width: 100%;
  background: #0b1526;
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 14px 44px 14px 44px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
}

#faq-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.faq-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
}

.faq-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip {
  background: #0c172a;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.chip:hover {
  background: #1e293b;
  color: #ffffff;
}

.chip.active {
  background: var(--primary);
  color: #000000;
  border-color: var(--primary);
  font-weight: 800;
}

.faq-counter {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--border-accent);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-badge {
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  font-weight: 700;
}

.faq-title {
  flex-grow: 1;
}

.faq-icon {
  font-size: 20px;
  color: var(--primary);
  font-weight: 900;
  transition: transform 0.25s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-content {
  padding: 16px 20px 20px 20px;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.faq-cta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.btn-call {
  background: var(--primary);
  color: #000;
  font-weight: 800;
}

.faq-bottom-callout {
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.faq-bottom-callout h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.faq-bottom-callout p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-group-center {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-rating {
  font-size: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  color: #cbd5e1;
  font-style: italic;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #3b82f6);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.reviewer-meta strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.reviewer-meta span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-panel h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-info-panel p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-method-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.contact-method-card:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}

.cm-icon {
  font-size: 28px;
}

.cm-details {
  display: flex;
  flex-direction: column;
}

.cm-title {
  font-size: 12px;
  color: var(--text-muted);
}

.cm-val {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.cm-sub {
  font-size: 12px;
  color: var(--primary);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-form-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.contact-form-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.lead-success {
  margin-top: 14px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-green);
  color: #a7f3d0;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
}

/* Footer */
.main-footer {
  background: #040810;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 18px;
  color: var(--primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.brand-col p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 14px 0;
}

.footer-contact-badge {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-accent);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #cbd5e1;
}

.footer-contact-badge a {
  color: var(--primary);
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.seo-note {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.7;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: #091322;
  border-top: 2px solid var(--border-accent);
  padding: 8px 12px;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.6);
}

@media (min-width: 992px) {
  .sticky-mobile-bar {
    display: none;
  }
}

.sm-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  font-weight: 900;
  font-size: 14px;
  text-align: center;
}

.sm-call {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000000;
}

.sm-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
}

.sm-icon {
  font-size: 18px;
}
