:root {
  --primary: #f05a28;
  --primary-dark: #d94719;
  --secondary: #0e4037;
  --dark: #10231f;
  --text: #30413c;
  --muted: #71807b;
  --cream: #f8f5ef;
  --white: #ffffff;
  --border: #e4e7e4;
  --shadow: 0 20px 60px rgba(15, 45, 38, 0.10);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

.section {
  padding: 110px 0;
}

.light-section {
  background: var(--cream);
}

.dark-section {
  background: var(--dark);
}

.section-label {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.why-us h2,
.booking-info h2,
.contact-box h2 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  margin-top: 12px;
}

.section-heading h2 span,
.about-content h2 span,
.why-us h2 span,
.booking-info h2 span,
.contact-box h2 span {
  color: var(--primary);
}

.section-heading > p {
  max-width: 420px;
  line-height: 1.8;
  color: var(--muted);
}

.section-heading.centered > p {
  margin: 18px auto 0;
}


/* HEADER */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: .3s;
}

.header.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
  backdrop-filter: blur(12px);
}

.nav-container {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.header.scrolled .logo {
  color: var(--dark);
}

.logo-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 25px;
  font-family: serif;
}

.logo strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 23px;
  line-height: 20px;
}

.logo small {
  display: block;
  font-size: 8px;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.navbar {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
}

.header.scrolled .nav-link {
  color: var(--text);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-btn {
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: .3s;
}

.nav-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: .3s;
}

.header.scrolled .menu-btn span {
  background: var(--dark);
}


/* HERO */

.hero {
  min-height: 760px;
  height: 100vh;
  max-height: 900px;
  position: relative;
  background:
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=90")
    center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,29,25,.85), rgba(8,29,25,.35), rgba(8,29,25,.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-text {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: 12px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(55px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -2px;
}

.hero h1 span {
  color: #ff8359;
}

.hero-text > p {
  max-width: 570px;
  margin: 28px 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: .3s;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(240,90,40,.25);
}

.btn-outline {
  color: white;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
}

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

.hero-card {
  position: absolute;
  right: 0;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,.94);
  color: var(--dark);
  padding: 16px 20px;
  border-radius: 12px;
  min-width: 250px;
  box-shadow: var(--shadow);
}

.hero-card-icon {
  font-size: 30px;
}

.hero-card strong {
  font-size: 14px;
}

.hero-card p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-down .arrow {
  font-size: 18px;
}


/* FEATURES */

.features {
  position: relative;
  background: white;
  box-shadow: 0 5px 35px rgba(0,0,0,.06);
  z-index: 5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
}

.feature:first-child {
  padding-left: 0;
}

.feature:last-child {
  border: none;
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #fff1eb;
  border-radius: 12px;
  font-size: 22px;
}

.feature h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.feature p {
  font-size: 11px;
  color: var(--muted);
}


/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.about-images {
  position: relative;
  min-height: 570px;
}

.about-image {
  overflow: hidden;
  border-radius: 16px;
}

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

.main-image {
  width: 76%;
  height: 470px;
}

.small-image {
  position: absolute;
  width: 43%;
  height: 230px;
  right: 0;
  bottom: 0;
  border: 8px solid white;
}

.experience-card {
  position: absolute;
  left: 55%;
  top: 30px;
  z-index: 2;
  background: var(--primary);
  color: white;
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.experience-card strong {
  font-family: "Playfair Display", serif;
  font-size: 38px;
}

.experience-card span {
  font-size: 12px;
  line-height: 1.4;
}

.about-content > p {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 22px;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
  font-size: 13px;
  font-weight: 600;
}

.about-list div::first-letter {
  color: var(--primary);
}

.text-btn {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}


/* DESTINATIONS */

.destination-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.destination-card {
  height: 420px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  color: white;
}

.destination-card.large {
  height: 420px;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,.78));
}

.destination-card img {
  height: 100%;
  object-fit: cover;
  transition: .6s;
}

.destination-card:hover img {
  transform: scale(1.06);
}

.destination-info {
  position: absolute;
  z-index: 2;
  left: 25px;
  right: 20px;
  bottom: 25px;
}

.destination-info span {
  color: #ff9a77;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.destination-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 5px 0;
}

.destination-info p {
  font-size: 12px;
  color: rgba(255,255,255,.8);
}


/* PACKAGES */

.package-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: -25px 0 35px;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--cream);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.package-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: white;
  transition: .35s;
}

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

.package-image {
  height: 230px;
  position: relative;
  overflow: hidden;
}

.package-image img {
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 7px 10px;
  background: var(--primary);
  color: white;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
}

.package-tag.orange {
  background: #f39c12;
}

.package-tag.pink {
  background: #db5979;
}

.package-content {
  padding: 22px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 13px;
}

.package-content h3 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
  font-size: 24px;
}

.package-content > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 8px 0 20px;
}

.package-bottom {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-bottom small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.package-bottom strong {
  color: var(--dark);
  font-size: 19px;
}

.small-btn {
  padding: 10px 13px;
  border-radius: 7px;
  background: #fff0ea;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
}


/* VEHICLES */

.white h2 {
  color: white;
}

.white p {
  color: rgba(255,255,255,.6);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vehicle-card {
  position: relative;
  padding: 40px 30px;
  background: #173b34;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  color: white;
  text-align: center;
}

.vehicle-card.featured {
  background: var(--primary);
  transform: translateY(-15px);
}

.vehicle-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.vehicle-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 10px;
}

.vehicle-card p {
  color: rgba(255,255,255,.65);
  font-size: 12px;
  line-height: 1.6;
  min-height: 40px;
}

.vehicle-card strong {
  display: block;
  margin: 20px 0;
  font-size: 14px;
}

.vehicle-link {
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.popular-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 800;
}


/* WHY US */

.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.why-us > .container > div:first-child > p {
  max-width: 450px;
  margin: 25px 0;
  color: var(--muted);
  line-height: 1.8;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  gap: 20px;
}

.why-card span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.why-card h3 {
  color: var(--dark);
  font-size: 15px;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}


/* BOOKING */

.booking {
  background:
    linear-gradient(rgba(14,64,55,.97), rgba(14,64,55,.97)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=80")
    center/cover;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.booking-info h2 {
  color: white;
}

.booking-info > p {
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin: 25px 0 35px;
  max-width: 400px;
}

.contact-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.mini-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.1);
  border-radius: 9px;
  display: grid;
  place-items: center;
}

.contact-mini small {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  margin-bottom: 3px;
}

.contact-mini strong {
  color: white;
  font-size: 13px;
}

.booking-form {
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fafafa;
  padding: 13px 14px;
  border-radius: 7px;
  outline: none;
  color: var(--text);
  font-size: 12px;
  transition: .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
}

.form-group textarea {
  resize: vertical;
}

.full-btn {
  width: 100%;
}

.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 10px;
  margin-top: 12px;
}


/* TESTIMONIALS */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: white;
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 15px;
}

.stars {
  color: #f39c12;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 20px;
}

.testimonial > p {
  color: var(--text);
  line-height: 1.8;
  font-size: 13px;
  min-height: 95px;
}

.reviewer {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #fff0ea;
  color: var(--primary);
  border-radius: 50%;
  font-weight: 800;
}

.reviewer strong,
.reviewer span {
  display: block;
}

.reviewer strong {
  color: var(--dark);
  font-size: 12px;
}

.reviewer span {
  color: var(--muted);
  font-size: 10px;
  margin-top: 3px;
}


/* CONTACT */

.contact {
  padding-top: 50px;
  padding-bottom: 100px;
}

.contact-box {
  background: #fff1eb;
  border-radius: 20px;
  padding: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details > *,
.contact-details a {
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact-details > * > span,
.contact-details a > span {
  width: 38px;
  height: 38px;
  background: white;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.contact-details small,
.contact-details strong {
  display: block;
}

.contact-details small {
  color: var(--muted);
  font-size: 9px;
}

.contact-details strong {
  color: var(--dark);
  font-size: 11px;
  margin-top: 3px;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}


/* FOOTER */

.footer {
  background: var(--dark);
  color: white;
  padding: 70px 0 25px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 280px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  color: white;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: 11px;
  transition: .2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.4);
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}


/* MODAL */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.6);
  padding: 20px;
}

.modal.show {
  display: grid;
}

.modal-content {
  position: relative;
  background: white;
  width: min(450px, 100%);
  border-radius: 18px;
  padding: 45px 35px;
  text-align: center;
  animation: modalIn .3s ease;
}

@keyframes modalIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 15px;
  background: transparent;
  font-size: 25px;
  color: var(--muted);
}

.success-icon {
  width: 65px;
  height: 65px;
  margin: auto;
  display: grid;
  place-items: center;
  background: #e8f9ef;
  color: #21a45b;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 800;
}

.modal-content h2 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
  font-size: 32px;
  margin: 20px 0 10px;
}

.modal-content p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 25px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .navbar {
    gap: 18px;
  }

  .about-grid,
  .why-grid,
  .booking-wrapper {
    gap: 50px;
  }

  .contact-box {
    grid-template-columns: 1fr 1fr;
  }

  .whatsapp-btn {
    width: fit-content;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-links:last-child {
    display: none;
  }
}


@media (max-width: 800px) {

  .section {
    padding: 80px 0;
  }

  .nav-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 18px;
  }

  .navbar.show {
    display: flex;
  }

  .nav-link {
    color: var(--dark) !important;
  }

  .hero {
    min-height: 700px;
  }

  .hero-card {
    display: none;
  }

  .scroll-down {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature {
    border-bottom: 1px solid var(--border);
  }

  .feature:nth-child(2) {
    border-right: none;
  }

  .feature:first-child {
    padding-left: 20px;
  }

  .about-grid,
  .why-grid,
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .about-images {
    min-height: 520px;
  }

  .destination-grid {
    grid-template-columns: 1fr 1fr;
  }

  .destination-card.large {
    grid-column: span 2;
  }

  .package-grid,
  .vehicle-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vehicle-card.featured {
    transform: none;
  }

  .why-cards {
    margin-top: 20px;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}


@media (max-width: 560px) {

  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 65px 0;
  }

  .hero {
    min-height: 650px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-text > p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: none;
  }

  .about-images {
    min-height: 400px;
  }

  .main-image {
    height: 340px;
  }

  .small-image {
    height: 170px;
  }

  .experience-card {
    left: 45%;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 15px;
  }

  .destination-grid,
  .package-grid,
  .vehicle-grid,
  .testimonial-grid,
  .why-cards {
    grid-template-columns: 1fr;
  }

  .destination-card.large {
    grid-column: auto;
  }

  .destination-card,
  .destination-card.large {
    height: 350px;
  }

  .package-filters {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 5px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-form {
    padding: 25px 18px;
  }

  .contact-box {
    padding: 35px 22px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom div {
    flex-direction: column;
    gap: 8px;
  }
}