/* Woonsters */

/* CSS Variables - цветовая схема в стиле макета */
:root {
  --accent-color: #0d6b14;
  --accent-light: rgba(234, 212, 66, 0.1);
  --accent-gradient: linear-gradient(135deg, #0d6b14 0%, #2ccd44 100%);
  
  --bg-white: #ffffff;
  --bg-light: #f2f2f2;
  --bg-gray: #e0e0e0;
  --bg-dark: #333333;
  
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #999999;
  
  --border-light: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(78, 66, 234, 0.2);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  
  --container-max: 1200px;
  --content-max: 720px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  max-width: var(--content-max);
}

.text-accent {
  color: var(--accent-color);
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Container and Layout */
.container-custom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1030;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color) !important;
  text-decoration: none;
}

.navbar-nav {
  justify-content: center;
  flex-grow: 1;
}

.navbar-nav .nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  padding: 0.75rem 1.25rem !important;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
  background-color: var(--accent-light);
}

/* Decorative Elements - в стиле макета */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}

.decorative-circle.large {
  width: 300px;
  height: 300px;
}

.decorative-circle.medium {
  width: 200px;
  height: 200px;
}

.decorative-circle.small {
  width: 120px;
  height: 120px;
}

/* Hero Section */
.hero-section {
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(78, 66, 234, 0.02) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 60vh;
}

.hero-text h1 {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: translateY(-5px);
}

/* Content Sections */
.content-section {
  padding: 5rem 0;
  position: relative;
}

.content-section:nth-child(even) {
  background-color: var(--bg-light);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-single {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* Cards */
.card-custom {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Buttons */
.btn-custom {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border: 2px solid var(--accent-color);
  border-radius: var(--radius-sm);
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn-custom:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-custom.filled {
  background: var(--accent-color);
  color: white;
}

.btn-custom.filled:hover {
  background: #d48832;
  transform: translateY(-2px);
}


/* Form Styles */
.form-custom {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

/* Contact Info */
.contact-info {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.contact-item .material-icons {
  color: var(--accent-color);
  margin-right: 1rem;
  font-size: 1.5rem;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-gradient);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 2px;
  background: var(--accent-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  z-index: 1040;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cookie-actions .btn-custom {
  flex: 1;
  justify-content: center;
  padding: 0.75rem 1rem;
}

/* Page Headers for secondary pages */
.page-header {
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(234, 184, 66, 0.3) 100%);
  padding: 12rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container-custom {
    padding: 0 1rem;
  }
  
  .hero-content,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-section {
    padding: 6rem 0 4rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .card-custom {
    padding: 2rem;
  }
  
  .form-custom,
  .contact-info {
    padding: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cookie-popup {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .decorative-circle.large {
    width: 200px;
    height: 200px;
  }
  
  .decorative-circle.medium {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    padding-left: 1.5rem;
  }
  
  .timeline-item {
    padding-left: 1.5rem;
  }
}

/* Additional Mobile Styles */
@media (max-width: 992px) {
  .navbar-nav {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
  }
  
  .navbar-nav .nav-link {
    padding: 1rem !important;
    border-bottom: 1px solid var(--border-light);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 5rem 0 3rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .card-custom {
    padding: 1.5rem;
  }
  
  .btn-custom {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .timeline-item {
    padding-left: 1rem;
  }
  
  .timeline::before {
    left: -0.5rem;
  }
  
  .timeline-item::before {
    left: -1.25rem;
    width: 0.75rem;
    height: 0.75rem;
  }
}

/* Form improvements */
.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-error:not(:empty) {
  display: block;
}

/* Improved accessibility */
.btn-custom:focus,
.form-control:focus,
.navbar-toggler:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Loading states */
.btn-custom:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Smooth transitions for all interactive elements */
a, button, .card-custom, .btn-custom {
  transition: all 0.3s ease;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .cookie-popup,
  .decorative-circle {
    display: none !important;
  }
  
  .content-section {
    page-break-inside: avoid;
  }
  
  .card-custom {
    border: 1px solid #000;
    box-shadow: none;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }

.flex-wrap { flex-wrap: wrap; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }


/* new styles  */

/* Загальні стилі */
body {
  color: var(--text-primary);
  background-color: var(--bg-white);
}

/* Стилі для блоку "О проекте" */
.about-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-gradient);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.content-column {
  padding: 1.5rem;
  border-left: 1px solid var(--bg-gray);
}

.content-column:first-child {
  border-left: none;
}

.about-text {
  margin-bottom: 2rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-heading {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Стилі для блоку "Преимущества" */
.advantages-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
  position: relative;
  background-image: url('./img/agro-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.advantages-content {
  position: relative;
  z-index: 2;
}

.advantage-card {
  background-color: rgba(51, 51, 51, 0.85);
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.advantage-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.advantage-title .material-icons {
  margin-right: 0.75rem;
  color: var(--accent-color);
  font-size: 2rem;
}

.advantage-text {
  color: var(--bg-light);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .content-column {
    border-left: none;
    border-top: 1px solid var(--bg-gray);
    padding-top: 2rem;
    margin-top: 2rem;
  }
  
  .content-column:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
  
  .advantage-card {
    margin-bottom: 1.5rem;
  }
}
/* Стили для блока "Популярные направления" */
.destinations-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.location-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.location-card-img {
  height: 220px;
  object-fit: cover;
}

.card-body-custom {
  padding: 1.5rem;
}

.location-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.location-text {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: var(--accent-light);
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.destination-description {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-color);
}

/* Стили для блока "Советы по планированию" */
.tips-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.tips-container {
  border: 1px solid var(--bg-gray);
  padding: 2.5rem;
  position: relative;
  background-color: var(--bg-white);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.tips-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 40px 40px 0;
  border-style: solid;
  border-color: var(--accent-color) var(--bg-light);
}

.tips-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.tips-list-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.tips-list-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-light);
  border-radius: 4px;
  margin-right: 1rem;
  color: var(--accent-color);
}

/* Стили для блока "Новости / Статьи" */
.news-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.news-card {
  display: flex;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateX(5px);
}

.news-img-container {
  flex: 0 0 35%;
  overflow: hidden;
}

.news-img {
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img {
  transform: scale(1.05);
}

.news-content {
  flex: 1;
  padding: 1.5rem;
  border: 1px solid var(--bg-gray);
  border-left: none;
}

.news-date {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.news-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.news-link {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.news-link .material-icons {
  font-size: 1rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.news-link:hover .material-icons {
  transform: translateX(3px);
}

/* Стили для блока "SMM продвижение" */
.smm-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.smm-container {
  display: flex;
  align-items: center;
}

.smm-content {
  flex: 0 0 60%;
  padding-right: 3rem;
}

.smm-image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.smm-img {
  width: 100%;
  height: auto;
  display: block;
}

.smm-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.smm-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-color: var(--accent-light);
  margin-right: 1rem;
  flex-shrink: 0;
}

.smm-icon {
  color: var(--accent-color);
  font-size: 1.75rem;
}

@media (max-width: 991.98px) {
  .smm-container {
    flex-direction: column;
  }
  
  .smm-content {
    flex: 1 0 100%;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .smm-image {
    flex: 1 0 100%;
  }
  
  .news-card {
    flex-direction: column;
  }
  
  .news-img-container {
    flex: 0 0 200px;
  }
  
  .news-content {
    border-left: 1px solid var(--bg-gray);
    border-top: none;
  }
}

@media (max-width: 767.98px) {
  .smm-feature {
    flex-direction: column;
  }
  
  .smm-icon-container {
    margin-bottom: 1rem;
  }
}
/* Стили для блока "История проекта" */
.history-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
  position: relative;
}

.history-container {
  position: relative;
  padding: 3rem;
  border-left: 3px solid var(--accent-color);
  background-color: var(--bg-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.history-container::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  left: -11px;
  top: 3rem;
}

.history-container::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  left: -11px;
  bottom: 3rem;
}

.history-year {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--accent-color);
  color: var(--bg-white);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Стили для блока "Миссия и цели" */
.mission-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.mission-row {
  align-items: center;
}

.mission-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mission-image:hover img {
  transform: scale(1.05);
}

.mission-content {
  padding: 2rem;
}

.mission-title {
  position: relative;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  color: var(--text-primary);
}

.mission-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.mission-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Стили для блока "Команда" */
.team-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.team-container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.team-image {
  flex: 0 0 40%;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--bg-white);
}

.team-image::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  z-index: -1;
}

.team-image img {
  width: 100%;
  height: auto;
  display: block;
}

.team-content {
  flex: 0 0 60%;
}

.team-text {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.team-member {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-left: 3px solid var(--accent-color);
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.member-position {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

/* Стили для блока "Советы по агротуризму" */
.agro-tips-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.tips-wrapper {
  background-color: var(--bg-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 3rem;
}

.tip-item {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--bg-gray);
  padding-bottom: 2.5rem;
}

.tip-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.tip-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tip-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
}

.tip-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.tip-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tip-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .team-container {
    flex-direction: column;
  }
  
  .team-image {
    flex: 0 0 100%;
    margin-bottom: 2rem;
  }
  
  .team-content {
    flex: 0 0 100%;
  }
}

@media (max-width: 767.98px) {
  .history-container {
    padding: 2rem;
  }
  
  .mission-image {
    margin-bottom: 2rem;
  }
  
  .mission-content {
    padding: 0;
  }
  
  .tips-wrapper {
    padding: 2rem;
  }
}
/* Стили для блока "Тематика отдыха" */
.vacation-themes-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.themes-container {
  background-color: var(--bg-white);
  padding: 3rem;
  border-top: 4px solid var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.themes-intro {
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.themes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.theme-item {
  background-color: var(--bg-light);
  padding: 0.5rem 1.25rem;
  border-left: 3px solid var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.theme-item:hover {
  background-color: var(--accent-light);
  transform: translateX(5px);
}

/* Стили для блока "Букинг" */
.booking-section {
  padding: 5rem 0;
  background: var(--accent-gradient);
  position: relative;
}

.booking-container {
  padding: 3rem;
  background-color: var(--bg-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.booking-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.booking-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.booking-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Стили для блока "Советы по планированию поездки" */
.planning-tips-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.tips-flex-container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.tips-text-container {
  flex: 0 0 60%;
}

.tips-image-container {
  flex: 0 0 40%;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tips-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  display: block;
}

.tips-image-container:hover .tips-image {
  transform: scale(1.05);
}

.tips-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 50px 50px 0;
  border-style: solid;
  border-color: var(--bg-white) var(--accent-color);
  z-index: 1;
}

.planning-text {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.planning-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .tips-flex-container {
    flex-direction: column;
  }
  
  .tips-text-container {
    flex: 1 0 100%;
    order: 2;
  }
  
  .tips-image-container {
    flex: 1 0 100%;
    order: 1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .themes-container, .booking-container {
    padding: 2rem;
  }
}
/* Обновленные стили для блока "Рекомендуемые направления" */
.recommended-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.recommended-card {
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.recommended-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.recommended-img-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.recommended-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recommended-card:hover .recommended-img {
  transform: scale(1.05);
}

.destination-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
}

.recommended-content {
  padding: 1.5rem;
}

.destination-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.destination-location {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.destination-location .material-icons {
  font-size: 1rem;
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.destination-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.destination-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.destination-link:hover {
  transform: translateX(5px);
}

.destination-link .material-icons {
  font-size: 1.1rem;
  margin-left: 0.5rem;
}