/* Electric Food Truck Conversion Workshop - Main Styles */

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
  /* Primary Color Palette - High Contrast Pastel Colors */
  --primary-electric-blue: #4A90E2;
  --primary-electric-green: #7ED321;
  --primary-bright-orange: #F5A623;
  --primary-deep-purple: #7B68EE;
  --primary-coral-pink: #FF6B6B;
  
  /* Light & Dark Shades */
  --light-electric-blue: #B8D4F2;
  --dark-electric-blue: #2E5A8A;
  --light-electric-green: #B8E88A;
  --dark-electric-green: #4A7F14;
  --light-bright-orange: #FACC72;
  --dark-bright-orange: #C28416;
  --light-deep-purple: #B5A9F7;
  --dark-deep-purple: #544090;
  --light-coral-pink: #FFB3B3;
  --dark-coral-pink: #CC5555;
  
  /* Neutral Colors */
  --neutral-white: #FFFFFF;
  --neutral-light-gray: #F8F9FA;
  --neutral-medium-gray: #6C757D;
  --neutral-dark-gray: #343A40;
  --neutral-black: #212529;
  
  /* Typography */
  --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.5;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-electric-blue), var(--primary-electric-green));
  --gradient-secondary: linear-gradient(135deg, var(--primary-bright-orange), var(--primary-coral-pink));
  --gradient-accent: linear-gradient(135deg, var(--primary-deep-purple), var(--primary-electric-blue));
}

/* ========== COMPONENT-SPECIFIC STYLES (NON-CONFLICTING) ========== */

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

/* ========== CUSTOM NAVBAR STYLES ========== */
.navbar {
  background: var(--gradient-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  color: var(--neutral-white) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--neutral-white) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-electric-blue) !important;
}

.navbar-toggler {
  border: none;
  color: var(--neutral-white);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-title {
  color: var(--neutral-white);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--light-electric-blue);
  margin-bottom: 2rem;
}

.hero-description {
  color: var(--neutral-white);
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ========== SECTION STYLES ========== */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--neutral-dark-gray);
}

.section-subtitle {
  text-align: center;
  color: var(--primary-electric-blue);
  margin-bottom: 2rem;
}

.section-description {
  text-align: center;
  color: var(--neutral-medium-gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: var(--neutral-light-gray);
}

.feature-card {
  background: var(--neutral-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-electric-blue);
  margin-bottom: 1rem;
}

/* ========== SERVICES SECTION ========== */
.services-section {
  background: var(--neutral-white);
}

.service-card {
  background: var(--neutral-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  color: var(--neutral-dark-gray);
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--neutral-medium-gray);
  margin-bottom: 1rem;
}

.service-features {
  color: var(--primary-electric-blue);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.service-price {
  color: var(--primary-bright-orange);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ========== PRICE PLAN SECTION ========== */
.priceplan-section {
  background: var(--gradient-accent);
  color: var(--neutral-white);
}

.priceplan-section .section-title,
.priceplan-section .section-subtitle,
.priceplan-section .section-description {
  color: var(--neutral-white);
}

.price-card {
  background: var(--neutral-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-electric-blue);
  margin-bottom: 1rem;
}

.price-card .plan-name {
  font-size: 1.5rem;
  color: var(--neutral-dark-gray);
  margin-bottom: 1rem;
}

.price-card .plan-features {
  color: var(--neutral-medium-gray);
  margin-bottom: 1rem;
}

/* ========== TEAM SECTION ========== */
.team-section {
  background: var(--neutral-light-gray);
}

.team-card {
  background: var(--neutral-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  color: var(--neutral-dark-gray);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-electric-blue);
}

/* ========== REVIEWS SECTION ========== */
.reviews-section {
  background: var(--neutral-white);
}

.review-card {
  background: var(--neutral-light-gray);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-text {
  color: var(--neutral-dark-gray);
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  color: var(--primary-electric-blue);
  font-weight: 600;
}

/* ========== CASE STUDY SECTION ========== */
.casestudy-section {
  background: var(--neutral-light-gray);
}

.casestudy-card {
  background: var(--neutral-white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.casestudy-title {
  color: var(--neutral-dark-gray);
  margin-bottom: 1rem;
}

.casestudy-description {
  color: var(--neutral-medium-gray);
}

/* ========== PROCESS SECTION ========== */
.process-section {
  background: var(--neutral-white);
}

.process-card {
  background: var(--neutral-light-gray);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-number {
  background: var(--primary-electric-blue);
  color: var(--neutral-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-title {
  color: var(--neutral-dark-gray);
  margin-bottom: 1rem;
}

.process-description {
  color: var(--neutral-medium-gray);
}

/* ========== TIMELINE SECTION ========== */
.timeline-section {
  background: var(--neutral-light-gray);
}

.timeline-card {
  background: var(--neutral-white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-card::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: var(--primary-electric-blue);
  border-radius: 50%;
}

.timeline-title {
  color: var(--neutral-dark-gray);
  margin-bottom: 1rem;
}

.timeline-description {
  color: var(--neutral-medium-gray);
}

/* ========== CAREER SECTION ========== */
.career-section {
  background: var(--neutral-white);
}

.career-card {
  background: var(--neutral-light-gray);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.career-title {
  color: var(--neutral-dark-gray);
  margin-bottom: 0.5rem;
}

.career-role {
  color: var(--primary-electric-blue);
  margin-bottom: 1rem;
}

.career-description {
  color: var(--neutral-medium-gray);
}

/* ========== CORE INFO SECTION ========== */
.coreinfo-section {
  background: var(--gradient-secondary);
  color: var(--neutral-white);
}

.coreinfo-section .section-title,
.coreinfo-section .section-subtitle,
.coreinfo-section .section-description {
  color: var(--neutral-white);
}

.coreinfo-card {
  background: var(--neutral-white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.coreinfo-title {
  color: var(--neutral-dark-gray);
  margin-bottom: 1rem;
}

.coreinfo-description {
  color: var(--neutral-medium-gray);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: var(--neutral-light-gray);
}

.contact-form {
  background: var(--neutral-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========== BLOG SECTION ========== */
.blog-section {
  background: var(--neutral-white);
}

.blog-card {
  background: var(--neutral-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--neutral-dark-gray);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--neutral-medium-gray);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-electric-blue);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  text-decoration: underline;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  background: var(--neutral-light-gray);
}

.faq-card {
  background: var(--neutral-white);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--neutral-light-gray);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  background: var(--primary-electric-blue);
  color: var(--neutral-white);
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  position: relative;
  border: none;
  width: 100%;
  text-align: left;
  outline: none;
}

.faq-question:hover {
  background: var(--dark-electric-blue);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--neutral-medium-gray);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-card.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-card.active .faq-answer {
  max-height: 200px;
  padding: 1.5rem;
}

.faq-details {
  background: var(--neutral-white);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-summary {
  background: var(--primary-electric-blue);
  color: var(--neutral-white);
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  list-style: none;
  outline: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  float: right;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-summary:hover {
  background: var(--dark-electric-blue);
}

details[open] .faq-summary::after {
  transform: rotate(45deg);
}

.faq-content {
  padding: 1.5rem;
  color: var(--neutral-medium-gray);
  margin: 0;
  background: var(--neutral-white);
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  background: var(--neutral-white);
  padding: 60px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ========== FOOTER STYLES ========== */
.footer {
  background: var(--gradient-primary);
  color: var(--neutral-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--neutral-white);
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--light-electric-blue);
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--light-electric-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--neutral-white);
}

.footer-bottom {
  border-top: 1px solid var(--light-electric-blue);
  padding-top: 1rem;
  text-align: center;
}

.footer-copyright {
  color: var(--light-electric-blue);
  font-size: 0.9rem;
}

/* ========== BREADCRUMB STYLES ========== */
.breadcrumb-section {
  background: var(--neutral-light-gray);
  padding: 2rem 0;
}

.breadcrumb-image {
  width: 100%;
  max-width: 50px;
  height: auto;
}

/* ========== SPACE PAGE STYLES ========== */
#space {
  min-height: 60vh;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-white);
  font-size: 2rem;
  text-align: center;
}

/* ========== ACCESSIBILITY ========== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--neutral-dark-gray);
  color: var(--neutral-white);
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 1000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  color: var(--neutral-white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== UTILITY CLASSES ========== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.border-radius-custom {
  border-radius: 15px;
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--neutral-white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  min-width: 300px;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-left: 4px solid var(--primary-electric-green);
}

.notification-error {
  border-left: 4px solid var(--primary-coral-pink);
}

.notification-warning {
  border-left: 4px solid var(--primary-bright-orange);
}

.notification-info {
  border-left: 4px solid var(--primary-electric-blue);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--neutral-medium-gray);
  margin-left: auto;
}

.notification-close:hover {
  color: var(--neutral-dark-gray);
}

/* ========== TEAM SOCIAL LINKS ========== */
.team-social-links {
  margin-top: 1rem;
}

.social-icons-grid {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--neutral-white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-electric-blue);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link:hover {
  color: var(--neutral-white);
  transform: translateY(-2px);
}

.facebook-link {
  background: #1877F2;
}

.linkedin-link {
  background: #0077B5;
}

.x-link {
  background: #000000;
  position: relative;
}

.x-link::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: currentColor;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>') no-repeat center;
  mask-size: contain;
}

.x-link i {
  display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}
