/* Eco-Friendly Moving Box Rentals - Main Styles */

:root {
  /* Primary Color Palette - Eco-friendly theme */
  --primary-green: #4f965b;
  --primary-brown: #9f786c;
  --primary-cream: #dfdfc8;
  --primary-sage: #abbf9d;
  --primary-earth: #604237;
  
  /* Light/Dark Shades */
  --light-green: #bfe5c0;
  --dark-green: #298234;
  --light-brown: #bfbfbf;
  --dark-brown: #5a3a35;
  --light-cream: #FEFEFE;
  --dark-cream: #f0f0f0;
  --light-sage: #cedcb6;
  --dark-sage: #5d8730;
  --light-earth: #d4b7a8;
  --dark-earth: #554039;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 15px;
  --font-size-large: 17px;
  --line-height-base: 1.6;
}

/* Global Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  color: var(--dark-brown);
  background-color: var(--light-cream);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

/* Conservative Typography */
.navbar-brand {
    font-size: 10px !important;
  font-size: 1.26rem;
  font-weight: 600;
  color: var(--primary-earth);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.79rem;
  font-weight: 600;
  color: var(--primary-earth);
  margin-bottom: 0.93rem;
}

h3 {
  font-size: 1.64rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 1.00rem;
}

h4 {
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--primary-brown);
  margin-bottom: 0.79rem;
}

h5 {
  font-size: 1.16rem;
  font-weight: 500;
  color: var(--dark-sage);
  margin-bottom: 0.60rem;
}

p {
  font-size: var(--font-size-base);
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
  background-color: var(--primary-cream);
  box-shadow: 0 5px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-toggler {
  border: 1px solid var(--light-sage);
  border-radius: 4px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(99, 183, 87, 0.25);
}

.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%2893, 78, 67, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    font-size: 10px !important;
  color: var(--dark-brown);
  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 {
  background: linear-gradient(135deg, var(--light-sage) 0%, var(--light-green) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FFFFFF" opacity="0.1"/><circle cx="80" cy="30" r="3" fill="%23FFFFFF" opacity="0.1"/><circle cx="40" cy="70" r="2.5" fill="%23FFFFFF" opacity="0.1"/></svg>');
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 225px;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-sage);
  font-size: var(--font-size-large);
  margin-bottom: 0.57rem;
}

/* Services Section */

.service-card {
  background: var(--light-cream);
  border: 1px solid var(--light-sage);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(66, 156, 79, 0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.70rem;
}

.service-price {
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* About Section */
.about-section {
  background-color: var(--light-cream);
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 2.55rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Team Section */

.team-member {
  text-align: center;
  background: var(--light-cream);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-3px);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.63rem;
  border: 4px solid var(--primary-sage);
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(45deg, var(--light-sage) 0%, var(--light-cream) 100%);
}

.review-card {
  background: var(--light-cream);
  border: none;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-cream);
}

.faq-card {
  background: var(--light-cream);
  border: 1px solid var(--light-sage);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-earth);
  margin-bottom: 0.59rem;
}

.faq-answer {
  color: var(--dark-brown);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-cream) 100%);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(78, 189, 70, 0.25);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: var(--light-brown);
  color: var(--light-cream);
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--primary-cream);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-green);
}

/* Gallery Section */

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Blog Section */
.blog-card {
  background: var(--light-cream);
  border: 1px solid var(--light-sage);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb img {
  max-height: 24px;
  width: auto;
}

/* Price Plans */
.price-plan-card {
  background: var(--light-cream);
  border: 2px solid var(--light-sage);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.price-plan-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(68, 190, 89, 0.20);
}

.plan-price {
  font-size: 2.63rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Animations - 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;
  }
}

/* Responsive Design Base */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  h1 {
    font-size: 1.86rem;
  }
  
  h2 {
    font-size: 1.54rem;
  }
  
  .section {
    padding: 3rem 0;
  }
} 


/* 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;
}

.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;
    }
}
