:root {
  --primary-cyan: #00d4ff;
  --primary-blue: #0066ff;
  --accent-glow: #00f0ff;
  --dark-bg: #0a0e14;
  --darker-bg: #050709;
  --card-bg: #0d1117;
  --card-border: rgba(0, 212, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  --metallic-1: #c0c0c0;
  --metallic-2: #8a9aa9;
  --success-green: #00ff88;
  --gradient-hero: linear-gradient(135deg, #0a0e14 0%, #0d1a2d 50%, #0a0e14 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--darker-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-cyan);
  border-radius: 4px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--primary-cyan);
}

.nav-links a:hover {
  color: var(--primary-cyan);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
  color: var(--dark-bg);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--card-border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  color: var(--primary-cyan);
  letter-spacing: 1px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.stat {
  text-align: left;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-cyan);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
  color: var(--dark-bg);
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 2rem;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 0 60px rgba(0, 212, 255, 0.2),
    0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-glow-1 {
  top: -100px;
  right: -100px;
}

.hero-glow-2 {
  bottom: -100px;
  left: -100px;
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

/* Section Styling */
section {
  padding: 6rem 2rem;
  position: relative;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  color: var(--primary-cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--darker-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--card-border);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 255, 0.1));
  border: 1px solid var(--card-border);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.veteran-badge svg {
  width: 40px;
  height: 40px;
  color: var(--primary-cyan);
}

.veteran-badge-text {
  text-align: left;
}

.veteran-badge-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-cyan);
}

.veteran-badge-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Features Section */
.features {
  background: var(--dark-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--primary-blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary-cyan);
}

.feature-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Sustainability Section */
.sustainability {
  background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
}

.sustainability::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.sustainability-content {
  position: relative;
  z-index: 1;
}

.sustainability-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.eco-stat {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.eco-stat:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-5px);
}

.eco-stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.eco-stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--success-green);
}

.eco-stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--success-green);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.eco-stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* Service Area Section - Map & Calculator */
.map-calculator-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.map-wrapper {
  position: relative;
}

.interactive-map {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  overflow: hidden;
}

.map-legend {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--card-border);
}

.legend-section {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legend-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  width: 100%;
}

.traffic-legend {
  padding-top: 0.75rem;
  border-top: 1px solid var(--card-border);
}

.traffic-legend-items {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.primary {
  background: var(--primary-cyan);
  box-shadow: 0 0 10px var(--primary-cyan);
}

.legend-dot.secondary {
  background: rgba(0, 212, 255, 0.4);
  border: 2px solid var(--primary-cyan);
}

.legend-dot.tertiary {
  background: rgba(0, 102, 255, 0.3);
  border: 2px dashed var(--primary-blue);
}

.traffic-bar {
  width: 24px;
  height: 6px;
  border-radius: 3px;
}

.traffic-bar.green {
  background: #63d668;
}

.traffic-bar.yellow {
  background: #fbbc04;
}

.traffic-bar.red {
  background: #f44336;
}

.traffic-bar.dark-red {
  background: #9e1c1c;
}

.map-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
}

.map-wrapper {
  position: relative;
}

.traffic-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.traffic-toggle:hover {
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

.traffic-toggle.active {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

.traffic-toggle.active svg {
  color: var(--primary-cyan);
}

.fare-calculator {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
}

.calculator-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--card-border);
}

.calculator-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 255, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calculator-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-cyan);
}

.calculator-header h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.calculator-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.calculator-form {
  position: relative;
}

.input-group {
  margin-bottom: 1rem;
}

.input-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.input-group label svg {
  color: var(--primary-cyan);
}

.input-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--dark-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.input-group input::placeholder {
  color: var(--text-muted);
}

.swap-locations {
  position: absolute;
  right: -12px;
  top: 72px;
  width: 36px;
  height: 36px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.swap-locations:hover {
  border-color: var(--primary-cyan);
  background: rgba(0, 212, 255, 0.1);
}

.swap-locations svg {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.swap-locations:hover svg {
  color: var(--primary-cyan);
}

.calculate-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
  color: var(--dark-bg);
  border: none;
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.fare-result {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
  animation: fadeIn 0.5s ease;
}

.fare-result.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fare-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.result-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.fare-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-cyan);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.fare-breakdown {
  background: var(--dark-bg);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--card-border);
}

.breakdown-item:last-child {
  border-bottom: none;
}

.breakdown-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breakdown-value {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  color: var(--text-primary);
}

.fare-comparison {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 102, 255, 0.05));
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--primary-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.comparison-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.comparison-item {
  text-align: center;
  padding: 0.5rem;
  border-radius: 6px;
  background: var(--dark-bg);
}

.comparison-item.savings {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.comparison-description {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.competitor-input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.competitor-input label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.competitor-input .input-wrapper {
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
}

.competitor-input .currency {
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.competitor-input input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.5rem 0.75rem 0.5rem 0;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  width: 100%;
}

.competitor-input input:focus {
  outline: none;
}

.competitor-input .input-wrapper:focus-within {
  border-color: var(--primary-cyan);
}

.check-prices-links {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-check-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.price-check-btn.uber {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  color: #fff;
}

.price-check-btn.uber:hover {
  background: #000;
  border-color: #555;
}

.price-check-btn.lyft {
  background: rgba(255, 0, 191, 0.1);
  border: 1px solid rgba(255, 0, 191, 0.3);
  color: #ff00bf;
}

.price-check-btn.lyft:hover {
  background: rgba(255, 0, 191, 0.2);
}

.price-check-btn.rideguru {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--card-border);
  color: var(--primary-cyan);
}

.price-check-btn.rideguru:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--primary-cyan);
}

.savings-display {
  background: var(--dark-bg);
  border-radius: 8px;
  padding: 0.75rem;
}

.savings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.savings-row:first-child {
  border-bottom: 1px solid var(--card-border);
}

.savings-row.highlight {
  padding-top: 0.75rem;
}

.savings-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.savings-row.highlight .savings-label {
  color: var(--success-green);
}

.savings-row.highlight .savings-label svg {
  color: var(--success-green);
}

.savings-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.savings-value.autocabs-price {
  color: var(--primary-cyan);
}

.savings-value.savings-amount {
  color: var(--success-green);
  font-size: 1.3rem;
}

.provider {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.provider-price {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-secondary);
}

.eco-impact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 8px;
}

.eco-impact-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-impact-icon svg {
  color: var(--success-green);
}

.eco-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.eco-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  color: var(--success-green);
}

/* CO2 Hero Display - Prominent */
.eco-impact-hero {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 200, 100, 0.05) 100%);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.eco-impact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.eco-icon-large {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.15);
  border-radius: 50%;
  color: var(--success-green);
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(0, 255, 136, 0.1); }
}

.eco-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.eco-value-large {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--success-green);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.eco-label-large {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.eco-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Your Fare Display */
.your-fare-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  margin-top: 1rem;
}

.your-fare-label {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
}

.your-fare-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-cyan);
}

.quick-routes {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--card-border);
}

.quick-routes-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.quick-route-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-route-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: var(--dark-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  color: var(--text-secondary);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-route-btn:hover {
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  background: rgba(0, 212, 255, 0.05);
}

.quick-route-btn svg {
  opacity: 0.7;
}

.quick-route-btn:hover svg {
  opacity: 1;
}

/* Pricing Info */
.pricing-info {
  margin-top: 2rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-header h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.flat-rate-table {
  margin-bottom: 1.5rem;
}

.rate-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--card-border);
  align-items: center;
}

.rate-row.header-row {
  background: var(--dark-bg);
  border-radius: 8px 8px 0 0;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.rate-row:last-of-type {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.route-col {
  font-weight: 500;
}

.price-col {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: right;
  min-width: 60px;
}

.price-col.highlight {
  color: var(--primary-cyan);
}

.uber-col {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  text-align: right;
  min-width: 50px;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.uber-col.savings {
  background: rgba(0, 255, 136, 0.1);
  color: var(--success-green);
}

.distance-col {
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  text-align: right;
  min-width: 60px;
  color: var(--text-muted);
}

.cap-note {
  margin-top: 0.5rem;
  font-weight: 500;
  color: var(--success-green);
}

.peak-pricing-note {
  background: rgba(255, 170, 0, 0.05);
  border: 1px solid rgba(255, 170, 0, 0.2);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.peak-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  color: #ffaa00;
  margin-bottom: 0.75rem;
}

.peak-header svg {
  color: #ffaa00;
}

.peak-pricing-note p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.peak-pricing-note p.example {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 170, 0, 0.15);
  font-style: italic;
}

.peak-pricing-note strong {
  color: var(--text-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--dark-bg);
  border-radius: 12px;
  border: 1px solid var(--card-border);
}

.price-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-cyan);
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--success-green);
}

.pricing-note svg {
  color: var(--success-green);
  flex-shrink: 0;
}

/* Google Maps custom styles */
.gm-style .gm-style-iw-c {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 12px !important;
  padding: 0 !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
}

.gm-style .gm-style-iw-tc::after {
  background: var(--card-bg) !important;
}

.map-info-window {
  padding: 1rem;
  font-family: 'Rajdhani', sans-serif;
}

.map-info-window h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--primary-cyan);
  margin-bottom: 0.5rem;
}

.map-info-window p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Autocomplete dropdown styling */
.pac-container {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 8px !important;
  margin-top: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
  font-family: 'Rajdhani', sans-serif !important;
}

.pac-item {
  padding: 0.75rem 1rem !important;
  border-top: 1px solid var(--card-border) !important;
  color: var(--text-primary) !important;
  cursor: pointer;
}

.pac-item:first-child {
  border-top: none !important;
}

.pac-item:hover {
  background: rgba(0, 212, 255, 0.1) !important;
}

.pac-item-query {
  color: var(--primary-cyan) !important;
  font-weight: 500;
}

.pac-matched {
  color: var(--primary-cyan) !important;
  font-weight: 600;
}

.pac-icon {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .map-calculator-container {
    grid-template-columns: 1fr;
  }

  .interactive-map {
    height: 400px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .comparison-items {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-legend {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Service Area Section */
.service-area {
  background: var(--dark-bg);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--card-border);
}

.service-map img {
  width: 100%;
  height: auto;
  display: block;
}

.routes-list {
  list-style: none;
}

.route-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--card-border);
}

.route-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.route-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-cyan);
}

.route-name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
}

.route-details {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.route-price {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  color: var(--primary-cyan);
}

/* Technology Section */
.technology {
  background: var(--darker-bg);
}

.tech-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tech-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.tech-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
}

.tech-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 212, 255, 0.2);
  line-height: 1;
}

.tech-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.tech-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Community Section */
.community {
  background: var(--dark-bg);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.community-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.community-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
}

.community-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 255, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.community-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary-cyan);
}

.community-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.community-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #0d1a2d 0%, var(--dark-bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta h2 span {
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--darker-bg);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--card-border);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

.footer-column h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-cyan);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .about-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sustainability-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-showcase {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat {
    text-align: center;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .features-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .sustainability-stats {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Animations for scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
