/* Leisure Journey - Final Style: Soft Organic with Animated Blobs */

/* Soft Color Palette */
:root {
  --soft-cream: #FFF8F0;
  --soft-yellow: #FFD95A;
  --soft-peach: #FFB88C;
  --soft-lavender: #A78BFA;
  --soft-purple: #8B5CF6;
  --soft-blue: #60A5FA;
  --soft-mint: #86EFAC;
  --soft-text: #1F2937;
  --soft-muted: #6B7280;
}

body {
  background: var(--soft-cream);
}

/* Navigation with integrated section links */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 56px;
}

.nav-section-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-section-link {
  padding: 8px 20px;
  color: var(--soft-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-section-link:hover {
  color: var(--soft-purple);
  background: rgba(139, 92, 246, 0.1);
}

/* Responsive - hide section links on mobile */
@media (max-width: 1024px) {
  .nav-section-links {
    display: none;
  }
}

/* Hero - Purple Gradient with Real City Photo Background + One-time Animation */
.leisure-hero-final {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 138px 56px 80px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.85) 0%, rgba(167, 139, 250, 0.75) 50%, rgba(196, 181, 253, 0.85) 100%),
    url('https://images.unsplash.com/photo-1508804185872-d7badad00f7d?w=1920&q=85') center/cover;
  background-blend-mode: multiply;
  background-size: 150% 150%;
  background-position: 0% 50%;
  animation: heroReveal 8s ease-out forwards;
}

@keyframes heroReveal {
  0% {
    background-position: 0% 50%;
    background-size: 150% 150%;
  }
  100% {
    background-position: 50% 50%;
    background-size: 100% 100%;
  }
}

/* Animated Blob Backgrounds - Simplified */
.blob-animated {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 15s ease-in-out infinite;
}

.blob-1 {
  background: #FFD95A;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.blob-2 {
  background: #FFB88C;
  bottom: -100px;
  left: -100px;
  animation-delay: 5s;
}

.blob-3 {
  background: #60A5FA;
  top: 40%;
  left: 40%;
  animation-delay: 10s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

.hero-content-final {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-content-final h1 {
  font-family: 'Libre Bodoni', serif;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 24px;
}

.hero-content-final h1 .highlight {
  display: inline;
  font-style: italic;
  color: var(--soft-yellow);
}

.hero-content-final p {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero {
  padding: 18px 48px;
  font-size: 17px;
  font-weight: 600;
  background: #fff;
  color: var(--soft-purple);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Cities - Organic Rounded Cards */
.cities-organic {
  padding: 120px 56px;
  background: var(--soft-cream);
  position: relative;
}

.cities-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Varied organic card shapes */
.city-organic {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.city-organic:nth-child(1) {
  width: 450px;
  height: 500px;
  border-radius: 200px 200px 40px 40px;
}

.city-organic:nth-child(2) {
  width: 400px;
  height: 450px;
  border-radius: 40px 40px 200px 200px;
}

.city-organic:nth-child(3) {
  width: 380px;
  height: 420px;
  border-radius: 180px 40px 180px 40px;
}

.city-organic:nth-child(4) {
  width: 420px;
  height: 480px;
  border-radius: 40px 180px 40px 180px;
}

.city-organic:nth-child(5) {
  width: 390px;
  height: 440px;
  border-radius: 160px 160px 40px 40px;
}

.city-organic:nth-child(6) {
  width: 360px;
  height: 400px;
  border-radius: 40px 40px 160px 160px;
}

.city-organic:nth-child(7) {
  width: 340px;
  height: 380px;
  border-radius: 140px 40px 140px 40px;
}

.city-organic:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.city-organic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.city-organic:hover img {
  transform: scale(1.08);
}

.city-overlay-final {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.city-label-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--soft-text);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.city-name-final {
  font-family: 'Libre Bodoni', serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.city-desc-final {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

/* CTA - Yellow Gradient with Animated Gradient & Blobs */
.cta-yellow {
  padding: 120px 56px;
  background: linear-gradient(135deg, #FFD95A 0%, #FFB88C 50%, #A78BFA 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Animated Blobs in CTA */
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: blobFloat 15s ease-in-out infinite;
}

.cta-blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.5);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.cta-blob-2 {
  width: 350px;
  height: 350px;
  background: rgba(255, 184, 140, 0.6);
  bottom: -100px;
  left: -100px;
  animation-delay: 5s;
}

.cta-blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(167, 139, 250, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-yellow h2 {
  font-family: 'Libre Bodoni', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 600;
  color: var(--soft-text);
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-yellow p {
  font-size: 19px;
  color: #4B5563;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Simple Button without animations */
.btn-hero-pulse {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.btn-hero-pulse:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.btn-hero-pulse svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.btn-hero-pulse:hover svg {
  transform: translateX(6px);
}

/* Shine effect on hover */
.btn-hero-pulse::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  border-radius: 50px;
}

.btn-hero-pulse:hover::before {
  left: 100%;
}

.btn-cta-final {
  padding: 20px 56px;
  font-size: 18px;
  font-weight: 700;
  background: var(--soft-purple);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-cta-final:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(139, 92, 246, 0.6);
  background: #7C3AED;
}

/* Experiences - Soft Cards */
.experiences-soft {
  padding: 120px 56px;
  background: #fff;
}

.experience-grid-final {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.experience-card-final {
  background: var(--soft-cream);
  padding: 48px 40px;
  border-radius: 48px;
  transition: all 0.4s ease;
}

.experience-card-final:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.experience-icon-final {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--soft-purple) 0%, var(--soft-lavender) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
}

.experience-icon-final svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
  stroke-width: 2;
}

.experience-card-final h3 {
  font-family: 'Libre Bodoni', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--soft-text);
  margin-bottom: 16px;
}

.experience-card-final p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--soft-muted);
}

/* Why - Gradient Cards */
.why-final {
  padding: 120px 56px;
  background: var(--soft-cream);
}

.why-grid-final {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card-final {
  padding: 56px 48px;
  border-radius: 56px;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.why-card-final:nth-child(1) {
  background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
}

.why-card-final:nth-child(2) {
  background: linear-gradient(135deg, #FFB88C 0%, #FFD95A 100%);
}

.why-card-final:nth-child(3) {
  background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
}

.why-card-final:nth-child(4) {
  background: linear-gradient(135deg, #86EFAC 0%, #60A5FA 100%);
}

.why-card-final:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-card-final h3 {
  font-family: 'Libre Bodoni', serif;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-card-final p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.95;
}

/* What We Arrange Section */
.what-we-arrange {
  padding: 120px 56px;
  background: #fff;
}

.arrange-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.arrange-card {
  background: var(--soft-cream);
  padding: 40px 32px;
  border-radius: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.arrange-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.arrange-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--soft-purple) 0%, var(--soft-lavender) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.arrange-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  stroke-width: 2;
}

.arrange-card h3 {
  font-family: 'Libre Bodoni', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--soft-text);
  margin-bottom: 12px;
}

.arrange-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--soft-muted);
}

/* Testimonials Section */
.testimonials {
  padding: 120px 56px;
  background: var(--soft-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 40px 36px;
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.8;
  color: var(--soft-text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft-purple) 0%, var(--soft-lavender) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--soft-text);
  margin-bottom: 4px;
}

.author-info p {
  font-size: 13px;
  color: var(--soft-muted);
}

.testimonial-rating {
  position: absolute;
  top: 32px;
  right: 32px;
  color: #FFD95A;
  font-size: 18px;
}

/* Unique Experiences Section - Purple Gradient Background */
.unique-experiences {
  padding: 120px 56px;
  background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 50%, #C4B5FD 100%);
  position: relative;
}

/* Hybrid Layout: Featured Images + Text List */
.experiences-hybrid {
  max-width: 1200px;
  margin: 0 auto;
}

/* Featured Image Cards - Compact Size */
.exp-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.exp-img-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 280px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.exp-img-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.exp-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exp-img-card:hover img {
  transform: scale(1.08);
}

.exp-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.exp-img-overlay h3 {
  font-family: 'Libre Bodoni', serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.exp-img-overlay p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Text-Based Experiences - Elegant List */
.exp-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.exp-list-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.exp-list-item:hover {
  transform: translateX(8px);
}

.exp-list-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.exp-list-item:hover .exp-list-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.exp-list-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
}

.exp-list-content h4 {
  font-family: 'Libre Bodoni', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.exp-list-content p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Testimonials Section - Soft Cream Background */
.testimonials-vibrant {
  padding: 120px 56px;
  background: var(--soft-cream);
  position: relative;
}

/* Booking Process Section - Professional & Trustworthy */
.booking-process {
  padding: 100px 56px;
  background: #fff;
  position: relative;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.booking-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Step Number Badge - Redesigned */
.step-number-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--soft-yellow) 0%, var(--soft-peach) 100%);
  color: var(--soft-text);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(255, 217, 90, 0.3);
  transition: all 0.3s ease;
}

.booking-step:hover .step-number-badge {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 217, 90, 0.4);
}

/* Step Content */
.step-content {
  flex: 1;
  background: var(--soft-cream);
  padding: 24px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  width: 100%;
}

.booking-step:hover .step-content {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--soft-purple) 0%, var(--soft-lavender) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
}

.step-content h3 {
  font-family: 'Libre Bodoni', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--soft-text);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--soft-muted);
  margin-bottom: 12px;
}

.step-content strong {
  color: var(--soft-purple);
  font-weight: 600;
}

/* Checklist */
.step-checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  text-align: left;
}

.step-checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--soft-text);
  line-height: 1.5;
}

.step-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--soft-purple);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

/* Step CTAs */
.step-cta-group {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-cta-primary,
.step-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-cta-primary {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.step-cta-primary:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.step-cta-primary svg {
  width: 16px;
  height: 16px;
}

.step-cta-secondary {
  background: var(--soft-purple);
  color: #fff;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.step-cta-secondary:hover {
  background: #7C3AED;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.4);
}

.step-cta-secondary svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

/* Step Badge */
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid var(--soft-purple);
  border-radius: 50px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--soft-purple);
}

.step-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--soft-purple);
  stroke-width: 2;
}

.step-badge-success {
  background: rgba(134, 239, 172, 0.15);
  border-color: var(--soft-mint);
  color: #059669;
}

.step-badge-success svg {
  stroke: #059669;
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
  .booking-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-number-badge {
    font-size: 10px;
    padding: 6px 16px;
  }

  .step-content {
    padding: 20px 16px;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-cta-group {
    flex-direction: column;
  }

  .step-cta-primary,
  .step-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .booking-process {
    padding: 80px 24px;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .exp-featured-grid {
    grid-template-columns: 1fr;
  }

  .exp-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .exp-img-card {
    height: 240px;
  }

  .exp-list-item {
    gap: 16px;
  }

  .exp-list-icon {
    width: 40px;
    height: 40px;
  }

  .exp-list-icon svg {
    width: 20px;
    height: 20px;
  }

  .exp-list-content h4 {
    font-size: 18px;
  }

  .exp-list-content p {
    font-size: 14px;
  }

  .unique-experiences {
    padding: 80px 24px;
  }
}

@media (max-width: 1100px) {
  .arrange-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .arrange-grid {
    grid-template-columns: 1fr;
  }

  .what-we-arrange,
  .testimonials {
    padding: 80px 24px;
  }
}
@media (max-width: 1100px) {
  .cities-flow {
    justify-content: center;
  }

  .city-organic {
    width: 45% !important;
    height: 400px !important;
  }

  .experience-grid-final {
    grid-template-columns: 1fr;
  }

  .why-grid-final {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .city-organic {
    width: 100% !important;
    height: 380px !important;
    border-radius: 40px !important;
  }

  .leisure-hero-final {
    padding-top: 108px;
  }

  .hero-content-final h1 {
    font-size: 56px;
  }

  .cities-organic,
  .experiences-soft,
  .why-final,
  .cta-yellow {
    padding: 80px 24px;
  }
}
