:root {
  /* Primary color palette - 5 colors with light/dark shades */
  --primary-green: #71a658;
  --primary-green-light: #add49d;
  --primary-green-dark: #43872d;
  
  --primary-blue: #498aa9;
  --primary-blue-light: #6ea9c3;
  --primary-blue-dark: #2a6c88;
  
  --primary-beige: #e7c1a7;
  --primary-beige-light: #f9dcbf;
  --primary-beige-dark: #b79a5f;
  
  --primary-brown: #79613f;
  --primary-brown-light: #aa8769;
  --primary-brown-dark: #54422b;
  
  --primary-gray: #69708c;
  --primary-gray-light: #979ead;
  --primary-gray-dark: #495469;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --h1-size: 2.5rem;
  --h2-size: 2rem;
  --h3-size: 1.5rem;
  --navbar-brand-size: 1.25rem;
}

/* Conservative typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-gray-dark);
}

h1 {
  font-size: var(--h1-size);
  font-weight: 600;
  color: var(--primary-green-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  color: var(--primary-brown-dark);
  margin-bottom: 0.84rem;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 500;
  color: var(--primary-blue-dark);
  margin-bottom: 0.60rem;
}

.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 600;
  color: var(--primary-green-dark);
}

/* Accessibility - respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-green-light), var(--primary-blue-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-beige-light);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 30%;
  height: 150%;
  background: var(--primary-brown-light);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(-10deg);
}

/* Services section */
.services-card {
  border: 2px solid var(--primary-beige);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  height: 100%;
}

.services-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-green);
}

.services-price {
  font-size: 1.57rem;
  font-weight: 700;
  color: var(--primary-green-dark);
}

/* Team section */
.team-card {
  border: none;
  border-radius: 110px;
  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-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Reviews section */
.review-card {
  border: 2px solid var(--primary-beige-light);
  border-radius: 15px;
  background: white;
  height: 100%;
  padding: 1.5rem;
}

/* FAQ section */
.faq-card {
  border: 2px solid var(--primary-gray-light);
  border-radius: 10px;
  background: white;
  margin-bottom: 1rem;
  padding: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-brown-dark);
  margin-bottom: 0.62rem;
}

.faq-answer {
  color: var(--primary-gray-dark);
  margin-bottom: 0;
}

/* Contact form */
.contact-form {
  background: var(--primary-beige-light);
  border-radius: 15px;
  padding: 2rem;
}

.form-control {
  border: 2px solid var(--primary-gray-light);
  border-radius: 8px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(123, 188, 99, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
}

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

/* Footer */
.footer {
  background: var(--primary-brown-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-beige-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--primary-beige-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Utility classes */
.text-primary-green {
  color: var(--primary-green);
}

.text-primary-brown {
  color: var(--primary-brown);
}

.bg-primary-beige {
  background-color: var(--primary-beige-light);
}

.section-padding {
  padding: 5rem 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog section */
.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Process steps */
.process-step {
  background: white;
  border: 2px solid var(--primary-beige);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.62rem;
  font-weight: 700;
  margin: 0 auto 1rem;
} 

.hero-section h1 {
    padding-top: 200px;
}


/* 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;
    }
}
