/* CSS Design System for GVM ENTERPRISES - Sleek Modern Header & UI */
:root {
  --bg-dark: #ffffff;
  --bg-section: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.98);
  
  --primary-amber: #d97706;
  --primary-amber-glow: rgba(217, 119, 6, 0.25);
  --accent-yellow: #f59e0b;
  --accent-blue: #2563eb;
  --accent-cyan: #0284c7;
  --accent-green: #16a34a;
  --accent-red: #dc2626;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;
  
  --border-color: #e2e8f0;
  --border-amber: rgba(217, 119, 6, 0.4);
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 25px rgba(217, 119, 6, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Vector SVG Icons */
.svg-icon {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

/* Typography */
h1, h2, h3, h4, h5 {
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #0f172a 0%, #d97706 60%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  touch-action: manipulation;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-amber) 0%, #b45309 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover, .btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
  background: linear-gradient(135deg, #f59e0b 0%, var(--primary-amber) 100%);
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-amber);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover, .btn-outline:active {
  background: rgba(217, 119, 6, 0.08);
  border-color: var(--primary-amber);
  color: var(--primary-amber);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 700;
}

.btn-whatsapp:hover, .btn-whatsapp:active {
  background: #1da851;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

/* Top Announcement Bar */
.top-bar {
  background: #0f172a;
  color: #f8fafc;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-info {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #cbd5e1;
  flex-wrap: wrap;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-emergency {
  background: rgba(239, 68, 68, 0.25);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.5);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Header & Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-amber) 0%, #b45309 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.logo-tag {
  font-size: 9.5px;
  color: var(--primary-amber);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  white-space: nowrap;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: var(--transition);
  padding: 6px 2px;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-amber);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-amber);
  border-radius: 2px;
}

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

/* Mobile Hamburger Menu */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 22px;
  color: var(--text-main);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid var(--primary-amber);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-drawer.active {
  display: flex;
}

.mobile-nav-drawer a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.08) 0%, #ffffff 70%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid var(--border-amber);
  color: var(--primary-amber);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1.15;
  color: var(--text-main);
}

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

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.stat-item h4 {
  font-size: 26px;
  color: var(--primary-amber);
}

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

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}

.hero-floating-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-amber);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

/* Services Grid */
.services-section {
  padding: 60px 0;
  background: var(--bg-section);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--primary-amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(217, 119, 6, 0.12);
  border-radius: var(--radius-sm);
  color: var(--primary-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-tag {
  color: var(--primary-amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
}

/* Products Section */
.products-section {
  padding: 50px 0 70px;
  background: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-amber);
  box-shadow: var(--shadow-lg);
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(22, 163, 74, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(22, 163, 74, 0.3);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
}

.product-img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  padding: 8px;
  border: 1px solid #f1f5f9;
}

.product-title {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-main);
}

.product-brand {
  color: var(--primary-amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  background: #f8fafc;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.spec-item span {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
}

.spec-item strong {
  font-size: 13px;
  color: var(--text-main);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 14px;
}

.product-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-main);
}

.scrap-rebate {
  font-size: 11px;
  color: var(--accent-green);
  font-weight: 800;
}

/* Real Store Photo Gallery Section */
.gallery-section {
  padding: 60px 0;
  background: var(--bg-section);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-info {
  padding: 16px;
}

.gallery-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

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

/* Embedded Google Reviews Section Styles */
.reviews-section {
  padding: 60px 0;
  background: #ffffff;
}

.google-reviews-header-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 16px;
}

.google-brand-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.google-icon-svg {
  width: 36px;
  height: 36px;
}

.google-rating-score {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-main);
}

.google-stars {
  color: #f59e0b;
  font-size: 18px;
}

.google-review-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.google-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.reviewer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.reviewer-meta h5 {
  font-size: 15px;
  font-weight: 700;
}

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

.google-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--accent-green);
  font-weight: 700;
  margin-top: 10px;
}

/* Brand Partners */
.brands-section {
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-section);
}

.brands-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.brand-badge {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: 1px;
  transition: var(--transition);
}

.brand-badge:hover {
  color: var(--primary-amber);
  border-color: var(--primary-amber);
}

/* Emergency Banner */
.emergency-banner {
  margin: 60px 0;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 15px 35px rgba(239, 68, 68, 0.25);
}

.emergency-info h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 6px;
}

.emergency-info p {
  color: #fee2e2;
  font-size: 15px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 24px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Trust Badges Bar */
.trust-bar-section {
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.trust-item h4 {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 800;
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Interactive Tools Section */
.interactive-section {
  padding: 60px 0;
  background: radial-gradient(circle at 50% 50%, rgba(217, 119, 6, 0.05) 0%, #ffffff 100%);
}

.interactive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.finder-card, .scrap-card {
  background: #ffffff;
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.tool-title {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 6px;
}

.tool-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--text-main);
  background: #ffffff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-amber);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.finder-result-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
  position: relative;
}

.finder-brand {
  display: inline-block;
  background: var(--primary-amber);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.finder-result-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.finder-fit {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.finder-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.finder-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-main);
}

.finder-scrap-tag {
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(22, 163, 74, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 800;
}

.scrap-display {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.scrap-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.scrap-amount {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--accent-green);
  margin-bottom: 6px;
}

.scrap-note {
  font-size: 12px;
  color: var(--text-dim);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 60px 0;
  background: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item.active {
  border-color: var(--primary-amber);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #ffffff;
  border: none;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.faq-question:hover {
  color: var(--primary-amber);
}

.faq-icon {
  font-size: 20px;
  color: var(--primary-amber);
  font-weight: 900;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
footer {
  background: #0f172a;
  color: #cbd5e1;
  border-top: 1px solid var(--border-color);
  padding: 50px 0 20px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid #1e293b;
  color: #64748b;
  font-size: 13px;
}

/* Mobile Floating Bottom Action Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 8px 12px;
  z-index: 1001;
  justify-content: space-between;
  gap: 8px;
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  transition: var(--transition);
}

.mobile-action-btn .icon {
  font-size: 16px;
  margin-bottom: 2px;
}

.mobile-call {
  background: #0f172a;
  color: #ffffff;
}

.mobile-wa {
  background: #25d366;
  color: #ffffff;
}

.mobile-jumpstart {
  background: linear-gradient(135deg, var(--primary-amber) 0%, #b45309 100%);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.3);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1100px) {
  .nav-links {
    gap: 14px;
  }
  .nav-links a {
    font-size: 13.5px;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-title {
    font-size: 34px;
  }
  .nav-links {
    display: none;
  }
  .nav-actions .btn-whatsapp {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .interactive-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 65px;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  .nav-actions .btn-primary {
    display: none;
  }
  .mobile-nav-drawer {
    top: 60px;
    padding: 16px;
  }
  .form-control {
    font-size: 16px !important;
    height: 46px;
  }
  .google-reviews-header-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .top-bar-content {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .top-info {
    justify-content: center;
    gap: 8px;
    font-size: 11.5px;
    flex-wrap: wrap;
  }

  .logo-title {
    font-size: 16px;
  }
  .logo-tag {
    font-size: 8.5px;
  }

  .hero {
    padding: 24px 0 40px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 4px 10px;
    white-space: normal;
    text-align: center;
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: 26px;
    line-height: 1.25;
  }
  .hero-desc {
    font-size: 14px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
  }
  .stat-item {
    padding: 10px 4px;
  }
  .stat-item h4 {
    font-size: 18px;
  }
  .stat-item p {
    font-size: 10.5px;
  }
  .hero-image-wrapper img {
    height: 220px;
  }
  .hero-floating-tag {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
  }
  .hero-floating-tag .btn {
    width: 100%;
    text-align: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
  .finder-card, .scrap-card {
    padding: 18px;
  }

  .section-header {
    margin-bottom: 24px;
  }
  .section-title {
    font-size: 24px;
  }
  .section-subtitle {
    font-size: 13px;
  }

  .services-grid,
  .product-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card, .gallery-card, .service-card {
    padding: 16px;
  }

  .product-img {
    height: 170px;
  }

  .emergency-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }
  .emergency-banner .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  footer {
    padding: 36px 0 20px;
  }
}
