/* ====================================
   CSS VARIABLES - COLOR SCHEME
   ==================================== */
:root {
  /* Dark theme colors */
  --primary-dark: #0D1117;      
  --secondary-dark: #161B22;   
  --accent-yellow: #d89191;     
  --accent-orange: #f28b58;    
  --text-primary: #F0F6FC;     
  --text-secondary: #CCCCCC;    
  --graphite: #333333;         
  --dark-bg: #0D1117;
  --white-text: #F0F6FC;


  --secondary-bg: #161B22;
  --primary-green: #d89191;
  --light-green: #f28b58;
  --dark-green: #28130d;
  --primary-gray: #8B949E;
  --secondary-gray: #21262D;
  --white-text: #F0F6FC;
  --accent-line: #30363D;
  /* Typography */
  --font-body: "PT Sans", sans-serif;
  --font-heading: "Merriweather", serif;
}


/* ====================================
   GLOBAL STYLES
   ==================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

/* ====================================
   HEADER STYLES
   ==================================== */
.navbar {
  background-color: var(--primary-dark) !important;
  border-bottom: 1px solid var(--graphite);
  padding: 1rem 0;
}

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

.navbar-nav .nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-yellow) !important;
}

.navbar-toggler {
  border: 1px solid var(--accent-yellow);
  padding: 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFD700' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {  
  .navbar-brand {
    font-size: 1.5rem;
  }
}

/* Стилі для блоку page-title-section */
.page-title-section {
  position: relative;
  padding: 8rem 0;
  background-color: var(--dark-bg);
  background-image: url('./img/about-history.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  z-index: 1;
}

.page-title-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(13, 17, 23, 0.9) 0%, rgba(13, 17, 23, 0.7) 100%);
  z-index: -1;
}

.page-title-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green) 0%, transparent 100%);
  z-index: 2;
}

.page-title {
  color: var(--white-text);
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  padding-left: 1.5rem;
  display: inline-block;
}

.page-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--primary-green);
}

.page-title-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background-image: 
    linear-gradient(var(--accent-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-line) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
  z-index: -1;
}

.page-title-section .container {
  position: relative;
}

@media (max-width: 991.98px) {
  .page-title-section {
    padding: 10rem 0;
  }
  
  .page-title {
    margin-top: 80px;
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .page-title-section {
    padding: 3rem 0;
  }
  
  .page-title {
    font-size: 2rem;
  }
}
/* ====================================
   FORM STYLES
   ==================================== */
.form-control {
  background-color: var(--secondary-dark);
  border: 2px solid var(--graphite);
  color: var(--text-primary);
  border-radius: 0;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  background-color: var(--secondary-dark);
  border-color: var(--accent-yellow);
  color: var(--text-primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.form-control::placeholder {
  color: var(--text-secondary);
}

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

/* ====================================
   MAP CONTAINER
   ==================================== */
.map-container {
  height: 400px;
  background-color: var(--secondary-dark);
  border: 2px solid var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
}

/* ====================================
   FOOTER STYLES
   ==================================== */
.footer {
  background-color: var(--primary-dark);
  border-top: 1px solid var(--graphite);
  padding: 3rem 0 1rem 0;
}

.footer h6 {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--graphite);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

/* ====================================
   COOKIE POPUP
   ==================================== */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-dark);
  border-top: 3px solid var(--accent-yellow);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-popup p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-popup .btn {
  margin-right: 0.5rem;
}
/* new styles  */
/* Стилі для головного блоку */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-green) 100%);
  z-index: -2;
}

.hero-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    linear-gradient(var(--accent-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
  z-index: -1;
}

.hero-title {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #fff;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-image {
  border: 1px solid var(--accent-line);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.tech-label {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--dark-green);
  color: var(--primary-green);
  font-family: 'JetBrains Mono', monospace;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  z-index: 2;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 1px solid var(--primary-green);
  border-top: 1px solid var(--primary-green);
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
}


/* Стилі для блоків 14-15 */
.ai-box {
  background-color: var(--secondary-gray);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

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

.ai-feature:last-child {
  margin-bottom: 0;
}

.ai-feature-icon {
  background-color: var(--dark-green);
  color: var(--primary-green);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.ai-feature-content h5 {
  color: var(--white-text);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ai-feature-content p {
  color: var(--primary-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-section {
  position: relative;
}

.contact-box {
  background-color: var(--secondary-bg);
  padding: 2rem;
  position: relative;
  z-index: 1;
  border-left: 3px solid var(--primary-green);
}

.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), transparent);
}

.contact-title {
  font-size: 1.3rem;
  color: var(--white-text);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: var(--primary-green);
  margin-right: 1rem;
  flex-shrink: 0;
}

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

.contact-text strong {
  color: var(--white-text);
  display: block;
  margin-bottom: 0.25rem;
}

.map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  border: 1px solid var(--accent-line);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tech-label-large {
  display: inline-block;
  background-color: var(--dark-green);
  color: var(--primary-green);
  font-family: 'JetBrains Mono', monospace;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--primary-green);
}

.working-hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 1.5rem;
}

.working-hours-table th,
.working-hours-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--accent-line);
}

.working-hours-table th {
  color: var(--white-text);
  font-weight: 600;
  text-align: left;
}

.working-hours-table td {
  color: var(--primary-gray);
}

.working-hours-table tr:last-child th,
.working-hours-table tr:last-child td {
  border-bottom: none;
}


/* Стилі для блоків 2-4 */
.section {
  padding: 4rem 0;
  position: relative;
}

.section-title {
  color: var(--white-text);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1rem;
  display: inline-block;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--primary-green);
}

.section-subtitle {
  color: var(--light-green);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* new styles  */

/* Общие стили */
:root {
  /* Dark theme colors */
  --primary-dark: #0D1117;
  --secondary-dark: #161B22;
  --accent-yellow: #d89191;
  --accent-orange: #f28b58;
  --text-primary: #F0F6FC;
  --text-secondary: #CCCCCC;
  --graphite: #333333;
  --dark-bg: #0D1117;
  --white-text: #F0F6FC;
}

body {
  background-color: var(--primary-dark);
  color: var(--text-primary);
}

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

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}
.text-accent {
  color: var(--accent-yellow);
}

/* Стили для блока "Секретные места Казахстана" */
.secret-places {
  background-color: var(--secondary-dark);
  position: relative;
  overflow: hidden;
}

.secret-places::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background-color: var(--accent-yellow);
  opacity: 0.05;
  transform: rotate(45deg);
}

.secret-place-card {
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.secret-place-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.secret-place-image:hover {
  transform: translateY(-5px);
}

.secret-place-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.secret-place-content {
  background-color: var(--primary-dark);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  border-left: 3px solid var(--accent-yellow);
}

.secret-place-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.secret-place-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.secret-place-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--accent-orange);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

/* Стили для блока "Топ тематических маршрутов" */
.thematic-routes {
  background-color: var(--primary-dark);
  position: relative;
}

.route-card {
  background-color: #fff;
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
}

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

.route-card-img-container {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

.route-card:hover .route-card-img-container img {
  transform: scale(1.1);
}

.route-card-content {
  padding: 1.5rem;
  position: relative;
  background-color: #fff;
}

.route-card-content h3 {
  margin-bottom: 1rem;
  color: var(--graphite);
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
}

.route-card-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 30px;
  height: 2px;
  background-color: var(--accent-yellow);
}

.route-card-content p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.route-card-label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--accent-yellow);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 10;
}

.route-card-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: var(--accent-yellow);
}
/* Стили для блока "История одного маршрута" */
.story-timeline {
  position: relative;
  padding: 4rem 0;
}

.story-timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--accent-yellow);
  transform: translateX(-50%);
}

.story-day {
  position: relative;
  margin-bottom: 3rem;
}

.story-day:last-child {
  margin-bottom: 0;
}

.story-day-content {
  background-color: var(--secondary-dark);
  padding: 2rem;
  border-left: 3px solid var(--accent-yellow);
  position: relative;
}

.story-day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.story-day-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.story-day-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.story-day-gallery {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.story-day-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.story-day-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Стили для блока "Планы на будущее" */
.future-plans {
  background-color: var(--secondary-dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.future-plans-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(13, 17, 23, 0.9), rgba(13, 17, 23, 0.7)), url('./img/future-bg.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.future-plans-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.btn-accent {
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-accent:hover {
  background-color: var(--accent-orange);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-icon {
  margin-left: 0.5rem;
  font-size: 1.25rem;
  vertical-align: middle;
}

/* Стили для блока "Совет в один клик" */
.quick-tips {
  padding: 4rem 0;
  background-color: var(--primary-dark);
}

.tip-accordion-item {
  background-color: var(--secondary-dark);
  margin-bottom: 1rem;
  border: none;
}

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

.tip-accordion-header {
  padding: 0;
  background-color: transparent;
}

.tip-button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.25rem;
  background-color: var(--secondary-dark);
  color: var(--text-primary);
  text-align: left;
  position: relative;
  border: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.tip-button:hover, 
.tip-button:not(.collapsed) {
  background-color: var(--graphite);
}

.tip-button::after {
  display: none;
}

.tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
}

.tip-icon-toggle {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.tip-button:not(.collapsed) .tip-icon-toggle {
  transform: translateY(-50%) rotate(180deg);
}

.tip-content {
  background-color: var(--secondary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  color: var(--text-secondary);
}
/* Стили для блока "Маршрут-сюрприз" */
.surprise-route {
  background-color: var(--secondary-dark);
  padding: 4rem 0;
  position: relative;
}

.surprise-route::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(216, 145, 145, 0.05) 0%, rgba(13, 17, 23, 0) 70%);
  pointer-events: none;
}

.surprise-badge {
  display: inline-block;
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  font-weight: 600;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.surprise-route-map {
  height: 300px;
  background-color: var(--graphite);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.surprise-route-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.surprise-route-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 17, 23, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.surprise-route-map:hover .surprise-route-map-overlay {
  opacity: 1;
}

.surprise-route-map-btn {
  background-color: var(--primary-dark);
  color: var(--text-primary);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.surprise-route-map-btn:hover {
  transform: scale(1.05);
}

.surprise-route-details {
  background-color: var(--primary-dark);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--accent-yellow);
}

.surprise-route-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.surprise-route-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.surprise-route-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: auto;
}

.surprise-route-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.surprise-route-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--secondary-dark);
  color: var(--accent-yellow);
  border-radius: 4px;
}

.surprise-route-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.surprise-route-image {
  height: 150px;
  overflow: hidden;
}

.surprise-route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Стили для блока "О компании" */
.about-company {
  background-color: var(--primary-dark);
  padding: 5rem 0;
  position: relative;
}


.about-company-card {
  background-color: var(--secondary-dark);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 3px solid var(--accent-yellow);
}

.about-card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-yellow);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.about-card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-card-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.about-company-image {
  height: 100%;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.about-company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.9) 0%, rgba(13, 17, 23, 0) 100%);
  text-align: center;
}

.about-image-text {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
}

/* Стили для блока "Наша философия" */
.our-philosophy {
  background-color: var(--secondary-dark);
  padding: 5rem 0;
  position: relative;
}

.philosophy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-divider {
  width: 80px;
  height: 3px;
  background-color: var(--accent-yellow);
  margin: 2rem auto;
}

.philosophy-quote {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--text-primary);
  position: relative;
}

.philosophy-quote::before,
.philosophy-quote::after {
  content: '"';
  color: var(--accent-yellow);
  font-size: 3rem;
  line-height: 0;
  position: relative;
}

.philosophy-quote::before {
  vertical-align: middle;
  margin-right: 0.5rem;
}

.philosophy-quote::after {
  vertical-align: middle;
  margin-left: 0.5rem;
}

.philosophy-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.philosophy-signature {
  font-family: 'Brush Script MT', cursive;
  font-size: 1.5rem;
  color: var(--accent-yellow);
  margin-top: 2rem;
}
/* Стили для блока "Путеводители - Лучшие маршруты" */
.best-routes {
  background-color: var(--primary-dark);
  padding: 5rem 0;
  position: relative;
}

.route-list-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  background-color: var(--secondary-dark);
  transition: transform 0.3s ease;
}

.route-list-item:hover {
  transform: translateY(-5px);
}

.route-list-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.route-list-item:hover .route-list-image img {
  transform: scale(1.05);
}

.route-list-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.route-list-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.route-list-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.route-list-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.route-list-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.route-list-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.route-list-meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--primary-dark);
  border-radius: 4px;
}

.route-list-map {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(13, 17, 23, 0.7);
  color: var(--text-primary);
  padding: 0.5rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.route-list-map:hover {
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
}

/* Стили для блока "Маршрут недели" */
.route-of-week {
  background-color: var(--secondary-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.route-of-week::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background-color: var(--accent-yellow);
  opacity: 0.03;
  transform: rotate(45deg);
}

.route-of-week::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background-color: var(--accent-yellow);
  opacity: 0.03;
  transform: rotate(45deg);
}

.week-route-highlight {
  display: inline-block;
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.week-route-image {
  height: 250px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

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

.week-route-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

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

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

.week-route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.week-route-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.week-route-meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  color: var(--accent-yellow);
}

.week-route-place {
  padding: 1.5rem;
  background-color: var(--primary-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.week-route-place-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.week-route-place-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.week-route-place-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Стили для блока "Советы по маршрутам" */
.route-tips {
  background-color: var(--primary-dark);
  padding: 5rem 0;
}

.tip-tabs-container {
  position: relative;
}

.tip-tabs-list {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.tip-tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.tip-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tip-tab-btn:hover,
.tip-tab-btn.active {
  color: var(--text-primary);
}

.tip-tab-btn.active::after {
  transform: scaleX(1);
}

.tip-tab-content {
  background-color: var(--secondary-dark);
  padding: 2.5rem;
  min-height: 300px;
  display: none;
}

.tip-tab-content.active {
  display: block;
}

.tip-tab-title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-yellow);
}

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

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

/* Стили для блока "Лайфхаки для путешествий" */
.travel-hacks {
  background-color: var(--secondary-dark);
  background-image: linear-gradient(rgba(13, 17, 23, 0.85), rgba(13, 17, 23, 0.85)), url('./img/travel-hacks-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 0;
  position: relative;
}

.hack-card {
  background-color: rgba(22, 27, 34, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  height: 100%;
  border-top: 3px solid var(--accent-yellow);
  transition: transform 0.3s ease;
}

.hack-card:hover {
  transform: translateY(-5px);
}

.hack-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-dark);
  color: var(--accent-yellow);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.hack-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hack-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Стили для блока "Подборки по темам" */
.theme-collections {
  background-color: var(--secondary-dark);
  padding: 5rem 0;
  position: relative;
}

.collection-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
}

.collection-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(13, 17, 23, 0) 0%, rgba(13, 17, 23, 0.8) 100%);
  z-index: 1;
}

.collection-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
}

.collection-tag {
  display: inline-block;
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.collection-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-yellow);
  font-weight: 600;
  text-decoration: none;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.collection-link:hover {
  color: var(--accent-orange);
  transform: translateX(5px);
}

/* Стили для блока "Гиды по жилью" */
.accommodation-guides {
  background-color: var(--primary-dark);
  padding: 5rem 0;
  position: relative;
}

.guide-card {
  background-color: #fff;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--accent-yellow);
  transition: transform 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
}

.guide-card::before {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent var(--accent-yellow) transparent transparent;
  opacity: 0.1;
}

.guide-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}

.guide-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-dark);
  color: var(--accent-yellow);
  font-size: 1.25rem;
}

.guide-logo-text {
  font-weight: 700;
  color: var(--graphite);
  font-size: 1.25rem;
}

.guide-title {
  color: var(--graphite);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.guide-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.guide-features {
  margin-top: auto;
}

.guide-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.guide-feature-item:last-child {
  margin-bottom: 0;
}

.guide-feature-icon {
  color: var(--accent-yellow);
}

.guide-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--accent-yellow);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.guide-link:hover {
  background-color: var(--accent-orange);
  transform: translateY(-3px);
}

/* Стили для блока "Гиды по транспорту" */
.transport-guides {
  background-color: var(--secondary-dark);
  background-image: linear-gradient(rgba(22, 27, 34, 0.6), rgba(22, 27, 34, 0.7)), url('./img/transport-bg.webp');
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  position: relative;
}

.transport-container {
  background-color: rgba(13, 17, 23, 0.5);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-left: 3px solid var(--accent-yellow);
}

.transport-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent-yellow);
}

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

.transport-section {
  margin-bottom: 2.5rem;
}

.transport-section:last-child {
  margin-bottom: 0;
}

.transport-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.transport-section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  border-radius: 50%;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.transport-list {
  list-style: none;
  padding-left: 1rem;
  margin-bottom: 0;
}

.transport-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.transport-list li:last-child {
  margin-bottom: 0;
}

.transport-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: var(--accent-yellow);
}

@media (max-width: 991.98px) {

  .section-heading {
    font-size: 1.9rem;
  }

  .tip-tabs-list {
    flex-direction: column;
  }
}