/* Electric Vehicle Charging Network - Main CSS */
/* Color Palette - High Contrast Pastel Colors */
:root {
  --primary-electric-blue: #50a9e8;
  --primary-volt-green: #14f791;
  --primary-energy-yellow: #fbc541;
  --primary-power-purple: #b938c2;
  --primary-charge-orange: #f09900;
  
  --primary-electric-blue-light: #bde8ff;
  --primary-volt-green-light: #a3ffcb;
  --primary-energy-yellow-light: #fffdbe;
  --primary-power-purple-light: #e2b9ee;
  --primary-charge-orange-light: #fedc91;
  
  --primary-electric-blue-dark: #275b96;
  --primary-volt-green-dark: #0cad68;
  --primary-energy-yellow-dark: #eb7c16;
  --primary-power-purple-dark: #68107c;
  --primary-charge-orange-dark: #de6300;
  
  --text-primary: #1e2127;
  --text-secondary: #798894;
  --bg-light: #FFFFFF;
  --bg-section: #F8F9FA;
}

/* Base 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(--text-primary);
  background: var(--bg-light);
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.12rem !important;
  font-weight: 600;
}

h1 {
  font-size: 2.26rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.88rem;
  font-weight: 600;
  margin-bottom: 0.96rem;
}

h3 {
  font-size: 1.50rem;
  font-weight: 600;
  margin-bottom: 0.72rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-electric-blue), var(--primary-volt-green));
  padding: 1rem 0;
  box-shadow: 0 11px 19px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: white !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-energy-yellow) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-electric-blue-light), var(--primary-volt-green-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-energy-yellow-light) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 2;
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background: var(--bg-section);
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 115px;
  padding: 2rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 24px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-electric-blue);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-electric-blue);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.53rem;
  font-weight: 700;
  color: var(--primary-volt-green);
  margin-top: 1rem;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-power-purple-light), var(--primary-charge-orange-light));
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-icon {
  font-size: 2.52rem;
  color: var(--primary-power-purple-dark);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 22px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-electric-blue), var(--primary-volt-green));
}

.price-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 28px 50px rgba(0,0,0,0.2);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-electric-blue);
  margin: 1rem 0;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 23px 40px rgba(0,0,0,0.15);
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 1rem 0;
  border-left: 5px solid var(--primary-volt-green);
}

.review-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-electric-blue);
}

/* FAQ Cards */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
  background: linear-gradient(135deg, var(--primary-electric-blue-light), var(--primary-volt-green-light));
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--primary-electric-blue), var(--primary-volt-green));
  color: white;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  border-top: 1px solid #e0e5e7;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, var(--primary-electric-blue-light), var(--primary-volt-green-light));
  padding: 3rem;
  border-radius: 21px;
}

.form-control {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-electric-blue);
  box-shadow: 0 0 0 0.2rem rgba(71, 127, 252, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-electric-blue), var(--primary-volt-green));
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-electric-blue-dark), var(--primary-volt-green-dark));
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-energy-yellow);
  margin-bottom: 1rem;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-energy-yellow);
}

/* Gallery */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-electric-blue), var(--primary-volt-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-electric-blue), var(--primary-volt-green));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-power-purple), var(--primary-charge-orange));
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
