/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --color-primary: #59c45a;
  --color-primary-dark: #1b911c;
  --color-text: #474747;
  --color-text-light: #959595;
  --color-bg: #fff;
  --color-bg-alt: #efeeee;
  --color-border: #c9c9c9;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.11);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --radius: 8px;
  --transition: 0.3s ease;
  --header-h: 72px;
}

/* ============================================================
   BASE
   ============================================================ */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: "Inter", "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text-light);
  background-color: var(--color-bg);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 auto 7%;
  text-transform: uppercase;
  color: var(--color-primary);
  text-align: center;
  position: relative;
  letter-spacing: 3px;
}

.section-title:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #d0d0d0;
  left: 50%;
  top: 125%;
  width: 150px;
  transform: translateX(-75px);
}

.section-title:before {
  content: "";
  position: absolute;
  height: 3px;
  background-color: var(--color-primary);
  left: 50%;
  top: 120.5%;
  z-index: 10;
  border-radius: 50px;
  width: 80px;
  transform: translateX(-40px);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.to-top {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition:
    background var(--transition),
    transform var(--transition);
  z-index: 999;
}

.to-top::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
}

.to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SITE HEADER
   Key fix: header sits INSIDE hero via negative margin.
   It has a dark-glass background that matches the hero,
   then transitions to white when scrolled.
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Dark-glass: looks like part of the hero at the top */
  background: rgba(20, 40, 55, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
  /* Pull header up to sit OVER the hero section */
  margin-bottom: calc(-1 * var(--header-h));
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0; /* no overlap needed once scrolled */
}

/* ============================================================
   LOGO — text only, no box
   ============================================================ */
.logo__link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 14px 0;
  border: none;
  text-decoration: none;
  line-height: 1;
  position: relative;
}

.logo-main {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-primary);
  transition: color var(--transition);
  line-height: 1;
}

.logo-sub {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-top: 3px;
  transition: color var(--transition);
  line-height: 1;
}

/* Logo on dark (transparent) header */
.site-header:not(.scrolled) .logo-main {
  color: #fff;
}

.site-header:not(.scrolled) .logo-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* Logo variants in footer / contacts */
.contacts-logo .logo-main,
.footer-logo-link .logo-main {
  color: var(--color-primary);
  font-size: 18px;
}

.contacts-logo .logo-sub,
.footer-logo-link .logo-sub {
  color: var(--color-text-light);
}

.footer-logo-link .logo-sub {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   HEADER LAYOUT
   ============================================================ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
}

.header-menu__ul {
  display: flex;
}

.header-menu__link {
  font-size: 13px;
  line-height: 1.2;
  display: inline-block;
  padding: 26px 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  transition:
    background 0.25s,
    color 0.25s;
}

.site-header.scrolled .header-menu__link {
  color: var(--color-text);
}

.header-menu__link:hover {
  color: var(--color-primary);
  background: rgba(89, 196, 90, 0.08);
}

/* ============================================================
   BURGER MENU BUTTON
   ============================================================ */
.btn-menu {
  background: none;
  border-radius: 0;
  cursor: pointer;
  display: none;
  padding: 12px;
  outline: none;
  border: 0;
}

.btn-menu__box {
  display: inline-block;
  width: 26px;
  height: 18px;
  position: relative;
}

.btn-menu__inner,
.btn-menu__inner::before,
.btn-menu__inner::after {
  background: #fff;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.site-header.scrolled .btn-menu__inner,
.site-header.scrolled .btn-menu__inner::before,
.site-header.scrolled .btn-menu__inner::after {
  background: var(--color-text);
}

.btn-menu__inner {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.btn-menu__inner::before,
.btn-menu__inner::after {
  content: "";
  position: absolute;
  left: 0;
}

.btn-menu__inner::before {
  top: -8px;
}

.btn-menu__inner::after {
  bottom: -8px;
}

/* Burger → X when active */
.btn-menu.is-active .btn-menu__inner {
  background: transparent;
}

.btn-menu.is-active .btn-menu__inner::before {
  top: 0;
  transform: rotate(45deg);
}

.btn-menu.is-active .btn-menu__inner::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ============================================================
   INTRO / HERO
   ============================================================ */
.intro {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* push content down past the overlapping header */
  padding-top: var(--header-h);
}

/* Animated background layer */
.hero-bg {
  position: absolute;
  inset: -6%;
  background: #287788 url("../img/intro_bg.jpg") center / cover no-repeat;
  animation: heroBgZoom 22s ease-out forwards;
  z-index: 0;
  filter: brightness(0.88) saturate(1.15);
}

@keyframes heroBgZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.14);
  }
}

/* Cinematic gradient overlay */
.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 30, 50, 0.65) 0%, transparent 65%),
    linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%),
    linear-gradient(
      135deg,
      rgba(20, 55, 75, 0.35) 0%,
      rgba(25, 70, 55, 0.25) 100%
    );
  z-index: 1;
}

.intro-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
  margin: 0 auto;
}

.intro__title {
  font-size: 84px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  letter-spacing: 10px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
  margin-bottom: 24px;
  animation: heroSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.intro__desc {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  display: block;
  margin-bottom: 48px;
  animation: heroSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.btn {
  box-shadow: 0 4px 24px rgba(89, 196, 90, 0.38);
  padding: 15px 52px;
  background-color: var(--color-primary);
  border-radius: var(--radius);
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  align-self: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  animation: heroSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.btn:hover {
  transform: translateY(-3px);
  background-color: var(--color-primary-dark);
  box-shadow: 0 8px 32px rgba(89, 196, 90, 0.5);
}

.btn:active {
  transform: translateY(0);
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(44px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  z-index: 2;
  animation: heroFadeIn 1s ease 1.2s both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.scroll-indicator__dot {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 11px;
  position: relative;
}

.scroll-indicator__dot::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.15;
  }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  padding: 72px 0;
  background: linear-gradient(135deg, #f5f9f5 0%, #e8f5e9 100%);
}

.stats-block {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stats-item {
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.stats-number {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
  color: var(--color-primary);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}

.stats-plus {
  font-size: 32px;
  font-weight: 700;
}

.stats-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* ============================================================
   FAVORABLE / DESTINATIONS
   ============================================================ */
.fav {
  margin-bottom: 5%;
  margin-top: 5%;
}

.fav-block {
  display: flex;
  flex-wrap: wrap;
}

.fav-content {
  display: flex;
  width: 50%;
  margin-bottom: 3%;
}

.fav-content__img {
  min-width: 225px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.45s ease;
  display: block;
}

.fav-content__img-block {
  flex: 0 0 42%;
  margin-right: 5%;
  overflow: hidden;
  border-radius: var(--radius);
}

.fav-content__img-block:hover .fav-content__img {
  transform: scale(1.05);
}

.fav-comnent__text {
  flex: 1;
  min-width: 0;
}

.fav-content__title {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  color: #3c3c3c;
  margin: 0 0 8%;
}

.fav-content__title a:hover {
  color: var(--color-primary);
}

.fav-content__desc {
  font-size: 14px;
  line-height: 1.85;
  font-weight: 400;
  color: var(--color-text-light);
}

/* ============================================================
   SERVICE SECTION
   ============================================================ */
.service {
  display: flex;
}

.service-slide {
  width: 50%;
  position: relative;
  overflow: hidden;
}

/* Cinematic color overlay — subtle green-to-dark gradient */
.service-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(27, 145, 28, 0.18) 0%, transparent 55%),
    linear-gradient(to right, rgba(10, 30, 45, 0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.service-slide img {
  object-fit: cover;
  width: 100%;
  display: block;
  /* Desaturate slightly, boost contrast + warmth */
  filter: brightness(0.82) contrast(1.15) saturate(1.1) hue-rotate(-3deg);
  transition: filter 0.6s ease;
}

/* Ken Burns: slow drift on active slide */
.service-slide .slick-active img {
  animation: kbSlide 9s ease-in-out infinite alternate;
}

@keyframes kbSlide {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.08) translateX(-2%);
  }
}

/* Clip each slide so animation doesn't overflow */
.service-slide .slick-slide {
  overflow: hidden;
}

.service-content {
  width: 50%;
  padding: 48px 40px;
}

.service-content__block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-content__item {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  text-align: center;
  transition: transform var(--transition);
}

.service-content__item:hover {
  transform: translateY(-4px);
}

.service-content__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.service-content__title {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin: 12px 0 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-content__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* Slick slider */
.slick-list {
  height: 100% !important;
}

.slick-dots {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 3; /* above the .service-slide::before overlay */
}

.slick-track {
  height: 100%;
}

.slick-slide {
  position: relative;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:before {
  content: "•";
  font-size: 38px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  color: rgba(208, 205, 205, 0.95);
}

.slick-active button:before {
  color: #fff !important;
}

/* ============================================================
   TOURS GALLERY
   ============================================================ */
.tours {
  padding: 100px 0 20px;
}

.tours-block {
  display: flex;
  flex-wrap: wrap;
  margin: 40px auto 0;
}

.tours-item {
  width: 25%;
  overflow: hidden;
}

.tours-item a {
  display: block;
  position: relative;
  overflow: hidden;
}

.tours-item__img {
  width: 100%;
  object-fit: cover;
  height: 200px;
  display: block;
  transition: transform 0.45s ease;
}

.tours-item:hover .tours-item__img {
  transform: scale(1.09);
}

.tours-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(89, 196, 90, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tours-item:hover .tours-item__overlay {
  opacity: 1;
}

.tours-item__overlay span {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.9);
  padding: 8px 22px;
  border-radius: 4px;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing {
  padding: 80px 0 100px;
  background: #f7f9f7;
}

.pricing-intro {
  text-align: center;
  font-size: 16px;
  color: var(--color-text-light);
  margin: -40px auto 60px;
  max-width: 520px;
  line-height: 1.7;
}

.pricing-block {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card--featured {
  border-color: var(--color-primary);
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(89, 196, 90, 0.2);
}

.pricing-card--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 56px rgba(89, 196, 90, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-name {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}

.pricing-subtitle {
  font-size: 13px;
  color: #aaa;
  margin: 0;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 28px;
  line-height: 1;
}

.pricing-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-amount {
  font-size: 52px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.pricing-period {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 6px;
  padding-left: 2px;
}

.pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14px;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.feat-check {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.feat-cross {
  color: #ccc;
  font-size: 13px;
  flex-shrink: 0;
}

.feat-muted {
  color: #bbb !important;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
  margin-top: auto;
}

.pricing-btn:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

.pricing-btn--featured {
  background: var(--color-primary);
  color: #fff;
}

.pricing-btn--featured:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 80px 0 90px;
  background: #fff;
}

.testimonials-block {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.testimonial-item {
  flex: 1;
  min-width: 260px;
  background: #f8faf8;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
}

.testimonial-quote {
  font-size: 64px;
  line-height: 0.6;
  color: var(--color-primary);
  opacity: 0.22;
  margin-bottom: 14px;
  font-family: Georgia, serif;
  font-weight: 700;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.78;
  color: #555;
  margin-bottom: 28px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author-info strong {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.testimonial-author-info span {
  font-size: 12px;
  color: #bbb;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion-container {
  max-width: 860px;
  margin: 40px auto 70px;
  padding: 36px 40px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.accordion-title {
  text-align: center;
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.accordion {
  border-top: 1px solid #ececec;
}

.accordion-item {
  border-bottom: 1px solid #ececec;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 18px 4px;
  color: #333;
  transition: color 0.25s;
}

.accordion-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.accordion-header:hover {
  color: var(--color-primary);
}

.accordion-icon {
  font-size: 1.3em;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
  font-weight: 300;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 4px;
}

.accordion-content p {
  padding: 4px 0 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.accordion-item.active .accordion-content {
  max-height: 250px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* ============================================================
   CONTACTS SECTION
   ============================================================ */
.contacts {
  background-color: var(--color-bg-alt);
  padding: 0 0 100px;
}

.contacts__title {
  text-align: center;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-light);
  padding: 56px 0 40px;
}

.contacts-block {
  display: flex;
  flex-wrap: wrap;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contacts__info {
  width: 50%;
  padding: 40px 44px;
  border-right: 1px solid #ebebeb;
}

.contacts__form {
  width: 50%;
  padding: 40px 44px;
}

.contacts__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-light);
  padding: 24px 0 20px;
}

.contacts__address-item img {
  margin-right: 10px;
  vertical-align: sub;
}

.contacts__address-item {
  font-size: 14px;
  line-height: 2.2;
  font-weight: 500;
  color: #888;
}

.contacts-social {
  display: flex;
  margin: 24px 0;
  gap: 10px;
}

.social-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #e0e0e0;
  border-radius: 6px;
  transition:
    background 0.3s,
    transform 0.3s;
}

.social-item:hover {
  background-color: var(--color-primary);
  cursor: pointer;
  transform: translateY(-2px);
}

.social-item img {
  vertical-align: middle;
}

.main-form {
  display: flex;
  flex-direction: column;
}

.main-form input[type="text"],
input[type="email"],
textarea {
  margin-bottom: 20px;
  background: transparent;
  outline: none;
  color: #555;
  padding: 12px 4px;
  border: none;
  resize: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s;
}

.main-form input[type="text"]:focus,
.main-form input[type="email"]:focus,
.main-form textarea:focus {
  border-bottom-color: var(--color-primary);
}

.form-btn {
  margin: 8px auto 0;
  padding: 14px 52px;
  background-color: var(--color-primary);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(89, 196, 90, 0.32);
}

.form-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(89, 196, 90, 0.45);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-main {
  background: #111827;
  padding: 64px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
  max-width: 60%;
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  transition: color 0.25s;
}

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

.footer-contact li {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s;
}

.footer-contact a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  background: #0c1120;
  padding: 18px 0;
}

.footer-bottom .copyright {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
  font-size: 13px;
}

.footer-bottom .author {
  color: var(--color-primary);
  font-weight: 600;
}

/* ============================================================
   MOBILE MENU — compact dropdown
   ============================================================ */
@media screen and (max-width: 767px) {
  .btn-menu {
    display: block;
  }

  .site-header.scrolled .header-menu__link {
    color: #ffffff;
  }

  /* Dropdown panel appears directly under the sticky header */
  .header-menu__ul {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(12, 17, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    z-index: 997;
    padding: 4px 0 10px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .header-menu__ul.active {
    display: flex;
    animation: menuSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes menuSlideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .header-menu__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .header-menu__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    border-left: 2px solid transparent;
    transition:
      color 0.2s,
      background 0.2s,
      border-color 0.2s,
      padding-left 0.2s;
  }

  .header-menu__link::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.4;
    flex-shrink: 0;
    transition: opacity 0.2s;
  }

  .header-menu__link:hover {
    color: var(--color-primary);
    background: rgba(89, 196, 90, 0.06);
    border-left-color: var(--color-primary);
    padding-left: 28px;
  }

  .header-menu__link:hover::before {
    opacity: 1;
  }

  .header-menu {
    width: auto;
  }

  .section-title:after,
  .section-title:before {
    content: unset;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media screen and (max-width: 1170px) {
  .fav-content__img-block {
    width: 40%;
  }

  .fav-comnent__text {
    width: 58%;
  }

  .tours-item {
    width: 33.33333%;
  }

  .tours-item__img {
    height: 180px;
  }
}

@media screen and (max-width: 1096px) {
  .fav-content {
    width: 100%;
  }

  .fav-content__img {
    width: 280px;
    height: 280px;
  }

  .fav-content__img-block {
    flex: 0 0 30%;
  }

  .fav-comnent__text {
    flex: 1;
    padding: 0 3%;
  }

  .service-slide {
    width: 100%;
    height: 480px;
  }

  .service-content {
    width: 100%;
  }

  .service {
    flex-wrap: wrap;
  }

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

@media screen and (max-width: 992px) {
  .header {
    flex-direction: row;
  }

  .tours-item {
    width: 50%;
  }

  .tours-item__img {
    height: 200px;
  }

  .contacts__form {
    padding: 40px 24px;
  }

  .contacts__info {
    padding: 40px 24px;
  }

  .contacts__desc {
    padding-right: 0;
  }

  .stats-number {
    font-size: 42px;
  }

  .testimonials-block {
    gap: 20px;
  }

  .pricing-block {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 440px;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }
}

@media screen and (max-width: 767px) {
  .fav-content__img {
    width: 200px;
    height: 200px;
  }

  .section-title {
    margin: 30px auto 40px;
  }

  .service-content {
    padding: 32px 16px;
  }

  .service-content__item {
    width: 100%;
  }

  .service-slide {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }

  .tours-item {
    width: 50%;
  }

  .contacts__info {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ebebeb;
  }

  .contacts__form {
    width: 100%;
  }

  .contacts__address-item img {
    margin-right: 7px;
  }

  .contacts-social {
    width: auto;
  }

  .tours {
    padding: 40px 0 20px;
  }

  .accordion-container {
    margin: 24px 16px 50px;
    padding: 24px 20px;
  }

  .accordion-title {
    font-size: 1.2em;
  }

  .testimonials-block {
    flex-direction: column;
  }

  .testimonial-item {
    min-width: unset;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-main {
    padding: 40px 0 30px;
  }

  .scroll-indicator {
    display: none;
  }

  .intro__title {
    font-size: 48px;
    letter-spacing: 6px;
  }
}

@media screen and (max-width: 676px) {
  .intro-content {
    width: 90%;
  }

  .fav-content {
    flex-wrap: wrap;
  }

  .fav-content__img-block {
    flex: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
    text-align: center;
  }

  .fav-comnent__text {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .fav-content__img {
    width: 100%;
    height: 220px;
    min-width: unset;
    border-radius: var(--radius);
  }

  .fav-content__title {
    text-align: center;
    padding-top: 12px;
  }
}

@media screen and (max-width: 576px) {
  .footer-about {
    max-width: 90%;
  }

  .testimonials {
    padding: 40px 0 60px;
  }

  .intro__title {
    font-size: 36px;
    letter-spacing: 4px;
  }

  .intro__desc {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .stats-number {
    font-size: 36px;
  }

  .stats-plus {
    font-size: 24px;
  }

  .tours-item {
    width: 100%;
  }

  .tours-item__img {
    height: 220px;
  }
}

@media screen and (max-width: 460px) {
  .btn {
    padding: 13px 36px;
    font-size: 14px;
  }

  .intro-content {
    width: 100%;
    padding: 0 12px;
  }

  .intro__title {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .contacts__info,
  .contacts__form {
    padding: 28px 16px;
  }

  .contacts__address {
    text-align: center;
  }

  .contacts-social {
    justify-content: center;
  }
}
