/* ==========================================================================
   Electric Snow-Blower Cooperative - Main Styles
   Bootstrap 5 Compatible | 2025 Modern Design
   ========================================================================== */

/* Import Bootstrap 5 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* Import FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ==========================================================================
   CSS Variables - 5 Primary Colors + Variations
   ========================================================================== */
:root {
  /* Primary Colors - High Contrast Pastels */
  --primary-blue: #4898e2;
  --primary-teal: #4ab1b9;
  --primary-green: #73dc19;
  --primary-orange: #ffad13;
  --primary-purple: #7613fa;
  
  /* Light Variations */
  --light-blue: #a0ccf3;
  --light-teal: #abced2;
  --light-green: #ceffb1;
  --light-orange: #ffe1a9;
  --light-purple: #c1a7ea;
  
  /* Dark Variations */
  --dark-blue: #2a5b7a;
  --dark-teal: #32626a;
  --dark-green: #41a30d;
  --dark-orange: #b08023;
  --dark-purple: #5d089a;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #636d74;
  --dark-gray: #232629;
  --black: #0f1214;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-orange) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --element-spacing: 2rem;
}

/* ==========================================================================
   Global Styles
   ========================================================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

h1 {
  font-size: 2.53rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.55rem;
}

h4 {
  font-size: 1.34rem;
}

p {
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.navbar {
  background: var(--white);
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  font-size: 1.64rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  color: var(--dark-gray);
  font-size: 1.31rem;
}

.navbar-toggler:hover .navbar-toggler-icon {
  color: var(--primary-blue);
}

/* ==========================================================================
   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.2;
  z-index: 1;
}

.hero-content {
  background-color: aliceblue;
  padding: 24px;
  position: relative;
  z-index: 2;
  color: var(--white);
    padding-top: 100px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.58rem;
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--medium-gray);
  margin-bottom: 3rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-8px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-item {
  background: var(--white);
  border-radius: 19px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 19px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 17px 30px rgba(0, 0, 0, 0.15);
}

.services-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.60rem;
}

.services-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-item {
  padding: 2rem;
  background: var(--gradient-secondary);
  border-radius: 10px;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
}

.features-item i {
  font-size: 2.54rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Price Plan Section
   ========================================================================== */
.priceplan-item {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 17px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.priceplan-item:hover {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.priceplan-item.featured {
  border-color: var(--primary-blue);
  background: var(--gradient-primary);
  color: var(--white);
}

.priceplan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1.5rem 0;
}

.priceplan-item.featured .priceplan-price {
  color: var(--white);
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--primary-blue);
}

.team-member-name {
  font-size: 1.36rem;
  font-weight: 600;
  margin-bottom: 0.74rem;
}

.team-member-role {
  color: var(--primary-blue);
  font-weight: 500;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-item {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.reviews-item::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-blue);
  position: absolute;
  top: -10px;
  left: 20px;
}

.reviews-author {
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: 1rem;
}

/* ==========================================================================
   Case Studies Section
   ========================================================================== */
.casestudy-item {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-green);
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-item {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.process-item::before {
  content: counter(process-counter);
  counter-increment: process-counter;
  background: var(--primary-orange);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.64rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-section {
  counter-reset: process-counter;
}

/* ==========================================================================
   Timeline Section
   ========================================================================== */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-purple);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  width: 2px;
  height: calc(100% + 20px);
  background: var(--light-purple);
}

.timeline-item:last-child::after {
  display: none;
}

/* ==========================================================================
   Career Section
   ========================================================================== */
.career-item {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-teal);
}

.career-role {
  color: var(--primary-teal);
  font-weight: 600;
  font-size: 0.99rem;
}

/* ==========================================================================
   Core Info Section
   ========================================================================== */
.coreinfo-item {
  background: var(--light-blue);
  color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.coreinfo-item i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.contact-form {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 3rem;
}

.form-control {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(56, 154, 241, 0.25);
}

.form-control.is-invalid {
  border-color: #eb3855;
}

.form-control.is-valid {
  border-color: var(--primary-green);
}

.error-message {
  font-size: 0.91rem;
  margin-top: 0.31rem;
}

.alert {
  border-radius: 10px;
  margin-bottom: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(48, 106, 201, 0.30);
  background: var(--dark-blue);
}

.contact-info {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h4 {
  color: var(--primary-blue);
  margin-bottom: 1.65rem;
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: var(--primary-blue);
  margin-right: 0.75rem;
  width: 20px;
}

.contact-info-item {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--light-gray);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.faq-answer {
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
  margin: 0;
  display: none;
  transition: all 0.3s ease;
}

.faq-question.active + .faq-answer {
  display: block;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-blue);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

.text-primary-blue {
  color: var(--primary-blue);
}

.text-primary-teal {
  color: var(--primary-teal);
}

.text-primary-green {
  color: var(--primary-green);
}

.border-radius-lg {
  border-radius: 15px;
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-gray);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
