/* =========================================
   VARIABLES
========================================= */

:root {
  --navy: #092c55;
  --blue: #50aee0;
  --orange: #f28c28;
  --orange-light: #fff1e3;

  --light: #f5f7fa;
  --text: #26384b;
  --muted: #66788a;
  --white: #ffffff;
  --border: #dce6ee;

  --shadow: 0 18px 50px rgba(9, 44, 85, 0.10);
}


/* =========================================
   RESET / BASE
========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

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

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


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  letter-spacing: -0.05em;
  margin: 14px 0 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--orange);
}


/* =========================================
   HEADER / NAVIGATION
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  display: block;
  width: 150px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 650;
  color: var(--navy);
}

.nav a {
  padding: 29px 0;
  border-bottom: 3px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
  color: var(--navy);
}


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

.hero {
  padding: 80px 0 90px;
  background: linear-gradient(
    135deg,
    #f5faff 0%,
    #fff 58%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 70px;
}

.hero-text {
  font-size: 1.18rem;
  max-width: 650px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto 25px;
}

.card-caption {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.card-caption span {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 5px;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 14px 23px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    0.2s transform,
    0.2s box-shadow;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 25px rgba(242, 140, 40, 0.25);
}

.btn-secondary {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-white {
  background: #fff;
  color: var(--navy);
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
  padding: 90px 0;
}

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

.section-muted {
  background: var(--soft);
}

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

.section-heading p {
  color: var(--muted);
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 13px;
}


/* =========================================
   SERVICE CARDS
========================================= */

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(9, 44, 85, 0.05);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

/* Centre Golf Tours / final card when there are 5 cards */
.cards .service-card:nth-child(5) {
  grid-column: 2 / span 2;
  width: calc(50% - 9px);
  justify-self: center;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 12px 30px rgba(9, 44, 85, 0.10);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--orange-light);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}


/* =========================================
   SPLIT SECTIONS
========================================= */

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

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

.check-list li {
  margin: 12px 0;
  font-weight: 650;
}

.check-list li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  margin-right: 10px;
}

.text-link {
  font-weight: 800;
  color: var(--orange);
}


/* =========================================
   INFO PANELS
========================================= */

.info-panel {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 35px;
}

.info-panel h3 {
  color: #fff;
}

.info-panel p {
  color: #dbe8f4;
}


/* =========================================
   CALL TO ACTION
========================================= */

.cta {
  background: var(--navy);
  padding: 50px 0;
}

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

.cta .btn-white {
  background: var(--orange);
  color: #fff;
}


.cta h2 {
  margin: 8px 0 0;
  color: #fff;
}

.cta .eyebrow {
  color: #ffbd7a;
}


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

.page-hero {
  padding: 75px 0;
  background: var(--light);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 12px auto 15px;
}

.page-hero p {
  max-width: 700px;
  margin: auto;
  color: var(--muted);
  font-size: 1.08rem;
}


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

.about-logo {
  width: 220px;
  display: block;
  margin: 0 auto 25px;
  background: #fff;
  border-radius: 12px;
}


/* =========================================
   QUOTE FORM
========================================= */

.form-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.form-intro p {
  color: var(--muted);
}

.form-intro .info-panel {
  margin-top: 30px;
}

.quote-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: block;
  font-weight: 750;
  color: var(--navy);
  margin-bottom: 18px;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  display: block;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #cbd8e3;
  border-radius: 9px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(80, 174, 224, 0.14);
}

.quote-form textarea {
  resize: vertical;
}

.hidden {
  position: absolute !important;
  left: -9999px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0;
}

.compact {
  max-width: 650px;
}


/* =========================================
   JOURNEY TYPE TABS
========================================= */

.journey-selector {
  margin-bottom: 28px;
}

.journey-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 750;
  color: var(--navy);
}

.journey-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f4f8fb;
  border: 1px solid #dce6ee;
  border-radius: 12px;
  padding: 5px;
  gap: 5px;
}

.journey-tab {
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 13px 20px;
  border-radius: 9px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.journey-tab:hover {
  background: #eaf6fd;
}

.journey-tab.active {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(9, 44, 85, 0.15);
}

.return-fields {
  margin-top: 4px;
}


/* =========================================
   GOOGLE PLACES DROPDOWN
========================================= */

.pac-container {
  z-index: 9999;
  border-radius: 0 0 9px 9px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(9, 44, 85, 0.12);
  font-family: inherit;
}

.pac-item {
  padding: 10px 12px;
  cursor: pointer;
}

.pac-item:hover {
  background: var(--light);
}

.pac-item-query {
  color: var(--navy);
  font-weight: 700;
}


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

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item strong {
  color: var(--navy);
}

.contact-item a {
  color: var(--blue);
  font-weight: 700;
}


/* =========================================
   THANK YOU PAGE
========================================= */

.success {
  min-height: 70vh;
  display: grid;
  place-items: center;
  background: var(--light);
  padding: 60px 0;
}

.success-box {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 60px 35px;
  box-shadow: var(--shadow);
  max-width: 650px;
  margin: auto;
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf6fd;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 25px;
}

.success-box p {
  color: var(--muted);
  margin-bottom: 28px;
}


/* =========================================
   FLEET PAGE
========================================= */

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

.fleet-card {
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.fleet-card img {
  width: 100%;
  height: 160px;
  display: block;
  object-fit: cover;
  border-radius: 7px 7px 0 0;
}

.fleet-card span {
  display: block;
  padding: 13px 14px;
}

.fleet-card strong,
.fleet-card small {
  display: block;
}

.fleet-card strong {
  font-size: 12px;
}

.fleet-card small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}


/* =========================================
   FLEET LIGHTBOX
========================================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  width: min(900px, 82vw);
  position: relative;
}

.lightbox-inner > img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  background: #111;
}

.lightbox-close,
.gallery-prev,
.gallery-next {
  position: fixed;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 44px;
  cursor: pointer;
}

.lightbox-close {
  top: 16px;
  right: 24px;
}

.gallery-prev {
  left: 25px;
}

.gallery-next {
  right: 25px;
}

.gallery-count {
  position: absolute;
  top: -28px;
  left: 0;
  color: #fff;
  font-size: 12px;
}

.thumbs {
  display: flex;
  gap: 7px;
  margin-top: 10px;
  overflow: auto;
}

.thumbs button {
  border: 2px solid transparent;
  background: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.65;
}

.thumbs button.selected {
  border-color: var(--gold);
  opacity: 1;
}

.thumbs img {
  width: 80px;
  height: 55px;
  object-fit: cover;
  display: block;
}


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

.footer {
  background: #071f3d;
  color: #c8d6e5;
  padding: 55px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
}

.footer-logo {
  width: 145px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}

.footer p {
  color: #aebfd0;
}

.footer h4 {
  color: #fff;
}

.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  font-size: 0.85rem;
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 900px) {

  .hero-grid,
  .split,
  .form-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 55px 0;
  }

  .section {
    padding: 65px 0;
  }

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

  .hero-card {
    max-width: 600px;
    margin: auto;
  }

  .nav {
    gap: 18px;
  }

}


/* =========================================
   RESPONSIVE - FLEET TABLET
========================================= */

@media (max-width: 850px) {

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

}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 650px) {

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 15px 4%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
  }

  .brand img {
    width: 125px;
  }

  .cards,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-form {
    padding: 22px;
  }

  .page-hero {
    padding: 55px 0;
  }

  h1 {
    font-size: 2.8rem;
  }

}


/* =========================================
   RESPONSIVE - SMALL MOBILE
========================================= */

@media (max-width: 560px) {

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

  .lightbox {
    padding: 15px;
  }

  .lightbox-inner {
    width: 88vw;
  }

  .gallery-prev {
    left: 5px;
  }

  .gallery-next {
    right: 5px;
  }

  .gallery-prev,
  .gallery-next {
    font-size: 34px;
  }

}

/* =========================================
   HOME SERVICE CARDS
========================================= */

.home-service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.home-service-cards .service-card {
  flex: 0 1 calc(25% - 14px);
  padding: 0;
  overflow: hidden;
  min-width: 0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-image {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card-content {
  padding: 25px 28px 30px;
}

.home-service-cards .service-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 15px 35px rgba(9, 44, 85, 0.15);
}

.home-service-cards .service-card:hover .service-image {
  transform: scale(1.04);
}


/* TABLET */

@media (max-width: 900px) {

  .home-service-cards .service-card {
    flex-basis: calc(50% - 9px);
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .home-service-cards {
    gap: 16px;
  }

  .home-service-cards .service-card {
    flex-basis: 100%;
  }

  .service-image {
    height: 210px;
  }

}

/* temp */
/* =========================================
   FLEET - IMAGES COMING SOON
========================================= */

.fleet-coming-soon {
  cursor: default;
}

.fleet-coming-soon:hover {
  transform: translateY(-3px);
}

.fleet-placeholder {
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    var(--navy),
    #123f70
  );
  color: #fff;
  text-align: center;
}

.fleet-placeholder-icon {
  font-size: 32px;
}

.fleet-placeholder strong {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fleet-card-content {
  padding: 22px;
}

.fleet-card-content h3 {
  margin-bottom: 8px;
}

.fleet-card-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* =========================================
   SERVICE PAGES
========================================= */

.service-page-image {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}


/* MOBILE */

@media (max-width: 650px) {

  .service-page-image {
    height: 280px;
  }

}

.home-service-cards .service-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.home-service-cards .service-card:hover h3 {
  color: var(--orange);
}