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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

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

/* ===== FONTS ===== */
.font-poppins { font-family: 'Poppins', sans-serif; }
.font-rubik { font-family: 'Rubik', sans-serif; }
.font-helvetica { font-family: 'Helvetica Neue', Arial, sans-serif; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  padding-bottom: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(198deg, rgba(0,0,0,0) 38%, rgba(21,112,239,0.36) 94%),
              linear-gradient(90deg, rgba(0,0,0,0.43) 0%, rgba(0,0,0,0.43) 100%);
}

/* ===== HEADER ===== */
.header {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 280px;
  height: 56px;
  z-index: 100;
}

.header-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.79);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 0.74px solid rgba(255,255,255,0.2);
  border-radius: 9px;
  box-shadow: 0 7px 11px -2px rgba(0,0,0,0.1);
}

.header-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 16px;
}

.header-logo {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Desktop Nav */
.nav-desktop {
  display: none;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 200px;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-left: 1px solid rgba(255,255,255,0.2);
  z-index: 99;
  transition: right 0.3s ease;
  padding: 100px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-end;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #bfff84;
}

.mobile-menu .btn-reserve {
  background: #bfff84;
  color: #06173d;
  padding: 10px 14px;
  border-radius: 34px;
  font-size: 14px;
}

.mobile-menu .btn-reserve:hover {
  background: #a8e66f;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 290px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  background: rgba(6,23,61,0.3);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 0.63px solid #bfff84;
  border-radius: 68px;
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
  flex-wrap: wrap;
  justify-content: center;
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 80px;
  line-height: 0.98;
  background: linear-gradient(203deg, #fff 22%, #999 126%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #fff;
  text-align: center;
  line-height: 1.37;
  max-width: 250px;
}

/* ===== FORM CARD ===== */
.form-card {
  width: 100%;
  max-width: 276px;
}

.form-header {
  background: #06173d;
  border-radius: 11px 11px 0 0;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 43px;
}

.form-header-icon {
  width: 19px;
  height: 19px;
  min-width: 19px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-header-icon svg {
  width: 13px;
  height: 13px;
}

.form-header p {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 8.9px;
  color: #fff;
  line-height: 1.3;
}

.form-body {
  background: #fff;
  border-radius: 0 0 11px 11px;
  padding: 8px 14px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 8px;
}

.form-tab span {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 8.9px;
  color: #1570ef;
  margin-bottom: 8px;
}

.form-tab-line {
  width: 97px;
  height: 1.1px;
  background: #1570ef;
  border-radius: 4px 4px 0 0;
}

.form-divider {
  width: 100%;
  height: 0.5px;
  background: #e7e9ef;
  margin-bottom: 16px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5.5px;
}

.form-group label {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 8.9px;
  color: #000;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 23px;
  padding: 0 7px;
  border: 0.55px solid #e7e9ef;
  border-radius: 3.3px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 7.8px;
  color: #000;
  background: #fff;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: #000;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #1570ef;
}

.form-row {
  display: flex;
  gap: 13px;
}

.form-row .form-group {
  flex: 1;
  min-width: 0;
}

/* Error styles */
.error-message {
  display: none;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 9px;
  color: #dc2626;
  margin-top: 4px;
  line-height: 1.2;
}

.input-error {
  border-color: #dc2626 !important;
  background-color: #fef2f2 !important;
}

.input-error:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

/* Button disabled state */
.btn-primary:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-primary {
  width: 100%;
  height: 31.5px;
  background: #bfff84;
  color: #06173d;
  border: none;
  border-radius: 25px;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 6px;
}

.btn-primary:hover {
  background: #a8e66f;
}

/* ===== FEATURES SECTION ===== */
.features {
  background: #f9f9f9;
  padding: 40px 20px;
  width: 100%;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.feature-item p {
  font-weight: 700;
  font-size: 16px;
  color: #4b5563;
  text-align: center;
}

/* ===== ITINERARY SECTION ===== */
.itinerary {
  background: #f9f9f9;
  padding: 40px 20px;
  width: 100%;
}

.itinerary-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  margin-bottom: 40px;
}

.itinerary-badge {
  border: 1px solid #06173d;
  border-radius: 40px;
  padding: 14px 29px;
}

.itinerary-badge span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #06173d;
}

.itinerary-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #272b34;
  text-align: center;
}

.itinerary-cards {
  display: flex;
  flex-direction: column;
  gap: 47px;
  align-items: center;
  width: 100%;
}

.itinerary-card {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.itinerary-date {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: #bfff84;
  height: 46px;
  padding: 0 25px;
  border-radius: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.itinerary-date span {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #06173d;
  white-space: nowrap;
}

.itinerary-image {
  margin-top: 22px;
  height: 220px;
  border-radius: 26px;
  overflow: hidden;
}

.itinerary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.itinerary-content {
  background: #fff;
  border: 1px solid #06173d;
  border-radius: 26px;
  padding: 20px 18px;
  margin: -50px 20px 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.itinerary-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #272b34;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 14px;
}

.itinerary-content p {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  text-align: center;
  line-height: 1.49;
}

.itinerary-content strong {
  font-weight: 800;
}

.itinerary-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding: 0 20px;
}

.btn-cta {
  background: #bfff84;
  color: #06173d;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 0 30px;
  height: 50px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
}

.btn-cta:hover {
  background: #a8e66f;
}

/* ===== PRICING SECTION ===== */
.pricing {
  background: #f9f9f9;
  padding: 40px 20px;
  width: 100%;
}

.pricing-container {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.pricing-image {
  width: 100%;
  height: 250px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.pricing-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #bfff84;
  border-radius: 0 26px 0 26px;
  padding: 15px 20px;
  text-align: center;
}

.pricing-badge .installment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pricing-badge .installment span:first-child {
  font-size: 12px;
  color: #06173d;
}

.pricing-badge .installment span:last-child {
  font-weight: 700;
  font-size: 20px;
  color: #06173d;
}

.pricing-badge .cash {
  font-weight: 700;
  font-size: 12px;
  color: #06173d;
  display: block;
  margin-top: 4px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #06173d;
  border-radius: 26px;
  padding: 24px 20px;
  margin-top: 20px;
  overflow: hidden;
}

.pricing-card-inner {
  width: 100%;
  overflow: hidden;
}

.pricing-card h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #272b34;
  line-height: 1.2;
  margin-bottom: 12px;
}

.pricing-card-inner > p {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #1f1f1f;
  line-height: 1.36;
  margin-bottom: 20px;
}

.pricing-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
}

.pricing-item-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #bfff84;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.pricing-item-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.pricing-item-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.pricing-item-text h4 {
  font-weight: 700;
  font-size: 12px;
  color: #06173d;
  line-height: 1.4;
  margin-bottom: 4px;
}

.pricing-item-text p {
  font-size: 10px;
  color: #374151;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  background: #f9f9f9;
  padding: 40px 20px;
  width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.gallery-item {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: #fff;
  padding: 50px 20px;
  width: 100%;
}

.testimonials-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.testimonials-title {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.testimonial-card {
  background: #fefefe;
  border: 1.5px solid #e7e9ef;
  border-radius: 20px;
  padding: 24px;
  width: 100%;
}

.quote-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  line-height: 1.5;
  margin-bottom: 50px;
}

.testimonial-stars {
  display: flex;
  margin-bottom: 16px;
}

.star-icon {
  width: 24px;
  height: 24px;
}

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

.testimonial-author img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author span {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
}

.testimonials-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-reserve {
  background: #bfff84;
  color: #06173d;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 16px;
  height: 56px;
  width: 100%;
  max-width: 320px;
  border-radius: 41px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-reserve:hover {
  background: #a8e66f;
}

/* ===== COMPANY STORY SECTION ===== */
.company-story {
  background: #06173d;
  width: 100%;
  position: relative;
  overflow: visible;
}

.company-story-container {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  padding-bottom: 0;
}

.company-story-text {
  margin-bottom: 20px;
}

.company-story h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  line-height: 1.13;
  margin-bottom: 20px;
}

.company-story h2 span {
  color: #bfff84;
}

.company-story-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #dadada;
  line-height: 1.36;
}

.company-images {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.company-images img {
  width: calc(33.33% - 6px);
  max-width: 100px;
  height: 100px;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  padding: 10px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
}

.footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo {
  width: 33px;
  height: 32px;
  object-fit: contain;
}

.footer p {
  font-family: 'Rubik', 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #fff;
  text-align: center;
  line-height: 1.671;
}

/* ===== TABLET STYLES ===== */
@media (min-width: 768px) {
  .hero {
    min-height: 800px;
  }

  .hero-title {
    font-size: 120px;
  }

  .hero-subtitle {
    font-size: 18px;
    max-width: 350px;
  }

  .form-card {
    max-width: 400px;
  }

  .features-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .feature-item {
    width: calc(33.33% - 20px);
    min-width: 150px;
  }

  .itinerary-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .itinerary-card {
    width: calc(50% - 24px);
    max-width: 360px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
  }

  .gallery-item {
    height: 150px;
  }

  .testimonials-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonial-card {
    width: calc(50% - 12px);
  }

  .company-images img {
    width: 150px;
    height: 150px;
  }
}

/* ===== DESKTOP STYLES ===== */
@media (min-width: 1024px) {
  /* Hero */
  .hero {
    height: 871px;
    min-height: 871px;
    border-radius: 0;
    padding-bottom: 0;
  }

  .hero-overlay {
    background: linear-gradient(185deg, rgba(0,0,0,0) 38%, rgba(21,112,239,0.36) 94%);
  }

  /* Header Desktop */
  .header {
    top: 45px;
    max-width: 1067px;
    height: 76px;
  }

  .header-bg {
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }

  .header-content {
    padding: 0 52px;
  }

  .header-logo {
    width: 50px;
    height: 50px;
  }

  .hamburger {
    display: none;
  }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .nav-desktop a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15.8px;
    padding: 0 21px;
    transition: color 0.3s ease;
  }

  .nav-desktop a:hover {
    color: #bfff84;
  }

  .nav-desktop .btn-reserve-nav {
    background: #bfff84;
    color: #06173d;
    padding: 10px 14px;
    border-radius: 34px;
    font-size: 13.7px;
    margin-left: 21px;
  }

  .nav-desktop .btn-reserve-nav:hover {
    background: #a8e66f;
  }

  /* Hero Content Desktop */
  .hero-content {
    position: absolute;
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    flex-direction: row;
    gap: 105px;
    max-width: 1200px;
    align-items: flex-start;
    width: calc(100% - 100px);
  }

  .hero-text {
    width: 507px;
    max-width: none;
    align-items: flex-start;
    gap: 37px;
  }

  .hero-title {
    font-size: 169px;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 24px;
    text-align: left;
    max-width: 452px;
  }

  .badge {
    font-size: 13.8px;
  }

  /* Form Desktop */
  .form-card {
    width: 455px;
    max-width: 455px;
  }

  .form-header {
    height: 70px;
    padding: 13px 24px;
    border-radius: 18px 18px 0 0;
  }

  .form-header-icon {
    width: 31px;
    height: 31px;
    min-width: 31px;
  }

  .form-header-icon svg {
    width: 22px;
    height: 22px;
  }

  .form-header p {
    font-size: 14.6px;
  }

  .form-body {
    border-radius: 0 0 18px 18px;
    padding: 13px 24px 29px;
  }

  .form-tab span {
    font-size: 14.6px;
    margin-bottom: 13px;
  }

  .form-tab-line {
    width: 160px;
    height: 1.8px;
  }

  .form-fields {
    gap: 22px;
    margin-top: 36px;
  }

  .form-group {
    gap: 9px;
  }

  .form-group label {
    font-size: 14.6px;
  }

  .form-group input,
  .form-group select {
    height: 38px;
    padding: 0 11px;
    font-size: 12.8px;
    border-radius: 5.5px;
  }

  .form-row {
    gap: 22px;
  }

  .error-message {
    font-size: 11px;
  }

  .btn-primary {
    height: 52px;
    font-size: 18.3px;
    border-radius: 41px;
    margin-top: 4px;
  }

  /* Features Desktop */
  .features {
    padding: 75px 50px 85px;
    border-radius: 60px 60px 0 0;
    margin-top: -82px;
    position: relative;
    z-index: 10;
  }

  .features-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .feature-item {
    width: auto;
    min-width: auto;
  }

  .feature-item p {
    font-size: 18px;
  }

  /* Itinerary Desktop */
  .itinerary {
    padding: 50px 50px 85px;
  }

  .itinerary-header {
    margin-bottom: 50px;
  }

  .itinerary-title {
    font-size: 40px;
  }

  .itinerary-cards {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 47px;
  }

  .itinerary-card {
    width: 360px;
  }

  .itinerary-image {
    height: 269px;
  }

  .itinerary-content {
    margin: -55px 31px 0;
    padding: 25px 22px;
  }

  .itinerary-content h3 {
    font-size: 18px;
    line-height: 25px;
  }

  .itinerary-content p {
    font-size: 16px;
  }

  .itinerary-cta {
    margin-top: 50px;
  }

  .btn-cta {
    width: 407px;
    max-width: 407px;
    height: 64px;
    font-size: 18.3px;
    font-weight: 500;
  }

  /* Pricing Desktop */
  .pricing {
    padding: 34px 64px 85px;
  }

  .pricing-container {
    max-width: 1311px;
    position: relative;
    height: 843px;
  }

  .pricing-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 778px;
    height: 843px;
    border-radius: 59px;
  }

  .pricing-badge {
    width: 483px;
    height: 196px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 59px 0 59px 0;
    bottom: 0;
    top: auto;
  }

  .pricing-badge .installment span:first-child {
    font-size: 30.7px;
  }

  .pricing-badge .installment span:last-child {
    font-size: 54.5px;
  }

  .pricing-badge .cash {
    font-size: 30px;
    margin-top: 0;
  }

  .pricing-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 666px;
    height: 843px;
    border-radius: 59px;
    padding: 55px 59px;
    margin: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

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

  .pricing-card h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .pricing-card-inner > p {
    font-size: 25px;
    max-width: 410px;
    margin-bottom: 36px;
  }

  .pricing-items {
    gap: 31px;
    width: 100%;
  }

  .pricing-item {
    gap: 14px;
    width: 100%;
  }

  .pricing-item-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 10px;
    padding: 10px;
    flex-shrink: 0;
  }

  .pricing-item-icon img {
    width: 36px;
    height: 36px;
  }

  .pricing-item-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 70px);
  }

  .pricing-item-text h4 {
    font-size: 19.1px;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .pricing-item-text p {
    font-size: 15px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Gallery Desktop */
  .gallery {
    padding: 0 64px 85px;
  }

  .gallery-grid {
    max-width: 1311px;
    gap: 23px;
  }

  .gallery-item {
    height: 311px;
    border-radius: 42px;
  }

  /* Testimonials Desktop */
  .testimonials {
    padding: 50px 100px;
  }

  .testimonials-title {
    font-size: 40px;
    margin-bottom: 50px;
  }

  .testimonials-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 32px;
  }

  .testimonial-card {
    flex: 1;
    max-width: 392px;
    width: auto;
  }

  .quote-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
  }

  .testimonial-quote {
    font-size: 20px;
    margin-bottom: 70px;
  }

  .star-icon {
    width: 28px;
    height: 28px;
  }

  .testimonial-author img {
    width: 21px;
    height: 21px;
  }

  .testimonial-author span {
    font-size: 16px;
  }

  .btn-reserve {
    font-size: 18.3px;
    height: 64px;
    max-width: 407px;
  }

  /* Company Story Desktop */
  .company-story {
    min-height: 329px;
    overflow: visible;
    position: relative;
  }

  .company-story-container {
    position: relative;
    padding: 47px 82px;
    padding-bottom: 0;
    min-height: 329px;
    display: block;
  }

  .company-story-text {
    max-width: 437px;
    margin-bottom: 0;
    padding-top: 0;
  }

  .company-story h2 {
    font-size: 35.38px;
    margin-bottom: 35px;
    line-height: 1.13;
  }

  .company-story-text p {
    font-size: 14.15px;
    line-height: 1.36;
  }

  .company-images {
    position: absolute;
    left: 554px;
    top: 62px;
    gap: 35px;
    align-items: flex-end;
  }

  .company-images img {
    width: 247px;
    max-width: 247px;
    height: 267px;
    border-radius: 17.69px 17.69px 0 0;
  }

  /* Footer Desktop */
  .footer {
    padding: 10px 20px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-content {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .footer p {
    font-size: 13px;
    line-height: 1.671;
  }
}

/* ===== LARGE DESKTOP STYLES ===== */
@media (min-width: 1440px) {
  .features-grid,
  .itinerary-cards,
  .gallery-grid,
  .pricing-container,
  .testimonials-inner {
    max-width: 1311px;
    margin-left: auto;
    margin-right: auto;
  }

  .company-story-container {
    max-width: 1440px;
    margin: 0 auto;
  }

  .company-images {
    right: 75px;
    left: auto;
  }
}
