:root {
  --accent: #ff6b35;
  --bg: #ffffff;
  --text: #0f1724;
  --muted: #6b7280;
  --header-bg: rgba(255, 255, 255, 0.9);
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  --radius: 10px;
  --max-width: 1200px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  z-index: 1000;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  z-index: 100;
  transition: background 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo svg {
  margin-right: 0.5rem;
  color: var(--accent);
}

/* Navigation */
.main-nav {
  position: relative;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* CTA */
.btn-primary {
  background: var(--accent);
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s ease;
}
.btn-primary:hover {
  background: #e65a25;
}

/* Mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 768px) {
    .cookie-banner {
    width: auto !important;
  }
  .cookie-content {
    justify-content: center !important;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }
  .contact-form .newsletter {
    flex-direction: column;
    align-items: start !important;
  }
  .contact-form input,
  .contact-form textarea {
    width: 90% !important;
  }
  .container {
    padding: 0 20px;
  }
  .menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease;
  }

  .menu.menu-open {
    transform: scaleY(1);
  }

  .menu li {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cta-item {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* ---------------- HERO ---------------- */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("images/hero.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

/* ---------------- SEARCH FORM ---------------- */
.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.search-form .form-group {
  display: flex;
  flex-direction: column;
}

.search-form input {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.search-form input[type="number"] {
  width: 100px;
}

.search-form .btn-primary {
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .search-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .search-form .form-group input[type="number"] {
    width: 90%;
  }
}

/* ---------------- FEATURES / Переваги ---------------- */
.features {
  padding: 6rem 1rem;
  background: #f9fafb;
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text);
}

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

.feature-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.feature-card i {
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------------- Анімації WOW.js ---------------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}

/* ---------------- DESTINATIONS / Популярні напрямки ---------------- */
.destinations {
  padding: 6rem 1rem;
  background: #fff;
  text-align: center;
}

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

.destination-card {
  background: #f9fafb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.destination-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.destination-content {
  padding: 1rem 1.5rem 2rem;
}

.destination-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.destination-content p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.destination-content .duration {
  display: block;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ---------------- TOUR FILTERS ---------------- */
.tour-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.tour-filters select,
.tour-filters button {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.tour-filters button {
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
}

.tour-filters button:hover {
  background: #e65a25;
}

/* ---------------- TOURS GRID ---------------- */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tour-card {
  background: #f9fafb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tour-content {
  padding: 1rem 1.5rem;
  text-align: left;
}

.tour-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.tour-content p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.tour-meta .duration {
  color: var(--accent);
  font-weight: 600;
}

.tour-meta .rating {
  font-weight: 600;
}

/* ---------------- HOW IT WORKS ---------------- */
.how-it-works {
  padding: 6rem 1rem;
  background: #f9fafb;
  text-align: center;
}

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

.step-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.step-card i {
  color: var(--accent);
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------------- REVIEWS ---------------- */
.reviews {
  padding: 6rem 1rem;
  background: #fff;
  text-align: center;
}

.reviews-carousel {
  display: flex;
  justify-content: center;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

.review-card {
  flex: 0 0 300px;
  background: #f9fafb;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  scroll-snap-align: start;
}

.review-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.review-rating {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.review-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Додаткові стилі для плавного скролу на мобільних */
.reviews-carousel::-webkit-scrollbar {
  display: none;
}
.reviews-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ---------------- Анімація WOW ---------------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}

/* ---------------- FAQ / Акордеон ---------------- */
.accordion {
  max-width: 800px;
  margin: 2rem auto 0;
}

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

.accordion-header {
  background: #f9fafb;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.accordion-header:hover {
  background: #e5e7eb;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}

.accordion-body p {
  margin: 0.75rem 0;
}

/* ---------------- Контакт ---------------- */
.contact {
  padding: 6rem 1rem;
  background: #f9fafb;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-info p {
  margin-bottom: 0.5rem;
}

.socials a {
  color: var(--accent);
  margin-right: 0.5rem;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.socials a:hover {
  color: #e65a25;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form .newsletter {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.newsletter {
  display: flex;
  gap: 20px;
}
.contact-form .newsletter input {
  margin-right: 0.5rem;
}
.newsletter input {
  margin: 0;
  max-width: 20px;
  width: auto;
}
.contact-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #e65a25;
}

/* ---------------- FOOTER ---------------- */
.footer-socials a {
  color: #fff;
  font-size: 1.2rem;
  margin-left: 0.75rem;
  transition: color 0.2s;
}

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

.site-footer {
  background: #0f1724;
  color: #fff;
  padding: 4rem 1rem 2rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  margin-right: 1rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.partners img {
  height: 40px;
  margin-right: 1rem;
}

.footer-bottom {
  font-size: 0.85rem;
  text-align: center;
}

.about-us {
  padding: 6rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.7;
}

.about-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.about-hero .hero-img {
  width: 100%;
  border-radius: 16px;
  max-height: 450px;
  object-fit: cover;
}

.our-mission,
.our-team,
.our-values {
  margin-bottom: 4rem;
}

.our-mission h2,
.our-team h2,
.our-values h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.team-member p {
  font-size: 0.95rem;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.value-card {
  background: #f9fafb;
  padding: 2rem 1rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.value-card i {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* WOW.js анімації */
.wow.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0f1724;
  color: #fff;
  padding: 1rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-content {
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-content a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions button {
  margin-left: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-secondary {
  background: #fff;
  color: #0f1724;
}

.btn-secondary:hover {
  background: #e5e7eb;
}
