/* ═══════════════════════════════════════════════════════════════════════════
   VIRAMA SYSTEMS PRIVATE LIMITED - CORPORATE STYLESHEET
   Aesthetics: Deep Obsidian, Cyber Azure Glow, Glassmorphism, Modern Typography
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --bg-dark: #070a13;
  --bg-surface: #0e1424;
  --bg-card: rgba(18, 25, 45, 0.7);
  --bg-card-hover: rgba(28, 38, 68, 0.85);
  
  --primary: #2563eb;
  --primary-light: #60a5fa;
  --primary-glow: rgba(37, 99, 235, 0.4);
  --secondary: #06b6d4;
  --accent: #8b5cf6;
  --success: #10b981;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(59, 130, 246, 0.35);
  
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Background Ambient Glows & Grid */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2563eb, transparent 70%);
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  top: 40%;
  right: -150px;
}

.glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  bottom: 10%;
  left: 20%;
}

.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #0284c7);
  color: #ffffff;
  box-shadow: 0 10px 25px -5px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -4px var(--primary-glow);
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light);
}

.btn-block {
  width: 100%;
}

/* Play Store Button */
.btn-playstore {
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-playstore i {
  font-size: 2.2rem;
  color: #38bdf8;
}

.partner-btn i {
  color: #34d399;
}

.btn-playstore small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.btn-playstore span {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}

.btn-playstore:hover {
  border-color: #38bdf8;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -5px rgba(56, 189, 248, 0.35);
}

.partner-btn:hover {
  border-color: #34d399;
  box-shadow: 0 12px 30px -5px rgba(52, 211, 153, 0.35);
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

/* Section Header */
.section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto;
}

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

.mb-5 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar-wrapper.scrolled {
  background: rgba(7, 10, 19, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  min-width: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(59, 130, 246, 0.4);
  padding: 2px;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
  display: block;
  transition: var(--transition);
}

.brand-logo:hover .brand-logo-img {
  transform: rotate(8deg) scale(1.06);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.8);
  border-color: #60a5fa;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: #ffffff;
}

.highlight-link {
  color: #38bdf8;
  font-weight: 600;
}

.btn-contact {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-call-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 9999px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-call-nav:hover {
  background: #10b981;
  color: #ffffff;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 1.5rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-section {
  padding: 170px 0 100px 0;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 10px #60a5fa;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  max-width: 980px;
  margin: 0 auto 24px auto;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.22rem;
  max-width: 780px;
  margin: 0 auto 40px auto;
  color: var(--text-muted);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 30px 40px;
  max-width: 980px;
  margin: 0 auto;
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MARGI APPS DOWNLOAD GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.apps-download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.app-download-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(14, 20, 36, 0.95), rgba(24, 33, 60, 0.85));
}

.app-card-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.app-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.app-icon-box.bg-blue {
  background: linear-gradient(135deg, #2563eb, #0284c7);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.app-icon-box.bg-green {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.app-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 6px;
}

.customer-tag {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.owner-tag {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.app-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
}

.app-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.app-highlights {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-highlights li {
  font-size: 0.92rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-btn-wrap {
  margin-top: auto;
}

/* Cities Corridor Strip */
.cities-corridor-bar {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.corridor-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.cities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.c-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.c-tag:hover {
  border-color: var(--primary-light);
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VEHICLES SECTION (SEO OPTIMIZED)
   ═══════════════════════════════════════════════════════════════════════════ */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.vehicle-card {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}

.v-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 18px;
}

.vehicle-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.v-spec {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.vehicle-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT US
   ═══════════════════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.about-card {
  padding: 40px 30px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.about-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-bullets {
  list-style: none;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.service-bullets li {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.service-bullets li::before {
  content: '▸';
  color: var(--primary-light);
  position: absolute;
  left: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TECH PILLS
   ═══════════════════════════════════════════════════════════════════════════ */
.tech-pills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.tech-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.tech-pill:hover {
  border-color: var(--primary-light);
  background: rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-wrapper {
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-decoration: none;
  transition: var(--transition);
}

.contact-item-card:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: var(--primary-light);
  transform: translateX(4px);
}

.whatsapp-card:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: #34d399;
}

.c-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-light);
}

.whatsapp-card .c-icon {
  color: #34d399;
}

.c-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.c-val {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Contact Form */
.contact-form-container {
  background: rgba(14, 20, 36, 0.9);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

select.form-input option {
  background: #0e1424;
  color: #ffffff;
}

.form-feedback {
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}

.faq-card {
  padding: 30px;
  border: 1px solid var(--border-color);
}

.faq-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
}

.faq-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border-color);
  background: #04070d;
  padding: 80px 0 30px 0;
  position: relative;
  z-index: 1;
}

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

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 20px;
}

.corporate-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
}

.footer-links-col h5, .footer-contact-col h5 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col ul li {
  margin-bottom: 12px;
}

.footer-links-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact-col p {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.footer-contact-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE MEDIA QUERIES
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .apps-download-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #070a13;
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-150%);
    transition: var(--transition);
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .hero-title { font-size: 2.2rem; }
  .hero-stats-bar { flex-direction: column; gap: 24px; padding: 24px; }
  .stat-divider { display: none; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .about-grid, .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrapper { padding: 30px 20px; }
  .btn-call-nav span { display: none; }
}
