/* ============================================
   BelBaza.by v6 — Center Parcs Inspired Theme
   Single-file production CSS
   ============================================ */

/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cp-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* --------------------------------------------
   0. CSS Custom Properties (Design Tokens)
   -------------------------------------------- */
:root {
  /* Brand colors */
  --cp-primary: #00695c;
  --cp-primary-light: #e8f5e9;
  --cp-primary-dark: #1b4332; /* warm forest green, not cold blue */

  /* Accent colors */
  --cp-accent: #e91e63;
  --cp-accent-hover: #c2185b;

  /* Surface & background */
  --cp-bg: #ffffff;
  --cp-surface: #f7f3ed; /* warm cream, not cold gray */
  --cp-white: #ffffff;

  /* Text colors */
  --cp-text: #212121;
  --cp-text-secondary: #757575;

  /* Utility colors */
  --cp-border: #e0e0e0;
  --cp-success: #4caf50;

  /* Shadows */
  --cp-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --cp-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);

  /* Border radius */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 40px;

  /* Transitions */
  --transition: all 0.25s ease;

  /* Animation timing */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

:root {
  /* Scale: Minor Third (1.2) */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  2rem;      /* 32px */
  --text-4xl:  2.5rem;    /* 40px */
  --text-5xl:  3rem;      /* 48px */

  /* Line heights */
  --leading-tight:  1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  /* Weights */
  --font-light:   300;
  --font-normal:  400;
  --font-medium:  500;
  --font-semibold: 600;
  --font-bold:     700;

  /* Spacing: 8px base */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
}

/* --------------------------------------------
   1. Base Reset & Typography
   -------------------------------------------- */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--cp-bg);
  color: var(--cp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1400px; /* 1280px → 1400px */
  margin: 0 auto;
  padding: 0 24px; /* 20px → 24px для воздуха */
  width: 100%;
}

a {
  color: var(--cp-primary);
  text-decoration: none;
}

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

/* --------------------------------------------
   2. Promo Bar
   -------------------------------------------- */
.promo-bar {
  background: var(--cp-primary);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
}

.promo-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

/* --------------------------------------------
   3. Header & Navigation
   -------------------------------------------- */
.cp-header {
  background: var(--cp-primary);
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.cp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.cp-logo {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.cp-nav {
  display: flex;
  gap: 28px;
}

.cp-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.cp-nav a:hover {
  color: #fff;
}

.cp-header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #fff;
}

.cp-phone {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.cp-login {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: var(--transition);
}

.cp-login:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cp-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  width: 36px;
  height: 36px;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promo-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

/* --------------------------------------------
   4. Hero Section
   -------------------------------------------- */
.cp-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-hero-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.08) translate(-1%, -0.5%); }
  100% { transform: scale(1.15) translate(-2%, -1%); }
}

.cp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(27,67,50,0.3), rgba(27,67,50,0.7));
}

.cp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.cp-hero-title {
  font-size: clamp(28px, 4vw, 40px); /* max 48px → 40px */
  font-weight: 500; /* 300 → 500 */
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------
   5. Search Bar (Pill-Shaped)
   -------------------------------------------- */
.cp-search {
  position: relative;
  z-index: 3;
  margin-top: -40px;
  padding: 0 20px;
}

.cp-search-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--cp-shadow-lg);
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.cp-search-field {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--cp-border);
}

.cp-search-field:last-of-type {
  border-right: none;
}

.cp-search-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--cp-text-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.cp-search-field select,
.cp-search-field input {
  width: 100%;
  border: none;
  font-size: 15px;
  color: var(--cp-text);
  background: transparent;
  outline: none;
}

.cp-search-btn {
  background: var(--cp-accent);
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cp-search-btn:hover {
  background: var(--cp-accent-hover);
}

/* --------------------------------------------
   6. Map Teaser
   -------------------------------------------- */
.cp-map-teaser {
  background: var(--cp-white);
  padding: 24px 0;
  text-align: center;
}

.cp-map-teaser-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--cp-primary-light);
  padding: 16px 24px;
  border-radius: var(--radius);
}

.cp-map-teaser-btn {
  background: var(--cp-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.cp-map-teaser-btn:hover {
  background: var(--cp-primary-dark);
}

/* --------------------------------------------
   7. Trust Badges
   -------------------------------------------- */
.cp-trust {
  background: var(--cp-surface);
  padding: 40px 0;
}

.cp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cp-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--cp-shadow);
  transition: var(--transition);
}

.cp-trust-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--cp-shadow-lg);
}

.cp-trust-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.cp-trust-title {
  font-size: 14px;
  font-weight: 600;
}

.cp-trust-desc {
  font-size: 13px;
  color: var(--cp-text-secondary);
}

/* --------------------------------------------
   8. Destination Cards
   -------------------------------------------- */
.cp-section {
  padding: 60px 0;
}

.cp-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.cp-section-title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.cp-section-subtitle {
  font-size: 15px;
  color: var(--cp-text-secondary);
}

.cp-destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cp-destination-card {
  background: var(--cp-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--cp-shadow);
  transition: var(--transition);
  position: relative;
}

.cp-destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cp-shadow-lg);
}

.cp-dest-photo {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.cp-dest-body {
  padding: 16px;
}

.cp-dest-region {
  font-size: 12px;
  color: var(--cp-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cp-dest-name {
  font-size: 18px;
  font-weight: 600;
  margin: 4px 0;
}

.cp-dest-price {
  margin-top: 8px;
}

.cp-dest-price-old {
  color: var(--cp-text-secondary);
  text-decoration: line-through;
  font-size: 14px;
}

.cp-dest-price-new {
  color: var(--cp-accent);
  font-size: 22px;
  font-weight: 700;
}

.cp-dest-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cp-dest-fav:hover {
  background: #fff;
  transform: scale(1.1);
}

/* --------------------------------------------
   9. Offer Cards
   -------------------------------------------- */
.cp-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cp-offer-card {
  padding: 32px 24px;
  text-align: center;
  border-radius: 50% 50% var(--radius) var(--radius);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
}

.cp-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cp-shadow-lg);
}

.cp-offer-green {
  background: linear-gradient(180deg, #c8e6c9, #a5d6a7);
}

.cp-offer-pink {
  background: linear-gradient(180deg, #f8bbd0, #f48fb1);
}

.cp-offer-blue {
  background: linear-gradient(180deg, #bbdefb, #90caf9);
}

.cp-offer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cp-offer-desc {
  font-size: 14px;
  color: var(--cp-text-secondary);
  margin-bottom: 16px;
}

.cp-offer-price {
  font-size: 36px;
  font-weight: 700;
}

/* --------------------------------------------
   10. Reasons Section
   -------------------------------------------- */
.cp-reasons {
  background: var(--cp-primary-dark);
  color: #fff;
  padding: 60px 0;
}

.cp-reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cp-reason-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
}

.cp-reason-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.cp-reason-card:hover img {
  transform: scale(1.05);
}

.cp-reason-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* --------------------------------------------
   11. Newsletter
   -------------------------------------------- */
.cp-newsletter {
  background: var(--cp-primary);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}

.cp-newsletter-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.cp-newsletter-desc {
  font-size: 14px;
  opacity: 0.85;
}

.cp-newsletter-form {
  display: inline-flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cp-newsletter-form input {
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 15px;
  width: 320px;
  max-width: 100%;
}

.cp-newsletter-form button {
  padding: 12px 24px;
  background: var(--cp-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cp-newsletter-form button:hover {
  background: var(--cp-accent-hover);
}

/* --------------------------------------------
   12. Included Section
   -------------------------------------------- */
.cp-included {
  background: var(--cp-primary-light);
  padding: 60px 0;
}

.cp-included-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}

.cp-included-item {
  font-size: 13px;
}

.cp-included-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.cp-included-label {
  font-weight: 500;
  color: var(--cp-text);
}

/* --------------------------------------------
   13. Footer
   -------------------------------------------- */
.cp-footer {
  background: var(--cp-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
  font-size: 13px;
}

.cp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
}

.cp-footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14px;
}

.cp-footer a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  transition: var(--transition);
}

.cp-footer a:hover {
  color: #fff;
}

.cp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* --------------------------------------------
   14. Object Page
   -------------------------------------------- */
.cp-object-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.cp-object-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.6));
}

.cp-object-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  padding: 40px 0;
}

.cp-object-main {
  min-width: 0;
}

.cp-object-sidebar {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--cp-shadow);
  position: sticky;
  top: 80px;
  align-self: start;
}

.cp-sidebar-price {
  font-size: 32px;
  color: var(--cp-accent);
  font-weight: 700;
}

.cp-sidebar-price-period {
  font-size: 14px;
  color: var(--cp-text-secondary);
  font-weight: 400;
}

.cp-sidebar-btn {
  width: 100%;
  padding: 14px;
  background: var(--cp-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.cp-sidebar-btn:hover {
  background: var(--cp-accent-hover);
}

/* Button states */
.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(233, 30, 99, 0.2);
}
.btn:disabled,
.btn[disabled] {
  background: #e0e0e0;
  color: #9e9e9e;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.btn:focus-visible {
  outline: 2px solid var(--cp-primary);
  outline-offset: 2px;
}

/* --------------------------------------------
   15. Gallery Grid
   -------------------------------------------- */
.cp-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
}

.cp-gallery-main {
  grid-row: 1 / 3;
}

.cp-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition);
}

.cp-gallery img:hover {
  opacity: 0.9;
}

/* --------------------------------------------
   16. Responsive (Mobile-First Breakpoint)
   -------------------------------------------- */
/* Mobile styles are defined in @media (max-width: 767px) below */

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .cp-destinations,
  .cp-offers {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cp-included-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cp-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------
   17. Scrollbar, Focus, Reduced Motion
   -------------------------------------------- */
/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--cp-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cp-text-secondary);
}

/* Focus styles */
input:focus,
select:focus,
button:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--cp-primary);
  outline-offset: 2px;
}

/* Placeholder contrast — WCAG AA 4.5:1 */
input::placeholder,
textarea::placeholder {
  color: #757575;
  opacity: 1;
}

/* Focus-visible for keyboard navigation (WCAG) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cp-primary);
  outline-offset: 2px;
}

/* Remove default outline but keep focus-visible */
:focus:not(:focus-visible) {
  outline: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */

/* ---- Hero text entrance animation ---- */
.cp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.cp-hero-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeInUp 1s ease-out 0.3s forwards;
}

.cp-hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  opacity: 0;
  max-width: 600px;
  margin: 0 auto;
  transform: translateY(20px);
  animation: heroFadeInUp 1s ease-out 0.6s forwards;
}

@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Floating bubbles on hero overlay ---- */
.cp-hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.cp-bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03));
  animation: bubbleFloat linear infinite;
  pointer-events: none;
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-110vh) translateX(30px) scale(0.6);
    opacity: 0;
  }
}

/* ---- Scroll reveal animations ---- */
.cp-scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition-base), transform 0.7s var(--transition-base);
}

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

/* Staggered children reveal */
.cp-stagger-children .cp-scroll-reveal:nth-child(1) { transition-delay: 0s; }
.cp-stagger-children .cp-scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.cp-stagger-children .cp-scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.cp-stagger-children .cp-scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.cp-stagger-children .cp-scroll-reveal:nth-child(5) { transition-delay: 0.4s; }
.cp-stagger-children .cp-scroll-reveal:nth-child(6) { transition-delay: 0.5s; }

/* ---- Enhanced card hover effects ---- */
.cp-destination-card {
  background: var(--cp-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--cp-shadow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  will-change: transform, box-shadow;
}

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

.cp-destination-card:hover .cp-dest-photo {
  transform: scale(1.08);
}

.cp-dest-photo {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--transition-base);
  will-change: transform;
}

/* Trust item enhanced hover */
.cp-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--cp-shadow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  will-change: transform, box-shadow;
}

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

/* Offer card enhanced hover */
.cp-offer-card {
  padding: 32px 24px;
  text-align: center;
  border-radius: 50% 50% var(--radius) var(--radius);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  will-change: transform, box-shadow;
  cursor: default;
}

.cp-offer-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* Reason card enhanced hover */
.cp-reason-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  will-change: transform, box-shadow;
  cursor: default;
}

.cp-reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* ---- Search bar focus animation ---- */
.cp-search-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--cp-shadow-lg);
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.cp-search-inner.cp-search-focused {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
  transform: scale(1.01);
}

.cp-search-field select:focus,
.cp-search-field input:focus {
  outline: none;
}

.cp-search-field {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--cp-border);
  transition: background var(--transition-fast);
}

.cp-search-field:focus-within {
  background: rgba(0, 105, 92, 0.02);
}

/* ---- Parallax section effect ---- */
.cp-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .cp-parallax {
    background-attachment: scroll;
  }
}

/* ---- Reduced motion preferences ---- */
@media (prefers-reduced-motion: reduce) {
  .cp-hero-title,
  .cp-hero-subtitle {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .cp-bubble {
    animation: none;
  }
  .cp-scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .cp-destination-card,
  .cp-trust-item,
  .cp-offer-card,
  .cp-reason-card {
    transition: none;
  }
  .cp-destination-card:hover,
  .cp-trust-item:hover,
  .cp-offer-card:hover,
  .cp-reason-card:hover {
    transform: none;
  }
  .cp-dest-photo {
    transition: none;
  }
}

/* ============================================
   RESPONSIVE — Mobile First
   ============================================ */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .cp-destinations { grid-template-columns: repeat(2, 1fr); }
  .cp-offers { grid-template-columns: repeat(2, 1fr); }
  .cp-reasons-grid { grid-template-columns: repeat(3, 1fr); }
  .cp-included-grid { grid-template-columns: repeat(3, 1fr); }
  .cp-footer-grid { grid-template-columns: repeat(3, 1fr); }
  .cp-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  /* Header */
  .cp-header {
    height: 52px;
    padding: 0;
  }

  .cp-header-inner {
    flex-direction: row;
    gap: 0;
    padding: 0 12px;
    height: 52px;
    position: relative;
  }

  .cp-menu-btn {
    display: block;
    order: -1;
  }

  .cp-logo {
    font-size: 18px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .cp-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cp-primary);
    flex-direction: column;
    padding: 8px 0;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 99;
  }

  .cp-nav.active {
    display: flex;
  }

  .cp-nav a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  .cp-nav a:last-child {
    border-bottom: none;
  }

  .cp-phone {
    display: none;
  }

  .cp-login {
    font-size: 13px;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  /* Hero */
  .cp-hero { height: 50vh; min-height: 300px; }
  .cp-hero-title { font-size: 26px; }

  /* Search */
  .cp-search { margin-top: -20px; padding: 0 12px; }
  .cp-search-inner { flex-direction: column; border-radius: 20px; }
  .cp-search-field { border-right: none; border-bottom: 1px solid var(--cp-border); width: 100%; }
  .cp-search-btn { width: 100%; border-radius: 0 0 20px 20px; padding: 14px; }

  /* Trust */
  .cp-trust-grid { grid-template-columns: 1fr; }

  /* Destinations */
  .cp-destinations { grid-template-columns: 1fr; }
  .cp-dest-photo { height: 180px; }

  /* Offers */
  .cp-offers { grid-template-columns: 1fr; }
  .cp-offer-card { border-radius: 30% 30% 16px 16px; }

  /* Reasons */
  .cp-reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-reason-card { height: 200px; }

  /* Included */
  .cp-included-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Newsletter */
  .cp-newsletter-form { flex-direction: column; width: 100%; padding: 0 20px; }
  .cp-newsletter-form input { width: 100%; }

  /* Footer */
  .cp-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cp-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Map teaser */
  .cp-map-teaser-inner { flex-direction: column; text-align: center; }
}

/* Small mobile (up to 480px) */
@media (max-width: 480px) {
  .cp-hero { height: 40vh; min-height: 250px; }
  .cp-hero-title { font-size: 22px; }
  .cp-section { padding: 32px 0; }
  .cp-section-title { font-size: 22px; }
  .cp-reasons-grid { grid-template-columns: 1fr; }
  .cp-reason-card { height: 160px; }
  .cp-footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 12px; }
  .cp-dest-name { font-size: 16px; }
  .cp-dest-price-new { font-size: 18px; }
}

/* Hamburger menu button (visible only on mobile) */
.cp-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff