:root {
  /* Primary color palette - 5 colors with light/dark variations */
  --primary-green: #4a7c59;
  --primary-green-light: #7ba888;
  --primary-green-dark: #2d4a35;
  
  --primary-brown: #8b6914;
  --primary-brown-light: #b5963d;
  --primary-brown-dark: #5d460e;
  
  --primary-orange: #d4753e;
  --primary-orange-light: #e09968;
  --primary-orange-dark: #a85a2f;
  
  --primary-cream: #f4f1e8;
  --primary-cream-light: #f9f7f2;
  --primary-cream-dark: #e8e3d6;
  
  --primary-charcoal: #2c3e34;
  --primary-charcoal-light: #435750;
  --primary-charcoal-dark: #1a231f;
  
  /* Conservative typography sizes */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
  
  /* Animation duration for reduced motion */
  --animation-duration: 0.3s;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
  
  :root {
    --animation-duration: 0.01ms;
  }
}

/* Conservative typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-charcoal);
  background-color: var(--primary-cream);
  line-height: 1.6;
}

/* Navbar brand (logo) - conservative size */
.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-green);
}

/* Headings - conservative sizes */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  color: var(--primary-charcoal);
  margin-bottom: 0.625rem;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  color: var(--primary-charcoal);
  margin-bottom: 0.5rem;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  color: var(--primary-charcoal);
  margin-bottom: 0.5rem;
}

/* Paragraph text - conservative size */
p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--primary-charcoal-light);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--primary-green-light);
  border-radius: 50% 30% 60% 40%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: var(--primary-orange-light);
  border-radius: 40% 60% 30% 50%;
  opacity: 0.1;
  z-index: 1;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all var(--animation-duration) ease;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all var(--animation-duration) ease;
}

.btn-secondary:hover {
  background-color: var(--primary-orange-dark);
  border-color: var(--primary-orange-dark);
  transform: translateY(-2px);
}

/* Cards */
.card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all var(--animation-duration) ease;
  background-color: white;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Services cards */
.service-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.service-price {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Team cards */
.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-cream-dark);
}

/* Review cards */
.review-card {
  padding: 2rem;
  background: white;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 3rem;
  color: var(--primary-green-light);
  font-family: serif;
  line-height: 1;
}

/* FAQ cards */
.faq-card {
  margin-bottom: 1rem;
  background: white;
}

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

.faq-answer {
  color: var(--primary-charcoal-light);
  margin-bottom: 0;
}

/* Process steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
}

.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: var(--font-size-lg);
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  padding: 1.5rem;
  border-left: 3px solid var(--primary-green-light);
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 2rem;
  width: 14px;
  height: 14px;
  background: var(--primary-green);
  border-radius: 50%;
}

/* Contact form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--primary-cream-dark);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--animation-duration) ease;
}

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

/* Footer */
.footer {
  background: #1a231f; /* Более темный фон для лучшего контраста */
  color: #ffffff; /* Чистый белый цвет для максимальной читаемости */
  padding: 3rem 0 2rem;
}

.footer a {
  color: #e8e8e8; /* Светло-серый для ссылок */
  text-decoration: none;
  transition: color var(--animation-duration) ease;
}

.footer a:hover {
  color: #7ba888; /* Светло-зеленый при наведении */
  text-decoration: underline;
}

.footer h5, .footer h6 {
  color: #ffffff; /* Белый цвет для заголовков в footer */
  font-weight: 600;
}

.footer p {
  color: #f0f0f0; /* Очень светлый серый для параграфов */
}

.footer small {
  color: #d0d0d0; /* Светло-серый для мелкого текста */
}

.footer hr {
  border-color: #495057; /* Более видимая линия разделения */
  opacity: 0.5;
}

.footer ul li {
  margin-bottom: 0.5rem; /* Лучший интервал между элементами списка */
}

/* Sections spacing */
.section-padding {
  padding: 5rem 0;
}

/* Gallery */
.gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--animation-duration) ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--primary-cream-dark);
}

.breadcrumb-img {
  width: auto;
  height: 24px;
}

/* Mobile navigation adjustments */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
}

/* High contrast colors only in footer - no gradients */
.footer {
  background: #1a231f; /* Более темный фон для лучшего контраста */
  color: #ffffff; /* Чистый белый цвет для максимальной читаемости */
}

.footer .text-muted {
  color: #d0d0d0; /* Светло-серый для приглушенного текста */
}

/* Utility classes for sections */
.bg-light-green {
  background-color: var(--primary-green-light);
  color: var(--primary-charcoal);
}

.bg-light-cream {
  background-color: var(--primary-cream-light);
}

.text-green {
  color: var(--primary-green);
}

.text-brown {
  color: var(--primary-brown);
}

.text-orange {
  color: var(--primary-orange);
} 

.hero-section h1 {
    padding-top: 100px;
}



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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

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

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}



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

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    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;
}

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