/* Houseplant Babysitting - Main CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* Color Palette Variables */
:root {
  --primary-green: #3d6f50;
  --primary-light-green: #79a459;
  --primary-sage: #b9c0b0;
  --primary-cream: #dddac5;
  --primary-terracotta: #ee702c;
  
  /* Light/Dark Shades */
  --light-green: #fbfbfb;
  --dark-green: #2d4834;
  --light-sage: #f3f8f0;
  --dark-sage: #7a7c76;
  --light-cream: #fafaf7;
  --dark-cream: #dedbc2;
  --light-terracotta: #dfc3a3;
  --dark-terracotta: #bb7126;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-light-green));
  --gradient-secondary: linear-gradient(135deg, var(--primary-sage), var(--primary-cream));
  --gradient-accent: linear-gradient(135deg, var(--primary-terracotta), var(--light-terracotta));
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-green);
  background-color: var(--light-cream);
}

/* 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;
  }
}

/* Typography */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.16rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.92rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.77rem;
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark-green);
  margin-bottom: 0.58rem;
}

p {
  font-size: 16px;
  margin-bottom: 1.16rem;
  color: var(--dark-sage);
}

/* Header Styles */
.navbar {
  background: var(--gradient-primary);
  padding: 1rem 0;
  box-shadow: 0 3px 13px rgba(92, 145, 100, 0.10);
}

.navbar-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: white !important;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: var(--light-cream) !important;
}

/* Hero Section */
.hero-section h1 {
  padding-top: 100px;
}
.hero-section {
  min-height: 100vh;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-background.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  padding-top: 150px !important;
  position: relative;
  z-index: 1;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-decorative.blob-1 {
  top: 10%;
  right: 10%;
  transform: rotate(45deg);
}

.hero-decorative.blob-2 {
  bottom: 15%;
  left: 5%;
  width: 150px;
  height: 150px;
  border-radius: 30%;
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.20rem;
}

/* About Section */
.about-section {
  background: var(--light-cream);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 110px;
  box-shadow: 0 5px 20px rgba(73, 138, 85, 0.10);
  margin-bottom: 2.13rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1.16rem;
}

/* Services Section */
.services-section {
  background: var(--gradient-secondary);
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(86, 146, 108, 0.15);
  transition: transform 0.3s ease;
  margin-bottom: 2.13rem;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin-top: 1.05rem;
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-green);
  margin-bottom: 1.16rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-light-green);
}

.footer-bottom {
  border-top: 1px solid var(--primary-sage);
  padding-top: 1.15rem;
  margin-top: 2.11rem;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background: var(--gradient-primary);
  color: white;
}

.contact-section h2,
.contact-section h3 {
  color: white;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--light-sage);
  padding: 0.8rem;
  margin-bottom: 1.16rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(49, 99, 62, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}



/* 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;
}

/* Review Cards Styles */
.review-card-grid {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(86, 146, 108, 0.12);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-green);
}

.review-card-grid:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(86, 146, 108, 0.18);
}

.review-text-grid {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-sage);
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text-grid::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-green);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  opacity: 0.3;
}

.review-author-grid {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 1rem;
  margin: 0;
}

.review-rating {
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* FAQ Cards Styles */
.faq-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(86, 146, 108, 0.10);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid var(--primary-green);
}

.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(86, 146, 108, 0.15);
}

.faq-question-card {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.faq-question-card::before {
  content: '?';
  background: var(--primary-green);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.faq-answer-card {
  color: var(--dark-sage);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .review-card-grid {
        padding: 1.5rem;
    }
    
    .faq-card {
        padding: 1.5rem;
    }
    
    .faq-question-card {
        font-size: 1.1rem;
    }
}
