/* Eco-Friendly Moving Box Rentals - Main Styles */

:root {
  /* Primary Eco-Friendly Color Palette */
  --primary-green: #2a6137;
  --primary-light-green: #476a50;
  --primary-earth: #907456;
  --primary-sage: #97a087;
  --primary-cream: #fffceb;
  
  /* Light & Dark Shades */
  --green-light: #5c8969;
  --green-dark: #14271e;
  --earth-light: #b09575;
  --earth-dark: #574733;
  --sage-light: #c6dea8;
  --sage-dark: #81966a;
  --cream-light: #f9f7f0;
  --cream-dark: #e8d9c8;
  
  /* Accent Colors */
  --accent-orange: #c69010;
  --accent-blue: #275c8b;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', var(--font-primary);
}

/* Global Styles */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--green-dark);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-green);
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header & Navigation */
.navbar {
  background-color: var(--primary-cream);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(52, 114, 80, 0.10);
}

.navbar-nav .nav-link {
  color: var(--primary-green);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-light-green);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--sage-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../TEC_images/eco-pattern.webp') no-repeat center center;
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
    padding-top: 100px;
}

.hero p {
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn-eco {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-eco:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-eco {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  background: transparent;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-outline-eco:hover {
  background-color: var(--primary-green);
  color: white;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background-color: var(--cream-light);
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(34, 67, 47, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid var(--cream-dark);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(42, 91, 67, 0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.service-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-top: 1rem;
}

/* Features Grid */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.feature-item h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(45, 90, 61, 0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary-cream);
}

/* Reviews/Testimonials */
.review-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(45, 90, 61, 0.08);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-sage);
}

.review-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.review-card .author {
  font-weight: 600;
  color: var(--primary-green);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(45, 90, 61, 0.08);
  border-left: 4px solid var(--primary-sage);
}

.faq-card h5 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.faq-card p {
  margin-bottom: 0;
  color: var(--green-dark);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(38, 72, 54, 0.10);
}

.contact-form .form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 5px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(172, 191, 136, 0.25);
}

/* Contact Info */
.contact-info {
  background: var(--primary-green);
  color: white;
  padding: 3rem 2rem;
  border-radius: 10px;
}

.contact-info h4 {
  color: white;
  margin-bottom: 2rem;
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info .contact-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary-cream);
}

/* Footer */
.footer {
  background-color: var(--green-dark);
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: var(--cream-light);
}

.footer a:hover {
  color: white;
  text-decoration: none;
}

.footer .footer-bottom {
  border-top: 1px solid var(--primary-green);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Gallery */
.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Decorative Elements */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-sage), transparent);
  margin: 2rem 0;
}

.bg-eco-light {
  background-color: var(--cream-light);
}

.bg-eco-green {
  background-color: var(--primary-green);
  color: white;
}

.text-eco {
  color: var(--primary-green);
}

.text-eco-light {
  color: var(--primary-light-green);
} 


/* 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);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.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;
    }
}
