/* =======================
   Дополнительные стили для улучшенной страницы "О нас"
   ======================= */

/* Контейнер для контента */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Заголовки секций */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

/* Секция о компании */
.about-company {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  margin: 2rem 0;
  border-radius: 20px;
}

.company-intro {
  text-align: left;
  margin-bottom: 3rem;
}

.lead-text {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  color: #fff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Статистика компании */
.company-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 1.1rem;
  color: #fff;
  margin-top: 0.5rem;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

/* Миссия компании */
.company-mission {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
}

.company-mission h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: #ffcc00;
  margin-bottom: 1rem;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.company-mission p {
  line-height: 1.6;
  color: #fff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

/* Секция преимуществ */
.our-advantages {
  padding: 3rem 0;
  background: rgba(1, 88, 61, 0.1);
  margin: 2rem 0;
  border-radius: 20px;
}

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

.advantage-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.advantage-card h3 {
  font-size: 1.3rem;
  color: #ffcc00;
  margin-bottom: 1rem;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.advantage-card p {
  color: #fff;
  line-height: 1.5;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

/* Сравнение с отелем */
.vs-hotel {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
}

.vs-hotel h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: #ffcc00;
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: #fff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.comparison-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Секция целевой аудитории */
.target-audience {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.05);
  margin: 2rem 0;
  border-radius: 20px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.audience-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.audience-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}

.audience-card h3 {
  font-size: 1.2rem;
  color: #ffcc00;
  margin-bottom: 1rem;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.audience-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.audience-features li {
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}

/* Дополнительная информация */
.additional-info {
  padding: 3rem 0;
  background: rgba(1, 88, 61, 0.1);
  margin: 2rem 0;
  border-radius: 20px;
}

.expandable-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.content-preview {
  padding: 2rem;
  max-height: 320px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.content-preview h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: #ffcc00;
  margin-bottom: 1rem;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.booking-steps {
  color: #fff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  padding-left: 1rem;
}

.booking-steps li {
  margin-bottom: 0.5rem;
}

.special-cases {
  list-style: none;
  padding: 0;
  color: #fff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.special-cases li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.conclusion {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.conclusion p {
  color: #fff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

/* Кнопка "Читать далее" */
.expand-btn {
  width: 100%;
  background: linear-gradient(135deg, #01583d, #02704d);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.expand-btn:hover {
  background: linear-gradient(135deg, #02704d, #01583d);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.expand-btn.expanded {
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
}

.expand-btn.expanded:hover {
  background: linear-gradient(135deg, #b71c1c, #d32f2f);
}

/* Адаптивность */
@media (max-width: 768px) {
  .company-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .advantage-card,
  .audience-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .company-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}
