/* ================================================
   ECO-TRAIL EQUIPMENT RENTAL - MAIN STYLES
   ================================================ */

/* ============ COLOR PALETTE ============ */
:root {
  /* Primary Colors (exactly 5) */
  --eco-forest: #295211;       /* Deep forest green */
  --eco-sage: #97b86a;         /* Sage green */
  --eco-earth: #8a4026;        /* Earth brown */
  --eco-sky: #5ab3ea;          /* Sky blue */
  --eco-stone: #74829a;        /* Stone gray */
  
  /* Light Shades */
  --eco-forest-light: #4a8728;
  --eco-sage-light: #96b980;
  --eco-earth-light: #a74934;
  --eco-sky-light: #5881d1;
  --eco-stone-light: #8b99a1;
  
  /* Dark Shades */
  --eco-forest-dark: #2b4b0d;
  --eco-sage-dark: #749058;
  --eco-earth-dark: #934d34;
  --eco-sky-dark: #2669b8;
  --eco-stone-dark: #576d88;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --dark-gray: #303941;
  --black: #1c1f21;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--eco-forest) 0%, var(--eco-sage) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--eco-earth) 0%, var(--eco-stone) 100%);
  --gradient-accent: linear-gradient(135deg, var(--eco-sky) 0%, var(--eco-sage-light) 100%);
  --gradient-hero: linear-gradient(135deg, var(--eco-forest-dark) 0%, var(--eco-sage) 50%, var(--eco-sky-light) 100%);
  
  /* Conservative Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --h1-size: 2.5rem;
  --h2-size: 2rem;
  --h3-size: 1.75rem;
  --h4-size: 1.5rem;
  --h5-size: 1.25rem;
  --h6-size: 1rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 17px;
}

/* ============ GLOBAL STYLES ============ */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

/* Respect reduced motion */
@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.3;
  margin-bottom: 1rem;
  color: var(--eco-forest-dark);
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }

p {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

a {
  color: var(--eco-sky);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--eco-sky-dark);
}

/* ============ HEADER & NAVIGATION ============ */
.navbar {
  background: var(--gradient-primary);
  box-shadow: 0 7px 17px rgba(38, 81, 14, 0.15);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.57rem;
  font-weight: 700;
  color: var(--white);
}

.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--eco-sage-light);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============ HERO SECTION ============ */
.hero-section {
  background: var(--gradient-hero);
  min-height: 100vh;
  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 no-repeat;
  opacity: 0.2;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--white);
  font-size: var(--h1-size);
  margin-bottom: 1.71rem;
    padding-top: 228px;
}

.hero-section p {
  color: var(--white);
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Decorative shapes */
.hero-decoration {
  position: absolute;
  z-index: 1;
}

.hero-blob-1 {
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--gradient-accent);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-blob-2 {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--gradient-secondary);
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 27px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(33, 65, 3, 0.30);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(44, 109, 14, 0.40);
  background: var(--gradient-accent);
}

.btn-secondary {
  background: var(--gradient-secondary);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 2110px;
  transition: all 0.3s ease;
  color: var(--white);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--eco-earth-light);
  color: var(--white);
}

/* ============ SECTIONS ============ */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--eco-forest-dark);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: var(--font-size-lg);
  color: var(--eco-stone);
  max-width: 600px;
  margin: 0 auto;
}

/* Alternating section backgrounds */
.section:nth-child(even) {
  background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
}

/* ============ CARDS ============ */
.card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.card-body {
  padding: 1.5rem;
  background: var(--white);
}

.card-title {
  color: var(--eco-forest-dark);
  font-size: var(--h5-size);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--eco-stone);
  font-size: var(--font-size-base);
}

/* ============ SERVICE CARDS ============ */
.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--eco-sage);
  margin-bottom: 1.66rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--eco-forest-dark);
  margin-top: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--eco-stone);
  border-bottom: 1px solid var(--light-gray);
}

.service-features li:last-child {
  border-bottom: none;
}

/* ============ TEAM CARDS ============ */
.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px 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(--eco-sage-light);
}

.team-name {
  color: var(--eco-forest-dark);
  font-size: var(--h5-size);
  margin-bottom: 0.70rem;
}

.team-role {
  color: var(--eco-stone);
  font-size: var(--font-size-sm);
  font-style: italic;
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--eco-stone);
  margin-bottom: 1.69rem;
  font-size: var(--font-size-lg);
}

.testimonial-author {
  color: var(--eco-forest-dark);
  font-weight: 600;
}

/* ============ FAQ SECTION ============ */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gradient-accent);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--eco-stone);
  background: var(--light-gray);
  border-radius: 0 0 10px 10px;
}

/* ============ CONTACT FORM ============ */
.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 1rem;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--eco-sage);
  box-shadow: 0 0 0 0.2rem rgba(132, 161, 98, 0.25);
}

.form-label {
  color: var(--eco-forest-dark);
  font-weight: 600;
  margin-bottom: 0.61rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.63rem;
}

.footer p, .footer a {
  color: var(--white);
  opacity: 0.9;
}

.footer a:hover {
  opacity: 1;
  color: var(--eco-sage-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

/* ============ GALLERY ============ */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ============ PRICE PLAN ============ */
.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.05);
}

.price-card.featured .price-amount {
  color: var(--white);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--eco-forest-dark);
  margin: 1rem 0;
}

.price-period {
  color: var(--eco-stone);
  font-size: var(--font-size-sm);
}

/* ============ BREADCRUMBS ============ */
.breadcrumb-section {
  background: var(--light-gray);
  padding: 1rem 0;
}

.breadcrumb-img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

/* ============ UTILITIES ============ */
.text-eco-forest { color: var(--eco-forest); }
.text-eco-sage { color: var(--eco-sage); }
.text-eco-earth { color: var(--eco-earth); }
.text-eco-sky { color: var(--eco-sky); }
.text-eco-stone { color: var(--eco-stone); }

.bg-eco-forest { background-color: var(--eco-forest); }
.bg-eco-sage { background-color: var(--eco-sage); }
.bg-eco-earth { background-color: var(--eco-earth); }
.bg-eco-sky { background-color: var(--eco-sky); }
.bg-eco-stone { background-color: var(--eco-stone); }

.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-secondary { background: var(--gradient-secondary); }
.bg-gradient-accent { background: var(--gradient-accent); }

/* ============ RESPONSIVE ADJUSTMENTS ============ */
@media (max-width: 768px) {
  :root {
    --h1-size: 2rem;
    --h2-size: 1.75rem;
    --h3-size: 1.5rem;
    --section-padding: 60px 0;
  }
  
  .hero-section {
    text-align: center;
    min-height: 80vh;
  }
  
  .service-card, .contact-form {
    padding: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
    margin-top: 2rem;
  }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
