:root {
  /* Primary Colors - Pastel High-Contrast Plant Theme */
  --primary-green: #4CAF50;
  --primary-brown: #8D6E63;
  --primary-orange: #FF8A65;
  --primary-cream: #FFF8E1;
  --primary-sage: #A5D6A7;
  
  /* Light Shades */
  --light-green: #C8E6C9;
  --light-brown: #D7CCC8;
  --light-orange: #FFCCBC;
  --light-cream: #FFFDE7;
  --light-sage: #E8F5E8;
  
  /* Dark Shades */
  --dark-green: #2E7D32;
  --dark-brown: #5D4037;
  --dark-orange: #E64A19;
  --dark-cream: #F9A825;
  --dark-sage: #66BB6A;
  
  /* Typography */
  --heading-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --body-font: system-ui, -apple-system, sans-serif;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-brown);
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

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

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

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 100px;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-sage);
  opacity: 0.3;
  top: 10%;
  right: 10%;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-orange);
  opacity: 0.5;
  top: -20px;
  left: -20px;
}

/* Section Spacing */
.section-padding {
  padding: 80px 0;
}

.section-title {
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-brown);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.section-description {
  color: var(--dark-brown);
  margin-bottom: 3rem;
}

/* Services Cards */
.service-card {
  background: white;
  border: 2px solid var(--light-sage);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Features */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--dark-green);
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 100%;
  height: 300px;
  background: var(--light-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  font-size: 3rem;
}

/* Review Cards */
.review-card {
  background: var(--light-cream);
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
}

.review-text {
  font-style: italic;
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

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

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--primary-green);
  border-radius: 50%;
}

.timeline-line {
  position: absolute;
  left: 7px;
  top: 15px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--light-sage);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.btn-primary {
  background: var(--primary-green);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--dark-green);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border: 2px solid var(--light-sage);
  border-radius: 15px;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--dark-brown);
}

/* Gallery */
.gallery-image {
  background: var(--light-sage);
  height: 250px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  font-size: 2rem;
}

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

.footer h5 {
  color: var(--light-sage);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.footer-policies {
  background: var(--primary-brown);
  color: white;
  padding: 1rem 0;
}

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

/* Mobile Responsive - No Scroll Animations */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .section-padding {
    padding: 60px 0;
  }
  
  /* Disable animations on mobile */
  .service-card:hover,
  .team-card:hover {
    transform: none;
  }
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

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