/* =========================
   RESET
========================= */
:root {
  --navy: #153b7f;
  --dark-navy: #0e2a5d;
  --gold: #c5a059;
  --cream: #f9f6ef;
  --light-gold: #eedcb3;
  --green: #2f7a00;
}
* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Instrument Sans", sans-serif;
  background: #f9f6ef;
  color: #0e2a5d;
}

a {
  color: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* =========================
   HEADER + NAVBAR
========================= */

.site-header {
  width: 100%;
  background: #f9f6ef;
  border-bottom: 1px solid #d8d4ca;
}

.navbar {
  position: relative;

  width:100%;
  min-height: 110px;
  margin: 0 auto;
  padding: 30px 70px;

  display: flex;
  align-items: center;
}

/* =========================
   NAVIGATION LINKS
========================= */
.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  gap: 55px;
}
.nav-item,
.dropbtn {
  appearance: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 8px 0;

  border: none;
  outline: none;
  background: transparent;

  font-family: "Libre Caslon Text", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;

  color: #153b7f;
  text-decoration: none;

  cursor: pointer;

  transition:
    color 0.25s ease,
    opacity 0.25s ease;

  align-items:center;
}

.nav-item:hover,
.nav-item:focus-visible,
.dropbtn:hover,
.dropbtn:focus-visible {
  color: var(--green);
}

.nav-item:focus-visible,
.dropbtn:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 7px;
}


/* =========================
   SERVICES DROPDOWN
========================= */

.dropdown {
  position: relative;
}

.dropbtn {
  border: none;
  background: transparent;
  padding: 10px 0;

  font-family: "Libre Caslon Text", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #153b7f;
  cursor: pointer;
}

.dropdown-content {
  display: none;

  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;

  min-width: 290px;
  padding: 10px 0;

  background: #f9f6ef;
  border: 1px solid #d8d4ca;
}

.dropdown-content a {
  display: block;
  padding: 14px 20px;

  color: #0e2a5d;
  text-decoration: none;

  font-family: "Libre Caslon Text", serif;
  font-size: 15px;
  text-transform: none;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: #eedcb3;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}


/* Service options */

.dropdown-content a {
  display: block;
  width: 100%;
  padding: 14px 16px;

  border-bottom: 1px solid rgba(14, 42, 93, 0.12);

  font-family: "Libre Caslon Text", serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;

  color: #0e2a5d;
  text-decoration: none;
  white-space: nowrap;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover,
.dropdown-content a:focus-visible {
    padding-left:22px;

    background:rgba(47,122,0,.08);
    color:var(--green);
}


/* =========================
   LOGO
========================= */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;

  margin-left:-30px;
}

.logo img {
  width: 110px;
  height: 110px;

  display: block;

  object-fit: contain;
}


/* =========================
   HERO
========================= */

.hero-title{
    font-family:"Libre Caslon Text", serif;
}

.hero-title span{
    font-style:normal;
}
.hero::before{
    content:"";
     
    display:block;

    width:70px;
    height:3px;

    margin:0 auto 45px;

    background:var(--green);
}
.hero {
  width:100%;
  margin: 0 auto;
  padding: 90px 40px 120px;

  text-align: center;
}


.hero p {
  font-family: "Libre Caslon Text", serif;
  margin-bottom: 200px;
  color: var(--green);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero h3 {
  font-family: "Libre Caslon Text", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top:px;
  
  

  color: var(--green);
}

.hero h1 {
  font-family: "Libre Caslon Text", serif;
  font-size:100px;
  font-weight: 400;
  line-height: 0.95;
  margin-top: 20px;

  color: #153b7f;
}

.hero h2 {
    margin-top: 20px;

    font-family: "Libre Caslon Text", serif;
    font-size: 20px;
    font-weight: 500;

    color: var(--green);

    letter-spacing: 5px;
    text-transform: uppercase;
}
/* =========================
   GENERAL SECTIONS
========================= */

section {
  width: min(1300px, 100%);
  margin: 0 auto;
  padding: 120px 40px;
}


/* =========================
   ABOUT SECTION
========================= */

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

.about h2 {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
}
.about h2::before{
    content:"";
    display:block;

    width:60px;
    height:3px;

    background:var(--green);

    margin-bottom:25px;
}

.about p {
  font-size: 22px;
  line-height: 1.8;
}
/* =========================
   SERVICE PAGE CONTENT
========================= */

.service-page {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 120px 40px;
}

.service-page h1 {
  margin-bottom: 35px;

  font-family: "Libre Caslon Text", serif;
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 400;
  line-height: 1;

  color:var(--navy);
}

.service-page p {
  max-width: 760px;

  font-size: 20px;
  line-height: 1.8;
}
  .index-footer {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
    background: var(--cream);

    /* Move the entire footer */
    transform: translate(0px, 0px);
}

.index-footer p {
    margin: 0;
    
    color: var(--navy);
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;

    /* Move only the copyright text */
    transform: translate(200px, 0);
}

/* =========================
   VISA ASSISTANCE PAGE
========================= */

.visa-hero {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 110px 40px 130px;

  text-align: center;
}

.page-eyebrow,
.section-label {
  margin-left:290px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;

  color: var(--green);
}
.section-heading {
    max-width: 650px;
    margin: 28px 0 0;

    font-family: "Libre Caslon Text", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.05;

    color: var(--navy);
}

.visa-hero h1 {
  margin: 35px 0 45px;

  font-family: "Libre Caslon Text", serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 0.95;

  color: #153b7f;
}

.visa-hero-text {
  max-width: 760px;
  margin: 0 auto;

  font-size: 20px;
  line-height: 1.75;

  color: #0e2a5d;
}

.visa-text .section-label {
    color: var(--green);
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;

    margin: 0 0 18px 0;
}
/* Introduction */
.visa-text h2{
    color: var(--navy);

    font-family: "Libre Caslon Text", serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.15;

    max-width: 520px;

    margin: 0;
    margin-top: 20px;
    margin-bottom: 35px;
}
.visa-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;

  border-top: 1px solid #d8d4ca;
}

.visa-intro-heading h2 {
  max-width: 520px;
  margin-top: 25px;

  font-family: "Libre Caslon Text", serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;

  color: #153b7f;
}

.visa-intro-copy p {
  margin-bottom: 25px;

  font-size: 20px;
  line-height: 1.8;
}


/* Visa services */

.visa-services {
  padding-top: 20px;
  padding-bottom: 120px;
}

.visa-service-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;

  padding: 55px 0;

  border-top: 1px solid #d8d4ca;
}

.visa-service-row:last-child {
  border-bottom: 1px solid #d8d4ca;
}

.visa-number {
  padding-top: 8px;
  margin-left: 100px;
  font-size: 13px;
  letter-spacing: 3px;

   color:var(--green);
}

.visa-service-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: 80px;
}

.visa-service-content h3 {
  font-family: "Libre Caslon Text", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;

  color: #153b7f;
}

.visa-service-content p {
  max-width: 580px;

  font-size: 18px;
  line-height: 1.75;
}


/* Process */

.visa-process {
  border-top: 1px solid #d8d4ca;
}
.visa-process-heading .section-label {
    margin-left: 100px;
    margin-top: 4px;
}

.visa-process-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;

  margin-bottom: 75px;
}

.visa-process-heading h2 {
  font-family: "Libre Caslon Text", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.05;

  color: #153b7f;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid #d8d4ca;
  border-bottom: 1px solid #d8d4ca;
}

.process-item {
  min-height: 310px;
  padding: 40px;

  border-right: 1px solid #d8d4ca;
}

.process-item:last-child {
  border-right: none;
}

.process-item span {
  display: block;
  margin-bottom: 70px;

  font-size: 13px;
  letter-spacing: 3px;

  color:var(--green);
}

.process-item h3 {
  margin-bottom: 22px;

  font-family: "Libre Caslon Text", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.15;

  color: #153b7f;
  
}

.process-item p {
  font-size: 16px;
  line-height: 1.7;
}



/* =========================
   INQUIRY BUTTON
========================= */

.visa-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: fit-content;
    margin-top: 22px;
    padding: 16px 24px;

    border: 1px solid var(--green);
    background: var(--green);

    color: white !important;
    font-family: "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.visa-contact-button:hover {
    background: transparent;
    border-color: var(--cream);
    transform: translateY(-2px);
}
.visa-footer{
    width: 100%;
    margin: 0;
    
    padding: 35px 120px;

    background: var(--navy);
    color: var(--cream);

    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.visa-footer p{
    margin: 0;

    color: var(--cream);
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;

    margin-left: 20px;
}

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

@media (max-width: 900px) {
    .visa-contact {
        grid-template-columns: 1fr;
        gap: 65px;

        padding: 90px 40px;
    }

    .visa-contact-right {
        justify-self: start;
        max-width: 100%;
    }

    .visa-contact-title {
        margin-bottom: 30px;
    }
}


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

@media (max-width: 600px) {
    .visa-contact {
        padding: 75px 24px;
    }

    .visa-contact-eyebrow {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .visa-contact h2 {
        font-size: clamp(38px, 11vw, 50px);
    }

    .visa-contact-title {
        font-size: 38px;
    }

    .visa-contact-details {
        font-size: 16px;
    }

    .visa-contact-button {
        width: 100%;
    }
}

.visa-image {
    margin-top: 50px;
}

.visa-image img {
    width: 100%;
    height:520px
    border-radius 20px;

    display: block;

    object-fit: cover;

    box-shadow: 0 20px 45px rgba(0,0,0,.12);

}
.visa-text{
    display:flex;
    flex-direction:column;
    margin-bottom:60px;
    font-family: "Instrument Sans", sans-serif;
    padding-top:50px
}

.visa-intro-copy{
    margin-top:50px;
    max-width:700px;
}

.visa-intro-copy p{
    font-size:20px;
    line-height:1.8;

    margin-bottom:25px;
}

/* =========================
   AIRLINE TICKETING PAGE
========================= */

.ticket-hero {
  width: min(1250px, 100%);
  margin-top: 90px;
  margin: 0 auto;
  padding: 120px 0 80px 130px;

  text-align: center;
}
.ticket-hero .page-eyebrow{
    color: var(--green);

    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 7px;
    text-transform: uppercase;

    margin-bottom: 28px;
    margin-left: 240px;
}

.ticket-hero h1 {
  max-width: 1150px;
  margin: 30px 90px 80px;
  margin-left: 10px;
  font-family: "Libre Caslon Text", serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 0.95;

  color: var(--navy);
}

.ticket-hero-text {
  max-width: 720px;
  margin: 0 auto 40px;
  margin-left: 160px;

  font-size: 21px;
  line-height: 1.75;

  color: var(--dark-navy);
}
.page-eyebrow {
    transform: translateX(-150px);
}

/* Intro */
.ticket-intro-text .section-label {
    color: var(--green);
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;

    margin: 0 0 20px;
}
.ticket-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;

  border-top: 1px solid #d8d4ca;
}

.ticket-intro-text h2 {
  margin: 20px 0 45px;

  font-family: "Libre Caslon Text", serif;
  font-size: clamp(24px, 2.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;

  color: var(--navy);
}

.ticket-intro-text > p:not(.section-label) {
  margin-bottom: 25px;

  font-size: 19px;
  line-height: 1.8;
}


.ticket-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
/* Benefits */

.ticket-benefits {
  padding-top: 20px;
}

.ticket-benefit-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 45px;

  padding: 38px 0;

  border-top: 1px solid #d8d4ca;
}

.ticket-benefit-row:last-child {
  border-bottom: 1px solid #d8d4ca;
}

.ticket-number {
  padding-top: 8px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;

  color: var(--green);
}

.ticket-benefit-row > div {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
  gap: 80px;
}

.ticket-benefit-row h3 {
    font-family: "Libre Caslon Text", serif;
    font-size: clamp(20px, 2vw, 38px);
    font-weight: 400;
    line-height: 1.15;

    color: var(--navy);
}

.ticket-benefit-row p {
  max-width: 600px;

  font-size: 17px;
  line-height: 1.75;
}


/* Partners */
.availability-note {
    margin-top: 30px;
}
.airline-partners {
    border-top: none;
}

.partners-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
    gap: 18px;
    
}
.partners-heading .section-label {
    margin-left: 30px;
}

.partners-heading h2 {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(43px, 2.6vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--navy);
  margin-top: -100px;
}

.partner-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 30px;

    background: white;
    border-radius: 14px;

    transition: all 0.25s ease;
}

.partner-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.partner-item span {
    font-family: "Libre Caslon Text", serif;
    font-size: 18px;
    color: #153B7F;
}

.partner-item:hover {
    background: rgba(47,122,0,0.08);
}

.partner-item:hover span {
    color: #2F7A00;
}
.airline-more{
    margin-top: 22px;
    margin-bottom: 18px;
    margin-left: -800px;
    text-align: center;

    color: var(--green);

    font-family: "Instrument Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
}
/* Process */

.ticket-process {
  border-top: 1px solid #d8d4ca;
}

.ticket-process-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 50px;

  margin-bottom: 70px;
}

.ticket-process-heading h2 {
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.05;

  color: var(--navy);
}

.ticket-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid #d8d4ca;
  border-bottom: 1px solid #d8d4ca;
}

.ticket-process-grid article {
  min-height: 310px;
  padding: 40px;

  border-right: 1px solid #d8d4ca;
}

.ticket-process-grid article:last-child {
  border-right: none;
}

.ticket-process-grid span {
  display: block;
  margin-bottom: 65px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;

  color: var(--green);
}

.ticket-process-grid h3 {
  margin-bottom: 20px;

  font-family: "Libre Caslon Text", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.15;

  color: var(--navy);
}

.ticket-process-grid p {
  font-size: 16px;
  line-height: 1.7;
}


/* =========================
   Ticket Contact CTA
========================= */

.ticket-contact {
    width: 100%;
    max-width: none;

    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: 50px;

    padding: 120px max(40px, calc((100vw - 1220px) / 2));

    background: var(--navy);
    color: var(--cream);
}

/* Left side */
.green-text {
    color: var(--green);
}
.ticket-contact-copy {
    max-width: 620px;
}

.ticket-contact .page-eyebrow {
    margin: 0;

    color: var(--green);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.ticket-contact h2 {
    max-width: 600px;
    margin: 28px 0 10px;

    font-family: "Libre Caslon Text", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.05;

    color: var(--cream);
}

/* Right side */

.ticket-contact-title{
    margin-top: -20px 30px 5px 0;
    margin-left: 200px;

    font-family: "Libre Caslon Text", serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.1;
    
    color: var(--cream);
}

.ticket-contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-self: end;

    width: 100%;
    max-width: 460px;
    gap: 15px;

    margin-top: 100px;
    margin-right: -215px;


    font-size: 15px;
    line-height: 1.6;

    transform: translateY(-35px);
}

.ticket-contact-details a {
    color: var(--cream);
    text-decoration: none;
}

.ticket-contact-details > a:not(.ticket-contact-button):hover {
    color: var(--light-gold);
}

.ticket-contact-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 28px;
    padding: 18px 32px;

    background: var(--green);
    color: white;
    text-decoration: none;

    font-family: "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;

    transition: all .25s ease;
}

.ticket-contact-button:hover{
    background: #327306;
    transform: translateY(-2px);
}
/* Responsive */

@media (max-width: 900px) {
    .ticket-contact {
        grid-template-columns: 1fr;
        gap: 55px;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .ticket-contact-details {
        justify-self: start;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .ticket-contact {
        padding: 75px 24px;
    }

    .ticket-contact .page-eyebrow {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .ticket-contact h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .ticket-contact-details {
        font-size: 16px;
    }
}
/* =========================================
   LOCATION SECTION
========================================= */

.location-section {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;

    padding: 80px max(40px, calc((100vw - 1220px) / 2)) 35px;

    background: var(--cream);
}


/* =========================================
   LEFT CONTENT WRAPPER
========================================= */

.location-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    /* Move the entire left group */
    transform: translateX(0);
}


/* =========================================
   VISIT OUR OFFICE
========================================= */

.location-section .section-label {
    margin: 0 0 10px;

    color: var(--green);
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;

    /* Move only VISIT OUR OFFICE */
    transform: translate(0, 0);
}


/* =========================================
   FIND US
========================================= */

.location-title {
    width: 250px;

    margin: 0px 0 20px;
    padding-bottom: 5px;

    border-bottom: 2px solid var(--green);

    color: var(--navy);
    font-family: "Libre Caslon Text", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1;

    /* Move only FIND US */
    transform: translate(0, 0);
}


/* =========================================
   ADDRESS
========================================= */

.location-address {
    max-width: 420px;
    margin: 0;

    color: var(--navy);
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;

    /* Move only the address */
    transform: translate(0, 0);
}


/* =========================================
   MAP
========================================= */

.location-map {
    width: 100%;

    /* Move the entire map wrapper */
    transform: translate(0, 0);
}

.location-map img {
    display: block;
    margin-top: 100px;
    width: 100%;
    height: 575px;

    object-fit: cover;
    border-radius: 30px;
}


/* =========================================
   COPYRIGHT FOOTER
========================================= */

.ticket-footer {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
    background: var(--navy);

    /* Move the entire footer */
    transform: translate(0px, 0px);
}

.ticket-footer p {
    margin: 0;
    color: var(--cream);
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;

    /* Move only the copyright text */
    transform: translate(145px, 0);
}
/* ========================================
   OUR STORY
======================================== */

/* Our Story section */

.our-story {
  width: 100%;
  background: var(--navy);

  display: grid;
  grid-template-columns: minmax(200px, 0fr) minmax(400px, 3fr);
  align-items: center;
  gap: 80px;

  padding: 40px 80px;
}

.story-content {
  max-width: 680px;
  text-align: left;
  margin-left: 625px;
}

.story-content .section-label {
  margin: 0 0 22px;

  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.story-content h2 {
  color: var(--cream);
  font-family: "Libre Caslon Text", serif;
  font-size:15px;
  font-weight: 400;
  line-height: 1.03;
}

.story-content h2 em {
  font-style: italic;
}

.story-text {
  max-width: 620px;
  margin: 0;

  color: var(--cream);
  font-size: 15px;
  line-height: 1.8;
}

/* Carousel */

.story-carousel {
  width: 50%;
  margin-left: 500px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;

  border-radius: 22px;
}

.carousel-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: translateX(100px);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.carousel-image.active {
  opacity: 1;
  transform: translateX(0);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-top: 24px;
}

.carousel-button {
  border: none;
  padding: 8px 0;

  background: transparent;
  color: var(--cream);

  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  cursor: pointer;
}

.carousel-button:hover {
  color: var(--green);
}

.carousel-counter {
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 2px;
}

/* Mobile */

@media (max-width: 900px) {
  .our-story {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .carousel-track {
    height: 460px;
  }
}

@media (max-width: 600px) {
  .our-story {
    padding: 70px 24px;
  }

  .carousel-track {
    height: 380px;
  }
}

.story-content{
    max-width: 720px;
}

.story-content .section-label{
    color: var(--green);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;

    margin-bottom: 20px;
    margin-left: -600px;
}

.story-content h2{
    font-family: "Libre Caslon Text", serif;

    font-size: clamp(25px, 3vw, 50px);
    font-weight: 400;

    line-height: 1.05;

    color: var(--cream);

    margin-bottom: 30px;
    margin-left: -600px;
}

.story-content em{
    font-style: italic;
}

.story-text{
    max-width: 650px;

    font-size: 19px;
    line-height: 1.8;

    color: var(--cream);
    margin-left: -600px;
}


/* =========================
   START YOUR JOURNEY
========================= */
.journey-section {
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: "";

    position: absolute;
    inset: 0;              /* fills the entire section */

    background-image: url("images/world.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;

    opacity: 0.05;

    pointer-events: none;
    z-index: 0;
}

.journey-left,
.journey-right {
    position: relative;
    z-index: 1;
}
.journey-section{
    display: grid;
    grid-template-columns: 280px 700px;
    justify-content: center;
    gap: 90px;

    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 100px;

    background: var(--cream);
}

/* START YOUR JOURNEY */
.journey-label{
    color: var(--green);
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 100px;
}

/* Where would you like to go? */
.journey-left h2 {
    position: relative;
    left: 100px;
    top: 30px;
    font-size: 35px;
}
/* Form */

.journey-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 200px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: #153b7f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}


.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;

  border: 1px solid rgba(21, 59, 127, 0.3);
  background: transparent;
  color:#7a7a7a;

  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
/* Mobile */

@media (max-width: 900px) {
  .journey-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 70px 40px;
  }
}

@media (max-width: 600px) {
  .journey-section {
    padding: 60px 24px;
  }

  .journey-form {
    grid-template-columns: 1fr;
  }

  .form-message,
  .journey-button {
    grid-column: auto;
  }
}

/* Footer must be outside the media query */
.site-footer {
  margin-left:10px;
  margin-top:-20px;
}

.site-footer p {
  margin: 0;
  color: #153b7f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
}
/* ==========================
   INQUIRIES LABEL
========================== */
/* Move only the two headings upward */
.journey-left {
  transform: translateY(-30px);
  margin-left: -100px;
  margin-top: 30px;
}

.inquiries-tag {
  margin: 30px 1px 10px 200px;
  padding: 0;

  transform: translateY(-30px);

  color: var(--green);
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.journey-button{
    margin-left: 0px;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:310px;
    height:49px;

    background:#3E8E08;
    color:#ffffff;

    border:none;
    outline:none;

    font-family:"Instrument Sans", sans-serif;
    font-size:13px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;

    cursor:pointer;

    transition:all .3s ease;
}

.journey-button:hover{
    background:#327306;
    transform:translateY(-2px);
}

.journey-button:hover::after{
    transform:translateX(4px);
}
/* =========================================
   TOUR CATEGORY PAGES
========================================= */

.tour-page-hero {
    min-height: 300px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 70px 40px;

    background: var(--cream);
    text-align: center;
}


.tour-eyebrow {
    margin: -10px 100px 25px;

    color: var(--green);
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.tour-page-hero h1 {
    margin: 0;

    color: var(--navy);
    font-family: "Libre Caslon Text", serif;
    font-size: 100px;
    font-weight: 400;
    line-height: 0.9;
}

.tour-hero-text {
    max-width: 700px;
    margin: 36px auto 0;

    color: var(--navy);
    font-family: "Instrument Sans", sans-serif;
    font-size: 19px;
    line-height: 1.7;
}

/* Introduction */

.tour-intro-section {
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;

    padding: 40px max(60px, calc((100vw - 1280px) / 2));

    background: var(--cream);
    width:100%;
}

.tour-intro-copy {
    max-width: 610px;
}

.tour-intro-copy .section-label{
    margin-left: -50px;
}
.tour-features-heading .section-label,
.tour-audience-section .section-label,
.tour-contact-section .section-label {
    margin: 0 0 22px;
    margin-left: 100px;
    color: var(--green);
    font-family: "Instrument Sans", sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.tour-intro-copy h2,
.tour-audience-section h2,
.tour-contact-section h2 {
    margin: 0 0 34px;

    color: var(--navy);
    font-family: "Libre Caslon Text", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.04;
}
.tour-intro-image {
    width: 700px;      /* or 800px */
}

.tour-intro-image img {
    width: 100%;
    height: 650px;     /* optional */
    object-fit: cover;
    display: block;
    border-radius: 24px;
}
.tour-features-heading .section-label,
.tour-feature-item > span{
    transform: translateX(-100px);
}
.tour-features-heading .section-label{
    transform: translateX(0px);
}
.tour-features-heading h2 {
    margin: 0;
    margin-left: 100px;
    color: var(--navy);

    font-family: "Libre Caslon Text", serif;
    font-size: clamp(60px, 6vw, 92px);
    font-weight: 400;
    line-height: 1.05;

    max-width: 850px;
}
.tour-intro-copy p:not(.section-label) {
    margin: 0 0 20px;

    color: var(--navy);
    font-family: "Instrument Sans", sans-serif;
    font-size: 15spx;
    line-height: 1.8;
}

.grou-image {
  width: 450px;
}

.tour-features-heading h2 {
    color: var(--navy);
}

.tour-feature-list {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.tour-feature-list{
    width: calc(100% + 80px);
    margin-left: -50
}

.tour-feature-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;

    padding: 34px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}


.tour-feature-item h3 {
    margin: 0 0 12px;

    color: var(--cream);
    font-family: "Libre Caslon Text", serif;
    font-size: 30px;
    font-weight: 400;
}

.tour-feature-item p {
    max-width: 620px;
    margin: 0;

    color: var(--cream);
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

/* Audience cards */

.tour-audience-section {
    padding: 10px max(30px, calc((50vw - 120px) / 2));

    background: var(--cream);
}

.tour-audience-section > h2 {
    max-width: 800px;
}

.tour-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 70px;
}

.tour-audience-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;

  padding: 0;

  border: none;
  border-radius: 18px;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Individual destination images */

.antarctica-card {
  background-image: url("images/antarctica.jpg");
}

.south-africa-card {
  background-image: url("images/safari.jpg");
}

.iceland-card {
  background-image: url("images/iceland.jpg");
}

/* Dark overlay behind the text */

.destination-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 34px 100px;

  background:
    linear-gradient(
      to top,
      rgba(5, 24, 55, 0.88),
      rgba(5, 24, 55, 0.08)
    );
}

.destination-overlay h3 {
  margin: 0 0 12px;

  color: white;
  font-family: "Libre Caslon Text", serif;
  font-size: 34px;
  font-weight: 400;
}

.destination-overlay p {
  max-width: 300px;
  margin: 0;

  color: white;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
/* Contact */
.tour-contact-section .section-label{
    margin: 0;
    margin-left:10px;
    margin-top: 130px;
    transform: translateX(-20px);
    font-size: 20px;
}
.tour-contact-section {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;

    padding: 75px 100px;

    background: var(--navy);
    width: 100%;
}

.tour-contact-section h2 {
    color: var(--cream);
}
.tour-contact-section h2{
    margin: 0;
    margin-left: 10px;
    margin-top:15px;
    transform: translateX(-20px);
}
.tour-contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.tour-contact-details h3 {
    margin: 0 0 16px;
    margin-left:160px;
    color: var(--cream);
    font-family: "Libre Caslon Text", serif;
    font-size: 35px;
    font-weight: 400;
}
.tour-contact-details h3{
    transform: translateX(25px);
}

.tour-contact-details a:not(.tour-button),
.tour-contact-details p {
    margin: 0;
    margin-left: 195px;
    color: var(--cream);
    font-family: "Instrument Sans", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    text-decoration: none;
}

.tour-details > a:not(.tour-button):hover {
    color: var(--green);
}
.tour-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: fit-content;
    margin-top: 22px;
    margin-left: 195px;
    padding: 16px 24px;

    border: 1px solid var(--green);
    background: var(--green);
    color: white;

    font-family: "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}

.tour-contact-button:hover {
    background: transparent;
    border-color: var(--cream);
    transform: translateY(-2px);
}
/* Footer */

.tour-footer {
    padding: 7px 60px;

    background: var(--navy);
}

.tour-footer p {
    margin: 0;
    margin-left: 80px;
    color: var(--cream);
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
}
.group-tour-label {
    margin-top: 180px;
    margin-left: 0px;
    color: var(--cream);
    font-family: "Instrument Sans", sans-serif;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 2px;
}
.tour-intro-image img {
        height: 500px;
        width: 100px;
}

/* Responsive */

@media (max-width: 900px) {
    .tour-intro-section,
    .tour-features-section,
    .tour-contact-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }

   .tour-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px;
}
    .tour-intro-image img {
        height: 500px;
    }
}

@media (max-width: 600px) {
    .tour-page-hero {
        min-height: 520px;
        padding: 90px 24px;
    }

    .tour-page-hero h1 {
        font-size: 64px;
    }

    .tour-intro-section,
    .tour-features-section,
    .tour-audience-section,
    .tour-contact-section {
        padding: 80px 24px;
    }

    .tour-intro-image img {
        height: 400px;
    }

    .tour-feature-item {
        grid-template-columns: 45px 1fr;
    }

    .tour-footer {
        padding: 24px;
    }
}

/* =========================================
   CRUISE PAGE
========================================= */

/* Hero */

.cruise-hero {
  min-height: 520px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 100px 60px;

  background: var(--cream);
  width: 100%;
  text-align: center;
}

.cruise-hero .page-eyebrow {
  margin: 0 0 24px;
  margin-left: 300px;
  color: var(--green);
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.cruise-hero h1 {
  margin: 0;

  color: var(--navy);
  font-family: "Libre Caslon Text", serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 0.9;
}

.cruise-hero-text {
  max-width: 720px;
  margin: 34px auto 0;

  color: var(--navy);
  font-family: "Instrument Sans", sans-serif;
  font-size: 19px;
  line-height: 1.7;
}


/* Introduction */

.cruise-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;

  padding: 100px 80px;

  background: var(--navy);
  width: 100%
}

.cruise-intro-copy {
  max-width: 620px;
}

.cruise-intro-copy .section-label,
.cruise-services-heading .section-label,
.featured-destinations .section-label,
.cruise-benefits-heading .section-label,
.cruise-contact .section-label {
  margin: 0 0 22px;

  color: var(--green);
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.cruise-intro-copy h2,
.cruise-services-heading h2,
.featured-destinations h2,
.cruise-benefits-heading h2,
.cruise-contact h2 {
  margin: 0 0 32px;

  color: var(--cream);
  font-family: "Libre Caslon Text", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.05;
}

.cruise-intro-copy p:not(.section-label) {
  margin: 0 0 20px;

  color: var(--cream);
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.cruise-intro-image img {
  display: block;

  width: 100%;
  height: 560px;

  object-fit: cover;
  border-radius: 22px;
}


/* Cruise services */

.cruise-services {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;

  padding: 100px 80px;

  background: var(--cream);
  width: 100%;
}

.cruise-services-heading h2 {
  color: var(--navy);
}
.cruise-services-heading h2 {
    font-size: 40px;      /* Try 58px, 54px, or 50px */
    line-height: 1.05;
    font-weight: 400;
}
.cruise-service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.cruise-service-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;

  padding: 32px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.cruise-service-number {
  color: var(--green);
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
}

.cruise-service-content h3 {
  margin: 0 0 12px;

  color: var(--navy);
  font-family: "Libre Caslon Text", serif;
  font-size: 30px;
  font-weight: 400;
}

.cruise-service-content p {
  max-width: 620px;
  margin: 0;

  color: var(--cream);
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
.cruise-services {
    position: relative;
    left: 150px;      /* adjust this value */
}
.cruise-services {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cruise-services::before {
    content: "";
    position: absolute;

    width: 1200px;
    height: 1200px;

   top: 50%;
left: 43%;

transform: translate(-50%, -50%);

    background: url("images/cruise.png") center/contain no-repeat;

    opacity: 0.025;
    z-index: -1;
    pointer-events: none;
}
/* Featured destinations */

.featured-destinations {
  box-sizing: border-box;
  padding: 100px 80px;

  background: var(--navy);
  width: 100%;
}

.featured-destinations > .section-label,
.featured-destinations > h2 {
  text-align: center;
}

.featured-destinations > h2 {
  margin-bottom: 60px;
}

.cruise-destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;

  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.cruise-destination-card {
  position: relative;

  min-height: 480px;
  overflow: hidden;

  border-radius: 22px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  transition: transform 0.3s ease;
}

.cruise-destination-card:hover {
  transform: translateY(-7px);
}

.alaska-card {
  background-image: url("images/alaska.jpg");
}

.mediterranean-card {
  background-image: url("images/mediterranean.jpg");
}

.caribbean-card {
  background-image: url("images/caribbean.jpg");
}

.destination-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 38px;

  background:
    linear-gradient(
      to top,
      rgba(5, 24, 55, 0.9),
      rgba(5, 24, 55, 0.1)
    );
}

.destination-overlay h3 {
  margin: 0 0 14px;

  color: white;
  font-family: "Libre Caslon Text", serif;
  font-size: 40px;
  font-weight: 400;
}

.destination-overlay p {
  max-width: 320px;
  margin: 0;

  color: white;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
/* =========================
   FEATURED DESTINATIONS
========================= */

.cruise-destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 55px;
}

.cruise-destination-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 22px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  transition: transform 0.35s ease;
}

.cruise-destination-card:hover {
  transform: translateY(-8px);
}

/* Individual background images */

.alaska-card {
  background-image: url("images/alaska.png");
}

.mediterranean-card {
  background-image: url("images/mediterranean.png");
}

.caribbean-card {
  background-image: url("images/caribbean.png");
}

/* Dark gradient over each image */

.destination-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 38px;

  background: linear-gradient(
    to top,
    rgba(8, 31, 77, 0.95) 0%,
    rgba(8, 31, 77, 0.55) 45%,
    rgba(8, 31, 77, 0.08) 100%
  );
}

.destination-overlay h3 {
  margin: 0 0 16px;

  color: #ffffff;
  font-family: "Libre Caslon Display", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.05;
}

.destination-overlay p {
  margin: 0;
  max-width: 360px;

  color: rgba(255, 255, 255, 0.88);
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

/* Benefits */

.cruise-benefits {
  padding: 100px 80px;

  background: var(--cream);
}

.cruise-benefits-heading {
  max-width: 780px;
}

.cruise-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  margin-top: 10px;
}

.cruise-benefit-card {
  min-height: 240px;
  box-sizing: border-box;

  padding: 38px 32px;

  border: 1px solid var(--navy);
  background:var(--cream);
}

.cruise-benefit-card h3 {
  margin: 0 0 18px;

  color: var(--navy);
  font-family: "Libre Caslon Text", serif;
  font-size: 20px;
  font-weight: 400;
}

.cruise-benefit-card p {
  margin: 0;

  color: var(--navy);
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}


/* Contact section */

.cruise-contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 100px;

  padding: 110px 80px;

  background: var(--navy);
  width: 100%;
}

.cruise-contact h2 {
  color: var(--cream);
  font-size: 45px;
  margin-left: 100px;
}

.cruise-contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
/* =========================
   LEFT SIDE
========================= */

.cruise-contact-copy {
    max-width: 620px;
}

.cruise-eyebrow {
    margin: 0;
    margin-top: -10px;
    margin-left: 100px;
    gap: 15px;
    color: var(--green);

    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 6px;
    line-height: 1;

    text-transform: uppercase;
}

.cruise-heading {
    max-width: 620px;
    margin: 200px 60px 10px;

    color: var(--cream);

    font-family: "Libre Caslon Text", serif;
    font-size: 100px;
    font-weight: 400;
    line-height: 1.05;
}
.cruise-contact-details h3 {
  margin: 40px 180px 16px;
  margin-left: 180px;
  color: var(--cream);
  font-family: "Libre Caslon Text", serif;
  font-size: 37px;
  font-weight: 400;
}

.cruise-contact-details a,
.cruise-contact-details p {
  margin: 0;
  margin-left:190px;

  color: var(--cream);
  font-family: "Instrument Sans", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-decoration: none;
}

.cruise-contact-details > a:not(.cruise-contact-button):hover {
  color: var(--green);
}

.cruise-contact-button {
  display: inline-block;

  margin-top: 18px;
  padding: 17px 26px;

  border: 1px solid var(--green);
  background: var(--green);

  color: white !important;
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.cruise-contact-button:hover {
  background: transparent;
  color: var(--green) !important;
}
.cruise-footer {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
    background: var(--navy);

    /* Move the entire footer */
    transform: translate(0px, 0px);
}

.cruise-footer p {
    margin: 0;
    margin-left: 10px;

    color: var(--cream);
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;

    /* Move only the copyright text */
    transform: translate(125px, 0);
}

/* Responsive */

@media (max-width: 900px) {
  .cruise-intro,
  .cruise-services,
  .cruise-contact {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .cruise-intro-image img {
    height: 480px;
  }
}

@media (max-width: 600px) {
  .cruise-hero {
    min-height: 460px;
    padding: 80px 24px;
  }

  .cruise-hero h1 {
    font-size: 66px;
  }

  .cruise-intro,
  .cruise-services,
  .featured-destinations,
  .cruise-benefits,
  .cruise-contact {
    padding: 75px 24px;
  }

  .cruise-intro-image img {
    height: 390px;
  }

  .cruise-service-row {
    grid-template-columns: 45px 1fr;
  }

  .cruise-destination-card {
    min-height: 420px;
  }
}
/* =========================================
   HOTEL BOOKINGS PAGE
========================================= */


/* =========================================
   HERO
========================================= */

.hotel-hero {
  min-height: 560px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 110px 60px;

  background: #f9f6ef;
  text-align: center;
}

.hotel-hero .page-eyebrow {
  margin: 0 0 24px;
  margin-left: 290px;
  color:  #2f7a00;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hotel-hero h1 {
  margin: 0;

  color: #153b7f;
  font-family: "Libre Caslon Text", serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 0.9;
}

.hotel-hero-text {
  max-width: 760px;
  margin: 34px auto 0;

  color: #153b7f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}


/* =========================================
   HOTEL SERVICES
========================================= */

.hotel-services {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;

  padding: 105px 80px;

  background:var(--cream);
  width: 100%;
}

.hotel-services-heading .section-label {
  margin: 40px 0 22px;
  
  color: #2f7a00;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hotel-services-heading h2 {
  margin: 0;

  color: var(--navy);
  font-family: "Libre Caslon Text", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.08;
}

.hotel-service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hotel-service-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;

  padding: 32px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.hotel-service-row > span {
  color:  #2f7a00;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}

.hotel-service-row h3 {
  margin: 0 0 12px;

  color:var(--navy);
  font-family: "Libre Caslon Text", serif;
  font-size: 32px;
  font-weight: 400;
}

.hotel-service-row p {
  max-width: 620px;
  margin: 0;

  color:var(--navy);
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}
.hotel-services {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hotel-services::before {
    content: "";
    position: absolute;

    width: 800px;
    height: 2000px;

    top: 68%;
    left: 25%;

    transform: translate(-50%, -50%);

    background: url("images/luggage.png") center/contain no-repeat;

    opacity: 0.04;

    z-index: -1;
    pointer-events: none;
}

/* =========================================
   FEATURED EXPERIENCES
========================================= */

.hotel-featured {
  padding: 105px 80px;

  background:var(--navy);
  width: 100%;
}

.hotel-featured > .section-label {
  margin: 0 0 22px;

  color: #2f7a00;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-align: center;
  text-transform: uppercase;
}

.hotel-featured > h2 {
  max-width: 850px;
  margin: 0 auto 62px;

  color:var(--cream);
  font-family: "Libre Caslon Text", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

.hotel-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;

  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hotel-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;

  border-radius: 24px;
  background: #0e2a5d;
}

.hotel-image {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;

    transition: opacity 1s ease;
}

.hotel-image.visible {
    opacity: 1;
}

.hotel-overlay{
    position:absolute;
    inset:0;
    z-index:2;
}
/* =========================
   HOTEL TYPE SLIDESHOW CARDS
========================= */

.hotel-types {
  width: 100%;
  max-width: none;
  padding: 70px 80px 105px;

  background: var(--navy);
  color: var(--cream);
}

.hotel-types > h2 {
  margin: 0 0 55px;

  text-align: center;

  font-family: "Libre Caslon Text", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.1;
}

.hotel-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;

  max-width: 1400px;
  margin: 0 auto;
}

.hotel-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;

  border-radius: 24px;
  isolation: isolate;

  background: #0e2a5d;
}

/* Both image layers */

.hotel-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  transform: scale(1);
}

/* Image currently visible */

.current-image {
  z-index: 1;
  opacity: 1;

  transition:
    opacity 1.2s ease,
    transform 7s ease;
}

/* Incoming image */

.next-image {
  z-index: 2;
  opacity: 0;

  transition:
    opacity 1.2s ease,
    transform 7s ease;
}

/* Used by JavaScript during the transition */

.hotel-card.is-changing .current-image {
  opacity: 0;
}

.hotel-card.is-changing .next-image {
  opacity: 1;
  transform: scale(1.06);
}

/* Dark gradient over the photos */

.hotel-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 42px;

  background:
    linear-gradient(
      to top,
      rgba(4, 20, 48, 0.95) 0%,
      rgba(4, 20, 48, 0.68) 38%,
      rgba(4, 20, 48, 0.18) 75%,
      rgba(4, 20, 48, 0.06) 100%
    );
}

.hotel-overlay h3 {
  margin: 0 0 18px;

  color: white;
  font-family: "Libre Caslon Text", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.05;
}

.hotel-overlay p {
  max-width: 390px;
  margin: 0;

  color: white;
  font-family: "Instrument Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

/* Tablet */

@media (max-width: 950px) {
  .hotel-types {
    padding: 70px 40px 90px;
  }

  .hotel-card-grid {
    grid-template-columns: 1fr;
  }

  .hotel-card {
    min-height: 470px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .hotel-types {
    padding: 60px 24px 75px;
  }

  .hotel-types > h2 {
    margin-bottom: 40px;
    font-size: 42px;
  }

  .hotel-card {
    min-height: 440px;
  }

  .hotel-overlay {
    padding: 30px;
  }

  .hotel-overlay h3 {
    font-size: 36px;
  }

  .hotel-overlay p {
    font-size: 16px;
  }
}

/* =========================================
   BENEFITS
========================================= */

.hotel-benefits {
  padding: 105px 80px;

  background: var(--cream);
}

.hotel-benefits-heading {
  max-width: 800px;
}

.hotel-benefits-heading .section-label {
  margin: 0 0 22px;

  color:  #2f7a00;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hotel-benefits-heading h2 {
  margin: 0;

  color: #153b7f;
  font-family: "Libre Caslon Text", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
}

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

  margin-top: 58px;
}

.hotel-benefit-card {
  min-height: 260px;
  box-sizing: border-box;

  padding: 38px 32px;

  border: 1px solid rgba(21, 59, 127, 0.18);
  background:var(--white);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hotel-benefit-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 18px 40px rgba(21, 59, 127, 0.08);
}

.hotel-benefit-card h3 {
  margin: 0 0 18px;

  color: #153b7f;
  font-family: "Libre Caslon Text", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}

.hotel-benefit-card p {
  margin: 0;

  color: #153b7f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  line-height: 1.75;
}


/* =========================================
   CONTACT
========================================= */

.hotel-contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 100px;

  padding: 110px 80px;

  background: #153b7f;
  width: 100%;
}

.hotel-contact-copy .section-label {
  margin: 0 0 22px;
  margin-left: 100px;
  color:  #2f7a00;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hotel-contact-copy h2 {
  margin: 0 0 28px;
  margin-left: 100px;
  color: #f9f6ef;
  font-family: "Libre Caslon Text", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.05;
}

.hotel-contact-copy > p:last-child {
  max-width: 580px;
  margin: 0;
  margin-left: 100px;
  color: rgba(249, 246, 239, 0.88);
  font-family: "Instrument Sans", sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.hotel-contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.hotel-contact-details h3 {
  margin: 0 0 18px;
  margin-left: 110px;
  color: #f9f6ef;
  font-family: "Libre Caslon Text", serif;
  font-size: 35px;
  font-weight: 400;
}

.hotel-contact-details a,
.hotel-contact-details p {
  margin: 0;
  margin-left: 120px;
  color: #f9f6ef;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-decoration: none;
}

.hotel-button{
    margin-left: 120px;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:290px;
    height:49px;

    background:#3E8E08;
    color:#ffffff;

    border:none;
    outline:none;

    font-family:"Instrument Sans", sans-serif;
    font-size:13px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;

    cursor:pointer;

    transition:all .3s ease;
}

.hotel-button:hover{
    background:#327306;
    transform:translateY(-2px);
}
.hotel-button::after {
    content: "";
}

.hotel-button:hover::after{
    transform:translateX(4px);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {

  background:var(--navy);
  width: 100%;
  text-align: center;
}

.site-footer p {
  margin-left: -1010px;
  margin-top: -30px;
  color:var(--cream);
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
}


/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media (max-width: 1000px) {
  .hotel-intro,
  .hotel-services,
  .hotel-contact {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hotel-featured-grid,
  .hotel-benefit-grid {
    grid-template-columns: 1fr;
  }

  .hotel-intro-image img {
    height: 500px;
  }

  .hotel-card {
    min-height: 520px;
  }
}


@media (max-width: 700px) {
  .hotel-hero {
    min-height: 480px;
    padding: 85px 24px;
  }

  .hotel-hero h1 {
    font-size: 64px;
  }

  .hotel-hero-text {
    font-size: 16px;
  }

  .hotel-intro,
  .hotel-services,
  .hotel-featured,
  .hotel-benefits,
  .hotel-contact {
    padding: 75px 24px;
  }

  .hotel-intro-image img {
    height: 390px;
  }

  .hotel-service-row {
    grid-template-columns: 45px 1fr;
  }

  .hotel-card {
    min-height: 430px;
  }

  .hotel-overlay {
    padding: 28px;
  }

  .hotel-overlay h3 {
    font-size: 33px;
  }

  .hotel-benefit-card {
    min-height: auto;
  }

  .hotel-contact-details h3 {
    font-size: 38px;
  }

  .site-footer {
    padding: 28px 24px;
  }
}

/* =========================================
   ABOUT US PAGE
========================================= */


.about-hero {
  min-height: 570px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 110px 60px;

  background: #f9f6ef;
  text-align: center;
}

.about-hero .page-eyebrow {
  margin: 0 0 24px;
  margin-left: 260px;
  color:var(--green);
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0;

  color: #153b7f;
  font-family: "Libre Caslon Text", serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 0.9;
}

.about-hero-text {
  max-width: 720px;
  margin: 34px auto 0;

  color: #153b7f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}
/* =========================================
   OUR STORY — FULL-WIDTH IMAGE
========================================= */

.about-story {
  padding: 0 80px 110px;
  background: #f9f6ef;
}

.about-story-image {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
}

.about-story-image img {
  display: block;
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
}

.about-story-copy {
  width: 100%;
  max-width: 1400px;
  margin: 70px auto 0;
}

.about-story-copy .section-label {
  margin: 0 0 22px;

  color:var(--green);
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.about-story-copy h2 {
  max-width: 900px;
  margin: 0 0 42px;

  color: #153b7f;
  font-family: "Libre Caslon Text", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
}

.about-story-paragraphs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.about-story-paragraphs p {
  margin: 0;

  color: #153b7f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   MISSION AND VISION
========================================= */

.about-purpose {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  background:var(--navy);
  width: 100%;
}

.about-purpose-card {
  min-height: 440px;
  box-sizing: border-box;

  padding: 80px;

  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.about-purpose-card:last-child {
  border-right: none;
}

.about-purpose-number {
  display: block;

  margin-bottom: 55px;

  color: #2f7a00;
  font-family: "Instrument Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
}

.about-purpose-card .section-label {
  margin: 0 0 22px;

  color: #2f7a00;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.about-purpose-card h2 {
  max-width: 600px;
  margin: 0 0 28px;

  color: #f9f6ef;
  font-family: "Libre Caslon Text", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.08;
}

.about-purpose-card p:not(.section-label) {
  max-width: 620px;
  margin: 0;

  color: rgba(249, 246, 239, 0.88);
  font-family: "Instrument Sans", sans-serif;
  font-size: 17px;
  line-height: 1.75;
}
/* =========================================
   TEAM INTRO
========================================= */

.team-heading-section{
    max-width: 100%px;
    margin: 0 auto 90px;
    padding: 30px 70px;
}

/* MEET OUR TEAM */
.team-heading-section h2{
    color: var(--navy);
    font-family: "Libre Caslon Text", serif;
    font-size: 62px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
    max-width: 100%;

    margin: 0px;
    margin-left: -7px;
    margin-top:30px;
  
}
.team-heading-section .section-label{
    color: var(--green);
    
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;

    margin: 0;
    margin-left: 450px;
    margin-top: 40px;
}


/* Description */

.team-heading-text{
    color: var(--navy);

    font-family: "Instrument Sans", sans-serif;
    font-size: 19px;
    line-height: 1.8;

    max-width: 780px;

    margin-top: 30px;
    margin-left: 250px;
}
/* =========================================
   TEAM SECTION — 9 EMPLOYEES
   3 CARDS PER ROW
========================================= */

.team-section {
  padding: 10px 80px;
  background:var(--cream);
  margin-top: 0px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 26px;

  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.team-card {
  width: 100%;
  overflow: hidden;

  background: #f9f6ef;
  border-radius: 16px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(21, 59, 127, 0.1);
}

.team-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.03);
}

.team-card-copy {
  padding: 22px 22px 26px;
}

.team-card-copy h3 {
  margin: 0 0 8px;
  margin-left: 0px;
  color: var(--navy);
  font-family: "Libre Caslon Text", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.1;
}

.team-card-copy .team-title {
  margin: 0 50px 15px;

  color:var(--green);
  font-family: "Instrument Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.team-card-copy p:last-child {
  margin: 0;

  color: var(--green);
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  line-height: 1.65;
}
/* =========================================
   WHY CHOOSE US / BENEFITS SECTION
========================================= */

.about-values{
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;
    padding: 120px 80px;

    background: var(--cream);
}

/* Top heading area */

.about-values-heading{
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    align-items: start;

    margin-bottom: 65px;
}

.about-values-heading .section-label{
    margin: 0;

    color: var(--green);
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.about-values-heading h2{
    max-width: 520px;
    margin: 0;

    color: var(--navy);
    font-family: "Libre Caslon Text", serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;
    line-height: 1.02;
}

/* Benefits list */

.about-values-grid{
    border-top: 1px solid rgba(21, 59, 127, 0.18);
}

.about-value-card{
    display: grid;
    grid-template-columns: 90px 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;

    padding: 42px 0;

    border-bottom: 1px solid rgba(21, 59, 127, 0.18);
}

/* Number */

.about-value-card > span{
    padding-top: 7px;

    color: var(--green);
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
}

/* Benefit title */

.about-value-card h3{
    margin: 0;

    color: var(--navy);
    font-family: "Libre Caslon Text", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.15;
}

/* Benefit description */

.about-value-card p{
    max-width: 650px;
    margin: 0;

    color: var(--navy);
    font-family: "Instrument Sans", sans-serif;
    font-size: 17px;
    line-height: 1.75;
}

/* Hover effect */

.about-value-card{
    transition:
        background-color 0.25s ease,
        padding-left 0.25s ease,
        padding-right 0.25s ease;
}

.about-value-card:hover{
    padding-left: 22px;
    padding-right: 22px;

    background: rgba(47, 122, 0, 0.05);
}
.footer-accreditations{
    width:100%;
    padding:65px 8% 70px;

    background:var(--cream);
    border-top:1px solid #ddd;

    text-align:center;
}

.footer-accreditations h3{
    margin:0 0 38px;

    color:#153B7F;

    font-family:"Libre Caslon Display", serif;
    font-size:42px;
    font-weight:700;
    line-height:1.2;
}

.footer-accreditation-list{
    width:100%;
    max-width:850px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    column-gap:70px;
    row-gap:20px;

    text-align:left;
}

.accreditation-item{
    display:grid;
    grid-template-columns:22px 1fr;
    align-items:start;
    column-gap:10px;
}

.accreditation-check{
    display:block;

    width:22px;

    color:#2d2d2d;

    font-family:"Instrument Sans", sans-serif;
    font-size:18px;
    font-weight:700;
    line-height:1.6;

    text-align:center;
}

.accreditation-item p{
    margin:0;

    color:#2d2d2d;

    font-family:"Instrument Sans", sans-serif;
    font-size:18px;
    line-height:1.6;
}
.accreditation-item:last-child{
    grid-column:1;
}
/* =========================================
   ABOUT PAGE CONTACT SECTION
========================================= */

.about-contact{
    width: 100%;
    max-width: none;

    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: 90px;

    padding: 115px max(70px, calc((100vw - 1220px) / 2));

    background: var(--navy);
    color: var(--cream);
}


/* LEFT SIDE */

.about-contact-copy{
    max-width: 650px;
}

.about-contact-copy .section-label{
    margin: 0 0 22px;

    color: var(--green);
    font-family: "Instrument Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.about-contact-copy h2{
    margin: 0 0 28px;

    color: var(--cream);
    font-family: "Libre Caslon Text", serif;
    font-size: clamp(44px, 4.5vw, 66px);
    font-weight: 400;
    line-height: 1.03;
}

.about-contact-description{
    max-width: 620px;
    margin: 0;

    color: rgba(249, 246, 239, 0.88);
    font-family: "Instrument Sans", sans-serif;
    font-size: 17px;
    line-height: 1.75;
}


/* RIGHT SIDE */

.about-contact-details{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;

    width: 100%;
    max-width: 460px;

    justify-self: end;
}

.about-contact-details h3{
    margin: 0 0 25px;

    color: var(--cream);
    font-family: "Libre Caslon Text", serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.1;
}

.about-contact-details a,
.about-contact-details p{
    margin: 0;

    color: var(--cream);
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-decoration: none;
}

.about-contact-details > a:not(.about-contact-button):hover{
    color: var(--light-gold);
}


/* BUTTON */

.about-contact-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: fit-content;
    margin-top: 18px;
    padding: 16px 27px;

    background: var(--green);
    border: 1px solid var(--green);

    color: white !important;
    font-family: "Instrument Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.about-contact-button::after{
    content: "";
}
/* =========================================
   FOOTER
========================================= */
.about-contact-footer {
  width: 100%;
 
  background: var(--dark-navy);
  color: var(--cream);
}

.about-contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.about-contact-content p {
  margin: 0;

  font-size: 14px;
}

.about-contact-content a {
  color: var(--cream);

  font-size: 10px;
  text-decoration: none;
}

.about-contact a:hover {
  color: var(--light-green);
}

.about-contact-footer {

  background:var(--navy);
  width: 100%;
  text-align: center;
}

.about-contact-footer p {
  margin-left: -950px;
  margin-top: -30px;
  color:var(--cream);
  font-family: "Instrument Sans", sans-serif;
  font-size: 14spx;
}

/* =========================================
   CONTACT US PAGE
========================================= */


/* =========================================
   HERO
========================================= */

.contact-hero {
  min-height: 570px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 110px 60px;

  background: #f9f6ef;
  text-align: center;
}

.contact-hero .page-eyebrow {
  margin: 0 0 24px;
  margin-left: 320px;
  color: #2f7a00;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0;

  color: #153b7f;
  font-family: "Libre Caslon Text", serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 0.9;
}

.contact-hero-text {
  max-width: 720px;
  margin: 34px auto 0;

  color: #153b7f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}


/* =========================================
   CONTACT INFORMATION CARDS
========================================= */

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  padding: 0 80px 105px;

  background:var(--cream);
}

.contact-option {
  min-height: 330px;
  box-sizing: border-box;

  padding: 42px 36px;

  border-top: 1px solid rgba(21, 59, 127, 0.25);
  border-right: 1px solid rgba(21, 59, 127, 0.2);
  border-bottom: 1px solid rgba(21, 59, 127, 0.25);

  background:var(--cream);
}

.contact-card:first-child {
  border-left: 1px solid rgba(21, 59, 127, 0.2);
}

.contact-card span {
  display: block;

  margin-bottom: 65px;

  color: #4f8b5f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}

.contact-card h3 {
  margin: 0 0 24px;

  color: #153b7f;
  font-family: "Libre Caslon Text", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
}

.contact-card p {
  margin: 0 0 16px;

  color: #153b7f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}


/* =========================================
   CONTACT FORM SECTION
========================================= */

.contact-form-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 100px;

  padding: 110px 80px;

  background: #153b7f;
}

.contact-form-copy {
  position: sticky;
  top: 150px;
}

.contact-form-copy .section-label {
  margin: 0 0 22px;

  color: #75b583;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.contact-form-copy h2 {
  margin: 0 0 28px;

  color: #f9f6ef;
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.98;
}

.contact-form-copy > p:last-child {
  max-width: 430px;
  margin: 0;

  color: rgba(249, 246, 239, 0.86);
  font-family: "Instrument Sans", sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;

  padding: 18px 4px;

  border: none;
  border-bottom: 1px solid rgba(249, 246, 239, 0.5);
  border-radius: 0;
  outline: none;

  background: transparent;
  color: #f9f6ef;

  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;

  transition: border-color 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(249, 246, 239, 0.68);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #75b583;
}

.contact-form textarea {
  grid-column: 1 / -1;

  min-height: 170px;
  resize: vertical;
}

.contact-form button {
  grid-column: 1 / -1;

  width: fit-content;
  margin-top: 14px;
  padding: 17px 28px;

  border: 1px solid #75b583;

  background: #75b583;
  color: #ffffff;

  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);

  background: transparent;
  color: #75b583;
}


/* =========================================
   OFFICE SECTION
========================================= */

/* =========================================
   LOCATION SECTION
========================================= */

.location-section {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;

    padding: 80px max(40px, calc((100vw - 1220px) / 2)) 35px;

    background: var(--cream);
}


/* =========================================
   LEFT CONTENT WRAPPER
========================================= */

.location-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    /* Move the entire left group */
    transform: translateX(0);
}


/* =========================================
   VISIT OUR OFFICE
========================================= */

.location-section .section-label {
    margin: 0 0 10px;

    color: var(--green);
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;

    /* Move only VISIT OUR OFFICE */
    transform: translate(0, 0);
}


/* =========================================
   FIND US
========================================= */

.location-title {
    width: 250px;

    margin: 0px 0 20px;
    padding-bottom: 5px;

    border-bottom: 2px solid var(--green);

    color: var(--navy);
    font-family: "Libre Caslon Text", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1;

    /* Move only FIND US */
    transform: translate(0, 0);
}


/* =========================================
   ADDRESS
========================================= */

.location-address {
    max-width: 420px;
    margin: 0;

    color: var(--navy);
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;

    /* Move only the address */
    transform: translate(0, 0);
}


/* =========================================
   MAP
========================================= */

.location-map {
    width: 100%;

    /* Move the entire map wrapper */
    transform: translate(0, 0);
}

.location-map img {
    display: block;
    margin-top: 10px;
    margin-bottom: -10px;
    width: 100%;
    height: 575px;

    object-fit: cover;
    border-radius: 30px;
}



/* =========================================
   SOCIAL MEDIA
========================================= */

.social-section {
  padding: 105px 80px;

  background: var(--cream);
  text-align: center;
}

.social-section .section-label {
  margin: 0 0 22px;

  color: #4f8b5f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.social-section h2 {
  margin: 0 0 55px;

  color: #153b7f;
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: 155px;
  padding: 17px 24px;

  border: 1px solid rgba(21, 59, 127, 0.35);

  color: #153b7f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.social-links a:hover {
  border-color: #153b7f;
  background: #153b7f;
  color: #ffffff;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}

.social-button {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 140px;
    height: 50px;

    border: 1px solid #d8d4ca;
    background:var(--cream);

    color: #153B7F;
    text-decoration: none;

    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;

    transition: all 0.3s ease;
}

.social-button:hover {
    background: #153B7F;
    color: var(--cream);
}

.faq-section {
  background: #1f478b;
  width: 100%;
  color: #f9f6ef;
  padding: 90px 6%;
}

.faq-header {
  max-width: 760px;
  margin-bottom: 55px;
}

.faq-header > p {
  margin: 0 0 16px;
  color: #75b86c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
}

.faq-header h2 {
  margin: 0;
  font-family: "Libre Caslon Text", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.05;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(255,255,255,0.25);
    margin-top: 0;
}

.faq-item {
  position: relative;
  min-height: 230px;
  padding: 42px 42px 46px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.faq-number {
  display: block;
  margin-bottom: 30px;
  color: #75b86c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
}

.faq-item h3 {
  margin: 0 0 18px;
  max-width: 520px;
  font-family: "Libre Caslon Text", serif;
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1.15;
}

.faq-item p {
  margin: 0;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;

}
.contact-options {
  width: min(1180px, 88%);
  margin: 80px auto 130px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background: #ffffff;
  border-top: 1px solid #d7dce5;
  border-left: 1px solid #d7dce5;
}

.contact-option {
  min-height: 260px;
  padding: 36px 30px;

  border-right: 1px solid #d7dce5;
  border-bottom: 1px solid #d7dce5;
}

.contact-number {
  display: block;
  margin-bottom: 40px;

  color: #3e8e08;
  font-family: "Instrument Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}

.contact-option h3 {
  margin: 0 0 22px;

  color: #153b7f;
  font-family: "Libre Caslon Text", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
}

.contact-option-text p,
.social-description {
  margin: 0 0 18px;

  color: #153b7f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.contact-option a {
  color: #153b7f;
  text-decoration: none;
}

.contact-option a:hover {
  text-decoration: underline;
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
}

.contact-social-links a {
  min-width: 130px;
  padding: 12px 18px;

  border: 1px solid #cfd5df;

  color: #153b7f;
  text-align: center;
  text-decoration: none;

  font-family: "Instrument Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.contact-social-links a:hover {
  background: #153b7f;
  border-color: #153b7f;
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 1000px) {
  .contact-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .contact-options {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    margin: 55px auto 85px;
  }

  .contact-option {
    min-height: auto;
    padding: 32px 25px;
  }

  .contact-number {
    margin-bottom: 24px;
  }

  .contact-social-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
/* =========================
   HOW IT WORKS SECTION
========================= */

.tour-features-section {
  width: min(1200px, 88%);
  margin: 120px auto;
  color: #153b7f;
}

.tour-features-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 65px;
}

.tour-features-heading .section-label {
  margin: 0;
  color: #3e8e08;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 5px;
}

.tour-features-heading h2 {
  margin: 0;
  margin-left:-100px;
  color: #153b7f;
  font-family: "Libre Caslon Text", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.05;
}

.tour-feature-list {
  border-top: 1px solid #d8d4ca;
}

.tour-feature-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 45px;
  align-items: center;
  min-height: 180px;
  padding: 35px 0;
  border-bottom: 1px solid #d8d4ca;
  transition:
    padding-left 0.3s ease,
    background-color 0.3s ease;
}

.tour-feature-item:hover {
  padding-left: 20px;
  background: rgba(21, 59, 127, 0.03);
}

.tour-feature-item > span {
  color: #3e8e08;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}

.tour-feature-item h3 {
  margin: 0 0 12px;
  color: #153b7f;
  font-family: "Libre Caslon Text", serif;
  font-size: 10x;
  font-weight: 400;
  line-height: 1.15;
}

.tour-feature-item p {
  max-width: 700px;
  margin: 0;
  color: #153b7f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

/* Tablet */

@media (max-width: 850px) {
  .tour-features-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .tour-feature-item {
    grid-template-columns: 55px 1fr;
    gap: 25px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .tour-features-section {
    width: calc(100% - 40px);
    margin: 80px auto;
  }

  .tour-features-heading {
    margin-bottom: 45px;
  }

  .tour-feature-item {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 30px 0;
  }

  .tour-feature-item:hover {
    padding-left: 0;
  }

  .tour-feature-item h3 {
    font-size: 28px;
  }
}

/* =========================
   CURATED TOURS INTRO
========================= */

.tour-intro-section {
  width: min(1240px, 88%);
  margin: 110px auto 140px;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.tour-intro-copy {
  max-width: 610px;
}

.tour-intro-copy .section-label {
  margin: -90px 0 22px;
  margin-left: -145px;
  color: #3e8e08;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
}

.tour-intro-copy h2 {
  margin: 0 0 34px;
  margin-left:-150px;
  color: #153b7f;
  font-family: "Libre Caslon Text", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.02;
}

.tour-intro-copy > p:not(.section-label) {
  margin: 0 0 24px;
  margin-left: -150px;
  color: #153b7f;
  font-family: "Instrument Sans", sans-serif;
  font-size: 17px;
  line-height: 1.85;
}

.tour-intro-image {
    width: 100%;
    margin-left: 150px;
    margin-top: -30px;
    height: 500px;          /* controls height */
    overflow: hidden;
    border-radius: 18px;
}


.tour-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* crops instead of stretching */
    display: block;
}

/* Tablet */

@media (max-width: 950px) {
  .tour-intro-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .tour-intro-copy {
    max-width: 700px;
  }

  .tour-intro-image img {
    height: 500px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .tour-intro-section {
    width: calc(100% - 40px);
    margin: 75px auto 95px;
    gap: 40px;
  }

  .tour-intro-copy .section-label {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .tour-intro-copy h2 {
    margin-bottom: 25px;
    font-size: 48px;
  }

  .tour-intro-copy > p:not(.section-label) {
    font-size: 15px;
    line-height: 1.75;
  }

  .tour-intro-image img {
    height: 380px;
  }
}

.site-header,
.navbar,
.navigation,
.dropdown {
  position: relative;
  z-index: 1000;
}

.dropdown-content {
  z-index: 1100;
}

.visa-hero {
  position: relative;
  z-index: 1;
  padding-top: 150px;
}

/* ===== ALL HEADINGS ===== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Libre Caslon Display", serif;
}
/* =========================================
   CURATED TOURS IMAGE SLIDESHOW
========================================= */

.curated-slideshow{
    position: relative;
    margin-left: 150px;
    width: 100%;
    height: 500px;

    overflow: hidden;
    border-radius: 22px;

    background: #d8d4ca;
}

.curated-slide{
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transform: scale(1);

    transition:
        opacity 1.2s ease,
        transform 7s ease;
}

.curated-slide.visible{
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 900px){
    .curated-slideshow{
        height: 500px;
    }
}

@media (max-width: 600px){
    .curated-slideshow{
        height: 400px;
    }
}
/* =========================================
   SHARED CONTACT SECTION
========================================= */

.shared-contact-section{
    width: 100%;
    max-width: none;

    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: 120px;

    min-height: 600px;

    padding:
        110px
        max(80px, calc((100vw - 1220px) / 2));

    background: var(--navy);
    color: var(--cream);
}


/* LEFT SIDE */

.shared-contact-copy{
    width: 100%;
    max-width: 650px;

    justify-self: start;
}

.shared-contact-label{
    margin: 10px 0px 20px;

    color: var(--green);
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 6px;
    line-height: 1;
    text-transform: uppercase;
}

.shared-contact-copy h2{
    max-width: 650px;
    
    color: var(--cream);
    font-family: "Libre Caslon Text", serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.03;
}

.shared-contact-description{
    margin-top: 30px;     /* Increase this value to move it lower */
    margin-bottom: 0;

    color: var(--cream);
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
}
/* RIGHT SIDE */

.shared-contact-details{
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    max-width: 460px;

    justify-self: end;

    gap: 14px;
}

.shared-contact-details h3{
    margin: 0 0 28px;
    margin-left: 145px;
    color: var(--cream);
    font-family: "Libre Caslon Text", serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.1;
}

.shared-contact-details a,
.shared-contact-details p{
    margin: 0;
    margin-left:165px;
    color: var(--cream);
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-decoration: none;
}

.shared-contact-details > a:not(.shared-contact-button):hover{
    color: var(--light-gold);
}


#tour-type-field{
    display:none;
}
.educational-slideshow{
    position: relative;
    width: 600px;
    height: 500px;

    overflow: hidden;
    border-radius: 22px;

    background: #d8d4ca;

    transform: translateX(150px);   /* Move right */
}

.educational-slide{
    position:absolute;
    inset:0;
    
    width:1000;
    height:100%;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    opacity:0;
    transform:scale(1);

    transition:
        opacity 1.2s ease,
        transform 7s ease;
}

.educational-slide.visible{
    opacity:1;
    transform:scale(1.05);
}

/* =========================
   PHONE
========================= */

@media (max-width: 600px){

    body{
        overflow-x: hidden;
    }

    .site-header{
        position: relative;
    }

    .navbar{
        min-height: auto;
        padding: 18px 20px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .logo{
        margin-left: 0;
    }

    .logo img{
        width: 80px;
        height: auto;
    }

    .nav-links{
        position: static;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;

        transform: none;
    }

    .nav-item,
    .dropbtn{
        width: auto;
        font-size: 15px;
    }

    .dropdown{
        width: 100%;
    }

    .dropdown-content{
        position: static;

        width: 100%;
        min-width: 0;

        transform: none;
        box-shadow: none;
    }

    section{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero{
        min-height: auto;
        padding: 70px 20px;
    }

    .hero-title{
        width: 100%;
        text-align: center;
    }

    .hero-title h1,
    .hero h1{
        font-size: 52px;
        line-height: 1;
    }

    .hero-title h2,
    .hero h2{
        font-size: 18px;
        letter-spacing: 4px;
    }

    .hero-title h3,
    .hero h3{
        font-size: 13px;
        letter-spacing: 4px;
    }

    .our-story,
    .journey-section,
    .shared-contact-section,
    .visa-intro,
    .ticket-intro,
    .tour-intro-section{
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .story-content,
    .story-carousel,
    .journey-left,
    .journey-right,
    .journey-form,
    .shared-contact-copy,
    .shared-contact-details,
    .visa-image,
    .ticket-image,
    .tour-intro-copy,
    .tour-intro-image,
    .educational-slideshow{
        width: 100%;
        max-width: 100%;

        margin-left: 0;
        margin-right: 0;

        left: auto;
        right: auto;

        transform: none;
    }

    .story-content .section-label,
    .story-content h2,
    .story-text,
    .journey-label,
    .inquiries-tag{
        margin-left: 0;
        transform: none;
    }

    .journey-left h2{
        position: static;
        left: auto;
        top: auto;
    }

    .story-carousel img,
    .visa-image img,
    .ticket-image img,
    .tour-intro-image img{
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .carousel-track{
        height: 300px;
    }

    .journey-left h2,
    .shared-contact-copy h2,
    .visa-hero h1,
    .ticket-hero h1,
    .tour-page-hero h1{
        font-size: 42px;
        line-height: 1.05;
    }

    .phone-input{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    input,
    select,
    textarea{
        width: 100%;
        box-sizing: border-box;
    }

    .journey-button{
        width: 100%;
        max-width: none;
    }

    .shared-contact-section{
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .team-grid{
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .team-member,
    .team-card{
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .team-member img,
    .team-card img{
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

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

    footer,
    .index-footer,
    .visa-footer,
    .ticket-footer{
        width: 100%;

        margin-left: 0;
        transform: none;

        padding: 25px 20px;
        box-sizing: border-box;
    }

    .index-footer p,
    .ticket-footer p,
    .visa-footer p{
        margin-left: 0;
        transform: none;
    }
}
/* =========================
   MOBILE NAV DROPDOWNS
========================= */

@media (max-width: 600px){

    .nav-links{
        position: static !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        transform: none !important;
    }

    .nav-item,
    .dropbtn{
        width: auto;
        margin: 0;
        padding: 8px 0;

        color: var(--navy) !important;

        font-family: "Libre Caslon Text", serif;
        font-size: 15px;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: left;
    }

    .dropdown{
        position: relative;
        width: 100%;
    }

    .dropdown-content{
        display: none;

        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: 100%;

        margin: 8px 0 0;
        padding: 6px 0 6px 16px;

        background: transparent;
        border: none;
        box-shadow: none;

        transform: none !important;
        opacity: 1;
        visibility: visible;

        box-sizing: border-box;
        overflow: visible;
    }

    .dropdown.open .dropdown-content{
        display: block;
    }

    .dropdown-content a{
        display: block;

        width: 100%;
        margin: 0;
        padding: 10px 0;

        color: var(--navy) !important;

        font-size: 14px;
        line-height: 1.4;
        text-align: left;
        white-space: normal;

        transform: none !important;
        box-sizing: border-box;
    }

    .dropdown:hover .dropdown-content{
        display: none;
    }

    .dropdown.open:hover .dropdown-content{
        display: block;
    }
}
/* ==================================================
   FINAL MOBILE LAYOUT FIXES
================================================== */

@media (max-width: 600px){

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

    *{
        box-sizing: border-box;
    }

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

    /* Reset desktop positioning */
    .story-content,
    .story-carousel,
    .journey-left,
    .journey-right,
    .journey-form,
    .visa-text,
    .visa-intro-copy,
    .ticket-intro-text,
    .tour-intro-copy,
    .tour-intro-image,
    .shared-contact-copy,
    .shared-contact-details,
    .hotel-contact-details,
    .ticket-contact-details,
    .location-copy,
    .location-map{
        margin-left: 0 !important;
        margin-right: 0 !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        transform: none !important;
    }

    /* Main section spacing */
    .our-story,
    .journey-section,
    .visa-intro,
    .ticket-intro,
    .tour-intro-section,
    .shared-contact-section,
    .hotel-intro,
    .hotel-services,
    .hotel-contact,
    .contact-info,
    .location-section{
        width: 100%;
        max-width: 100%;

        padding-left: 20px;
        padding-right: 20px;
    }

    /* Headings */
    h1{
        overflow-wrap: break-word;
    }

    .about-hero h1,
    .contact-hero h1,
    .hotel-hero h1,
    .visa-hero h1,
    .ticket-hero h1,
    .tour-page-hero h1{
        font-size: 48px;
        line-height: 1;
    }

    .story-content h2,
    .journey-left h2,
    .shared-contact-copy h2,
    .tour-intro-copy h2{
        font-size: 38px;
        line-height: 1.08;
    }

    /* Home page */
    .our-story{
        grid-template-columns: 1fr;
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .story-content{
        max-width: 100%;
    }

    .story-carousel{
        width: 100%;
    }

    .carousel-track{
        height: 280px;
    }

    .journey-section{
        grid-template-columns: 1fr;
        padding-top: 65px;
        padding-bottom: 65px;
    }

    /* Forms */
    .journey-form{
        display: grid;
        grid-template-columns: 1fr;
    }

    .form-field,
    .form-message{
        width: 100%;
        grid-column: auto;
    }

    input,
    select,
    textarea{
        min-width: 0;
        font-size: 16px;
    }

    /* Prevent iPhone zoom on form fields */
    input,
    select,
    textarea{
        font-size: 16px;
    }

    /* Service pages */
    .visa-intro,
    .ticket-intro,
    .hotel-intro,
    .tour-intro-section{
        grid-template-columns: 1fr;
    }

    .visa-image,
    .ticket-image,
    .tour-intro-image,
    .hotel-intro-image,
    .educational-slideshow,
    .curated-slideshow{
        width: 100% !important;
        max-width: 100% !important;
        height: 320px;
    }

    .visa-image img,
    .ticket-image img,
    .tour-intro-image img,
    .hotel-intro-image img{
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 18px;
    }

    /* Cards and grids */
    .team-grid,
    .contact-info,
    .partner-list,
    .tour-audience-grid,
    .hotel-featured-grid,
    .hotel-benefit-grid,
    .process-grid,
    .ticket-process-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-card,
    .team-member{
        max-width: 100%;
    }

    .team-card img,
    .team-member img{
        height: 420px;
        object-fit: cover;
    }

    /* Contact blocks */
    .shared-contact-section,
    .hotel-contact,
    .ticket-contact,
    .about-contact{
        grid-template-columns: 1fr;
    }

    .shared-contact-details h3,
    .shared-contact-details a,
    .shared-contact-details p,
    .hotel-contact-details h3,
    .hotel-contact-details a,
    .hotel-contact-details p{
        margin-left: 0 !important;
    }

    .shared-contact-button,
    .journey-button,
    .hotel-button,
    .ticket-contact-button,
    .about-contact-button{
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
    }

    /* Accreditation section */
    .footer-accreditations{
        padding: 55px 20px;
    }

    .footer-accreditations h3{
        font-size: 34px;
        text-align: center;
    }

    .footer-accreditation-list{
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Footer */
    footer,
    .site-footer,
    .index-footer,
    .visa-footer,
    .ticket-footer,
    .about-contact-footer{
        width: 100%;
        padding: 24px 20px;
        margin: 0;
        transform: none;
    }

    footer p,
    .site-footer p,
    .index-footer p,
    .visa-footer p,
    .ticket-footer p,
    .about-contact-footer p{
        margin: 0 !important;
        transform: none !important;
        text-align: center;
    }
}

/* =========================================
   VISA ASSISTANCE — MOBILE FIXES
========================================= */

@media (max-width: 600px){

    /* Hero */

    .visa-hero{
        width: 100%;
        max-width: 100%;

        margin: 0;
        padding: 75px 20px 80px;

        text-align: center;
    }

    .visa-hero .page-eyebrow{
        width: 100%;
        max-width: 280px;

        margin: 0 auto 28px;

        transform: none !important;

        font-size: 14px;
        line-height: 1.45;
        letter-spacing: 4px;
        text-align: center;
    }

    .visa-hero h1{
        width: 100%;

        margin: 0 0 35px;

        font-size: 54px;
        line-height: 0.95;
    }

    .visa-hero-text{
        width: 100%;
        max-width: 340px;

        margin: 0 auto;

        font-size: 18px;
        line-height: 1.75;
        text-align: center;
    }


    /* Introduction */

    .visa-intro{
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;

        padding: 65px 20px;

        margin: 0;

        overflow: hidden;
    }

    .visa-text,
    .visa-intro-heading,
    .visa-intro-copy{
        width: 100%;
        max-width: 100%;

        margin: 0 !important;
        padding: 0;

        transform: none !important;
    }

    .visa-intro .section-label{
        margin: 0 0 28px;

        transform: none !important;

        font-size: 14px;
        letter-spacing: 4px;
    }

    .visa-intro-heading h2,
    .visa-text h2{
        width: 100%;
        max-width: 100%;

        margin: 0 0 35px;

        font-family: "Libre Caslon Text", serif;
        font-size: 43px;
        line-height: 1.05;
    }

    .visa-intro-copy p{
        width: 100%;

        margin: 0 0 25px;

        font-size: 18px;
        line-height: 1.8;
    }

    .visa-image{
        width: 100%;
        max-width: 100%;

        margin: 20px 0 0 !important;

        transform: none !important;
    }

    .visa-image img{
        width: 100%;
        height: 300px;

        display: block;

        object-fit: cover;
        border-radius: 18px;
    }


    /* Visa service rows */

    .visa-services{
        width: 100%;

        padding: 20px 20px 65px;

        overflow: hidden;
    }

    .visa-service-row{
        width: 100%;

        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;

        padding: 35px 0;
    }

    .visa-number{
        width: auto;

        margin: 0;
        padding-top: 6px;

        font-size: 13px;
    }

    .visa-service-content{
        width: 100%;
        min-width: 0;

        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .visa-service-content h3{
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-size: 28px;
        line-height: 1.08;

        overflow-wrap: break-word;
    }

    .visa-service-content p{
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-size: 17px;
        line-height: 1.7;
    }


    /* Our Process */

    .visa-process{
        width: 100%;

        padding: 65px 20px;

        margin: 0;

        overflow: hidden;
    }

    .visa-process-heading{
        width: 100%;

        display: block;

        margin: 0 0 40px;

        transform: none !important;
    }

    .visa-process-heading .section-label{
        width: 100%;

        margin: 0 0 22px;

        transform: none !important;

        font-size: 14px;
        letter-spacing: 4px;
        text-align: left;
    }

    .visa-process-heading h2{
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-size: 42px;
        line-height: 1.05;

        overflow-wrap: break-word;
    }

    .process-grid{
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;

        margin: 0;

        border-top: 1px solid #d8d4ca;
        border-bottom: 1px solid #d8d4ca;
    }

    .process-item{
        width: 100%;
        min-width: 0;
        min-height: 0;

        display: grid;
        grid-template-columns: 35px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 14px;

        padding: 32px 0;

        border-right: none;
        border-bottom: 1px solid #d8d4ca;

        overflow: hidden;
    }

    .process-item:last-child{
        border-bottom: none;
    }

    .process-item span{
        grid-column: 1;
        grid-row: 1;

        width: auto;

        margin: 5px 0 0;
        padding: 0;

        font-size: 13px;
        letter-spacing: 2px;
    }

    .process-item h3{
        grid-column: 2;
        grid-row: 1;

        width: 100%;
        min-width: 0;
        max-width: 100%;

        margin: 0;

        font-size: 27px;
        line-height: 1.08;

        overflow-wrap: anywhere;
    }

    .process-item p{
        grid-column: 2;
        grid-row: 2;

        width: 100%;
        min-width: 0;
        max-width: 100%;

        margin: 0;

        font-size: 16px;
        line-height: 1.7;

        overflow-wrap: anywhere;
    }


    /* Visa note */

    .visa-note{
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;

        padding: 55px 20px;

        margin: 0;
    }

    .visa-note .section-label{
        margin: 0;
        transform: none !important;
    }

    .visa-note > p:last-child{
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-size: 16px;
        line-height: 1.7;
    }


    /* Contact section */

    .visa-contact{
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;
        gap: 38px;

        padding: 65px 20px;

        margin: 0;

        overflow: hidden;
    }

    .visa-contact-copy,
    .visa-contact-details{
        width: 100%;
        max-width: 100%;

        margin: 0 !important;

        transform: none !important;
    }

    .visa-contact-copy h2{
        width: 100%;

        margin: 20px 0 0;

        font-size: 42px;
        line-height: 1.05;
    }

    .visa-contact-title{
        margin: 0 0 28px !important;

        font-size: 42px;
    }

    .visa-contact-details a,
    .visa-contact-details p{
        width: 100%;

        margin-left: 0 !important;

        overflow-wrap: anywhere;
    }

    .visa-contact-button{
        width: 100%;
        max-width: 100%;

        margin-left: 0 !important;

        justify-content: center;
        text-align: center;
    }
}
/* =========================================
   AIRLINE TICKETING PAGE — MOBILE
========================================= */

@media (max-width: 600px){

    /* Prevent sideways overflow */

    .ticket-hero,
    .ticket-intro,
    .ticket-benefits,
    .ticket-process,
    .airline-partners,
    .ticket-contact{
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }


    /* =========================
       HERO
    ========================= */

    .ticket-hero{
        min-height: auto;
        margin: 0;
        padding: 75px 20px 80px;
        text-align: center;
    }

    .ticket-hero .page-eyebrow,
    .ticket-eyebrow{
        width: 100%;
        max-width: 280px;

        margin: 0 auto 28px !important;

        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 4px;
        text-align: center;

        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .ticket-hero h1,
    .ticket-title{
        width: 100%;
        max-width: 100%;

        margin: 0 0 32px !important;

        font-size: 47px;
        line-height: 0.98;
        text-align: center;

        overflow-wrap: normal;
        word-break: normal;

        left: auto !important;
        transform: none !important;
    }

    .ticket-hero-text{
        width: 100%;
        max-width: 330px;

        margin: 0 auto !important;

        font-size: 18px;
        line-height: 1.75;
        text-align: center;

        left: auto !important;
        transform: none !important;
    }


    /* =========================
       INTRODUCTION
    ========================= */

    .ticket-intro{
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;

        margin: 0;
        padding: 65px 20px;
    }

    .ticket-intro-text,
    .ticket-intro-copy,
    .ticket-intro-heading,
    .ticket-image{
        width: 100%;
        max-width: 100%;

        margin: 0 !important;

        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .ticket-intro .section-label{
        width: 100%;

        margin: 0 0 24px !important;

        font-size: 14px;
        letter-spacing: 4px;

        transform: none !important;
    }

    .ticket-intro h2{
        width: 100%;
        max-width: 100%;

        margin: 0 0 30px !important;

        font-size: 42px;
        line-height: 1.05;

        overflow-wrap: normal;
        word-break: normal;

        transform: none !important;
    }

    .ticket-intro p{
        width: 100%;
        max-width: 100%;

        margin: 0 0 22px !important;

        font-size: 17px;
        line-height: 1.75;

        transform: none !important;
    }

    .ticket-image img{
        display: block;

        width: 100%;
        height: 300px;

        object-fit: cover;
        border-radius: 18px;
    }


    /* =========================
       BENEFIT ROWS
    ========================= */

    .ticket-benefits{
        padding: 25px 20px 65px;
    }

    .ticket-benefit-row{
        width: 100%;

        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;

        padding: 34px 0;

        margin: 0;
    }

    .ticket-number{
        width: auto;

        margin: 0 !important;
        padding-top: 5px;

        color: var(--green);

        left: auto !important;
        transform: none !important;
    }

    .ticket-benefit-row > div,
    .ticket-benefit-content{
        width: 100%;
        min-width: 0;

        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;

        margin: 0 !important;
        transform: none !important;
    }

    .ticket-benefit-row h3{
        width: 100%;
        min-width: 0;

        margin: 0 !important;

        font-size: 27px;
        line-height: 1.08;

        overflow-wrap: anywhere;
        transform: none !important;
    }

    .ticket-benefit-row p{
        width: 100%;
        min-width: 0;

        margin: 0 !important;

        font-size: 16px;
        line-height: 1.7;

        overflow-wrap: anywhere;
        transform: none !important;
    }


    /* =========================
       PROCESS
    ========================= */

    .ticket-process{
        padding: 65px 20px;
    }

    .ticket-process-heading{
        display: block;

        width: 100%;

        margin: 0 0 40px !important;

        transform: none !important;
    }

    .ticket-process-heading .section-label{
        width: 100%;

        margin: 0 0 22px !important;

        transform: none !important;
    }

    .ticket-process-heading h2{
        width: 100%;

        margin: 0 !important;

        font-size: 42px;
        line-height: 1.05;

        transform: none !important;
    }

    .ticket-process-grid{
        display: grid;
        grid-template-columns: 1fr;

        width: 100%;

        margin: 0;

        border-top: 1px solid #d8d4ca;
        border-bottom: 1px solid #d8d4ca;
    }

    .ticket-process-grid article{
        width: 100%;
        min-width: 0;
        min-height: 0;

        padding: 32px 0;

        border-right: none;
        border-bottom: 1px solid #d8d4ca;
    }

    .ticket-process-grid article:last-child{
        border-bottom: none;
    }

    .ticket-process-grid span{
        margin: 0 0 18px;

        color: var(--green);
    }

    .ticket-process-grid h3{
        width: 100%;

        margin: 0 0 15px;

        font-size: 27px;
        line-height: 1.08;

        overflow-wrap: anywhere;
    }

    .ticket-process-grid p{
        width: 100%;

        margin: 0;

        font-size: 16px;
        line-height: 1.7;
    }


    /* =========================
       AIRLINE PARTNERS
    ========================= */

    .airline-partners{
        padding: 65px 20px;
    }

    .partners-heading{
        width: 100%;

        margin: 0 0 35px !important;

        text-align: left;

        transform: none !important;
    }

    .partners-heading .section-label{
        width: 100%;

        margin: 0 0 16px !important;

        font-size: 13px;
        line-height: 1.4;
        letter-spacing: 3px;

        transform: none !important;
    }

    .partners-heading h2{
        width: 100%;
        max-width: 100%;

        margin: 0 !important;

        font-size: 42px;
        line-height: 1.02;

        overflow-wrap: normal;
        word-break: normal;

        transform: none !important;
    }

    .partner-list,
    .airline-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;

        width: 100%;
        max-width: 100%;

        margin: 0 !important;

        transform: none !important;
    }

    .partner-item{
        width: 100%;
        min-width: 0;
        min-height: 110px;

        display: grid;
        grid-template-columns: 65px minmax(0, 1fr);
        align-items: center;
        gap: 18px;

        padding: 22px 24px;

        margin: 0;

        border-radius: 14px;
        box-sizing: border-box;

        transform: none !important;
    }

    .partner-item img{
        width: 65px;
        max-width: 65px;
        height: 42px;

        object-fit: contain;
    }

    .partner-item h3,
    .partner-item p,
    .partner-item span{
        width: 100%;
        min-width: 0;

        margin: 0;

        font-size: 20px;
        line-height: 1.2;

        overflow-wrap: anywhere;
    }

    /* Missing airline message */

    .airline-more{
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;

        position: static !important;

        width: 100%;
        max-width: 100%;

        margin: 35px 0 0 !important;
        padding: 0 10px;

        color: var(--green);

        font-family: "Instrument Sans", sans-serif;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.6;
        letter-spacing: 1px;
        text-align: center;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        transform: none !important;

        box-sizing: border-box;
    }


    /* =========================
       CONTACT SECTION
    ========================= */

    .ticket-contact{
        display: grid;
        grid-template-columns: 1fr;
        gap: 38px;

        width: 100%;

        margin: 0;
        padding: 65px 20px;
    }

    .ticket-contact-copy,
    .ticket-contact-details{
        width: 100%;
        max-width: 100%;

        margin: 0 !important;

        left: auto !important;
        transform: none !important;
    }

    .ticket-contact-copy .page-eyebrow{
        width: 100%;

        margin: 0 0 20px !important;

        transform: none !important;
    }

    .ticket-contact-copy h2{
        width: 100%;

        margin: 0 !important;

        font-size: 42px;
        line-height: 1.05;

        overflow-wrap: normal;
    }

    .ticket-contact-title{
        margin: 45px 0 30px !important;
        padding-top: 30px;

        border-top: 1px solid rgba(255, 255, 255, 0.25);

        font-size: 48px;
        line-height: 1;
    }

    .ticket-contact-details a,
    .ticket-contact-details p{
        display: block;

        width: 100%;

        margin-left: 0 !important;

        overflow-wrap: anywhere;
        transform: none !important;
    }

    .ticket-contact-button{
        width: 100%;
        max-width: 100%;

        margin-left: 0 !important;

        justify-content: center;
        text-align: center;

        transform: none !important;
    }


    /* =========================
       FOOTER
    ========================= */

    .ticket-footer{
        width: 100%;

        margin: 0;
        padding: 24px 20px;

        text-align: center;

        transform: none;
    }

    .ticket-footer p{
        margin: 0 !important;
        text-align: center;
        transform: none !important;
    }
}
/* ==================================================
   CRUISE PAGE — HOW WE HELP MOBILE FIX
   Keep this at the absolute bottom of styles.css
================================================== */

@media screen and (max-width: 600px){

    /* Entire section */
    section.cruise-services{
        position: relative !important;

        display: block !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 60px 20px !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        transform: none !important;

        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Remove desktop positioning from both main wrappers */
    section.cruise-services > .cruise-services-heading,
    section.cruise-services > .cruise-service-list{
        position: static !important;
        float: none !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;

        transform: none !important;

        grid-column: auto !important;
        grid-row: auto !important;
        justify-self: stretch !important;
        align-self: auto !important;

        box-sizing: border-box !important;
    }

    /* Heading wrapper */
    section.cruise-services > .cruise-services-heading{
        margin-bottom: 40px !important;
    }

    /* HOW WE HELP */
    section.cruise-services
    .cruise-services-heading
    .section-label{
        position: static !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 20px !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;

        color: var(--green) !important;

        font-size: 14px !important;
        line-height: 1.4 !important;
        letter-spacing: 4px !important;
        text-align: left !important;

        transform: none !important;
    }

    /* Main heading */
    section.cruise-services
    .cruise-services-heading
    h2{
        position: static !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;

        font-size: 39px !important;
        line-height: 1.05 !important;
        text-align: left !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;

        transform: none !important;
    }

    /* List of four services */
    section.cruise-services > .cruise-service-list{
        display: block !important;

        border-top: 1px solid #d8d4ca !important;
    }

    /* Every service row */
    section.cruise-services
    .cruise-service-list > *{
        position: static !important;
        float: none !important;

        display: grid !important;
        grid-template-columns: 38px minmax(0, 1fr) !important;
        grid-template-rows: auto !important;
        column-gap: 14px !important;
        row-gap: 12px !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 30px 0 !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        transform: none !important;

        border-bottom: 1px solid #d8d4ca !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Number */
    section.cruise-services
    .cruise-service-list > * > span{
        position: static !important;

        grid-column: 1 !important;
        grid-row: 1 !important;

        width: 38px !important;
        min-width: 0 !important;

        margin: 5px 0 0 !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;

        color: var(--green) !important;

        font-size: 13px !important;
        line-height: 1 !important;
        letter-spacing: 2px !important;

        transform: none !important;
    }

    /* Text wrapper inside each row */
    section.cruise-services
    .cruise-service-list > * > div{
        position: static !important;

        grid-column: 2 !important;
        grid-row: 1 !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;

        transform: none !important;
        box-sizing: border-box !important;
    }

    /* Titles */
    section.cruise-services
    .cruise-service-list h3{
        position: static !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 0 12px !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;

        font-size: 27px !important;
        line-height: 1.08 !important;
        text-align: left !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;

        transform: none !important;
    }

    /* Descriptions */
    section.cruise-services
    .cruise-service-list p{
        position: static !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;

        font-size: 16px !important;
        line-height: 1.65 !important;
        text-align: left !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;

        transform: none !important;
    }
}
/* =========================================
   SHARED MOBILE NAVBAR — ALL PAGES
========================================= */

@media (max-width: 768px){

    .site-header{
        position: relative !important;
        width: 100% !important;
        background: var(--cream) !important;
    }

    .navbar{
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        min-height: auto !important;

        padding: 28px 20px 30px !important;
        gap: 24px !important;

        box-sizing: border-box !important;
    }

    .logo{
        display: flex !important;
        justify-content: center !important;

        width: 100% !important;
        margin: 0 !important;

        transform: none !important;
    }

    .logo img{
        width: 76px !important;
        height: auto !important;
        display: block !important;
    }

    .nav-links{
        position: static !important;

        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: 390px !important;

        margin: 0 auto !important;
        padding: 0 !important;
        gap: 20px 24px !important;

        transform: none !important;
    }

    .nav-item,
    .dropbtn{
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: auto !important;

        margin: 0 !important;
        padding: 4px 0 !important;

        border: none !important;
        background: transparent !important;

        color: var(--navy) !important;

        font-family: "Libre Caslon Text", serif !important;
        font-size: 14px !important;
        line-height: 1.2 !important;
        letter-spacing: 1.5px !important;
        text-transform: uppercase !important;
        text-align: center !important;

        white-space: nowrap !important;
    }

    .dropdown{
        position: relative !important;
        width: auto !important;
    }

    .dropdown-content{
        display: none;

        position: absolute !important;
        top: calc(100% + 10px) !important;
        left: 50% !important;

        width: 230px !important;
        min-width: 230px !important;

        padding: 10px 0 !important;

        background: var(--cream) !important;
        border: 1px solid #d8d4ca !important;
        box-shadow: 0 12px 28px rgba(0,0,0,.12) !important;

        transform: translateX(-50%) !important;

        z-index: 1000 !important;
    }

    .dropdown.open .dropdown-content{
        display: block !important;
    }

    .dropdown-content a{
        display: block !important;

        width: 100% !important;

        padding: 11px 16px !important;

        color: var(--navy) !important;

        font-family: "Instrument Sans", sans-serif !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        letter-spacing: .5px !important;
        text-align: left !important;
        text-transform: none !important;
        white-space: normal !important;

        box-sizing: border-box !important;
    }

    .dropdown-content a:hover{
        background: rgba(21,59,127,.06) !important;
    }

    .site-header{
        border-bottom: 1px solid #d8d4ca !important;
    }
}

/*/* =========================================
   CURATED PRIVATE TOURS — MOBILE FIX
========================================= */

@media screen and (max-width: 768px) {

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

    /* =========================
       INTRODUCTION SECTION
    ========================= */

    .tour-intro-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;

        margin: 0 !important;
        padding: 65px 20px !important;

        left: auto !important;
        right: auto !important;

        transform: none !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .tour-intro-copy {
        position: static !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        transform: none !important;
        box-sizing: border-box !important;
    }

    .tour-intro-copy .section-label {
        position: static !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 18px !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;

        font-size: 13px !important;
        line-height: 1.4 !important;
        letter-spacing: 4px !important;
        text-align: left !important;

        transform: none !important;
    }

    .tour-intro-copy h2 {
        position: static !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 0 25px !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;

        font-size: 40px !important;
        line-height: 1.05 !important;
        text-align: left !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;

        transform: none !important;
    }

    .tour-intro-copy p {
        position: static !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 0 20px !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;

        font-size: 16px !important;
        line-height: 1.7 !important;
        text-align: left !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;

        transform: none !important;
    }

    /* =========================
       CURATED SLIDESHOW
    ========================= */

    .tour-intro-image.curated-slideshow {
        position: relative !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 300px !important;

        margin: 25px 0 0 !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        transform: none !important;

        border-radius: 18px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .tour-intro-image .curated-slide {
        position: absolute !important;
        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        margin: 0 !important;

        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;

        transform: none !important;
    }

    /* =========================
       HOW IT WORKS SECTION
    ========================= */

    .tour-features-section {
        position: relative !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;

        margin: 0 !important;
        padding: 65px 20px !important;

        left: auto !important;
        right: auto !important;

        transform: none !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .tour-features-section > div {
        position: static !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;

        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        transform: none !important;
        box-sizing: border-box !important;
    }

    .tour-features-section .section-label {
        position: static !important;

        width: 100% !important;

        margin: 0 0 18px !important;
        padding: 0 !important;

        font-size: 13px !important;
        line-height: 1.4 !important;
        letter-spacing: 4px !important;
        text-align: left !important;

        transform: none !important;
    }

    .tour-features-section h2 {
        position: static !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 0 38px !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;

        font-size: 39px !important;
        line-height: 1.05 !important;
        text-align: left !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;

        transform: none !important;
    }

    .tour-features-section article {
        position: static !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 30px 0 !important;

        left: auto !important;
        right: auto !important;

        border-top: 1px solid #d8d4ca !important;

        transform: none !important;
        box-sizing: border-box !important;
    }

    .tour-features-section article:last-child {
        border-bottom: 1px solid #d8d4ca !important;
    }

    .tour-features-section article h3 {
        position: static !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 0 12px !important;
        padding: 0 !important;

        font-size: 28px !important;
        line-height: 1.1 !important;
        text-align: left !important;

        white-space: normal !important;
        overflow-wrap: break-word !important;

        transform: none !important;
    }

    .tour-features-section article p {
        position: static !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 16px !important;
        line-height: 1.65 !important;
        text-align: left !important;

        white-space: normal !important;
        overflow-wrap: break-word !important;

        transform: none !important;
    }
}
/* ==================================================
   ABOUT PAGE — MOBILE LAYOUT
================================================== */

@media screen and (max-width: 768px) {

    body.about-page,
    body.about-page main {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body.about-page * {
        box-sizing: border-box;
    }

    /* Remove desktop offsets */
    body.about-page main section,
    body.about-page main section > div,
    body.about-page main article {
        min-width: 0 !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        transform: none !important;
    }

    /* =========================
       HERO
    ========================= */

    body.about-page .about-hero {
        width: 100% !important;
        min-height: auto !important;

        padding: 70px 24px 80px !important;

        text-align: center !important;
    }

   body.about-page .about-hero .page-eyebrow {
    width: 100% !important;
    max-width: 320px !important;

    margin: 0 auto 24px !important;
    padding: 0 !important;

    font-size: 14px !important;
    line-height: 1.4 !important;
    letter-spacing: 4px !important;

    text-align: center !important;

    white-space: normal !important;
    overflow-wrap: normal !important;

    transform: none !important;
}

    body.about-page .about-hero h1 {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 auto 28px !important;

    padding: 0 !important;

    font-size: 54px !important;
    line-height: 1 !important;

    text-align: center !important;

    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;

    transform: none !important;
}

    body.about-page .about-hero-text {
        width: 100% !important;
        max-width: 350px !important;

        margin: 0 auto !important;

        font-size: 17px !important;
        line-height: 1.7 !important;
        text-align: center !important;
    }

    /* =========================
       OUR STORY
    ========================= */

    body.about-page .about-story {
        display: flex !important;
        flex-direction: column !important;
        gap: 42px !important;

        width: 100% !important;

        padding: 65px 24px !important;
    }

    /* Complete team image — no cropping */
    body.about-page .about-story-image {
        order: 1;

        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: visible !important;
    }

    body.about-page .about-story-image img {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;

        margin: 0 auto !important;

        object-fit: contain !important;
        object-position: center !important;

        border-radius: 18px !important;
    }

    body.about-page .about-story-copy {
        order: 2;

        position: static !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body.about-page .about-story-copy .section-label {
        width: 100% !important;

        margin: 0 0 18px !important;

        font-size: 13px !important;
        letter-spacing: 4px !important;
        text-align: left !important;
    }

    body.about-page .about-story-copy h2 {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 26px !important;

        font-size: 40px !important;
        line-height: 1.08 !important;
        text-align: left !important;

        white-space: normal !important;
        overflow-wrap: normal !important;
    }

    /* Change the three desktop columns into stacked paragraphs */
    body.about-page .about-story-paragraphs {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body.about-page .about-story-paragraphs p {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        font-size: 16px !important;
        line-height: 1.75 !important;
        text-align: left !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    /* =========================
       MISSION AND VISION
    ========================= */

    body.about-page .about-purpose {
        display: grid !important;
        grid-template-columns: 1fr !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body.about-page .about-purpose-card {
        position: static !important;

        width: 100% !important;
        min-height: auto !important;

        margin: 0 !important;
        padding: 60px 24px !important;

        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
    }

    body.about-page .about-purpose-number {
        display: block !important;

        margin: 0 0 46px !important;

        font-size: 14px !important;
    }

    body.about-page .about-purpose-card .section-label {
        margin: 0 0 20px !important;

        font-size: 13px !important;
        letter-spacing: 4px !important;
    }

    body.about-page .about-purpose-card h2 {
        width: 100% !important;
        max-width: 330px !important;

        margin: 0 0 28px !important;

        font-size: 39px !important;
        line-height: 1.08 !important;

        white-space: normal !important;
        overflow-wrap: normal !important;
    }

    body.about-page .about-purpose-card > p:last-child {
        width: 100% !important;
        max-width: 340px !important;

        margin: 0 !important;

        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    /* =========================
       TEAM HEADING
    ========================= */

    body.about-page .team-heading-section {
        width: 100% !important;

        padding: 70px 24px 42px !important;

        text-align: center !important;
    }

    body.about-page .team-heading-section .section-label {
        margin: 0 0 18px !important;

        font-size: 13px !important;
        letter-spacing: 4px !important;
        text-align: center !important;
    }

    body.about-page .team-heading-section h2 {
        width: 100% !important;
        max-width: 350px !important;

        margin: 0 auto !important;

        font-size: 42px !important;
        line-height: 1.06 !important;
        text-align: center !important;

        white-space: normal !important;
    }

    /* =========================
       EMPLOYEE 3 × 3 GRID
    ========================= */

    body.about-page .team-section {
        width: 100% !important;

        padding: 20px 12px 75px !important;
    }

    body.about-page .team-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 24px 8px !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;
        padding: 0 !important;

        align-items: start !important;
    }

    body.about-page .team-card {
        display: block !important;

        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body.about-page .team-image {
        width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;

        border-radius: 7px !important;
    }

    body.about-page .team-image img {
        display: block !important;

        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4 / 5 !important;

        margin: 0 !important;

        object-fit: cover !important;
        object-position: center top !important;
    }

    body.about-page .team-card-copy {
        width: 100% !important;

        padding: 7px 1px 0 !important;
    }

    body.about-page .team-card h3 {
        width: 100% !important;

        margin: 0 0 4px !important;

        font-size: 11px !important;
        line-height: 1.18 !important;
        text-align: left !important;

        white-space: normal !important;
        overflow-wrap: break-word !important;
    }

    body.about-page .team-title {
        width: 100% !important;

        margin: 0 !important;

        font-size: 6.5px !important;
        line-height: 1.35 !important;
        letter-spacing: 0.35px !important;
        text-align: left !important;
        text-transform: uppercase !important;

        white-space: normal !important;
        overflow-wrap: break-word !important;
    }

    /* Slightly roomier grid on larger phones */
    @media screen and (min-width: 430px) {
        body.about-page .team-grid {
            gap: 26px 12px !important;
        }

        body.about-page .team-card h3 {
            font-size: 12px !important;
        }

        body.about-page .team-title {
            font-size: 7px !important;
        }
    }

    /* =========================
       WHY CHOOSE US
    ========================= */

    body.about-page .about-values {
        display: block !important;

        width: 100% !important;

        padding: 65px 24px !important;
    }

    body.about-page .about-values-heading {
        display: block !important;

        width: 100% !important;

        margin: 0 0 42px !important;
        padding: 0 !important;
    }

    body.about-page .about-values-heading .section-label {
        margin: 0 0 18px !important;

        font-size: 13px !important;
        letter-spacing: 4px !important;
    }

    body.about-page .about-values-heading h2 {
        width: 100% !important;

        margin: 0 !important;

        font-size: 40px !important;
        line-height: 1.06 !important;

        white-space: normal !important;
    }

    body.about-page .about-values-heading h2 br {
        display: none !important;
    }

    body.about-page .about-values-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body.about-page .about-value-card {
        display: grid !important;
        grid-template-columns: 45px minmax(0, 1fr) !important;
        column-gap: 16px !important;

        width: 100% !important;
        min-height: auto !important;

        margin: 0 !important;
        padding: 30px 0 !important;

        border-top: 1px solid #d8d4ca !important;
    }

    body.about-page .about-value-card span {
        grid-column: 1;
        grid-row: 1 / span 2;

        font-size: 14px !important;
    }

    body.about-page .about-value-card h3 {
        grid-column: 2;

        width: 100% !important;

        margin: 0 0 12px !important;

        font-size: 27px !important;
        line-height: 1.1 !important;

        white-space: normal !important;
    }

    body.about-page .about-value-card p {
        grid-column: 2;

        width: 100% !important;

        margin: 0 !important;

        font-size: 15px !important;
        line-height: 1.65 !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    /* =========================
       ACCREDITATIONS
    ========================= */

    body.about-page .footer-accreditations {
        width: 100% !important;

        padding: 55px 24px !important;
    }

    body.about-page .footer-accreditations h3 {
        width: 100% !important;

        margin: 0 0 30px !important;

        font-size: 28px !important;
        line-height: 1.15 !important;
    }

    body.about-page .footer-accreditation-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;

        width: 100% !important;
    }

    body.about-page .accreditation-item {
        display: grid !important;
        grid-template-columns: 22px minmax(0, 1fr) !important;
        gap: 10px !important;

        width: 100% !important;
    }

    body.about-page .accreditation-item p {
        width: 100% !important;

        margin: 0 !important;

        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    /* =========================
       CONTACT SECTION
    ========================= */

    body.about-page .shared-contact-section {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 42px !important;

        width: 100% !important;

        padding: 60px 24px !important;
    }

    body.about-page .shared-contact-copy,
    body.about-page .shared-contact-details {
        position: static !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: none !important;
    }

    body.about-page .shared-contact-copy h2 {
        width: 100% !important;

        margin: 0 !important;

        font-size: 40px !important;
        line-height: 1.08 !important;
    }

    body.about-page .shared-contact-copy h2 br {
        display: none !important;
    }

    body.about-page .shared-contact-details h3 {
        margin: 0 0 24px !important;

        font-size: 38px !important;
    }

    body.about-page .shared-contact-details a,
    body.about-page .shared-contact-details p {
        display: block !important;

        width: 100% !important;

        margin: 0 0 16px !important;

        font-size: 15px !important;
        line-height: 1.55 !important;

        overflow-wrap: anywhere !important;
    }

    body.about-page .about-contact-button {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        min-height: 58px !important;

        margin-top: 25px !important;
        padding: 15px 20px !important;

        text-align: center !important;
    }

    body.about-page .about-contact-footer {
        width: 100% !important;

        margin: 0 !important;
        padding: 25px 20px !important;

        text-align: center !important;

        transform: none !important;
    }
}
@media (max-width:768px){

.contact-hero .page-eyebrow{
    display:block;
    width:100%;
    max-width:none;

    font-size:13px;
    letter-spacing:5px;

    white-space:nowrap;

    text-align:center;

    margin-bottom:22px;
}

}
@media (max-width:768px){

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:16px;

    margin-top:60px;

}

.contact-card{

    padding:28px 18px;

    min-height:210px;

}

.contact-card h3{

    font-size:34px;

    margin-bottom:18px;

}

.contact-card p{

    font-size:15px;

    line-height:1.6;

}

}
@media (max-width:768px){

.contact-map{

    display:flex;

    flex-direction:column;

    gap:40px;

}

.contact-map-text{

    width:100%;

}

.contact-map-image{

    width:100%;

}

.contact-map-image iframe,
.contact-map-image img{

    width:100%;

    height:340px;

    display:block;

    object-fit:cover;

    border-radius:18px;

}

}
@media screen and (max-width: 768px) {

    .faq-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 20px !important;
    }

    .faq-card {
        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;
        min-width: 0 !important;
        min-height: 245px !important;

        margin: 0 !important;
        padding: 22px 16px !important;

        border: 1px solid rgba(255, 255, 255, 0.28) !important;
        background: rgba(255, 255, 255, 0.03) !important;

        box-sizing: border-box !important;
    }

    .faq-card .faq-number,
    .faq-card > span {
        display: block !important;

        margin: 0 0 22px !important;

        font-size: 12px !important;
        font-weight: 600 !important;
        letter-spacing: 2px !important;
    }

    .faq-card h3 {
        width: 100% !important;

        margin: 0 0 16px !important;

        font-size: 26px !important;
        line-height: 1.03 !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .faq-card p {
        width: 100% !important;

        margin: auto 0 0 !important;

        font-size: 14px !important;
        line-height: 1.55 !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }
}
/* ==================================================
   CONTACT PAGE — MOBILE
================================================== */

@media screen and (max-width: 768px) {

    /* ----------------------------------------------
       PAGE RESET
    ---------------------------------------------- */

    body.contact-page {
        width: 100%;
        margin: 0;
        overflow-x: hidden;
    }

    body.contact-page *,
    body.contact-page *::before,
    body.contact-page *::after {
        box-sizing: border-box;
    }

    body.contact-page main {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

body.contact-page .contact-hero{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    width:100%;
    padding:70px 24px;

    text-align:center;
}

body.contact-page .contact-hero .page-eyebrow{
    display:block;

    margin:0 0 18px;

    color:var(--green);

    font-size:13px;
    font-weight:600;
    letter-spacing:5px;

    white-space:nowrap;

    width:auto;
    max-width:none;
}

    body.contact-page .contact-hero h1 {
        width: 100%;
        max-width: 350px;

        margin: 0 auto 26px;
        padding: 0;

        font-size: 50px;
        line-height: 1;

        text-align: center;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
    }

    body.contact-page .contact-hero-text {
        width: 100%;
        max-width: 350px;

        margin: 0 auto;

        font-size: 16px;
        line-height: 1.7;
        text-align: center;

        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
    }


    /* ----------------------------------------------
       CONTACT OPTIONS — 2 × 2 GRID
    ---------------------------------------------- */

    body.contact-page .contact-options {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;

        width: 100%;
        max-width: 100%;

        margin: 0;
        padding: 20px;

        align-items: stretch;
    }

    body.contact-page .contact-option {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        width: 100%;
        min-width: 0;
        min-height: 245px;

        margin: 0;
        padding: 20px 14px;

        border: 1px solid rgba(14, 42, 93, 0.22);
        background: transparent;

        text-align: left;
        transform: none;
    }

    body.contact-page .contact-number {
        display: block;

        width: 100%;
        margin: 0 0 22px;

        color: var(--green);
        font-size: 11px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 2px;
    }
    body.contact-page .contact-option{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    background:#F9F6EF;

    border:1px solid #d9d2c4;
    border-radius:0;

    padding:22px 16px;

    min-height:245px;

    box-shadow:none;
}

    body.contact-page .contact-option h3 {
        width: 100%;
        margin: 0 0 18px;

        font-size: 27px;
        line-height: 1.05;

        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
    }

    body.contact-page .contact-option-text,
    body.contact-page .contact-option-text p,
    body.contact-page .contact-option-text a {
        width: 100%;
        min-width: 0;
    }

    body.contact-page .contact-option-text {
        margin-top: auto;
    }

    body.contact-page .contact-option p {
        margin: 0 0 14px;

        font-size: 12px;
        line-height: 1.55;

        white-space: normal;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    body.contact-page .contact-option a {
        display: inline-block;

        color: inherit;
        font-size: 12px;
        line-height: 1.55;

        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    body.contact-page .social-description {
        margin-bottom: 18px;
    }

    body.contact-page .contact-social-links {
        display: flex;
        flex-direction: column;
        gap: 10px;

        width: 100%;
        margin-top: auto;
    }

    body.contact-page .contact-social-links a {
        width: 100%;
        font-size: 12px;
    }


    /* ----------------------------------------------
       LOCATION / MAP
    ---------------------------------------------- */

    body.contact-page .location-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;

        width: 100%;
        max-width: 100%;

        margin: 0;
        padding: 65px 20px;

        transform: none;
    }

    body.contact-page .location-copy {
        width: 100%;
        max-width: 100%;

        margin: 0;
        padding: 0;

        transform: none;
    }

    body.contact-page .location-copy .section-label {
        width: 100%;

        margin: 0 0 12px;

        font-size: 13px;
        line-height: 1.2;
        letter-spacing: 4px;

        white-space: nowrap;
    }

    body.contact-page .location-title {
        width: 100%;

        margin: 0 0 22px;
        padding: 0 0 10px;

        font-size: 48px;
        line-height: 1;

        border-bottom: 2px solid var(--green);
    }

    body.contact-page .location-address {
        width: 100%;
        max-width: 340px;

        margin: 0;

        font-size: 17px;
        line-height: 1.65;

        white-space: normal;
    }

    body.contact-page .location-map {
        width: 100%;
        max-width: 100%;
        height: 330px;

        margin: 0;
        padding: 0;

        overflow: hidden;
        border-radius: 16px;

        transform: none;
    }

    body.contact-page .location-map img {
        display: block;

        width: 100%;
        height: 100%;

        margin: 0;

        object-fit: cover;
        object-position: center;

        transform: none;
    }


    /* ----------------------------------------------
       FAQ SECTION
    ---------------------------------------------- */

    body.contact-page .faq-section {
        width: 100%;
        max-width: 100%;

        margin: 0;
        padding: 65px 14px 75px;

        overflow: hidden;
    }

    body.contact-page .faq-header {
        width: 100%;
        max-width: 100%;

        margin: 0 0 40px;
        padding: 0 6px;

        text-align: center;
    }

    body.contact-page .faq-header > p {
        width: 100%;

        margin: 0 0 15px;

        color: var(--green);
        font-size: 12px;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: 3px;

        text-align: center;
        white-space: nowrap;
    }

    body.contact-page .faq-header h2 {
        width: 100%;
        max-width: 350px;

        margin: 0 auto;

        font-size: 42px;
        line-height: 1.03;

        text-align: center;
        white-space: normal;
    }


    /* ----------------------------------------------
       FAQ — 2 × 2 GRID
    ---------------------------------------------- */
body.contact-page .faq-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:28px;

    width:100%;

    padding:40px;

    border:1px solid rgba(255,255,255,.22);

    box-sizing:border-box;
}
    body.contact-page .faq-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        width: 100%;
        min-width: 0;
        min-height: 275px;

        margin: 0;
        padding: 20px 14px;

        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.025);

        text-align: left;
        transform: none;
    }

    body.contact-page .faq-number {
        display: block;

        width: 100%;
        margin: 0 0 22px;

        color: var(--green);
        font-size: 11px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 2px;
    }

    body.contact-page .faq-item h3 {
        width: 100%;
        max-width: none;

        margin: 0 0 16px;
        padding: 0;

        font-size: 24px;
        line-height: 1.08;

        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
        hyphens: none;
    }

    body.contact-page .faq-item p {
        width: 100%;
        max-width: none;

        margin: auto 0 0;
        padding: 0;

        font-size: 13px;
        line-height: 1.5;

        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
    }
}


/* ==================================================
   SMALL PHONES
================================================== */

@media screen and (max-width: 390px) {

    body.contact-page .contact-options {
        gap: 8px;
        padding: 14px 10px;
    }

    body.contact-page .contact-option {
        min-height: 235px;
        padding: 18px 11px;
    }

    body.contact-page .contact-option h3 {
        font-size: 23px;
    }

    body.contact-page .contact-option p,
    body.contact-page .contact-option a {
        font-size: 11px;
    }

    body.contact-page .faq-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    body.contact-page .faq-grid {
        gap: 8px;
    }

    body.contact-page .faq-item {
        min-height: 260px;
        padding: 18px 11px;
    }

    body.contact-page .faq-item h3 {
        font-size: 21px;
        line-height: 1.08;
    }

    body.contact-page .faq-item p {
        font-size: 12px;
    }
}
/* Remove outer border around FAQ grid */
body.contact-page .faq-grid{
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
/* Remove outer box around contact cards */
body.contact-page .contact-options{
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
/* =========================================
   CONTACT PAGE — MOBILE FIX
========================================= */

@media screen and (max-width: 600px) {

    /* Center and reset the complete hero */
    body.contact-page .contact-hero {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;

        width: 100% !important;
        max-width: none !important;
        min-height: auto !important;

        margin: 0 !important;
        padding: 70px 24px 80px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* Green CONTACT US eyebrow */
    body.contact-page .contact-hero .page-eyebrow {
        position: static !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;

        display: block !important;
        width: 100% !important;
        max-width: none !important;

        margin: 0 0 18px !important;
        padding: 0 !important;

        color: var(--green) !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        letter-spacing: 4px !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    body.contact-page .contact-hero h1 {
        position: static !important;
        transform: none !important;

        width: 100% !important;
        max-width: 330px !important;

        margin: 0 auto 26px !important;

        font-size: 46px !important;
        line-height: 1.02 !important;
        text-align: center !important;
    }

    body.contact-page .contact-hero-text {
        position: static !important;
        transform: none !important;

        width: 100% !important;
        max-width: 330px !important;

        margin: 0 auto !important;

        font-size: 15px !important;
        line-height: 1.7 !important;
        text-align: center !important;
    }

    /* Contact-card grid wrapper */
    body.contact-page .contact-options {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;

        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;

        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 20px 12px !important;

        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
        background: var(--cream) !important;

        box-sizing: border-box !important;
    }

    /* Keep borders only on the four individual cards */
    body.contact-page .contact-option {
        position: relative !important;
        transform: none !important;

        width: 100% !important;
        min-width: 0 !important;
        min-height: 245px !important;

        margin: 0 !important;
        padding: 18px 14px !important;

        border: 1px solid #d8d4ca !important;
        outline: 0 !important;
        box-shadow: none !important;
        background: var(--cream) !important;

        box-sizing: border-box !important;
        overflow-wrap: anywhere !important;
    }
}
/* COMPLETE FAQ OUTER BORDER */
body.contact-page .faq-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  margin: 0 !important;
}

body.contact-page .faq-section .faq-item {
  margin: 0 !important;
  border: none !important;
}

/* Vertical center divider */
body.contact-page .faq-section .faq-item:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.25) !important;
}

/* Horizontal center divider */
body.contact-page .faq-section .faq-item:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
}
/* CONTACT INFORMATION GRID */

body.contact-page .contact-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  border: 1px solid #d7d9dd !important;
  margin: 0 auto !important;
  max-width: 1200px;
}

body.contact-page .contact-option {
  margin: 0 !important;
  border: none !important;
  padding: 36px 30px;
}

/* Dividing lines between the four cards */
body.contact-page .contact-option:not(:last-child) {
  border-right: 1px solid #d7d9dd !important;
}
/* MOBILE CONTACT GRID */
@media screen and (max-width: 768px) {
  body.contact-page .contact-options {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    border: none !important;
    gap: 10px !important;

    width: 100% !important;
    max-width: none !important;
    padding: 18px !important;
    margin: 0 !important;
  }

  body.contact-page .contact-option {
    border: 1px solid #d7d2c8 !important;
    background: #f9f6ef !important;
    padding: 24px 14px !important;
    min-width: 0 !important;
  }

  body.contact-page .contact-option:not(:last-child) {
    border-right: 1px solid #d7d2c8 !important;
  }
}