/********** Template CSS **********/
:root {
    --primary: #399a60;
    --light: #f1f8ff;
    --dark: #313131;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark {
    background-color: var(--dark) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 15px 0;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-brand p {
    color: #ffffff;
    transition: all 0.3s ease;
}

.navbar-brand:hover p {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-dark {
        padding: 0.5rem 0;
    }
}


.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}

.cookie-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
    border: 1px solid rgba(69, 169, 178, 0.2);
}

.cookie-wrapper.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-wrapper i {
    display: block;
    text-align: center;
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.cookie-wrapper h2 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.cookie-wrapper .data {
    margin-bottom: 20px;
}

.cookie-wrapper .data p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.cookie-wrapper .data p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.cookie-wrapper .data p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.cookie-wrapper .data p a:hover::after {
    width: 100%;
}

.cookie-wrapper .buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cookie-wrapper .cookie-button {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-wrapper #acceptBtn {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(69, 169, 178, 0.3);
}

.cookie-wrapper #acceptBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 169, 178, 0.4);
}

.cookie-wrapper #declineBtn {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.cookie-wrapper #declineBtn:hover {
    background-color: var(--dark);
    color: white;
    transform: translateY(-2px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 600px) {
    .cookie-wrapper {
        width: 90%;
        right: 5%;
        bottom: 20px;
        padding: 20px;
    }

    .cookie-wrapper .buttons {
        flex-direction: column;
    }

    .cookie-wrapper .cookie-button {
        width: 100%;
    }
}

.hidden {
    display: none;
}

header i {
    color: #399a60;
    font-size: 32px;
    text-align: center;
}

header h2 {
    color: #399a60;
    font-weight: 500;
    text-align: center;
}

.data {
    text-align: center;
}

.data p a {
    color: #399a60;
    text-decoration: none;
    text-align: center !important;
}

.data p a:hover {
    text-decoration: underline;
}

.buttons {
    padding: 20px 0px;
    text-align: center;
}

.buttons .cookie-button {
    border: 2px solid #399a60;
    color: #fff;
    padding: 8px 0;
    background: #399a60;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}

.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #399a60;
}

#declineBtn {
    background-color: #fff;
    color: #399a60;
}

#declineBtn:hover {
    background-color: #399a60;
    color: #fff;
}

/* Footer Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: white;
    padding: 1rem;
}

.logo {
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
}

@media (max-width: 578px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }

    .nav-active {
        display: flex;
    }
}



.bg-light-gray {
    background-color: #F5F6F7;
}

.section {
    background-color: #edfcea;
}


.text-secondary {
    color: #1E3A5F;
}

.bg-light-gray {
    background-color: #F5F6F7;
}



.text-primary-blue {
    color: #399a60;
}

.bg-light-gray {
    background-color: #F5F6F7;
}


.text-primary-blue {
    color: #399a60;
}

.btn-primary-custom {
    background-color: #1E3A5F;
    border: none;
    border-radius: 0;
    position: relative;
    color: #fff;
    padding: 0.75rem 1.5rem;
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #edfcea;
    transition: width .3s ease;
}

.btn-primary-custom:hover::after {
    width: 100%;
}

/* Обертка для hero на странице контактов */
#contact-hero .contact-hero-wrapper {
background-image: url("../img/article-career-it.webp");    
    color: #edfcea;
    min-height: 50vh;
    position: relative;
}

/* Оверлей, если нужен легкий градиент */
#contact-hero .contact-hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Контент поверх оверлея */
#contact-hero .contact-hero-content {
    position: relative;
    z-index: 2;
}

/* Заголовок и подзаголовок */
#contact-hero h1,
#contact-hero h2 {
    color: #edfcea;
}

/* Темный акцент для подзаголовка */
.text-primary-blue-dark {
    color: #399a60;
}

/* new styles  */


:root {
  --bg-color: #f6f6f6;
  --text-color: #666565;
  --accent-color: #399a60;
  --accent-dark: #313128;
  --code-bg: #171c22;
  --code-green: #60be87;
  --code-line: rgba(98, 199, 140, 0.1);
  --footer-bg: #171c22;
  --footer-text: #e0e0e0;
  --footer-link: #a0a0a0;
  --footer-link-hover: #ffffff;
}

 /* Футер */
 .footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}



.footer-brand {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-brand a {
  text-decoration: none;
}

.footer-brand p {
  font-size: 2rem;
  font-weight: 700;
  color: var(--footer-text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.footer-brand p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--code-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.footer-brand:hover p::after {
  transform: scaleX(1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-link {
  color: var(--footer-link);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
  position: relative;
}

.footer-link::before {
  content: ">";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-5px);
}

.footer-link:hover {
  color: var(--footer-link-hover);
  transform: translateX(10px);
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--footer-link);
}

.footer-contact-item i {
  margin-right: 0.5rem;
  color: var(--code-green);
}

.footer-legal {
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-legal p {
  margin-bottom: 0.5rem;
}

.footer-code-decoration {
  position: absolute;
  font-family: monospace;
  color: var(--footer-text);
  opacity: 0.05;
  z-index: 0;
  font-size: 0.8rem;
}

.footer-code-decoration.bottom-right {
  bottom: 2rem;
  right: 2rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  color: var(--footer-link);
  font-size: 0.9rem;
}

.copyright a {
  color: var(--code-green);
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .footer-brand, .footer-links, .footer-contact {
      text-align: center;
  }
  
  .footer-links {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
  }
  
  .footer-link {
      margin: 0 0.5rem;
  }
  
  .footer-contact-item {
      justify-content: center;
  }
  
  .footer-legal {
      text-align: center;
  }
  
  .footer-code-decoration {
      display: none;
  }
}

/* new styles  */
 /* Загальні стилі */
:root {
  --background-color: #f6f6f6;
  --primary-color: #a56a14;
  --secondary-color: #399a60;
  --text-color: #666565;
  --heading-color: #313131;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-weight: 700;
}

/* Стилі для головного екрану */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 650px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--white);
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

.hero-btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.hero-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.hero-btn .material-icons {
  margin-left: 8px;
  font-size: 1.2rem;
}

/* Адаптивність */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: 500px;
  }
}
/* Стилі для блоку "Лучшие направления месяца" */
.destinations-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}


.section-description {
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.destination-card {
  margin-bottom: 2.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  background-color: var(--background-color);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.destination-image-container {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image {
  transform: scale(1.05);
}

.destination-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.destination-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 15px;
}

.destination-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.destination-description {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.view-all-btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  transition: var(--transition);
  text-align: center;
  display: inline-block;
  margin-top: 1.5rem;
}

.view-all-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
}

.view-all-btn .material-icons {
  margin-left: 8px;
  font-size: 1.1rem;
  vertical-align: middle;
}

/* Стилі для блоку "Путеводители по регионам" */
.guides-section {
  padding: 5rem 0;
  background-color: #f9f7f4;
}

.region-card {
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background: var(--white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  
}

.region-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.region-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.region-description {
  color: var(--text-color);
  font-size: 0.95rem;
}

.read-guides-btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  transition: var(--transition);
  text-align: center;
  display: inline-block;
  margin-top: 1.5rem;
}

.read-guides-btn:hover {
  background: var(--primary-color);
  text-decoration: none;
  color: var(--white);
}

.read-guides-btn .material-icons {
  margin-left: 8px;
  font-size: 1.1rem;
  vertical-align: middle;
}

/* Стилі для блоку "Подборки маршрутов" */
.routes-section {
  padding: 5rem 0;
  background-color: var(--background-color);
}

.routes-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}


.route-category {
  margin-bottom: 2.5rem;
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.category-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-right: 1rem;
}

.category-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--heading-color);
}

.route-card {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.route-image-container {
  height: 370px;
  overflow: hidden;
  position: relative;
}

.route-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.route-card:hover .route-image {
  transform: scale(1.05);
}

.route-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.route-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--heading-color);
}

.route-description {
  margin-bottom: 1rem;
  flex-grow: 1;
  color: var(--text-color);
}

.route-link {
  color: var(--secondary-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-top: auto;
  transition: var(--transition);
}

.route-link:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(5px);
}

.route-link .material-icons {
  font-size: 1.1rem;
  margin-left: 5px;
}

.view-routes-btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  transition: var(--transition);
  text-align: center;
  display: inline-block;
  margin-top: 2rem;
}

.view-routes-btn:hover {
  background: var(--primary-color);
  text-decoration: none;
  color: var(--white);
}

.view-routes-btn .material-icons {
  margin-left: 8px;
  font-size: 1.1rem;
  vertical-align: middle;
}

/* Стилі для блоку "Попутные советы путешественникам" */
.tips-section {
  padding: 5rem 0;
  background-color: #f1f5f2;
}

.tips-container {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 3rem;
}

.tip-item {
  border-left: 3px solid var(--primary-color);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.tip-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
  display: flex;
  align-items: center;
}

.tip-icon {
  margin-right: 10px;
  color: var(--primary-color);
}

.tip-content {
  color: var(--text-color);
}

.read-tips-btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  transition: var(--transition);
  text-align: center;
  display: inline-block;
  margin-top: 1rem;
}

.read-tips-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
}

.read-tips-btn .material-icons {
  margin-left: 8px;
  font-size: 1.1rem;
  vertical-align: middle;
}
/* Стилі для нових блоків */
.join-section {
  padding: 5rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.join-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.join-overlay {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0.4) 100%);
}

.join-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.advantage-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.advantage-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.advantage-icon {
  color: var(--secondary-color);
  margin-right: 1rem;
}

.cta-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
}

.cta-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  color: var(--white);
  text-decoration: none;
}

.cta-btn .material-icons {
  margin-left: 8px;
}

/* Стилі для блоку "Отзывы" */
.testimonials-section {
  padding: 5rem 0;
  background-color: #f9f7f4;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 300px;
}

.testimonial-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-emoji {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--heading-color);
}

.testimonial-location {
  color: var(--text-color);
  font-size: 0.9rem;
}
/* Стилі для блоків про команду та філософію */
.about-section {
  padding: 5rem 0;
  background-color: var(--background-color);
}

.story-container {
  padding: 3rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}

.team-member {
  margin-bottom: 3rem;
}

.team-image-container {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.team-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-weight: 700;
}

.team-role {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--text-color);
}

.philosophy-container {
  padding: 3rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.philosophy-highlight {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.philosophy-list {
  margin-top: 2rem;
}

.philosophy-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
}

.philosophy-item strong {
  color: var(--heading-color);
  margin-right: 0.5rem;
}

/* Стилі для блоку "Подробные гиды по регионам" */
.guides-detailed-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.region-guide {
  margin-bottom: 5rem;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.region-guide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.region-guide:last-child {
  margin-bottom: 0;
}

.guide-image-container {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.guide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.region-guide:hover .guide-image {
  transform: scale(1.05);
}

.guide-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  color: var(--white);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.guide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  color: var(--white);
}

.guide-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--white);
}

.guide-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.guide-content {
  padding: 2rem;
  background-color: var(--white);
}

.guide-text {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.guide-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
  transform: translateX(5px);
}

.guide-link .material-icons {
  margin-left: 5px;
  font-size: 1.1rem;
}
/* Стилі для блоку "Советы по организации путешествий" */
.travel-tips-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f6f6f6 0%, #f0f0f0 100%);
  position: relative;
  overflow: hidden;
}

.travel-tips-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(165, 106, 20, 0.05);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  z-index: 0;
}

.travel-tips-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(57, 154, 96, 0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

.tips-container {
  position: relative;
  z-index: 1;
}

.tip-cards-container {
  perspective: 1000px;
  margin-top: 3rem;
}

.tip-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: var(--transition);
  overflow: hidden;
  transform-style: preserve-3d;
  position: relative;
}

.tip-card:hover {
  transform: translateY(-5px) rotateX(5deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tip-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.tip-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.tip-title {
  font-size: 1.3rem;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.tip-card-body {
  padding: 1.5rem;
  color: var(--text-color);
}

.tip-card-footer {
  background-color: rgba(0, 0, 0, 0.02);
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tip-card-footer .material-icons {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

.tip-highlight {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background-color: rgba(57, 154, 96, 0.1);
  color: var(--secondary-color);
  border-radius: 4px;
  font-weight: 500;
  margin: 0 0.2rem;
}

/* Додаткові іконки для порад */
.tip-icon-container {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  opacity: 0.2;
  color: var(--primary-color);
}

/* Анімаційні елементи */
.decorative-icon {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(57, 154, 96, 0.2);
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.decorative-icon:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.decorative-icon:nth-child(2) {
  top: 30%;
  right: 7%;
  animation-delay: 1s;
}

.decorative-icon:nth-child(3) {
  bottom: 15%;
  left: 10%;
  animation-delay: 2s;
}

.decorative-icon:nth-child(4) {
  bottom: 30%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Стилі для блоку "Подборки маршрутов" */
.routes-collection-section {
  padding: 5rem 0;
  background-color: var(--background-color);
}

.route-tabs {
  margin-bottom: 3rem;
  text-align: center;
}

.route-tab {
  display: inline-block;
  padding: 1rem 2rem;
  margin: 0 0.5rem 1rem;
  background-color: var(--white);
  color: var(--text-color);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.route-tab.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.route-tab:not(.active):hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.route-tab .material-icons {
  vertical-align: middle;
  margin-right: 0.5rem;
}

.route-card-full {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 4rem;
  position: relative;
}

.route-image-full {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.route-card-full:hover .route-image-full {
  transform: scale(1.03);
}

.route-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  z-index: 2;
}

.route-badge .material-icons {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.route-image-container {
  position: relative;
  overflow: hidden;
}

.route-details-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  padding: 3rem 2rem 2rem;
  color: var(--white);
}

.route-name {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.route-highlights {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.route-highlight {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  margin-bottom: 0.5rem;
}

.route-highlight .material-icons {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.route-content {
  padding: 2rem;
}

.route-description {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.route-features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
}

.route-feature {
  flex: 1 0 50%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-right: 1rem;
}

.route-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(57, 154, 96, 0.1);
  color: var(--secondary-color);
  margin-right: 1rem;
}

.route-feature-title {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
}

.route-feature-text {
  font-size: 0.95rem;
  color: var(--text-color);
}

.route-cta {
  text-align: center;
  margin-top: 2rem;
}

.route-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}

.route-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--white);
}

.route-btn .material-icons {
  margin-left: 0.5rem;
}

/* Стилі для блоку контактів та форми зворотнього зв'язку */
.contact-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.contact-info-container {
  padding: 2rem;
  background-color: var(--background-color);
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.contact-description {
  margin-bottom: 2rem;
  color: var(--text-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(165, 106, 20, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-item-content {
  flex-grow: 1;
}

.contact-item-title {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
}

.contact-text {
  color: var(--text-color);
}

.social-links {
  display: flex;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.contact-form-container {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--heading-color);
  text-align: center;
}

.form-floating {
  margin-bottom: 1.5rem;
}

.form-control {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  height: calc(3.5rem + 2px);
}

.form-floating label {
  padding: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: var(--transition);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
  margin-top: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}