/* Solar-Powered Autonomous Lawn-Mower Rentals - Main CSS */

/* Bootstrap 5 Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* FontAwesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Custom Color Palette */
:root {
  /* Primary Colors */
  --primary-green: #2a5b42;
  --primary-light-green: #3d674b;
  --primary-solar-yellow: #ffde40;
  --primary-tech-blue: #438bcb;
  --primary-earth-brown: #9e5b13;
  
  /* Light Shades */
  --light-green: #93d5b3;
  --light-yellow: #f3e6a7;
  --light-blue: #b0e1f8;
  --light-brown: #d4aa83;
  --light-gray: #f8f9fa;
  
  /* Dark Shades */
  --dark-green: #163423;
  --dark-yellow: #c9a51d;
  --dark-blue: #187093;
  --dark-brown: #553209;
  --dark-gray: #282b2f;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-light-green));
  --gradient-secondary: linear-gradient(135deg, var(--primary-solar-yellow), var(--dark-yellow));
  --gradient-hero: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-tech-blue) 100%);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--light-gray);
}

/* Conservative Font Sizes */
h1 { font-size: 2.27rem; font-weight: 700; }
h2 { font-size: 1.96rem; font-weight: 600; }
h3 { font-size: 1.63rem; font-weight: 600; }
h4 { font-size: 1.32rem; font-weight: 500; }
h5 { font-size: 1.18rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }
p { font-size: 1rem; }

/* Accessibility - Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(111px);
  box-shadow: 0 7px 14px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.58rem;
  font-weight: 700;
  color: var(--primary-green);
  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-green);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  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 {
  position: relative;
  z-index: 2;
  color: white;
    padding-top: 200px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.34rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.13rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--dark-gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: white;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 7px 16px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--light-gray);
}

.service-card {
  background: white;
  border-radius: 110px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 17px 35px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.56rem;
}

.service-name {
  font-size: 1.30rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.73rem;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--dark-gray);
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-green);
  margin-right: 0.5rem;
}

.service-price {
  font-size: 1.53rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Features Section */
.features-section {
  background: white;
}

/* Price Plan Section */
.priceplan-section {
  background: var(--light-gray);
}

.price-card {
  background: white;
  border-radius: 17px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 23px 40px rgba(0,0,0,0.15);
}

.price-card.featured {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

.price-name {
  font-size: 1.53rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Team Section */
.team-section {
  background: white;
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-green);
}

.team-name {
  font-size: 1.31rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.66rem;
}

.team-role {
  color: var(--dark-gray);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: var(--light-gray);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 9px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.review-text {
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 1.72rem;
  font-size: 1.24rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-green);
}

.review-stars {
  color: var(--primary-solar-yellow);
  margin-bottom: 1rem;
}

/* Case Study Section */
.casestudy-section {
  background: white;
}

.casestudy-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.casestudy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Process Section */
.process-section {
  background: var(--light-gray);
}

.process-step {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
}

/* Timeline Section */
.timeline-section {
  background: white;
}

/* Career Section */  
.career-section {
  background: var(--light-gray);
}

/* Core Info Section */
.coreinfo-section {
  background: white;
}

/* Blog Section */
.blog-section {
  background: var(--light-gray);
}

/* FAQ Section */
.faq-section {
  background: white;
}

.faq-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--light-gray);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--primary-green);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--light-green);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--dark-gray);
  border-top: 1px solid rgba(0,0,0,0.1);
  display: none;
}

.faq-question.active + .faq-answer {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: var(--light-gray);
}

.gallery-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px 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;
}

/* Contact Section */
.contact-section {
  background: white;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.69rem;
}

.form-label {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.71rem;
}

.form-control {
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(31, 67, 47, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(51, 110, 69, 0.30);
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--primary-solar-yellow);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-solar-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.6);
}

/* Breadcrumbs */
.breadcrumb-container {
  background: var(--light-gray);
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-outline-primary:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

/* Utilities */
.text-primary-green { color: var(--primary-green); }
.text-solar-yellow { color: var(--primary-solar-yellow); }
.bg-primary-green { background-color: var(--primary-green); }
.bg-solar-yellow { background-color: var(--primary-solar-yellow); }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.52rem;
  }
  
  .hero-subtitle {
    font-size: 1.12rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .review-card {
    margin-bottom: 2rem;
  }
} 


/* 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;
    }
}
