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

:root {
  /* Primary Eco-Friendly Color Palette */
  --primary-green: #2a4c35;
  --primary-light-green: #416e4d;
  --primary-earth: #836d53;
  --primary-sage: #b2c09d;
  --primary-cream: #fffffd;
  
  /* Light & Dark Shades */
  --green-light: #5e8570;
  --green-dark: #1d472d;
  --earth-light: #958360;
  --earth-dark: #5a4938;
  --sage-light: #b5c5a8;
  --sage-dark: #849b7a;
  --cream-light: #f9f7f0;
  --cream-dark: #e3ddd1;
  
  /* Accent Colors */
  --accent-orange: #d39d28;
  --accent-blue: #2f8193;
  
  /* 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(37, 77, 45, 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('../PUL_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: 200px;
}

.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(40, 80, 56, 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(43, 90, 62, 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(33, 74, 42, 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(165, 193, 139, 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 - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
