/* City-Center Electric Car Station - Main CSS */
:root {
  /* Primary Color Palette */
  --primary-green: #2d7a2d;
  --primary-green-light: #4a9a4a;
  --primary-green-dark: #1a5a1a;
  
  --primary-electric-blue: #1e40af;
  --primary-electric-blue-light: #3b82f6;
  --primary-electric-blue-dark: #1e3a8a;
  
  --primary-orange: #ea580c;
  --primary-orange-light: #fb923c;
  --primary-orange-dark: #c2410c;
  
  --primary-gray: #374151;
  --primary-gray-light: #6b7280;
  --primary-gray-dark: #1f2937;
  
  --primary-white: #ffffff;
  --primary-white-light: #f9fafb;
  --primary-white-dark: #e5e7eb;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-gray);
  background-color: var(--primary-white);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
.navbar {
  padding: 1rem 0;
  background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-white-light) 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: 12px !important;
  font-weight: var(--font-weight-medium);
  color: var(--primary-gray) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-electric-blue) 100%);
  color: var(--primary-white);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-blob:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-blob:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 30%;
  left: 15%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-gray-dark);
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-green);
  font-weight: var(--font-weight-medium);
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--primary-gray);
}

/* Services Section */
.service-card {
  background: var(--primary-white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--primary-white-dark);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-name {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--primary-gray-dark);
}

.service-desc {
  margin-bottom: 1.5rem;
  color: var(--primary-gray);
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--primary-gray);
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-green);
  margin-right: 0.5rem;
}

.service-price {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  text-align: center;
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-electric-blue);
  margin-bottom: 1rem;
}

.feature-name {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--primary-gray-dark);
}

.feature-desc {
  color: var(--primary-gray);
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-green);
}

.team-name {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
  color: var(--primary-gray-dark);
}

.team-role {
  color: var(--primary-green);
  font-weight: var(--font-weight-medium);
}

/* Reviews Section */
.review-card {
  background: var(--primary-white);
  border-radius: 12px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--primary-gray);
}

.review-author {
  font-weight: var(--font-weight-bold);
  color: var(--primary-gray-dark);
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1rem;
  background: var(--primary-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: var(--font-weight-bold);
  padding: 1.5rem;
  margin: 0;
  color: var(--primary-gray-dark);
  cursor: pointer;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-white-light) 100%);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--primary-gray);
  border-top: 1px solid var(--primary-white-dark);
}

/* Contact Form */
.contact-form {
  background: var(--primary-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--primary-white-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 122, 45, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-electric-blue) 100%);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: var(--font-weight-medium);
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-electric-blue-dark) 100%);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-gray-dark) 0%, var(--primary-gray) 100%);
  color: var(--primary-white);
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--primary-white);
}

.footer-link {
  color: var(--primary-white-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-green-light);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--primary-gray);
  color: var(--primary-white-dark);
}

/* Gallery */
.gallery-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Price Plans */
.price-card {
  background: var(--primary-white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--primary-green);
  background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-green-light) 5%);
}

.price-name {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--primary-gray-dark);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.price-features {
  margin-bottom: 2rem;
}

.price-features ul {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--primary-gray);
}

.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-green);
  margin-right: 0.5rem;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-electric-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-electric-blue) 100%);
}

.shadow-soft {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.border-radius {
  border-radius: 12px;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--primary-white-light);
}

.breadcrumb-image {
  width: 100%;
  max-width: 300px;
  height: 40px;
  object-fit: contain;
} 