/* Electric Snow-Blower Time-Share Cooperative - Main CSS */

/* Bootstrap 5 CDN Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* FontAwesome Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Color Palette */
:root {
  /* Primary Color Palette (5 colors) */
  --primary-snow: #ecf3fc;
  --primary-snow-light: #F5FAFF;
  --primary-snow-dark: #d5eaff;
  
  --primary-ice: #b7d9dc;
  --primary-ice-light: #acd4dd;
  --primary-ice-dark: #95d3da;
  
  --primary-frost: #78ace4;
  --primary-frost-light: #9bc8e5;
  --primary-frost-dark: #537e9d;
  
  --primary-steel: #3f8697;
  --primary-steel-light: #81bad0;
  --primary-steel-dark: #307188;
  
  --primary-deep: #376d7b;
  --primary-deep-light: #3d6371;
  --primary-deep-dark: #1c363e;
  
  /* Text Colors */
  --text-primary: #2c2a2a;
  --text-secondary: #5d5d5d;
  --text-muted: #848484;
  --text-light: #FFFFFF;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-snow) 0%, var(--primary-ice) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-frost) 0%, var(--primary-steel) 100%);
  --gradient-deep: linear-gradient(135deg, var(--primary-steel) 0%, var(--primary-deep) 100%);
  --gradient-hero: linear-gradient(135deg, var(--primary-snow-light) 0%, var(--primary-ice-light) 50%, var(--primary-frost-light) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(45, 96, 114, 0.10);
  --shadow-md: 0 4px 8px rgba(64, 105, 134, 0.15);
  --shadow-lg: 0 8px 16px rgba(42, 96, 102, 0.20);
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --section-padding-sm: 2rem 0;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--primary-snow-light);
  margin: 0;
  padding: 0;
}

/* Reduced Motion Support */
@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-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-lg);
}

h5, h6 {
  font-size: var(--font-size-base);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Links */
a {
  color: var(--primary-steel);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-deep);
}

/* Buttons */
.btn {
  font-family: var(--font-primary);
  font-weight: 500;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-secondary);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--gradient-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  border: 2px solid var(--primary-steel);
  color: var(--primary-steel);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-steel);
  color: var(--text-light);
}

/* Header */
.navbar {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-deep);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-steel);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::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 .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 2rem 0;
    padding-top: 200px;
}

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-bottom: 1.63rem;
}

.hero-desc {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-deep);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.63rem;
}

.section-desc {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  background: var(--gradient-primary);
}

.feature-item {
  background: var(--text-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2.52rem;
  color: var(--primary-steel);
  margin-bottom: 1rem;
}

.feature-name {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--text-secondary);
}

/* Services Section */
.services {
  background: var(--text-light);
}

.service-item {
  background: var(--gradient-primary);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.61rem;
}

.service-name {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-secondary);
  margin-bottom: 1.64rem;
}

.service-features {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-bottom: 1.72rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-steel);
}

/* Features Section */
.features {
  background: var(--gradient-primary);
}

/* Price Plan Section */
.priceplan {
  background: var(--text-light);
}

.priceplan-item {
  background: var(--gradient-secondary);
  color: var(--text-light);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.priceplan-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.priceplan-name {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 1rem;
}

.priceplan-price {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: 1.74rem;
}

.priceplan-features {
  margin-bottom: 2rem;
}

.priceplan-desc {
  opacity: 0.9;
}

/* Team Section */
.team {
  background: var(--gradient-primary);
}

.team-member {
  background: var(--text-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.73rem;
  border: 4px solid var(--primary-ice);
}

.team-name {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 0.61rem;
}

.team-role {
  color: var(--text-secondary);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background: var(--text-light);
}

.review-item {
  background: var(--gradient-primary);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-text {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: 1.74rem;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: var(--primary-deep);
}

/* Case Studies Section */
.casestudy {
  background: var(--gradient-primary);
}

.casestudy-item {
  background: var(--text-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casestudy-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.casestudy-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.casestudy-desc {
  color: var(--text-secondary);
}

/* Process Section */
.process {
  background: var(--text-light);
}

.process-item {
  background: var(--gradient-primary);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.process-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-steel);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.process-desc {
  color: var(--text-secondary);
}

/* Timeline Section */
.timeline {
  background: var(--gradient-primary);
}

.timeline-item {
  background: var(--text-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.timeline-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.timeline-desc {
  color: var(--text-secondary);
}

/* Career Section */
.career {
  background: var(--text-light);
}

.career-item {
  background: var(--gradient-primary);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.career-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 0.71rem;
}

.career-role {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1rem;
}

.career-desc {
  color: var(--text-secondary);
}

/* Core Info Section */
.coreinfo {
  background: var(--gradient-primary);
}

.coreinfo-item {
  background: var(--text-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.coreinfo-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.coreinfo-desc {
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  background: var(--text-light);
}

.contact-form {
  background: var(--gradient-primary);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-control {
  border: 2px solid var(--primary-ice);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-steel);
  box-shadow: 0 0 0 0.2rem rgba(71, 122, 144, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.73rem;
}

.contact-info {
  background: var(--gradient-secondary);
  color: var(--text-light);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info h4 {
  color: var(--text-light);
  margin-bottom: 1.60rem;
}

.contact-info p {
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--primary-ice-light);
}

/* Blog Section */
.blog {
  background: var(--gradient-primary);
}

.blog-item {
  background: var(--text-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1.59rem;
}

.blog-link {
  color: var(--primary-steel);
  font-weight: 500;
  text-decoration: none;
}

.blog-link:hover {
  color: var(--primary-deep);
}

/* FAQ Section */
.faq {
  background: var(--text-light);
}

.faq-item {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-steel);
  color: var(--text-light);
  padding: 1.5rem;
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-deep);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  background: var(--text-light);
}

/* Gallery Section */
.gallery {
  background: var(--gradient-primary);
}

.gallery-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--gradient-deep);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer p {
  color: var(--text-light);
  opacity: 0.9;
}

.footer a {
  color: var(--primary-ice-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: var(--gradient-primary);
  padding: 1rem 0;
  border-radius: 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--gradient-hero);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-secondary);
  -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-deep {
  background: var(--gradient-deep);
}

.shadow-custom {
  box-shadow: var(--shadow-md);
}

.rounded-custom {
  border-radius: var(--border-radius-lg);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
