:root {
  /* Primary color palette - 5 colors with light/dark shades */
  --primary-green: #82a46a;
  --primary-green-light: #c2e997;
  --primary-green-dark: #639349;
  
  --primary-blue: #487fb4;
  --primary-blue-light: #93c8e9;
  --primary-blue-dark: #3b859e;
  
  --primary-beige: #e3c4a5;
  --primary-beige-light: #e1cfb6;
  --primary-beige-dark: #c2aa72;
  
  --primary-brown: #7b6148;
  --primary-brown-light: #b88569;
  --primary-brown-dark: #564a28;
  
  --primary-gray: #586177;
  --primary-gray-light: #7d8799;
  --primary-gray-dark: #394651;
  
  /* 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.99rem;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 500;
  color: var(--primary-blue-dark);
  margin-bottom: 0.57rem;
}

.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: 17px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  height: 100%;
}

.services-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-green);
}

.services-price {
  font-size: 1.64rem;
  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.63rem;
}

.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(138, 195, 120, 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.53rem;
  font-weight: 700;
  margin: 0 auto 1rem;
} 

.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
