* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background: #ffffff;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}


/* HEADER */

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo img {
  height: 110px;
  width: 220px;
  object-fit: contain;
} img {
  height: 110px;
  width: auto;
  object-fit: contain;
}


nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

nav a {
  text-decoration: none;
  color: #134e4a;
  font-weight: 600;
}


/* BUTTONS */

.button {
  background: #0f766e;
  color: white !important;
  padding: 13px 22px;
  border-radius: 30px;
  text-decoration: none;
}


.primary {
  display: inline-block;
  margin-top: 25px;
}



/* HERO */

.hero {
  padding: 70px 0;
  background: #f8faf9;
}
  


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


.hero-text h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 0;
  color: #16343a;
}


.hero-text h1 span {
  color: #0f766e;
}


.save-time {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 35px 0;
  font-size: 20px;
}


.save-time span {
  font-size: 35px;
  color: #0f766e;
}


.hero-text p {
  font-size: 20px;
  line-height: 1.6;
}


.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
}



/* INTRO */

.intro {
  padding: 70px 0;
  text-align: center;
}


.intro h2 {
  font-size: 38px;
  color: #0f766e;
}


.intro p {
  font-size: 20px;
}


.trust-message {
  margin-top: 40px;
  background: #ccfbf1;
  padding: 35px;
  border-radius: 25px;
}


.trust-message span {
  font-size: 45px;
  color: #0f766e;
}


footer {
  text-align: center;
  padding: 30px;
  background: #f8faf9;
}



/* MOBILE */

@media(max-width:800px){

.nav {
  flex-direction: column;
  gap: 20px;
}

nav {
  flex-wrap: wrap;
  justify-content: center;
}


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


.hero-text h1 {
  font-size: 40px;
}


.hero-image img {
  height: 350px;
}


}
/* HOW IT WORKS - 4 VISUAL CARDS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.process-card {
  background: #ffffff;
  border: 1px solid #d8eeee;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
/* CARD 1 ONLY */
.process-card:first-child {
  padding: 4px 14px 14px;
}

.process-card:first-child .process-icon img {
  width: 54px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.process-card:first-child h3 {
  margin: 0 0 18px;
}

.process-card:first-child .process-image {
  height: 260px;
  margin: 0 0 12px;
}
}
}
.process-card h3 {
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  color: #14B8A6 !important;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 10px;
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.process-card p {
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #0F4F4A;
}
.process-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 14px;
  margin: 4px 0 12px;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CARD 1 ONLY - zoom towards laptop travel tabs */
.process-card:first-child .process-image img {
  transform: scale(1.35);
  transform-origin: 70% 55%;
}

.process-card:nth-child(2) .process-image img {
  object-position: center top;
  transform: translateY(-10px) scale(1.12);
  transform-origin: top center;
}

.process-card h3 {
  margin: 0 0 8px;
}

/* Mobile layout */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
.process-card h3 {
  color: #14B8A6 !important;
}
/* Centre process heading */
.process-section h2 {
  text-align: center;
}


/* ===== FINAL FOUR PROCESS CARDS ===== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.process-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px 14px 16px;
  height: 100%;
}

.process-copy {
  min-height: 150px;
}

.process-card h3 {
  color: #14B8A6 !important;
  font-size: 20px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 700;
}

.process-card p {
  line-height: 1.5;
  margin: 0 0 12px;
}

.process-card .card-subheading {
  margin-bottom: 12px;
}

.process-image {
  margin-top: 14px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.process-image img {
  width: 100%;
  max-width: 290px;
  height: 330px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 14px;
}

.process-image-form img {
  object-fit: cover;
  object-position: top center;
  background: #ffffff;
  width: 100%;
  max-width: 100%;
  height: 400px;
}

/* Mobile */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-copy {
    min-height: auto;
  }

  .process-image img {
    height: auto;
    max-width: 420px;
  }
}
/* =========================================================
   REMAINING WEBSITE SECTIONS
   ========================================================= */

.website-section {
  padding: 78px 0;
  background: #ffffff;
}

.website-section-soft {
  background: #f6fbfa;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #0f766e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.section-heading h2,
.split-copy h2,
.why-box h2,
.final-cta h2 {
  margin: 0 0 16px;
  color: #1f2933;
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
}

.section-heading p,
.split-copy p,
.why-copy p {
  color: #0f4f4a;
  font-size: 17px;
  line-height: 1.7;
}


/* WHAT YOU GET */

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

.benefit-card {
  padding: 26px;
  border: 1px solid #d7efec;
  border-radius: 18px;
  background: #ffffff;
}

.benefit-card h3 {
  margin: 0 0 10px;
  color: #14b8a6;
  font-size: 20px;
}

.benefit-card p {
  margin: 0;
  color: #0f4f4a;
  font-size: 15px;
  line-height: 1.6;
}


/* DESTINATIONS */

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

.destination-box {
  padding: 30px 24px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #d7efec;
  border-radius: 18px;
}

.destination-number {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #14b8a6;
  border-radius: 50%;
  color: #0f766e;
  font-size: 18px;
  font-weight: 800;
}

.destination-box h3 {
  margin: 0 0 12px;
  color: #0f766e;
  font-size: 19px;
}

.destination-box p {
  margin: 0;
  color: #0f4f4a;
  line-height: 1.6;
}

.choice-message {
  max-width: 760px;
  margin: 38px auto 0;
  padding: 24px;
  text-align: center;
  background: #ccfbf1;
  border-radius: 18px;
}

.choice-message strong {
  color: #0f766e;
  font-size: 21px;
}

.choice-message p {
  margin: 8px 0 0;
  color: #0f4f4a;
}


/* ACCOMMODATION */

.split-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.split-copy p {
  margin: 0 0 18px;
}

.mini-highlight {
  margin-top: 28px;
  padding: 22px;
  background: #f6fbfa;
  border-left: 4px solid #14b8a6;
  border-radius: 12px;
}

.mini-highlight strong {
  color: #0f766e;
}

.mini-highlight p {
  margin: 7px 0 0;
  font-size: 15px;
}

.split-panel {
  padding: 32px;
  border-radius: 22px;
  background: #0f766e;
}

.split-panel h3 {
  margin-top: 0;
  color: #ffffff;
  font-size: 23px;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: #ffffff;
  line-height: 1.45;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: #ccfbf1;
  font-weight: 800;
}


/* TRAVEL EXTRAS */

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

.extra-item {
  padding: 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #d7efec;
}

.extra-item h3 {
  margin: 0 0 8px;
  color: #0f766e;
  font-size: 18px;
}

.extra-item p {
  margin: 0;
  color: #0f4f4a;
  font-size: 15px;
  line-height: 1.55;
}


/* WHY TRIPS DELIVERED */

.why-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px;
  border-radius: 26px;
  background: #f6fbfa;
}

.why-signature {
  margin-top: 22px;
  color: #0f766e !important;
  font-size: 20px !important;
}


/* FAQ */

.faq-container {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
  background: #ffffff;
  border: 1px solid #d7efec;
  border-radius: 14px;
}

.faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  color: #0f766e;
  font-weight: 700;
  font-size: 17px;
}

.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: #0f4f4a;
  line-height: 1.65;
}


/* FINAL CTA */

.final-cta {
  padding: 84px 0;
  background: #0f766e;
}

.final-cta-box {
  max-width: 760px;
  margin: auto;
  text-align: center;
}

.final-eyebrow {
  color: #ccfbf1;
}

.final-cta h2 {
  color: #ffffff;
}

.final-cta p {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 18px;
}

.final-cta .primary-cta {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f766e;
  font-weight: 800;
  text-decoration: none;
}

.final-price {
  margin-top: 22px;
  color: #dc2626;
  font-size: 27px;
  font-weight: 900;
}

.payment-note {
  margin-top: 5px;
  color: #ffffff;
  font-size: 14px;
}


/* DISCLOSURE */

.disclosure-section {
  padding: 26px 0;
  background: #f6fbfa;
}

.disclosure-section p {
  max-width: 900px;
  margin: auto;
  text-align: center;
  color: #52606d;
  font-size: 12px;
  line-height: 1.6;
}


/* FOOTER */

.site-footer {
  padding: 38px 0;
  background: #ffffff;
  border-top: 1px solid #e5eeee;
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}

.footer-brand img {
  width: 130px;
  height: auto;
}

.footer-copy strong {
  color: #0f766e;
}

.footer-copy p {
  margin: 4px 0 0;
  color: #0f4f4a;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-contact a {
  color: #0f4f4a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.footer-contact {
  grid-column: 2 / 4;
  text-align: right;
}


/* MOBILE */

@media (max-width: 800px) {

  .website-section {
    padding: 54px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading p,
  .split-copy p,
  .why-copy p {
    font-size: 15px;
  }

  .benefit-grid,
  .destination-examples,
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .why-box {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .why-box {
    padding: 28px 22px;
  }

  .split-panel {
    padding: 26px 22px;
  }

  .final-cta {
    padding: 60px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    width: 120px;
  }

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

  .footer-contact {
    grid-column: auto;
    text-align: center;
  }

}


/* ========================================
   TRIPS DELIVERED - WEBSITE SECTIONS
   ======================================== */

.website-section {
  padding: 70px 0;
}

.website-section:nth-of-type(even) {
  background: #f7fbfa;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading .eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #0f766e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 14px;
  color: #1f2933;
  font-size: 34px;
  line-height: 1.15;
}

.section-heading p {
  margin: 0 auto;
  color: #315d5a;
  font-size: 17px;
  line-height: 1.6;
}

/* ========================================
   WHAT YOU GET
   ======================================== */

.what-you-get-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.what-you-get-card {
  background: #ffffff;
  border: 1px solid #d7ece9;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
}

.what-you-get-card h3 {
  margin: 0 0 10px;
  color: #00a99d;
  font-size: 20px;
  line-height: 1.25;
}

.what-you-get-card p {
  margin: 0;
  color: #315d5a;
  font-size: 15px;
  line-height: 1.55;
}

.what-you-get-card strong {
  color: #0f766e;
}

/* ========================================
   DESTINATIONS
   ======================================== */

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

.destination-card {
  background: #ffffff;
  border: 1px solid #d7ece9;
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
}

.destination-card h3 {
  margin: 0 0 10px;
  color: #00a99d;
  font-size: 20px;
  line-height: 1.25;
}

.destination-card p {
  margin: 0;
  color: #315d5a;
  font-size: 15px;
  line-height: 1.55;
}

.destination-card .destination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #ccfbf1;
  color: #0f766e;
  font-weight: 700;
}

/* ========================================
   ACCOMMODATION
   ======================================== */

.accommodation-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 36px;
}

.accommodation-content {
  background: #ffffff;
  border: 1px solid #d7ece9;
  border-radius: 18px;
  padding: 32px;
}

.accommodation-content h3 {
  margin: 0 0 14px;
  color: #00a99d;
  font-size: 24px;
  line-height: 1.25;
}

.accommodation-content p {
  margin: 0 0 16px;
  color: #315d5a;
  font-size: 16px;
  line-height: 1.6;
}

.accommodation-content p:last-child {
  margin-bottom: 0;
}

.accommodation-note {
  background: #ccfbf1;
  border-radius: 14px;
  padding: 18px 20px;
  color: #0f766e;
  font-weight: 600;
  line-height: 1.5;
}

/* ========================================
   FAQs
   ======================================== */

.faq-list {
  max-width: 850px;
  margin: 36px auto 0;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #d7ece9;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 14px;
}

.faq-item h3 {
  margin: 0 0 8px;
  color: #0f766e;
  font-size: 18px;
  line-height: 1.3;
}

.faq-item p {
  margin: 0;
  color: #315d5a;
  font-size: 15px;
  line-height: 1.6;
}

/* ========================================
   Bottom Call To Action
   ======================================== */

.bottom-cta {
  background: #ccfbf1;
  text-align: center;
  padding: 60px 24px;
}

.bottom-cta h2 {
  margin: 0 0 14px;
  color: #1f2933;
  font-size: 34px;
  line-height: 1.15;
}

.bottom-cta p {
  margin: 0 auto 22px;
  max-width: 650px;
  color: #315d5a;
  font-size: 17px;
  line-height: 1.6;
}

.bottom-cta .price {
  display: block;
  margin: 16px 0 4px;
  color: #dc2626;
  font-size: 26px;
  font-weight: 800;
}

.bottom-cta .price-note {
  display: block;
  color: #315d5a;
  font-size: 14px;
  font-weight: 600;
}

.bottom-cta .btn {
  display: inline-block;
  background: #0f766e;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.bottom-cta .btn:hover {
  background: #115e59;
  transform: translateY(-2px);
}

/* ========================================
   Mobile Styling - New Website Sections
   ======================================== */

@media (max-width: 768px) {

  .website-section {
    padding: 45px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading .eyebrow {
    font-size: 12px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .what-you-get-grid,
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .what-you-get-card,
  .destination-card {
    padding: 22px 18px;
  }

  .accommodation-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-item {
    padding: 18px;
  }

  .bottom-cta {
    padding: 45px 20px;
  }

  .bottom-cta h2 {
    font-size: 28px;
  }

  .bottom-cta .price {
    font-size: 25px;
  }
}

/* =========================================================
   TRIPS DELIVERED - REMAINING WEBSITE
   Premium Teal
   ========================================================= */

.td-section {
  padding: 78px 0;
  background: #ffffff;
}

.td-soft {
  background: #f7fbfa;
}

.td-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.td-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #0f766e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.td-heading h2,
.td-split-intro h2,
.td-final-cta h2 {
  margin: 0 0 16px;
  color: #1f2933;
  font-size: 36px;
  line-height: 1.15;
}

.td-heading p,
.td-split-intro p {
  color: #315d5a;
  font-size: 17px;
  line-height: 1.65;
}


/* WHAT YOU GET */

.td-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.td-feature {
  padding: 28px 22px;
  background: #ffffff;
  border: 1px solid #d7ece9;
  border-radius: 18px;
  text-align: center;
}

.td-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  background: #ccfbf1;
  border-radius: 50%;
  color: #0f766e;
  font-weight: 800;
}

.td-feature h3 {
  margin: 0 0 10px;
  color: #0f766e;
  font-size: 19px;
}

.td-feature p {
  margin: 0;
  color: #315d5a;
  font-size: 15px;
  line-height: 1.55;
}


/* DESTINATIONS */

.td-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.td-split-intro {
  max-width: 520px;
}

.td-split-intro p {
  margin: 0 0 16px;
}

.td-choice-list {
  display: grid;
  gap: 14px;
}

.td-choice {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #d7ece9;
  border-radius: 16px;
}

.td-choice > span {
  display: flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #ccfbf1;
  border-radius: 50%;
  color: #0f766e;
  font-weight: 800;
}

.td-choice h3 {
  margin: 0 0 6px;
  color: #0f766e;
  font-size: 18px;
}

.td-choice p {
  margin: 0;
  color: #315d5a;
  font-size: 15px;
  line-height: 1.5;
}


/* ACCOMMODATION */

.td-accommodation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.td-info-card {
  padding: 28px 24px;
  border: 1px solid #d7ece9;
  border-radius: 18px;
  background: #ffffff;
}

.td-info-card h3 {
  margin: 0 0 10px;
  color: #0f766e;
  font-size: 19px;
}

.td-info-card p {
  margin: 0;
  color: #315d5a;
  font-size: 15px;
  line-height: 1.55;
}

.td-note {
  max-width: 850px;
  margin: 28px auto 0;
  padding: 18px 22px;
  background: #ccfbf1;
  border-radius: 14px;
  color: #0f766e;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}


/* EXTRAS */

.td-extras {
  background: #ffffff;
}

.td-extra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.td-extra {
  padding: 25px 20px;
  background: #f7fbfa;
  border-radius: 16px;
  text-align: center;
}

.td-extra h3 {
  margin: 0 0 9px;
  color: #0f766e;
  font-size: 18px;
}

.td-extra p {
  margin: 0;
  color: #315d5a;
  font-size: 15px;
  line-height: 1.5;
}


/* FAQ */

.td-faq-container {
  max-width: 900px;
}

.td-faq {
  display: grid;
  gap: 12px;
}

.td-faq details {
  background: #ffffff;
  border: 1px solid #d7ece9;
  border-radius: 14px;
  padding: 0 20px;
}

.td-faq summary {
  padding: 19px 0;
  color: #0f766e;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.td-faq details p {
  margin: 0;
  padding: 0 0 20px;
  color: #315d5a;
  font-size: 15px;
  line-height: 1.6;
}


/* FINAL PURCHASE CTA */

.td-final-cta {
  padding: 75px 24px;
  background: #ccfbf1;
  text-align: center;
}

.td-final-cta .container {
  max-width: 760px;
}

.td-final-cta p {
  max-width: 620px;
  margin: 0 auto 26px;
  color: #315d5a;
  font-size: 17px;
  line-height: 1.6;
}

.td-final-button {
  display: inline-block;
  padding: 15px 30px;
  background: #0f766e;
  border-radius: 999px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.td-final-button:hover {
  background: #115e59;
}

.td-final-price {
  margin-top: 18px;
  color: #dc2626;
  font-size: 28px;
  font-weight: 800;
}

.td-final-note {
  margin-top: 4px;
  color: #315d5a;
  font-size: 14px;
  font-weight: 600;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .td-feature-grid,
  .td-extra-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .td-accommodation-grid {
    grid-template-columns: 1fr;
  }

  .td-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .td-split-intro {
    max-width: none;
    text-align: center;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .td-section {
    padding: 52px 0;
  }

  .td-heading {
    margin-bottom: 30px;
  }

  .td-heading h2,
  .td-split-intro h2,
  .td-final-cta h2 {
    font-size: 28px;
  }

  .td-heading p,
  .td-split-intro p,
  .td-final-cta p {
    font-size: 16px;
  }

  .td-feature-grid,
  .td-extra-grid {
    grid-template-columns: 1fr;
  }

  .td-feature,
  .td-info-card {
    padding: 22px 18px;
  }

  .td-choice {
    padding: 18px 16px;
  }

  .td-choice > span {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .td-final-cta {
    padding: 55px 20px;
  }

  .td-final-button {
    width: 100%;
    max-width: 330px;
  }

  .td-final-price {
    font-size: 26px;
  }
}

/* =========================================================
   FINAL LAYOUT FIX - STACK WEBSITE SECTIONS VERTICALLY
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Keep every new section inside the normal page width */
.td-section,
.td-final-cta {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  clear: both;
}

/* If the new sections are sitting inside the process grid,
   make each one span the full row */
.process-grid > .td-section,
.process-grid > .td-final-cta {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Keep the content centred like the rest of the website */
.td-section > .container,
.td-final-cta > .container {
  width: min(1200px, 92%);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Prevent inner grids from forcing the page wider */
.td-feature-grid,
.td-split,
.td-choice-list,
.td-accommodation-grid,
.td-extra-grid,
.td-faq {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.td-feature,
.td-choice,
.td-info-card,
.td-extra,
.td-faq details {
  min-width: 0;
}

/* Desktop */
@media (min-width: 901px) {

  .td-feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .td-split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .td-accommodation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .td-extra-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 900px) {

  .td-feature-grid,
  .td-extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .td-split,
  .td-accommodation-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .td-feature-grid,
  .td-extra-grid,
  .td-accommodation-grid,
  .td-split {
    grid-template-columns: 1fr;
  }
}
