/* =====================================================
   ROOT VARIABLES & DESIGN TOKENS
===================================================== */
:root {
  /* Colors */
  --primary: #4282fa;
  --primary-dark: #3570e0;
  --primary-light: #5a94ff;
  --accent: #fec917;
  --accent-dark: #e5b315;
  --accent-light: #ffda4a;

  /* Neutrals */
  --dark: #0a1628;
  --dark-light: #152238;
  --text: #2d3748;
  --text-light: #5a6a7e;
  --text-muted: #8899a8;

  /* Backgrounds */
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-muted: #eef2f7;
  --border: #dfe6ef;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #4282fa 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #fec917 0%, #f59e0b 100%);
  --gradient-dark: linear-gradient(135deg, #0a1628 0%, #152238 100%);
  --gradient-soft: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  --gradient-hero: linear-gradient(135deg, #4282fa 0%, #1e40af 50%, #0a1628 100%);

  /* Effects */
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.06);
  --shadow: 0 4px 12px -1px rgb(0 0 0 / 0.08);
  --shadow-md: 0 12px 24px -4px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 40px -8px rgb(0 0 0 / 0.12);
  --shadow-xl: 0 32px 64px -16px rgb(0 0 0 / 0.18);
  --shadow-primary: 0 8px 24px -4px rgb(66 130 250 / 0.35);
  --shadow-accent: 0 8px 24px -4px rgb(254 201 23 / 0.4);

  /* Spacing & Sizing */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Misc */
  --whatsapp: #25d366;
}

/* =====================================================
   BASE STYLES
===================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

/* =====================================================
   TYPOGRAPHY
===================================================== */
.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-badge.accent {
  background: var(--gradient-accent);
  color: var(--dark);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-header.text-center .section-title {
  position: relative;
  display: block;
  padding-bottom: 20px;
}

.section-header.text-center .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-title-xl {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.4;
}

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 90%;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.text-center {
  text-align: center;
}

.section-header.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgb(66 130 250 / 0.45);
  color: white;
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}

.btn-light {
  background: white;
  color: var(--dark);
  box-shadow: var(--shadow);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 14px rgb(37 211 102 / 0.4);
  position: relative;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  color: white;
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  padding: 16px 0;
  background: white;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(66, 130, 250, 0.08);
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
}

@media (min-width: 992px) {
  .navbar .navbar-cta {
    order: 3;
    margin-left: 24px;
  }

  .navbar .navbar-collapse {
    order: 2;
  }
}

@media (max-width: 991px) {
  .navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }

  .navbar-collapse {
    padding: 20px 0;
  }

  .navbar .navbar-toggler {
    order: 2;
    margin-left: 0 !important;
    margin-left: 8px;
  }

  .navbar .navbar-cta {
    order: 1;
    margin-left: auto;
    margin-right: 0;
    padding: 8px 16px;
    font-size: 13px;
  }

  .navbar .navbar-brand {
    order: 0;
    margin-left: ;
  }

  .navbar .navbar-collapse {
    order: 3;
    flex-basis: 100%;
  }

  .navbar-collapse .btn-whatsapp {
    width: 100%;
    margin-top: 16px;
  }
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero-section {
  background: var(--dark);
}

.hero-carousel .slider-item img {
  width: 100%;
  display: block;
}

.hero-carousel .owl-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 6px;
  border-radius: 50%;
  transition: var(--transition);
  border: 2px solid transparent;
}

.hero-carousel .owl-dot.active span {
  background: white;
  border-color: var(--primary);
  transform: scale(1.2);
}

.hero-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.hero-carousel .owl-prev,
.hero-carousel .owl-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 20px !important;
  transition: var(--transition);
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-carousel .owl-prev:hover,
.hero-carousel .owl-next:hover {
  background: var(--primary) !important;
  border-color: var(--primary);
}

/* =====================================================
   INTRO SECTION
===================================================== */
.intro-section {
  padding: 100px 0;
  background: var(--gradient-soft);
}

/* Intro grid handled by Bootstrap row/col */

.intro-text {
  font-size: 17px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* Read More / Read Less - mobile only */
.btn-read-more {
  display: none;
}

@media (max-width: 767px) {
  .intro-more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .intro-more-content.expanded {
    max-height: 600px;
  }

  .btn-read-more {
    display: inline-block;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    /* margin-bottom: 20px; */
    cursor: pointer;
  }
}

.intro-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.intro-feature i {
  color: var(--primary);
  font-size: 18px;
}

.intro-feature span {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.intro-image {
  position: relative;
  display: flex;
  align-items: stretch;
}

.intro-image img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.intro-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gradient-primary);
  color: white;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-primary);
}

.intro-image-badge .price {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: white;
}

.intro-image-badge .label {
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .intro-image-badge {
    bottom: -16px;
    left: 16px;
  }
}

/* =====================================================
   HIGHLIGHTS STRIP
===================================================== */
.highlights-strip {
  background: var(--gradient-primary);
  padding: 32px 0;
}

/* Grid handled by Bootstrap row/col */

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.highlight-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i {
  font-size: 22px;
  color: white;
}

.highlight-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}

.highlight-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Highlights marquee for mobile */
.highlights-marquee {
  overflow: hidden;
  width: 100%;
  padding: 0 0;
}

.highlights-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.highlights-track .highlight-item {
  flex-shrink: 0;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =====================================================
   BUDGET SECTION
===================================================== */
.budget-section {
  padding-bottom: 100px;
  background: var(--bg);
}

/* Budget wrapper grid handled by Bootstrap row/col */

.budget-content p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.budget-content .btn {
  margin-top: 16px;
}

.couple-price-note {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: #9d174d;
  margin-bottom: 0;
}

.couple-price-note .bi-heart-fill {
  color: #ec4899;
}

/* Budget cards grid handled by Bootstrap row/col */

.budget-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgb(137 137 137 / 30%);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.budget-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(66, 130, 250, 0.2);
  transform: translateY(-2px);
}

.budget-card:hover::before {
  opacity: 1;
}

.budget-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-value {
  font-size: 24px;
  font-weight: 800;
  color: #0041c4;
  margin-bottom: 12px;
  line-height: 1.35;
}

.card-value mark {
  background: var(--accent);
  color: var(--dark);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 800;
}

.budget-card-text span {
  /* font-size: 13px; */
  color: var(--text-light);
  display: block;
  line-height: 1.5;
}

/* Budget cards marquee for mobile */
.budget-marquee {
  overflow: hidden;
  width: 100%;
}

.budget-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: budget-scroll 18s linear infinite;
}

.budget-marquee-track .budget-card {
  flex-shrink: 0;
  width: 280px;
}

@keyframes budget-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* First card - Price highlight */
.budget-card-price {
  background: var(--gradient-primary);
  border: none;
}

.budget-card-price::before {
  display: none;
}

.budget-card-price h4 {
  color: rgba(255, 255, 255, 0.75);
}

.budget-card-price .card-value {
  color: white;
  font-size: 28px;
}

.budget-card-price .budget-card-text span {
  color: rgba(255, 255, 255, 0.8);
}

.budget-card-price:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-primary);
}

/* Budget card icon */
.budget-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  background: rgba(66, 130, 250, 0.1);
  color: var(--primary);
}

.budget-card-price .budget-card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Safari card - green theme */
.budget-card-safari {
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.budget-card-safari .budget-card-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

.budget-card-safari .card-value {
  color: #065f46;
}

.budget-card-safari .card-value mark {
  background: #10b981;
  color: white;
}

.budget-card-safari:hover {
  border-color: rgba(16, 185, 129, 0.45);
  background: linear-gradient(145deg, #d1fae5 0%, #a7f3d0 100%);
  box-shadow: 0 8px 24px -4px rgba(16, 185, 129, 0.3);
}

/* Jeep safari card - amber/orange theme */
.budget-card-jeep {
  background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.budget-card-jeep .budget-card-icon {
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
}

.budget-card-jeep .card-value {
  color: #92400e;
}

.budget-card-jeep .card-value mark {
  background: #f59e0b;
  color: white;
}

.budget-card-jeep:hover {
  border-color: rgba(245, 158, 11, 0.45);
  background: linear-gradient(145deg, #fef3c7 0%, #fde68a 100%);
  box-shadow: 0 8px 24px -4px rgba(245, 158, 11, 0.3);
}

/* Elephant safari card - warm brown/earth theme */
.budget-card-elephant {
  background: linear-gradient(145deg, #fdf4f0 0%, #fce7dc 100%);
  border: 1px solid rgba(180, 100, 50, 0.2);
}

.budget-card-elephant .budget-card-icon {
  background: rgba(180, 100, 50, 0.12);
  color: #a0522d;
}

.budget-card-elephant .card-value {
  color: #7c2d12;
}

.budget-card-elephant .card-value mark {
  background: #c2703e;
  color: white;
}

.budget-card-elephant:hover {
  border-color: rgba(180, 100, 50, 0.4);
  background: linear-gradient(145deg, #fce7dc 0%, #f9d4c0 100%);
  box-shadow: 0 8px 24px -4px rgba(180, 100, 50, 0.25);
}

/* Budget responsive handled by Bootstrap col classes */

@media (max-width: 575px) {
  .budget-section {
    padding-bottom: 48px;
  }

  .budget-card {
    padding: 18px 16px;
  }

  .card-value {
    font-size: 20px;
  }

  .budget-card-price .card-value {
    font-size: 22px;
  }
}

/* =====================================================
   WHY US SECTION
===================================================== */
.why-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.feature-content {
  padding: 40px;
}

.feature-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 8px;
}

.feature-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.feature-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Feature card responsive grid handled by Bootstrap col classes */

@media (max-width: 767px) {
  .feature-image img {
    min-height: 220px;
  }

  .feature-content {
    padding: 24px;
  }

  .feature-number {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 36px;
    background: none;
    color: white;
    -webkit-text-fill-color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    margin-bottom: 0;
    opacity: 0.95;
    z-index: 2;
  }
}

/* =====================================================
   ITINERARY CAROUSEL (Mobile)
===================================================== */
.itinerary-carousel .itinerary-slide {
  padding: 4px;
}

.slide-day-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.slide-day-badge.highlight {
  background: var(--gradient-dark);
}

.itinerary-carousel .timeline-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: white;
}

.itinerary-carousel .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.itinerary-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: var(--border);
  border-radius: 50%;
  margin: 0 5px;
  transition: var(--transition);
}

.itinerary-carousel .owl-dot.active span {
  background: var(--primary);
  transform: scale(1.2);
}

/* =====================================================
   ITINERARY SECTION
===================================================== */
.itinerary-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 50%, #f8fafc 100%);
}

.itinerary-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Vertical timeline line */
.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
  position: relative;
}

.timeline-item:last-child .timeline-card {
  margin-bottom: 0;
}

/* Day marker */
.day-marker {
  flex-shrink: 0;
  width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 28px;
  position: relative;
  z-index: 2;
}

.day-number {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border: 3px solid white;
  border-radius: 50%;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 15px rgba(66, 130, 250, 0.4);
}

.day-number .day-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
}

.day-number .day-num {
  font-size: 24px;
  color: white;
  font-weight: 800;
}

/* .timeline-item.highlight .day-number {
  background: var(--dark);
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.5);
} */

/* .timeline-item.highlight .day-number .day-label {
  color: var(--accent);
} */

.timeline-item.highlight .day-number .day-num {
  color: white;
}

/* Timeline card */
.timeline-card {
  flex: 1;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 24px;
}

.timeline-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(66, 130, 250, 0.2);
}

.timeline-item.highlight .timeline-card {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.timeline-card .card-header {
  padding: 20px 24px;
  background: white;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.card-header-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  padding-right: 100px;
}

.route-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(66, 130, 250, 0.1) 0%, rgba(66, 130, 250, 0.05) 100%);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(66, 130, 250, 0.15);
}

.route-badge i {
  color: var(--primary);
  font-size: 14px;
}

.highlight-badge {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 700;
  color: #977100;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(145deg, #fef3c7 0%, #fde68a 100%);
  padding: 5px 10px;
  border-radius: 4px;
}

.timeline-card .card-body {
  padding: 20px 24px;
  background: var(--bg-soft);
}

.timeline-card .card-body p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 10px;
}

.timeline-card .card-body p:last-child {
  margin-bottom: 0;
}

.card-images {
  padding: 0 24px 20px;
  background: var(--bg-soft);
}

.card-images img {
  border-radius: var(--radius);
  /* aspect-ratio: 16/10; */
  object-fit: cover;
  transition: var(--transition);
}

.card-images img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .itinerary-timeline::before {
    left: 24px;
  }

  .day-marker {
    width: 48px;
  }

  .day-number {
    width: 50px;
    height: 50px;
  }

  .day-number .day-label {
    font-size: 8px;
  }

  .day-number .day-num {
    font-size: 20px;
  }

  .timeline-item {
    gap: 16px;
  }

  .timeline-card .card-header,
  .timeline-card .card-body {
    padding: 16px 18px;
  }

  .card-header-content h3 {
    font-size: 16px;
    padding-right: 0;
  }

  .highlight-badge {
    position: static;
    transform: none;
    display: inline-block;
    margin-top: 8px;
  }

  .card-images {
    padding: 0 18px 16px;
  }
}

/* =====================================================
   INCLUSIONS SECTION
===================================================== */
.inclusions-section {
  padding: 100px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.inclusions-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.inclusions-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.inclusions-section .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.inclusions-section .section-title {
  color: white;
}

.inclusions-section .section-title::after {
  background: white;
}

.inclusions-grid {
  position: relative;
  z-index: 1;
}

.inclusion-card {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.inclusion-card:hover {
  background: white;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.inclusion-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-primary);
}

.inclusion-icon i {
  font-size: 24px;
  color: white;
}

.inclusion-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.inclusion-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
}

/* Inclusions carousel (mobile) */
.inclusions-carousel .inclusion-card,
.ideal-carousel .ideal-card {
  height: auto;
}

.inclusions-carousel .owl-dots,
.ideal-carousel .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.inclusions-carousel .owl-dot span,
.ideal-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  margin: 0 5px;
  transition: var(--transition);
}

.inclusions-carousel .owl-dot.active span {
  background: white;
  transform: scale(1.2);
}

.ideal-carousel .owl-dot span {
  background: var(--border);
}

.ideal-carousel .owl-dot.active span {
  background: var(--primary);
  transform: scale(1.2);
}

/* =====================================================
   PRICING SECTION
===================================================== */
.pricing-section {
  padding: 100px 0;
  /* background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-muted) 100%); */
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.price-card.featured .price-header {
  background: var(--gradient-primary);
}

.price-card.featured .price-label {
  color: rgba(255, 255, 255, 0.8);
}

.price-card.featured .price-amount .currency,
.price-card.featured .price-amount .value {
  color: white;
}

.price-card.featured .price-amount .period {
  color: rgba(255, 255, 255, 0.7);
}

.featured-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--dark);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.price-header {
  padding: 32px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--border);
}

.price-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.price-amount {
  display: flex;
  align-items: baseline;
}

.price-amount .currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.price-amount .value {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.price-amount .period {
  font-size: 16px;
  color: var(--text-light);
  margin-left: 4px;
}

.price-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.price-body>p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
  padding-left: 0px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

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

.price-body .btn {
  margin-top: auto;
}

.price-features i {
  color: var(--primary);
  font-size: 18px;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing Info */
.pricing-info {
  max-width: 900px;
  margin: 0 auto 40px;
}

.info-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.info-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.info-card h4 i {
  color: var(--primary);
}

.info-card>p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-tags span {
  background: var(--gradient-primary);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  border: none;
  box-shadow: 0 2px 8px rgba(66, 130, 250, 0.25);
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient-dark);
  padding: 40px 48px;
  border-radius: var(--radius-xl);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--primary);
  opacity: 0.15;
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .cta-banner {
    text-align: center;
    padding: 32px;
  }
}

/* =====================================================
   IDEAL SECTION
===================================================== */
.ideal-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

/* Ideal grid handled by Bootstrap row/col */

.ideal-card {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.ideal-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.ideal-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-primary);
}

.ideal-icon i {
  font-size: 32px;
  color: white;
}

.ideal-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.ideal-card p {
  font-size: 15px;
  color: var(--text-light);
}

/* Ideal responsive handled by Bootstrap col classes */

/* =====================================================
   NOTES SECTION
===================================================== */
.notes-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #eef2f7 0%, #e2e8f0 50%, #eef2f7 100%);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.note-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.note-item i {
  font-size: 24px;
  color: var(--primary);
}

.note-item p {
  font-size: 15px;
  color: var(--text);
  margin: 0;
}

@media (max-width: 991px) {
  .notes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .notes-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   FAQ SECTION
===================================================== */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* FAQ wrapper grid handled by Bootstrap row/col */
.faq-wrapper {
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 100px;
}

.faq-header p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.accordion-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-button {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  padding: 20px 24px;
  background: white;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  color: var(--primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}

@media (max-width: 991px) {
  .faq-header {
    position: static;
    text-align: center;
  }
}

/* =====================================================
   ENQUIRY SECTION
===================================================== */
.enquiry-section {
  padding: 100px 0;
  /* background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-muted) 100%); */
}

.enquiry-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.enquiry-content p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon.whatsapp {
  background: rgba(37, 211, 102, 0.1);
}

.contact-icon.whatsapp i {
  color: var(--whatsapp);
  font-size: 24px;
}

.contact-icon.phone {
  background: rgba(79, 70, 229, 0.1);
}

.contact-icon.phone i {
  color: var(--primary);
  font-size: 22px;
}

.contact-info strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-info span {
  font-size: 17px;
  color: var(--text-light);
}

.enquiry-form {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .10);
}

.enquiry-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

/* Form grid handled by Bootstrap row/col */

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group .form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  transition: var(--transition);
  background: var(--bg-soft);
}

.form-group .form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(66, 130, 250, 0.15);
}

@media (max-width: 991px) {
  .enquiry-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Form responsive handled by Bootstrap col classes */

/* =====================================================
   FOOTER
===================================================== */
footer {
  background: var(--gradient-dark);
  padding: 80px 0 0;
  color: white;
}

.footer-grid {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: white;
}

.footer-contact i {
  font-size: 18px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
}

.footer-bottom {
  padding: 28px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Footer responsive handled by Bootstrap col classes */

/* =====================================================
   FLOATING MOBILE CTA
===================================================== */
.floating-cta {
  position: fixed;
  bottom: 50%;
  right: 7px;
  z-index: 1050;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right bottom;
}

.floating-cta .btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px 10px 0 0;
  box-shadow: var(--shadow-primary);
  white-space: nowrap;
}

@media (max-width: 575px) {

  .footer-brand {
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

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

/* =====================================================
   MODAL STYLES
===================================================== */
.modal-content {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.modal-body {
  padding: 28px;
}

.modal-body .form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.modal-body .form-control {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  transition: var(--transition);
  background: var(--bg-soft);
}

.modal-body .form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(66, 130, 250, 0.15);
}

.modal-body .btn-primary {
  margin-top: 8px;
}

#thankYouMessage h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

#thankYouMessage p {
  font-size: 15px;
}

/* =====================================================
   UTILITIES
===================================================== */
.w-100 {
  width: 100%;
}

.text-center {
  text-align: center;
}

.form-whatsapp-text {
  text-align: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
}

.form-whatsapp-text .bi-whatsapp {
  color: #25d366;
}

.success-icon {
  font-size: 64px;
}

.budget-card,
.inclusion-card,
.ideal-card {
  height: 100%;
}

/* =====================================================
   MOBILE OPTIMIZATIONS
===================================================== */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 36px;
  }

  .section-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .section-badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  body {
    font-size: 15px;
  }

  .btn {
    padding: 10px 22px;
    font-size: 13px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 14px;
  }

  .navbar-brand img {
    height: 34px;
  }

  .hero-carousel .owl-nav {
    display: none;
  }

  .hero-carousel .slider-item img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .intro-section,
  .budget-section,
  .why-section,
  .itinerary-section,
  .inclusions-section,
  .pricing-section,
  .ideal-section,
  .faq-section,
  .enquiry-section,
  .notes-section {
    padding: 48px 0;
  }

  .intro-section {
    padding-bottom: 0;
  }

  .intro-text {
    font-size: 15px;
  }

  .intro-features {
    gap: 12px;
  }

  .intro-feature {
    flex: 1 1 calc(50% - 12px);
    justify-content: flex-start;
  }

  .intro-image-badge {
    padding: 14px 18px;
  }

  .intro-image-badge .price {
    font-size: 22px;
  }

  .highlights-strip {
    padding: 24px 0;
  }

  .highlight-item {
    align-items: flex-start;
  }

  .highlight-text span {
    line-height: 1.4;
  }

  .budget-content p,
  .enquiry-content p {
    font-size: 15px;
  }

  .feature-content p,
  .timeline-card .card-body p,
  .price-body>p,
  .info-card>p,
  .note-item p {
    font-size: 14px;
  }

  .feature-content {
    padding: 24px;
  }

  .itinerary-timeline::before {
    left: 20px;
  }

  .day-marker {
    padding-top: 20px;
  }

  /* .card-images {
    gap: 12px;
  } */

  .card-images img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .inclusion-card {
    padding: 22px 18px;
  }

  .price-header,
  .price-body {
    padding: 24px;
  }

  .cta-banner {
    padding: 28px;
    gap: 20px;
  }

  .ideal-card {
    padding: 28px 20px;
  }

  .ideal-icon {
    width: 56px;
    height: 56px;
  }

  .info-card {
    padding: 24px;
  }

  .enquiry-form {
    padding: 24px;
  }

  footer {
    padding: 64px 0 0;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

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

@media (max-width: 575px) {

  /* intro order handled by Bootstrap order classes */
  .section-title,
  .section-title-xl {
    letter-spacing: -0.3px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-title-xl {
    font-size: 28px;
  }

  .intro-features {
    gap: 12px;
  }

  .intro-feature {
    flex: 1 1 calc(50% - 12px);
    justify-content: flex-start;
  }

  .budget-card {
    padding: 20px 18px;
  }

  .feature-content h3 {
    font-size: 19px;
  }

  .day-number {
    width: 46px;
    height: 46px;
  }

  .day-number .day-num {
    font-size: 18px;
  }

  .price-amount .value {
    font-size: 40px;
  }

  .cta-content h3 {
    font-size: 18px;
  }

  /* ideal-grid and footer-grid responsive handled by Bootstrap */

  .footer-contact a {
    justify-content: center;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .footer-brand img {
    height: 38px;
  }

  .footer-links a,
  .footer-contact a,
  .footer-brand p {
    font-size: 14px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}


/* Thank You Page */
.thank-you-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 8%;
  background-color: #f9fafb;
}

.thank-you-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1f2933;
}

.thank-you-text {
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 16px;
}

.thank-you-note {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 28px;
}

.thank-you-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #4283fc;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.thank-you-button:hover {
  background-color: #0a388e;
  transform: translateY(-2px);
}

.thank-you-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  margin-top: 30px;
}

.thank-you-content {
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .thank-you-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 6%;
  }

  .thank-you-content {
    max-width: 100%;
  }

  .thank-you-content h1 {
    font-size: 32px;
  }

  .thank-you-image img {
    max-width: 100%;
    margin-top: 40px;
  }
}