:root {
  --color-primary: #000000e0;
  --color-primary-rgb: 192, 192, 192;
  --color-primary-dark: #8f9398;
  --color-silver: #c0c0c0;
  --color-silver-light: #e5e5e5;
  --color-silver-dark: #8f9398;
  --color-dark: #111111;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-text: #1f1f1f;
  --color-muted: #8c8c8c;
  --color-border: #cfcfcf;
  --color-form-bg: rgba(245, 245, 245, 0.88);
  --color-section-bg: #f6f7f9;
  --color-overlay-hero: rgba(0, 0, 0, 0.64);
  --color-overlay-dark: rgba(13, 18, 24, 0.78);

  --font-primary: Arial, Helvetica, sans-serif;

  --container-width: 1440px;
  --header-height: 102px;
  --nav-height: 60px;
  --radius-sm: 5px;
  --radius-md: 10px;

  --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-primary);
  background: var(--color-white);
}

img {
  max-width: 100%;
}

.container {
  max-width: var(--container-width);
}

/* =========================
   Header
========================= */

.site-header {
  position: relative;
  z-index: 50;
  background: var(--color-white);
}

.header-main {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  background: var(--color-white);
}

.header-main__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 270px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-book,
.btn-phone {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 20px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-book {
  min-width: 150px;
  border: 1px solid var(--color-silver-dark);
  color: var(--color-black);
  background: var(--color-white);
}

.btn-book:hover,
.btn-book:focus {
  color: var(--color-black);
  background: var(--color-silver);
  border-color: var(--color-silver);
}

.btn-phone {
  min-width: 225px;
  gap: 14px;
  padding-inline: 26px;
  color: var(--color-white);
  background: var(--color-black);
  border: 1px solid var(--color-black);
}

.btn-phone:hover,
.btn-phone:focus {
  color: var(--color-black);
  background: var(--color-silver);
  border-color: var(--color-silver);
}

.btn-phone i {
  font-size: 21px;
}

.site-nav {
  min-height: var(--nav-height);
  padding: 0;
  background: var(--color-black);
  border-top: 1px solid rgba(192, 192, 192, 0.16);
  border-bottom: 1px solid rgba(192, 192, 192, 0.24);
}

.site-nav .navbar-nav {
  gap: 7px;
}

.site-nav .nav-link {
  padding: 19px 16px !important;
  color: var(--color-silver-light);
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: var(--transition);
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus,
.site-nav .nav-link.active {
  color: var(--color-white);
  background: rgba(192, 192, 192, 0.12);
}

.mobile-menu-btn {
  width: 46px;
  height: 42px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--color-silver-dark);
  border-radius: 6px;
  background: transparent;
}

.mobile-menu-btn span {
  width: 23px;
  height: 2px;
  background: var(--color-silver-dark);
}

/* =========================
   Booking Hero / Carousel
========================= */

.booking-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.booking-carousel,
.booking-carousel .carousel-inner,
.booking-carousel .carousel-item {
  position: absolute;
  inset: 0;
  height: 100%;
}

.booking-carousel {
  z-index: -3;
}

.booking-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.36) 0%,
      var(--color-overlay-hero) 50%,
      rgba(0, 0, 0, 0.76) 100%
    );
}

.booking-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 58px;
}

.booking-hero__eyebrow {
  margin: 0 0 46px;
  color: var(--color-white);
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.32);
}

/* User supplied SCS booking form */
.scs-booking-glass-wrapper {
  width: 100%;
  margin: 0 auto;
  scroll-margin-top: 30px;
}

.scs-booking-glass-card {
  width: min(100%, 1520px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-md);
  background: rgba(242, 244, 247, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.scs-booking-glass-head {
  padding: 26px 36px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.14);
}

.scs-booking-glass-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scs-booking-glass-head h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(30px, 2.5vw, 46px);
  line-height: 1.15;
  font-weight: 700;
}

.scs-booking-glass-body {
  padding: 28px 52px 34px;
}

.scs-booking-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.scs-booking-tabs label {
  display: block;
  margin: 0;
  cursor: pointer;
}

.scs-booking-tabs input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.scs-booking-tabs span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.28);
  border-radius: 7px;
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.72);
  transition: var(--transition);
}

.scs-booking-tabs i {
  color: var(--color-primary);
  font-size: 18px;
}

.scs-booking-tabs input:checked + span {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.18);
}

.scs-booking-tabs input:checked + span i {
  color: var(--color-white);
}

.scs-booking-form .form-control {
  min-height: 42px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: #505050;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: none;
}

.scs-booking-form textarea.form-control {
  min-height: 96px;
  resize: vertical;
}

.scs-booking-form .form-control::placeholder {
  color: #939393;
  opacity: 1;
}

.scs-booking-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb), 0.14);
}

.scs-booking-label,
.scs-booking-section-title {
  display: block;
  margin: 0 0 7px;
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 700;
}

.scs-booking-section-title {
  margin-top: 3px;
  padding: 11px 14px;
  border-left: 4px solid var(--color-primary);
  border-radius: 4px;
  background: rgba(var(--color-primary-rgb), 0.08);
  font-size: 16px;
}

.scs-return-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0 0;
  color: var(--color-text);
}

.scs-return-box strong {
  color: var(--color-primary-dark);
}

.scs-return-box label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  cursor: pointer;
}

.scs-return-box input,
.scs-booking-tabs input {
  accent-color: var(--color-primary);
}

.rtype-area {
  padding-top: 4px;
}

.scs-booking-submit {
  min-width: 170px;
  min-height: 48px;
  padding: 10px 25px;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 17px;
  font-weight: 700;
  transition: var(--transition);
}

.scs-booking-submit:hover,
.scs-booking-submit:focus {
  color: var(--color-white);
  background: var(--color-black);
  border-color: var(--color-black);
}

.scs-hp-wrap {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-disclaimer {
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.12);
  color: #666;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.airport[style*="display:none"],
.rtype-area[style*="display:none"] {
  display: none;
}

@media (max-width: 991.98px) {
  .booking-hero {
    min-height: 760px;
  }

  .booking-hero__content {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .booking-hero__eyebrow {
    margin-bottom: 34px;
  }

  .scs-booking-glass-body {
    padding: 26px 28px 30px;
  }
}

@media (max-width: 767.98px) {
  .booking-hero__eyebrow {
    font-size: 32px;
  }

  .scs-booking-glass-head {
    padding: 22px 18px 18px;
  }

  .scs-booking-glass-head h2 {
    font-size: 30px;
  }

  .scs-booking-glass-body {
    padding: 22px 18px 26px;
  }

  .scs-booking-tabs {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .scs-booking-tabs span {
    justify-content: flex-start;
  }

  .scs-return-box {
    flex-wrap: wrap;
  }
}

/* =========================
   Welcome
========================= */

.welcome-section {
  position: relative;
  min-height: 605px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    url("../images/about-hero.jpg") center center / cover no-repeat;
}

.welcome-section__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-overlay-dark);
}

.welcome-section__content {
  padding-top: 66px;
  padding-bottom: 66px;
  color: var(--color-white);
  text-align: center;
}

.welcome-kicker {
  margin: 0 0 18px;
  color: #c7c7c7;
  font-size: clamp(28px, 2vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
}

.welcome-section h2 {
  margin: 0 0 16px;
  color: var(--color-white);
  font-size: clamp(34px, 2.6vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
}

.welcome-copy {
  max-width: 1360px;
  margin: 0 auto 54px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.welcome-copy--small {
  margin-bottom: 56px;
}

.learn-more-btn {
  min-width: 160px;
  padding: 10px 22px;
  border-radius: 6px;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-white);
  font-size: 20px;
}

.learn-more-btn:hover,
.learn-more-btn:focus {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.future-section {
  display: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1199.98px) {
  .container {
    max-width: 1140px;
  }

  .brand {
    width: 230px;
  }

  .site-nav .nav-link {
    padding-inline: 12px !important;
    font-size: 16px;
  }

  .booking-card {
    padding-inline: 36px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 86px;
  }

  .header-main__inner {
    position: relative;
  }

  .brand {
    width: 210px;
  }

  .header-actions {
    margin-left: auto;
  }

  .btn-book {
    min-width: 125px;
    min-height: 46px;
    font-size: 17px;
  }

  .btn-phone {
    min-width: 185px;
    min-height: 46px;
    padding-inline: 18px;
    font-size: 17px;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .site-nav {
    min-height: 0;
  }

  .site-nav .container {
    max-width: none;
    padding: 0;
  }

  .site-nav .navbar-collapse {
    width: 100%;
  }

  .site-nav .navbar-nav {
    gap: 0;
    padding: 8px 0;
  }

  .site-nav .nav-link {
    padding: 13px 25px !important;
  }

  .booking-hero {
    min-height: auto;
  }

  .booking-carousel,
  .booking-carousel .carousel-inner,
  .booking-carousel .carousel-item {
    min-height: 820px;
  }

  .booking-hero__content {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .booking-hero__eyebrow {
    margin-bottom: 34px;
  }

  .booking-card {
    padding: 28px 28px 34px;
  }

  .booking-card h2 {
    margin-bottom: 35px;
  }

  .booking-radio {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .header-main__inner {
    min-height: 80px;
    gap: 12px;
  }

  .brand {
    width: 175px;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    margin-left: auto;
  }

  .booking-hero__eyebrow {
    font-size: 32px;
  }

  .booking-card {
    padding: 24px 18px 28px;
  }

  .booking-card h2 {
    font-size: 32px;
  }

  .booking-radio {
    width: 100%;
    font-size: 17px;
  }

  .return-trip {
    padding-left: 0;
    flex-wrap: wrap;
  }

  .welcome-section {
    min-height: auto;
  }

  .welcome-section__content {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .welcome-copy {
    margin-bottom: 34px;
    font-size: 15px;
  }

  .welcome-copy--small {
    margin-bottom: 38px;
  }
}

/* =========================================================
   NEW HOMEPAGE SECTIONS
========================================================= */

:root {
    --site-black: #050505;
    --site-charcoal: #151515;
    --site-dark-gray: #252525;
    --site-gray: #6d6d6d;
    --site-medium-gray: #a7a7a7;
    --site-light-gray: #ededed;
    --site-off-white: #f8f8f8;
    --site-white: #ffffff;

    --section-space: 95px;
    --card-radius: 16px;
    --site-shadow: 0 10px 35px rgba(0, 0, 0, 0.09);
}


/* ========================
   GLOBAL SECTION STYLE
======================== */

.section-space {
    padding: var(--section-space) 0;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 52px;
}

.section-subtitle {
    display: block;
    margin-bottom: 10px;
    color: var(--site-gray);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-heading h2,
.areas-content h2 {
    margin-bottom: 16px;
    color: var(--site-black);
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
    font-weight: 700;
}

.section-heading p,
.areas-content p {
    color: var(--site-gray);
    font-size: 17px;
    line-height: 1.75;
}


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

.services-section {
    background: var(--site-white);
}

.service-card {
    padding: 14px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    border-radius: var(--card-radius);
    background: var(--site-white);
    box-shadow: var(--site-shadow);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
}

.service-card-image {
    height: 245px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--site-light-gray);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.service-card-body {
    padding: 22px 10px 16px;
}

.service-card-body h3 {
    margin-bottom: 12px;
    color: var(--site-black);
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-card-body p {
    min-height: 135px;
    margin-bottom: 20px;
    color: var(--site-gray);
    font-size: 16px;
    line-height: 1.75;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--site-black);
    font-weight: 700;
    text-decoration: none;
}

.service-link i {
    transition: transform 0.25s ease;
}

.service-link:hover {
    color: var(--site-gray);
}

.service-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   CALL CTA
========================================================= */

.call-cta-section {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        url("../images/call-cta-bg.png")
        center center / cover no-repeat;
}

.call-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88),
            rgba(0, 0, 0, 0.72)
        );
}

.call-cta-content {
    max-width: 700px;
    margin: auto;
    color: var(--site-white);
}

.call-icon {
    width: 105px;
    height: 105px;
    margin: 0 auto 25px;

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

    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
}

.call-icon i {
    font-size: 44px;
}

.call-cta-content > span {
    display: block;
    margin-bottom: 6px;

    color: var(--site-light-gray);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.call-cta-content h2 {
    margin-bottom: 5px;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.call-number {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--site-white);
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.1;
    font-weight: 700;
    text-decoration: none;
}

.call-number:hover {
    color: var(--site-light-gray);
}

.call-cta-content p {
    margin-bottom: 28px;
    color: #d7d7d7;
    font-size: 17px;
}

.call-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-dark-cta,
.btn-light-cta {
    min-width: 155px;
    padding: 12px 24px;

    border-radius: 7px;

    font-size: 16px;
    font-weight: 600;
}

.btn-dark-cta {
    color: var(--site-black);
    background: var(--site-white);
    border: 1px solid var(--site-white);
}

.btn-dark-cta:hover {
    color: var(--site-white);
    background: transparent;
}

.btn-light-cta {
    color: var(--site-white);
    background: transparent;
    border: 1px solid #9d9d9d;
}

.btn-light-cta:hover {
    color: var(--site-black);
    background: var(--site-light-gray);
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    background: var(--site-off-white);
}

.benefit-card {
    padding: 35px 25px;

    border: 1px solid #e4e4e4;
    border-radius: 14px;

    background: var(--site-white);

    text-align: center;

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

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--site-shadow);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;

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

    border-radius: 50%;

    color: var(--site-white);
    background: var(--site-black);
}

.benefit-icon i {
    font-size: 29px;
}

.benefit-card h3 {
    margin-bottom: 13px;
    color: var(--site-black);
    font-size: 20px;
    font-weight: 700;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--site-gray);
    font-size: 15px;
    line-height: 1.7;
}

.primary-site-btn {
    min-width: 175px;
    padding: 12px 25px;

    border: 1px solid var(--site-black);
    border-radius: 6px;

    color: var(--site-white);
    background: var(--site-black);

    font-weight: 600;
}

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


/* =========================================================
   SERVICE AREAS
========================================================= */

.areas-section {
    background: var(--site-white);
}

.areas-content {
    padding-right: 25px;
}

.area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 25px;

    margin: 30px 0;
}

.area-list div {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--site-dark-gray);
    font-weight: 600;
}

.area-list i {
    color: var(--site-black);
}

.areas-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.secondary-site-btn {
    padding: 12px 24px;

    border: 1px solid #bbbbbb;
    border-radius: 6px;

    color: var(--site-black);
    background: var(--site-white);

    font-weight: 600;
}

.secondary-site-btn:hover {
    color: var(--site-white);
    background: var(--site-black);
    border-color: var(--site-black);
}

.areas-image {
    position: relative;

    min-height: 450px;

    overflow: hidden;
    border-radius: 18px;

    background: var(--site-light-gray);

    box-shadow: var(--site-shadow);
}

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

.areas-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 22px;

    border-radius: 10px;

    color: var(--site-white);
    background: rgba(0, 0, 0, 0.9);
}

.areas-image-badge i {
    font-size: 28px;
}

.areas-image-badge strong,
.areas-image-badge span {
    display: block;
}

.areas-image-badge strong {
    font-size: 18px;
}

.areas-image-badge span {
    color: #cfcfcf;
    font-size: 13px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--site-off-white);
}

.faq-wrapper {
    max-width: 950px;
    margin: auto;
}

.faq-section .accordion-item {
    margin-bottom: 12px;

    overflow: hidden;

    border: 1px solid #dddddd;
    border-radius: 9px !important;

    background: var(--site-white);
}

.faq-section .accordion-button {
    padding: 20px 22px;

    color: var(--site-black);
    background: var(--site-white);

    font-size: 17px;
    font-weight: 700;

    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--site-white);
    background: var(--site-black);
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.faq-section .accordion-body {
    padding: 20px 22px;

    color: var(--site-gray);
    font-size: 16px;
    line-height: 1.7;
}

.faq-section .accordion-body a {
    color: var(--site-black);
    font-weight: 700;
}

.faq-bottom-cta {
    max-width: 1100px;
    margin: 55px auto 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 32px 38px;

    border-radius: 14px;

    color: var(--site-white);
    background: var(--site-black);
}

.faq-bottom-cta span {
    color: #bdbdbd;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-bottom-cta h3 {
    margin: 5px 0 0;
    color: var(--site-white);
    font-size: 28px;
}

.faq-bottom-cta .primary-site-btn {
    border-color: var(--site-white);
    color: var(--site-black);
    background: var(--site-white);
}

.faq-bottom-cta .primary-site-btn:hover {
    color: var(--site-white);
    background: transparent;
}

.faq-bottom-cta .secondary-site-btn {
    border-color: #777777;
    color: var(--site-white);
    background: transparent;
}

.faq-bottom-cta .secondary-site-btn:hover {
    color: var(--site-black);
    background: var(--site-white);
}

.faq-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


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

@media (max-width: 991.98px) {

    :root {
        --section-space: 75px;
    }

    .service-card-body p {
        min-height: auto;
    }

    .areas-content {
        padding-right: 0;
    }

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


@media (max-width: 767.98px) {

    :root {
        --section-space: 60px;
    }

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

    .section-subtitle {
        font-size: 15px;
    }

    .section-heading h2,
    .areas-content h2 {
        font-size: 30px;
    }

    .service-card-image {
        height: 220px;
    }

    .call-cta-section {
        min-height: 500px;
    }

    .call-icon {
        width: 80px;
        height: 80px;
    }

    .call-icon i {
        font-size: 33px;
    }

    .call-cta-content h2 {
        font-size: 31px;
    }

    .call-number {
        font-size: 39px;
    }

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

    .areas-image,
    .areas-image > img {
        min-height: 330px;
        height: 330px;
    }

    .faq-bottom-cta {
        padding: 27px 22px;
    }

    .faq-bottom-cta h3 {
        font-size: 23px;
    }

    .faq-cta-actions {
        width: 100%;
    }

    .faq-cta-actions .btn {
        flex: 1;
		font-size:15px;
    }
}


@media (max-width: 480px) {

    .call-number {
        font-size: 34px;
    }

    .call-cta-buttons,
    .areas-actions {
        flex-direction: column;
		
    }

    .call-cta-buttons .btn,
    .areas-actions .btn {
        width: 100%;
    }
}

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

.site-footer {
    color: #d3d3d3;
    background: #080808;
}


/* MAIN FOOTER */

.footer-main {
    padding: 75px 0 65px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* BRAND */

.footer-logo {
    display: inline-block;

    margin-bottom: 23px;

    color: #ffffff;

    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;

    text-decoration: none;
}

.footer-logo:hover {
    color: #c4c4c4;
}


.footer-about p {
    max-width: 390px;

    margin-bottom: 27px;

    color: #a9a9a9;

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


/* PHONE */

.footer-contact-item {
    display: flex;
    align-items: center;

    gap: 14px;
}


.footer-contact-item > i {
    width: 46px;
    height: 46px;

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

    flex-shrink: 0;

    border: 1px solid #4b4b4b;
    border-radius: 50%;

    color: #ffffff;

    font-size: 18px;
}


.footer-contact-item span {
    display: block;

    margin-bottom: 2px;

    color: #8f8f8f;

    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}


.footer-contact-item a {
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;

    text-decoration: none;
}


.footer-contact-item a:hover {
    color: #c4c4c4;
}


/* WIDGET TITLE */

.footer-widget h3 {
    position: relative;

    margin-bottom: 25px;
    padding-bottom: 13px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}


.footer-widget h3::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 45px;
    height: 2px;

    background: #a5a5a5;
}


/* LINKS */

.footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}


.footer-links li {
    margin-bottom: 12px;
}


.footer-links a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #aaa;

    font-size: 15px;

    text-decoration: none;

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


.footer-links a i {
    color: #777;

    font-size: 11px;
}


.footer-links a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


/* BOOKING COLUMN */

.footer-booking p {
    margin-bottom: 20px;

    color: #aaa;

    font-size: 15px;
    line-height: 1.7;
}


.footer-book-btn {
    width: 100%;

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

    gap: 9px;

    margin-bottom: 12px;
    padding: 13px 20px;

    border-radius: 6px;

    color: #080808;
    background: #e3e3e3;

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

    text-decoration: none;

    transition: all 0.25s ease;
}


.footer-book-btn:hover {
    color: #ffffff;
    background: #353535;
}


.footer-phone-btn {
    width: 100%;

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

    gap: 9px;

    padding: 12px 20px;

    border: 1px solid #555;
    border-radius: 6px;

    color: #ffffff;
    background: transparent;

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

    text-decoration: none;

    transition: all 0.25s ease;
}


.footer-phone-btn:hover {
    color: #080808;
    background: #ffffff;
    border-color: #ffffff;
}


/* BOTTOM FOOTER */

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    background: #020202;
}


.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #888;

    font-size: 14px;
}


.footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 12px;
}


.footer-bottom-links span {
    color: #555;
}


.footer-bottom-links a {
    color: #a9a9a9;

    font-size: 14px;

    text-decoration: none;
}


.footer-bottom-links a:hover {
    color: #ffffff;
}


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

@media (max-width: 991.98px) {

    .footer-main {
        padding: 60px 0 50px;
    }

}


@media (max-width: 767.98px) {

    .footer-main {
        padding: 50px 0 40px;
    }


    .footer-bottom-inner {
        flex-direction: column;

        text-align: center;
    }


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

}

/* =========================================================
   FLEET SECTION
========================================================= */

.fleet-section {
    padding: 95px 0;

    background: #f7f7f7;
}


/* =========================
   CARD
========================= */

.fleet-card {
    overflow: hidden;

    border: 1px solid #e5e5e5;
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.07);

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


.fleet-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.12);
}


/* =========================
   IMAGE
========================= */

.fleet-image {
    position: relative;

    height: 265px;

    overflow: hidden;

    background: #eeeeee;
}


.fleet-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}


.fleet-card:hover .fleet-image img {
    transform: scale(1.045);
}


.fleet-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 7px 14px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;

    color: #ffffff;

    background: rgba(0, 0, 0, 0.82);

    backdrop-filter: blur(4px);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


/* =========================
   CARD CONTENT
========================= */

.fleet-card-body {
    padding: 28px 26px 27px;
}


.fleet-card-body h3 {
    margin-bottom: 13px;

    color: #080808;

    font-size: 25px;

    font-weight: 700;
}


.fleet-card-body > p {
    min-height: 105px;

    margin-bottom: 23px;

    color: #666666;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================
   FEATURES
========================= */

.fleet-features {
    margin-bottom: 26px;

    border-top: 1px solid #eeeeee;

    padding-top: 20px;
}


.fleet-features > div {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 11px;

    color: #454545;

    font-size: 14px;
}


.fleet-features > div:last-child {
    margin-bottom: 0;
}


.fleet-features i {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    background: #111111;

    font-size: 13px;
}


/* =========================
   BOOK BUTTON
========================= */

.fleet-book-btn {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding: 13px 17px;

    border: 1px solid #111111;
    border-radius: 6px;

    color: #ffffff;

    background: #111111;

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

    text-decoration: none;

    transition: all 0.25s ease;
}


.fleet-book-btn i {
    transition:
        transform 0.25s ease;
}


.fleet-book-btn:hover {
    color: #111111;

    background: #ffffff;
}


.fleet-book-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.fleet-bottom {
    margin-top: 50px;

    padding: 27px 30px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border: 1px solid #dddddd;
    border-radius: 12px;

    background: #ffffff;
}


.fleet-bottom-text {
    display: flex;

    align-items: center;

    gap: 17px;
}


.fleet-bottom-text > i {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    background: #111111;

    font-size: 23px;
}


.fleet-bottom-text strong {
    display: block;

    margin-bottom: 4px;

    color: #111111;

    font-size: 17px;
}


.fleet-bottom-text span {
    display: block;

    color: #777777;

    font-size: 14px;
}


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

.fleet-bottom-actions {
    display: flex;

    flex-shrink: 0;

    gap: 10px;
}


.fleet-primary-btn,
.fleet-outline-btn {
    padding: 11px 20px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;
}


.fleet-primary-btn {
    color: #ffffff;

    border: 1px solid #111111;

    background: #111111;
}


.fleet-primary-btn:hover {
    color: #111111;

    background: #ffffff;
}


.fleet-outline-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #111111;

    border: 1px solid #bbbbbb;

    background: #ffffff;
}


.fleet-outline-btn:hover {
    color: #ffffff;

    border-color: #111111;

    background: #111111;
}


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

@media (max-width: 991.98px) {

    .fleet-section {
        padding: 75px 0;
    }


    .fleet-card-body > p {
        min-height: auto;
    }


    .fleet-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 767.98px) {

    .fleet-section {
        padding: 60px 0;
    }


    .fleet-image {
        height: 235px;
    }


    .fleet-card-body {
        padding: 24px 20px;
    }


    .fleet-bottom {
        margin-top: 35px;

        padding: 24px 20px;
    }


    .fleet-bottom-actions {
        width: 100%;

        flex-direction: column;
    }


    .fleet-bottom-actions .btn {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .fleet-bottom-text {
        align-items: flex-start;
    }

}

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


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

.inner-hero {
    position: relative;

    min-height: 285px;

    display: flex;
    align-items: center;

    overflow: hidden;
}


.about-page-hero {
    background:
        url("../images/about-hero.jpg")
        center 55% / cover no-repeat;
}


.inner-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.68) 55%,
            rgba(0, 0, 0, 0.45) 100%
        );
}


.inner-hero-content {
    position: relative;
    z-index: 2;

    max-width: 720px;

    padding: 60px 0;

    color: #ffffff;
}


.inner-hero-label {
    display: block;

    margin-bottom: 8px;

    color: #c9c9c9;

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

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.inner-hero-content h1 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 52px);

    line-height: 1.1;

    font-weight: 700;
}


.inner-hero-content p {
    max-width: 620px;

    margin: 0;

    color: #dddddd;

    font-size: 17px;

    line-height: 1.65;
}


/* =========================================================
   COMMON ABOUT TYPOGRAPHY
========================================================= */

.about-small-title {
    display: block;

    margin-bottom: 10px;

    color: #777777;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.about-content h2,
.about-detail-content h2,
.about-text-heading h2 {
    margin-bottom: 20px;

    color: #0a0a0a;

    font-size: clamp(31px, 3vw, 43px);

    line-height: 1.18;

    font-weight: 700;
}


.about-content p,
.about-detail-content p,
.about-long-copy p {
    color: #626262;

    font-size: 16px;

    line-height: 1.85;
}


.about-content p {
    margin-bottom: 19px;
}


.about-lead {
    color: #252525 !important;

    font-size: 18px !important;

    font-weight: 500;
}


/* =========================================================
   INTRO
========================================================= */

.about-intro-section {
    padding: 95px 0;

    background: #ffffff;
}


.about-main-image {
    position: relative;

    min-height: 540px;

    overflow: hidden;

    border-radius: 16px;

    background: #eeeeee;

    box-shadow:
        0 15px 45px
        rgba(0, 0, 0, 0.1);
}


.about-main-image img {
    width: 100%;
    height: 540px;

    display: block;

    object-fit: cover;
}


.about-image-label {
    position: absolute;

    left: 22px;
    bottom: 22px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 14px 18px;

    border-radius: 9px;

    color: #ffffff;

    background: rgba(0, 0, 0, 0.88);
}


.about-image-label > i {
    font-size: 24px;
}


.about-image-label strong,
.about-image-label span {
    display: block;
}


.about-image-label strong {
    margin-bottom: 2px;

    font-size: 15px;
}


.about-image-label span {
    color: #bdbdbd;

    font-size: 12px;
}


/* =========================================================
   DETAIL SECTION
========================================================= */

.about-detail-section {
    padding: 95px 0;

    background: #f6f6f6;
}


.about-detail-image {
    height: 530px;

    overflow: hidden;

    border-radius: 16px;

    background: #dddddd;
}


.about-detail-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.about-detail-content p {
    margin-bottom: 18px;
}


/* CHECK LIST */

.about-check-list {
    display: grid;

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

    gap: 12px 20px;

    margin-top: 28px;
}


.about-check-list > div {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: #343434;

    font-size: 14px;

    font-weight: 600;
}


.about-check-list i {
    margin-top: 2px;

    color: #111111;
}


/* =========================================================
   LONG CONTENT
========================================================= */

.about-text-section {
    padding: 95px 0;

    background: #ffffff;
}


.about-text-heading {
    max-width: 750px;

    margin-bottom: 40px;
}


.about-long-copy p {
    margin-bottom: 20px;
}


/* =========================================================
   IMAGE + FLEET SECTION
========================================================= */

.about-visual-section {
    padding: 95px 0;

    background: #f6f6f6;
}


.about-text-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 10px;

    color: #111111;

    font-weight: 700;

    text-decoration: none;
}


.about-text-link i {
    transition:
        transform 0.25s ease;
}


.about-text-link:hover {
    color: #666666;
}


.about-text-link:hover i {
    transform: translateX(5px);
}


/* IMAGE GRID */

.about-image-grid {
    display: grid;

    grid-template-columns:
        1.25fr 0.75fr;

    grid-template-rows:
        repeat(2, 235px);

    gap: 15px;
}


.about-grid-image {
    overflow: hidden;

    border-radius: 12px;

    background: #dddddd;
}


.about-grid-image-large {
    grid-row: span 2;
}


.about-grid-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}


.about-grid-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   FINAL CTA
========================================================= */

.about-booking-cta {
    padding: 65px 0;

    background: #101010;
}


.about-booking-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


.about-booking-text {
    max-width: 700px;
}


.about-booking-text > span {
    display: block;

    margin-bottom: 7px;

    color: #aaaaaa;

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

    letter-spacing: 1px;

    text-transform: uppercase;
}


.about-booking-text h2 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: clamp(29px, 3vw, 39px);

    font-weight: 700;
}


.about-booking-text p {
    margin: 0;

    color: #b5b5b5;

    font-size: 15px;

    line-height: 1.7;
}


.about-booking-actions {
    display: flex;

    flex-shrink: 0;

    gap: 10px;
}


.about-book-btn,
.about-call-btn {
    padding: 12px 21px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;
}


.about-book-btn {
    color: #111111;

    border: 1px solid #ffffff;

    background: #ffffff;
}


.about-book-btn:hover {
    color: #ffffff;

    background: transparent;
}


.about-call-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #ffffff;

    border: 1px solid #666666;

    background: transparent;
}


.about-call-btn:hover {
    color: #111111;

    border-color: #ffffff;

    background: #ffffff;
}


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

@media (max-width: 991.98px) {

    .about-intro-section,
    .about-detail-section,
    .about-text-section,
    .about-visual-section {
        padding: 75px 0;
    }


    .about-main-image,
    .about-main-image img,
    .about-detail-image {
        min-height: 430px;

        height: 430px;
    }


    .about-booking-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 767.98px) {

    .inner-hero {
        min-height: 230px;
    }


    .inner-hero-content {
        padding: 48px 0;
    }


    .inner-hero-content h1 {
        font-size: 36px;
    }


    .about-intro-section,
    .about-detail-section,
    .about-text-section,
    .about-visual-section {
        padding: 60px 0;
    }


    .about-main-image,
    .about-main-image img,
    .about-detail-image {
        min-height: 330px;

        height: 330px;
    }


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


    .about-image-grid {
        display: block;
    }


    .about-grid-image {
        height: 230px;

        margin-bottom: 15px;
    }


    .about-grid-image-large {
        height: 300px;
    }


    .about-booking-cta {
        padding: 50px 0;
    }


    .about-booking-actions {
        width: 100%;

        flex-direction: column;
    }


    .about-booking-actions .btn {
        width: 100%;
    }

}

/* =========================================================
   ABOUT CTA / FOOTER SEPARATOR STRIP
========================================================= */

.about-footer-strip {
    padding: 28px 0;

    background: #f3f3f3;

    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #dddddd;
}


.about-footer-strip-inner {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 35px;
}


.strip-item {
    display: flex;

    align-items: center;

    gap: 11px;

    color: #222222;

    font-size: 14px;
    font-weight: 600;
}


.strip-item i {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: #111111;

    font-size: 15px;
}


.strip-divider {
    width: 1px;
    height: 38px;

    background: #cccccc;
}


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

@media (max-width: 767.98px) {

    .about-footer-strip {
        padding: 23px 0;
    }


    .about-footer-strip-inner {
        flex-direction: column;

        gap: 17px;
    }


    .strip-divider {
        width: 70px;
        height: 1px;
    }

}

/* =========================================================
   SERVICES PAGE
========================================================= */


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

.services-page-hero {
    background:
        url("../images/services/services-hero.jpg")
        center 55% / cover no-repeat;
}


/* =========================================================
   INTRO
========================================================= */

.services-page-intro {
    padding: 85px 0 50px;

    background: #ffffff;
}


.services-page-heading {
    max-width: 950px;

    margin: 0 auto;
}


.services-eyebrow {
    display: block;

    margin-bottom: 9px;

    color: #777777;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.services-page-heading h2,
.services-info-content h2 {
    margin-bottom: 20px;

    color: #0a0a0a;

    font-size: clamp(31px, 3vw, 43px);

    line-height: 1.2;

    font-weight: 700;
}


.services-page-heading p {
    max-width: 900px;

    margin: 0 auto 15px;

    color: #696969;

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-page-grid {
    padding: 45px 0 95px;

    background: #ffffff;
}


.service-page-card {
    overflow: hidden;

    border: 1px solid #e5e5e5;
    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 8px 28px
        rgba(0, 0, 0, 0.08);

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


.service-page-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.12);
}


/* IMAGE */

.service-page-image {
    height: 245px;

    overflow: hidden;

    background: #eeeeee;
}


.service-page-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}


.service-page-card:hover .service-page-image img {
    transform: scale(1.045);
}


/* CONTENT */

.service-page-card-content {
    padding: 25px 24px 27px;
}


.service-page-card-content h2 {
    margin-bottom: 14px;

    color: #101010;

    font-size: 22px;

    line-height: 1.25;

    font-weight: 700;

    text-transform: uppercase;
}


.service-page-card-content p {
    margin-bottom: 14px;

    color: #676767;

    font-size: 15px;

    line-height: 1.75;
}


.service-page-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 6px;

    color: #111111;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;
}


.service-page-link i {
    transition:
        transform 0.25s ease;
}


.service-page-link:hover {
    color: #666666;
}


.service-page-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   INFORMATION SECTION
========================================================= */

.services-info-section {
    padding: 95px 0;

    background: #f6f6f6;
}


.services-info-image {
    height: 550px;

    overflow: hidden;

    border-radius: 16px;

    background: #dddddd;

    box-shadow:
        0 14px 40px
        rgba(0, 0, 0, 0.09);
}


.services-info-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.services-info-content p {
    margin-bottom: 18px;

    color: #656565;

    font-size: 16px;

    line-height: 1.8;
}


/* CHECKLIST */

.services-check-list {
    display: grid;

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

    gap: 13px 20px;

    margin: 28px 0 30px;
}


.services-check-list > div {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: #343434;

    font-size: 14px;

    font-weight: 600;
}


.services-check-list i {
    margin-top: 2px;

    color: #111111;
}


/* BUTTON */

.services-main-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 180px;

    padding: 13px 22px;

    border: 1px solid #111111;
    border-radius: 6px;

    color: #ffffff;

    background: #111111;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition:
        all 0.25s ease;
}


.services-main-btn:hover {
    color: #111111;

    background: #ffffff;
}


/* =========================================================
   FINAL CTA
========================================================= */

.services-booking-cta {
    padding: 65px 0;

    background: #101010;
}


.services-booking-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;
}


.services-booking-inner > div:first-child {
    max-width: 700px;
}


.services-booking-inner span {
    display: block;

    margin-bottom: 7px;

    color: #aaaaaa;

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

    letter-spacing: 1px;

    text-transform: uppercase;
}


.services-booking-inner h2 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: clamp(29px, 3vw, 39px);

    font-weight: 700;
}


.services-booking-inner p {
    margin: 0;

    color: #b5b5b5;

    font-size: 15px;

    line-height: 1.7;
}


.services-booking-actions {
    display: flex;

    flex-shrink: 0;

    gap: 10px;
}


.services-book-btn,
.services-call-btn {
    padding: 12px 21px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;
}


.services-book-btn {
    color: #111111;

    border: 1px solid #ffffff;

    background: #ffffff;
}


.services-book-btn:hover {
    color: #ffffff;

    background: transparent;
}


.services-call-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #ffffff;

    border: 1px solid #666666;

    background: transparent;
}


.services-call-btn:hover {
    color: #111111;

    border-color: #ffffff;

    background: #ffffff;
}


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

@media (max-width: 991.98px) {

    .services-page-intro {
        padding: 70px 0 35px;
    }


    .services-page-grid {
        padding: 35px 0 75px;
    }


    .services-info-section {
        padding: 75px 0;
    }


    .services-info-image {
        height: 440px;
    }


    .services-booking-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 767.98px) {

    .services-page-intro {
        padding: 55px 0 25px;
    }


    .services-page-grid {
        padding: 30px 0 60px;
    }


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


    .service-page-card-content {
        padding: 22px 20px 24px;
    }


    .services-info-section {
        padding: 60px 0;
    }


    .services-info-image {
        height: 330px;
    }


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


    .services-booking-cta {
        padding: 50px 0;
    }


    .services-booking-actions {
        width: 100%;

        flex-direction: column;
    }


    .services-booking-actions .btn {
        width: 100%;
    }

}


/* =========================================================
   BOOK CAB ONLINE PAGE
========================================================= */


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

.booking-page-hero {
    position: relative;

    min-height: 145px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        url("../images/hero.jpg")
        center 55% / cover no-repeat;
}


.booking-page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92),
            rgba(0, 0, 0, 0.73)
        );
}


.booking-page-hero-content {
    position: relative;
    z-index: 2;

    min-height: 145px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 22px 0;

    color: #ffffff;
}


.booking-page-hero-content > div:first-child {
    max-width: 720px;
}


.booking-page-hero-content span {
    display: block;

    margin-bottom: 3px;

    color: #bdbdbd;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.booking-page-hero-content h1 {
    margin: 0 0 4px;

    color: #ffffff;

    font-size: clamp(28px, 3vw, 38px);

    line-height: 1.1;

    font-weight: 700;
}


.booking-page-hero-content p {
    margin: 0;

    color: #d2d2d2;

    font-size: 14px;

    line-height: 1.5;
}


/* HERO PHONE */

.booking-hero-call {
    display: flex;
    align-items: center;

    gap: 11px;

    flex-shrink: 0;

    padding: 10px 15px;

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

    border-radius: 7px;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.08);

    text-decoration: none;

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


.booking-hero-call > i {
    width: 34px;
    height: 34px;

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

    border-radius: 50%;

    color: #111111;

    background: #ffffff;

    font-size: 14px;
}


.booking-hero-call small,
.booking-hero-call strong {
    display: block;
}


.booking-hero-call small {
    margin-bottom: 1px;

    color: #bdbdbd;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


.booking-hero-call strong {
    color: #ffffff;

    font-size: 17px;
}


.booking-hero-call:hover {
    color: #111111;

    background: #ffffff;
}


.booking-hero-call:hover strong {
    color: #111111;
}


.booking-hero-call:hover > i {
    color: #ffffff;

    background: #111111;
}


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

.booking-page-form-section {
    padding: 34px 0 45px;

    background: #f5f5f5;
}


.booking-page-form-wrapper {
    max-width: 1260px;

    margin: 0 auto;
}


.booking-page-form-heading {
    margin-bottom: 20px;

    text-align: center;
}


.booking-page-form-heading > span {
    display: block;

    margin-bottom: 4px;

    color: #777777;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.booking-page-form-heading h2 {
    margin: 0 0 7px;

    color: #101010;

    font-size: clamp(27px, 3vw, 36px);

    font-weight: 700;
}


.booking-page-form-heading p {
    margin: 0;

    color: #727272;

    font-size: 14px;
}


/* =========================================================
   OVERRIDE OLD GLASS FORM FOR THIS PAGE
========================================================= */

.booking-page-existing-form {
    padding: 0;
}


.booking-page-existing-form
.scs-booking-glass-card {
    max-width: none;

    margin: 0;

    padding: 30px;

    border: 1px solid #dedede;

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.08);

    backdrop-filter: none;
}


/* FORM TABS */

.booking-page-existing-form
.scs-booking-tabs {
    display: grid;

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

    gap: 10px;

    margin-bottom: 25px;
}


.booking-page-existing-form
.scs-booking-tabs label {
    margin: 0;
}


.booking-page-existing-form
.scs-booking-tabs input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.booking-page-existing-form
.scs-booking-tabs span {
    min-height: 54px;

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

    gap: 9px;

    padding: 12px 16px;

    border: 1px solid #d4d4d4;
    border-radius: 7px;

    color: #333333;

    background: #f8f8f8;

    cursor: pointer;

    transition:
        all 0.25s ease;
}


.booking-page-existing-form
.scs-booking-tabs input:checked + span {
    color: #ffffff;

    border-color: #111111;

    background: #111111;
}


.booking-page-existing-form
.scs-booking-tabs strong {
    font-size: 14px;
}


/* INPUTS */

.booking-page-existing-form
.form-control {
    min-height: 48px;

    padding: 10px 13px;

    border: 1px solid #d7d7d7;
    border-radius: 6px;

    color: #222222;

    background: #ffffff;

    font-size: 14px;

    box-shadow: none;
}


.booking-page-existing-form
textarea.form-control {
    min-height: 90px;
}


.booking-page-existing-form
.form-control:focus {
    border-color: #777777;

    box-shadow:
        0 0 0 3px
        rgba(0, 0, 0, 0.06);
}


.booking-page-existing-form
.scs-booking-label {
    display: block;

    margin-bottom: 7px;

    color: #393939;

    font-size: 12px;

    font-weight: 700;
}


/* RETURN TRIP */

.booking-page-existing-form
.scs-return-box {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 13px 15px;

    border: 1px solid #dedede;
    border-radius: 6px;

    background: #f7f7f7;
}


.booking-page-existing-form
.scs-return-box strong {
    margin-right: 4px;

    color: #111111;
}


.booking-page-existing-form
.scs-return-box label {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin: 0;
}


/* SUBMIT */

.booking-page-submit,
.booking-page-existing-form
.scs-booking-submit {
    min-width: 230px;

    padding: 14px 30px;

    border: 1px solid #111111;
    border-radius: 6px;

    color: #ffffff;

    background: #111111;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition:
        all 0.25s ease;
}


.booking-page-submit:hover,
.booking-page-existing-form
.scs-booking-submit:hover {
    color: #111111;

    background: #ffffff;
}


/* HONEYPOT */

.scs-hp-wrap {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* =========================================================
   BOTTOM CONFIDENCE STRIP
========================================================= */

.booking-confidence-strip {
    padding: 24px 0;

    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #dddddd;

    background: #ffffff;
}


.booking-confidence-inner {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 26px;
}


.booking-confidence-item {
    display: flex;
    align-items: center;

    gap: 10px;
}


.booking-confidence-item > i {
    width: 37px;
    height: 37px;

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

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    background: #111111;

    font-size: 14px;
}


.booking-confidence-item strong,
.booking-confidence-item span,
.booking-confidence-item a {
    display: block;
}


.booking-confidence-item strong {
    margin-bottom: 1px;

    color: #151515;

    font-size: 13px;
}


.booking-confidence-item span,
.booking-confidence-item a {
    color: #777777;

    font-size: 11px;

    text-decoration: none;
}


.booking-confidence-item a:hover {
    color: #111111;
}


.booking-confidence-divider {
    width: 1px;
    height: 38px;

    background: #dddddd;
}


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

@media (max-width: 991.98px) {

    .booking-page-hero-content {
        min-height: 135px;
    }


    .booking-page-existing-form
    .scs-booking-glass-card {
        padding: 24px;
    }


    .booking-confidence-inner {
        display: grid;

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

        gap: 20px;
    }


    .booking-confidence-divider {
        display: none;
    }

}


@media (max-width: 767.98px) {

    .booking-page-hero {
        min-height: auto;
    }


    .booking-page-hero-content {
        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 13px;
    }


    .booking-page-hero-content h1 {
        font-size: 28px;
    }


    .booking-page-hero-content p {
        font-size: 13px;
    }


    .booking-hero-call {
        width: 100%;

        justify-content: center;
    }


    .booking-page-form-section {
        padding: 24px 0 35px;
    }


    .booking-page-form-heading {
        margin-bottom: 16px;
    }


    .booking-page-existing-form
    .scs-booking-glass-card {
        padding: 18px;
    }


    .booking-page-existing-form
    .scs-booking-tabs {
        grid-template-columns: 1fr;
    }


    .booking-page-submit,
    .booking-page-existing-form
    .scs-booking-submit {
        width: 100%;

        min-width: 0;
    }


    .booking-confidence-inner {
        grid-template-columns: 1fr;
    }

}

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


/* =========================================================
   HERO
   Uses the same inner hero structure as About Us
========================================================= */

.contact-page-hero {
    background:
        url("../images/contact-hero.jpg")
        center 55% / cover no-repeat;
}


/* =========================================================
   INTRO
========================================================= */

.contact-intro-section {
    padding: 75px 0 38px;

    background: #ffffff;
}


.contact-page-heading {
    max-width: 780px;

    margin: 0 auto;
}


.contact-eyebrow {
    display: block;

    margin-bottom: 9px;

    color: #777777;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.contact-page-heading h2 {
    margin: 0 0 15px;

    color: #0a0a0a;

    font-size: clamp(30px, 3vw, 42px);

    line-height: 1.2;

    font-weight: 700;
}


.contact-page-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: #707070;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   MAIN CONTACT AREA
========================================================= */

.contact-main-section {
    padding: 35px 0 90px;

    background: #ffffff;
}


/* =========================================================
   LEFT CONTACT CARDS
========================================================= */

.contact-details-wrapper {
    height: 100%;

    display: flex;
    flex-direction: column;

    gap: 16px;
}


.contact-detail-card {
    position: relative;

    min-height: 112px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 22px 24px;

    overflow: hidden;

    border: 1px solid #e7e7e7;
    border-radius: 14px;

    color: #111111;

    background: #ffffff;

    box-shadow:
        0 8px 28px
        rgba(0, 0, 0, 0.06);

    text-decoration: none;

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


a.contact-detail-card:hover {
    transform: translateY(-4px);

    border-color: #cccccc;

    color: #111111;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.10);
}


/* ICON */

.contact-detail-icon {
    width: 56px;
    height: 56px;

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

    flex-shrink: 0;

    border-radius: 12px;

    color: #ffffff;

    background: #111111;

    font-size: 23px;
}


/* CONTENT */

.contact-detail-content {
    min-width: 0;

    flex: 1;
}


.contact-detail-content span {
    display: block;

    margin-bottom: 3px;

    color: #818181;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


.contact-detail-content strong {
    display: block;

    overflow-wrap: anywhere;

    color: #111111;

    font-size: 18px;
    line-height: 1.35;

    font-weight: 700;
}


.contact-detail-content small {
    display: block;

    margin-top: 4px;

    color: #8a8a8a;

    font-size: 12px;
}


.contact-detail-arrow {
    width: 34px;
    height: 34px;

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

    flex-shrink: 0;

    border: 1px solid #dddddd;
    border-radius: 50%;

    color: #555555;

    background: #fafafa;

    transition:
        all 0.25s ease;
}


a.contact-detail-card:hover
.contact-detail-arrow {
    color: #ffffff;

    border-color: #111111;

    background: #111111;
}


.contact-email {
    font-size: 16px !important;
}


.contact-location-card {
    cursor: default;
}


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

.contact-map-card {
    height: 100%;

    min-height: 496px;

    overflow: hidden;

    border: 1px solid #e3e3e3;
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.07);
}


.contact-map-heading {
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 19px 23px;

    border-bottom: 1px solid #e8e8e8;

    background: #ffffff;
}


.contact-map-heading span {
    display: block;

    margin-bottom: 2px;

    color: #868686;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.9px;

    text-transform: uppercase;
}


.contact-map-heading h2 {
    margin: 0;

    color: #111111;

    font-size: 24px;

    font-weight: 700;
}


.map-location-icon {
    width: 45px;
    height: 45px;

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

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    background: #111111;

    font-size: 18px;
}


.contact-map {
    height: calc(100% - 90px);

    min-height: 405px;

    background: #eeeeee;
}


.contact-map iframe {
    display: block;
}


/* =========================================================
   BOOKING CTA
========================================================= */

.contact-booking-section {
    padding: 65px 0;

    background: #111111;
}


.contact-booking-box {
    display: flex;
    align-items: center;

    gap: 25px;
}


.contact-booking-icon {
    width: 68px;
    height: 68px;

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

    flex-shrink: 0;

    border: 1px solid #4c4c4c;
    border-radius: 50%;

    color: #111111;

    background: #ffffff;

    font-size: 27px;
}


.contact-booking-content {
    max-width: 700px;

    flex: 1;
}


.contact-booking-content > span {
    display: block;

    margin-bottom: 5px;

    color: #9f9f9f;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.contact-booking-content h2 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: clamp(27px, 3vw, 37px);

    font-weight: 700;
}


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

    color: #b3b3b3;

    font-size: 14px;

    line-height: 1.7;
}


.contact-booking-actions {
    display: flex;

    flex-shrink: 0;

    gap: 10px;
}


.contact-book-btn,
.contact-call-btn {
    min-width: 145px;

    padding: 12px 20px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;
}


.contact-book-btn {
    color: #111111;

    border: 1px solid #ffffff;

    background: #ffffff;
}


.contact-book-btn:hover {
    color: #ffffff;

    background: transparent;
}


.contact-call-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #ffffff;

    border: 1px solid #666666;

    background: transparent;
}


.contact-call-btn:hover {
    color: #111111;

    border-color: #ffffff;

    background: #ffffff;
}


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

.contact-footer-strip {
    padding: 27px 0;

    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #dddddd;

    background: #f5f5f5;
}


.contact-footer-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 35px;
}


.contact-strip-item {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #262626;

    font-size: 14px;

    font-weight: 600;
}


.contact-strip-item i {
    width: 36px;
    height: 36px;

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

    border-radius: 50%;

    color: #ffffff;

    background: #111111;

    font-size: 14px;
}


.contact-strip-divider {
    width: 1px;
    height: 35px;

    background: #cccccc;
}


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

@media (max-width: 991.98px) {

    .contact-intro-section {
        padding: 65px 0 30px;
    }


    .contact-main-section {
        padding: 30px 0 75px;
    }


    .contact-map-card {
        min-height: 480px;
    }


    .contact-booking-box {
        flex-wrap: wrap;
    }


    .contact-booking-actions {
        width: 100%;

        margin-top: 8px;

        padding-left: 93px;
    }

}


@media (max-width: 767.98px) {

    .contact-intro-section {
        padding: 52px 0 25px;
    }


    .contact-main-section {
        padding: 25px 0 60px;
    }


    .contact-detail-card {
        min-height: 100px;

        padding: 19px;
    }


    .contact-detail-icon {
        width: 48px;
        height: 48px;

        font-size: 19px;
    }


    .contact-detail-content strong {
        font-size: 16px;
    }


    .contact-email {
        font-size: 14px !important;
    }


    .contact-map-card {
        min-height: 430px;
    }


    .contact-map {
        min-height: 340px;
    }


    .contact-booking-section {
        padding: 50px 0;
    }


    .contact-booking-box {
        align-items: flex-start;
    }


    .contact-booking-icon {
        width: 55px;
        height: 55px;

        font-size: 22px;
    }


    .contact-booking-content {
        flex-basis: calc(100% - 80px);
    }


    .contact-booking-actions {
        width: 100%;

        padding-left: 0;

        flex-direction: column;
    }


    .contact-booking-actions .btn {
        width: 100%;
    }


    .contact-footer-strip-inner {
        flex-direction: column;

        gap: 16px;
    }


    .contact-strip-divider {
        width: 70px;
        height: 1px;
    }

}


/* =========================================================
   PRIVACY POLICY PAGE
========================================================= */


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

.privacy-page-hero {
    background:
        url("../images/hero.jpg")
        center 50% / cover no-repeat;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.privacy-policy-section {
    padding: 85px 0 90px;

    background: #f7f7f7;
}


/* =========================================================
   SIDEBAR
========================================================= */

.privacy-sidebar {
    position: sticky;
    top: 25px;

    padding: 25px 22px;

    border: 1px solid #e4e4e4;
    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 7px 25px
        rgba(0, 0, 0, 0.05);
}


.privacy-sidebar-title {
    display: block;

    margin-bottom: 17px;
    padding-bottom: 14px;

    border-bottom: 1px solid #e8e8e8;

    color: #111111;

    font-size: 18px;
    font-weight: 700;
}


.privacy-navigation {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.privacy-navigation a {
    padding: 9px 10px;

    border-radius: 5px;

    color: #666666;

    font-size: 13px;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


.privacy-navigation a:hover {
    color: #ffffff;

    background: #111111;
}


/* =========================================================
   CONTENT
========================================================= */

.privacy-content {
    padding: 42px 45px;

    border: 1px solid #e4e4e4;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.05);
}


.privacy-block {
    margin-bottom: 52px;
    padding-bottom: 46px;

    border-bottom: 1px solid #e9e9e9;

    scroll-margin-top: 30px;
}


.privacy-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;

    border-bottom: 0;
}


.privacy-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #777777;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.1px;

    text-transform: uppercase;
}


.privacy-content h2 {
    margin: 0 0 20px;

    color: #111111;

    font-size: clamp(26px, 2.4vw, 35px);

    line-height: 1.25;

    font-weight: 700;
}


.privacy-content h3 {
    margin: 0 0 10px;

    color: #161616;

    font-size: 18px;

    font-weight: 700;
}


.privacy-content p {
    margin-bottom: 17px;

    color: #616161;

    font-size: 15px;

    line-height: 1.85;
}


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


.privacy-content strong {
    color: #222222;
}


/* =========================================================
   SUBSECTIONS
========================================================= */

.privacy-subsection {
    margin-top: 25px;

    padding: 22px 24px;

    border-left: 3px solid #1a1a1a;

    background: #f8f8f8;
}


.privacy-subsection + .privacy-subsection {
    margin-top: 14px;
}


.privacy-subsection p {
    margin-bottom: 10px;
}


.privacy-subsection p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   PRIVACY CONTACT CARD
========================================================= */

.privacy-contact-block {
    display: flex;

    align-items: flex-start;

    gap: 22px;

    padding: 32px;

    border: 0;
    border-radius: 12px;

    color: #ffffff;

    background: #111111;
}


.privacy-contact-block h2 {
    color: #ffffff;
}


.privacy-contact-block p {
    color: #bcbcbc;
}


.privacy-contact-block strong {
    color: #ffffff;
}


.privacy-contact-icon {
    width: 62px;
    height: 62px;

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

    flex-shrink: 0;

    border-radius: 50%;

    color: #111111;

    background: #ffffff;

    font-size: 25px;
}


.privacy-contact-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 21px;
}


.privacy-email-btn,
.privacy-phone-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 17px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}


.privacy-email-btn {
    color: #111111;

    border: 1px solid #ffffff;

    background: #ffffff;
}


.privacy-email-btn:hover {
    color: #ffffff;

    background: transparent;
}


.privacy-phone-btn {
    color: #ffffff;

    border: 1px solid #5b5b5b;

    background: transparent;
}


.privacy-phone-btn:hover {
    color: #111111;

    border-color: #ffffff;

    background: #ffffff;
}


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

.privacy-footer-strip {
    padding: 27px 0;

    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #dddddd;

    background: #f2f2f2;
}


.privacy-footer-strip-inner {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 30px;
}


.privacy-footer-strip-inner > div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #2d2d2d;

    font-size: 13px;

    font-weight: 600;
}


.privacy-footer-strip-inner i {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: #111111;

    font-size: 13px;
}


.privacy-strip-divider {
    width: 1px;
    height: 33px;

    background: #cccccc;
}


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

@media (max-width: 991.98px) {

    .privacy-policy-section {
        padding: 70px 0;
    }


    .privacy-sidebar {
        position: static;
    }


    .privacy-navigation {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }


    .privacy-content {
        padding: 35px;
    }

}


@media (max-width: 767.98px) {

    .privacy-policy-section {
        padding: 55px 0;
    }


    .privacy-navigation {
        grid-template-columns: 1fr;
    }


    .privacy-content {
        padding: 25px 20px;
    }


    .privacy-block {
        margin-bottom: 40px;
        padding-bottom: 35px;
    }


    .privacy-subsection {
        padding: 19px 17px;
    }


    .privacy-contact-block {
        flex-direction: column;

        padding: 25px 20px;
    }


    .privacy-contact-actions {
        width: 100%;

        flex-direction: column;
    }


    .privacy-contact-actions a {
        width: 100%;
    }


    .privacy-footer-strip-inner {
        flex-direction: column;

        gap: 15px;
    }


    .privacy-strip-divider {
        width: 70px;
        height: 1px;
    }

}

.contact-business-notice {
    max-width: 1100px;

    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin: 35px auto 0;
    padding: 18px 20px;

    border: 1px solid #dddddd;
    border-radius: 8px;

    background: #f7f7f7;
}

.contact-business-notice i {
    margin-top: 3px;

    flex-shrink: 0;

    color: #111111;

    font-size: 18px;
}

.contact-business-notice p {
    margin: 0;

    color: #666666;

    font-size: 13px;
    line-height: 1.7;
}

.contact-business-notice strong {
    color: #222222;
}

@media (max-width: 767.98px) {

    .contact-business-notice {
        padding: 16px;

        margin-top: 25px;
    }

}

/* =========================================================
   BUSINESS INFORMATION - CLEAN FINAL DESIGN
========================================================= */

.privacy-business-section {
    margin-bottom: 45px;
}


/* Remove old large grey container styling */
.privacy-business-section .privacy-business-details {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;

    width: 100% !important;

    margin: 28px 0 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
}


/* =========================================================
   EACH DETAIL CARD
========================================================= */

.privacy-business-section .privacy-business-row {
    display: flex !important;
    align-items: center !important;

    gap: 14px !important;

    min-width: 0;

    padding: 17px 18px !important;

    border: 1px solid #e2e2e2 !important;
    border-radius: 9px !important;

    background: #f8f8f8 !important;

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


.privacy-business-section .privacy-business-row:hover {
    border-color: #bcbcbc !important;

    background: #ffffff !important;

    transform: translateY(-2px);
}


/* Full-width row - useful for email */
.privacy-business-section .privacy-business-row-full {
    grid-column: 1 / -1 !important;
}


/* =========================================================
   ICON
========================================================= */

.privacy-business-section .privacy-business-icon {
    width: 44px !important;
    height: 44px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 44px !important;

    margin: 0 !important;

    border-radius: 50% !important;

    background: #111111 !important;

    color: #ffffff !important;

    font-size: 16px !important;
}


.privacy-business-section .privacy-business-icon i {
    margin: 0 !important;

    color: #ffffff !important;

    font-size: 16px !important;

    line-height: 1 !important;
}


/* =========================================================
   TEXT
========================================================= */

.privacy-business-section .privacy-business-info {
    flex: 1 !important;

    min-width: 0 !important;

    margin: 0 !important;
}


.privacy-business-section .privacy-business-info span {
    display: block !important;

    margin: 0 0 4px !important;

    color: #777777 !important;

    font-size: 10px !important;
    font-weight: 700 !important;

    line-height: 1.3 !important;

    letter-spacing: 0.7px !important;

    text-transform: uppercase !important;
}


.privacy-business-section .privacy-business-info strong,
.privacy-business-section .privacy-business-info a {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    color: #111111 !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    line-height: 1.45 !important;

    text-decoration: none !important;

    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}


.privacy-business-section .privacy-business-info a:hover {
    text-decoration: underline !important;
}


/* =========================================================
   BUSINESS SECTION HEADING
========================================================= */

.privacy-business-section > .privacy-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #707070;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.privacy-business-section > h2 {
    margin: 0 0 18px;

    color: #111111;

    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;

    line-height: 1.15;
}


.privacy-business-section > p {
    max-width: 100%;

    margin-bottom: 14px;

    color: #5f5f5f;

    font-size: 15px;

    line-height: 1.8;
}


.privacy-business-section > p strong {
    color: #111111;
}


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

@media (max-width: 991.98px) {

    .privacy-business-section .privacy-business-details {
        grid-template-columns: 1fr !important;
    }


    .privacy-business-section .privacy-business-row-full {
        grid-column: auto !important;
    }

}


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

@media (max-width: 767.98px) {

    .privacy-business-section {
        margin-bottom: 35px;
    }


    .privacy-business-section .privacy-business-details {
        gap: 10px !important;

        margin-top: 22px !important;
    }


    .privacy-business-section .privacy-business-row {
        gap: 12px !important;

        padding: 14px !important;
    }


    .privacy-business-section .privacy-business-icon {
        width: 40px !important;
        height: 40px !important;

        flex-basis: 40px !important;

        font-size: 14px !important;
    }


    .privacy-business-section .privacy-business-icon i {
        font-size: 14px !important;
    }


    .privacy-business-section .privacy-business-info span {
        font-size: 9px !important;
    }


    .privacy-business-section .privacy-business-info strong,
    .privacy-business-section .privacy-business-info a {
        font-size: 13px !important;
    }


    .privacy-business-section > h2 {
        font-size: 30px;
    }


    .privacy-business-section > p {
        font-size: 14px;

        line-height: 1.75;
    }

}


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

@media (max-width: 480px) {

    .privacy-business-section .privacy-business-row {
        align-items: flex-start !important;
    }


    .privacy-business-section .privacy-business-icon {
        margin-top: 1px !important;
    }


    .privacy-business-section > h2 {
        font-size: 27px;
    }

}

/* =========================================================
   PRIVACY - BUSINESS INFORMATION
========================================================= */

.privacy-business-section {
    scroll-margin-top: 30px;
}


.privacy-business-details {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 28px;
}


.privacy-business-row {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 17px 18px;

    border: 1px solid #e1e1e1;
    border-radius: 9px;

    background: #f8f8f8;
}


.privacy-business-row-full {
    grid-column: 1 / -1;
}


.privacy-business-icon {
    width: 42px;
    height: 42px;

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

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    background: #111111;

    font-size: 15px;
}


.privacy-business-info {
    min-width: 0;

    flex: 1;
}


.privacy-business-info span {
    display: block;

    margin-bottom: 3px;

    color: #858585;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


.privacy-business-info strong,
.privacy-business-info a {
    display: block;

    max-width: 100%;

    color: #222222;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.4;

    text-decoration: none;

    overflow-wrap: anywhere;
    word-break: break-word;
}


.privacy-business-info a:hover {
    color: #666666;

    text-decoration: underline;
}



/* =========================================================
   PRIVACY REQUEST / COMPLAINT BLOCKS
========================================================= */

.privacy-request-block {
    padding: 30px;

    border: 1px solid #dfdfdf;
    border-radius: 12px;

    background: #fafafa;

    scroll-margin-top: 30px;
}


.privacy-request-heading {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-bottom: 20px;
}


.privacy-request-heading h2 {
    margin: 0 !important;
}


.privacy-request-heading .privacy-eyebrow {
    margin-bottom: 4px;
}


.privacy-request-icon {
    width: 55px;
    height: 55px;

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

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    background: #111111;

    font-size: 21px;
}


.privacy-request-block p {
    color: #626262;

    font-size: 15px;

    line-height: 1.8;
}


.privacy-request-action {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 25px;
    padding: 18px 20px;

    border: 1px solid #dddddd;
    border-radius: 8px;

    background: #ffffff;
}


.privacy-request-action > div {
    min-width: 0;

    flex: 1;
}


.privacy-request-action span {
    display: block;

    margin-bottom: 3px;

    color: #858585;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


.privacy-request-action strong {
    display: block;

    color: #252525;

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

    line-height: 1.5;
}


.privacy-request-btn {
    min-width: 190px;

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

    gap: 8px;

    flex-shrink: 0;

    padding: 11px 17px;

    border: 1px solid #111111;
    border-radius: 6px;

    color: #ffffff;

    background: #111111;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

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


.privacy-request-btn:hover {
    color: #111111;

    background: #ffffff;
}



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

.privacy-contact-block {
    width: 100%;
    max-width: 100%;

    display: flex;
    align-items: flex-start;

    gap: 22px;

    padding: 32px;

    overflow: hidden;

    border: 0;
    border-radius: 12px;

    color: #ffffff;

    background: #111111;
}


.privacy-contact-icon {
    width: 62px;
    height: 62px;

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

    flex-shrink: 0;

    border-radius: 50%;

    color: #111111;

    background: #ffffff;

    font-size: 24px;
}


.privacy-contact-content {
    min-width: 0;

    flex: 1;

    max-width: 100%;
}


.privacy-contact-block
.privacy-eyebrow {
    color: #aaaaaa;
}


.privacy-contact-block h2 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: clamp(25px, 2.4vw, 34px);

    font-weight: 700;
}


.privacy-contact-block p {
    max-width: 100%;

    margin-bottom: 14px;

    color: #bcbcbc;

    font-size: 14px;

    line-height: 1.75;
}


.privacy-contact-block strong {
    color: #ffffff;
}



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

.privacy-contact-actions {
    width: 100%;

    display: flex;
    align-items: stretch;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 21px;
}


.privacy-email-btn,
.privacy-phone-btn {
    min-width: 0;

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

    gap: 8px;

    padding: 11px 17px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.4;

    text-align: center;
    text-decoration: none;

    white-space: normal;

    overflow-wrap: anywhere;
    word-break: break-word;
}


.privacy-email-btn span,
.privacy-phone-btn span {
    min-width: 0;

    overflow-wrap: anywhere;
}


.privacy-email-btn {
    max-width: 100%;

    color: #111111;

    border: 1px solid #ffffff;

    background: #ffffff;
}


.privacy-email-btn:hover {
    color: #ffffff;

    background: transparent;
}


.privacy-phone-btn {
    color: #ffffff;

    border: 1px solid #5b5b5b;

    background: transparent;
}


.privacy-phone-btn:hover {
    color: #111111;

    border-color: #ffffff;

    background: #ffffff;
}



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

@media (max-width: 991.98px) {

    .privacy-business-details {
        grid-template-columns: 1fr;
    }


    .privacy-business-row-full {
        grid-column: auto;
    }


    .privacy-request-action {
        flex-direction: column;

        align-items: flex-start;
    }


    .privacy-request-btn {
        width: 100%;
    }


    .privacy-contact-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .privacy-email-btn,
    .privacy-phone-btn {
        width: 100%;
    }

}



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

@media (max-width: 767.98px) {

    .privacy-business-details {
        margin-top: 22px;

        gap: 10px;
    }


    .privacy-business-row {
        padding: 15px;
    }


    .privacy-business-icon {
        width: 38px;
        height: 38px;

        font-size: 14px;
    }


    .privacy-business-info strong,
    .privacy-business-info a {
        font-size: 13px;
    }


    .privacy-request-block {
        padding: 23px 18px;
    }


    .privacy-request-heading {
        align-items: flex-start;

        gap: 13px;
    }


    .privacy-request-icon {
        width: 46px;
        height: 46px;

        font-size: 18px;
    }


    .privacy-request-heading h2 {
        font-size: 24px;
    }


    .privacy-request-block p {
        font-size: 14px;
    }


    .privacy-request-action {
        padding: 16px;
    }


    .privacy-contact-block {
        display: block;

        padding: 24px 18px;
    }


    .privacy-contact-icon {
        width: 54px;
        height: 54px;

        margin-bottom: 18px;

        font-size: 21px;
    }


    .privacy-contact-block h2 {
        font-size: 27px;
    }


    .privacy-contact-block p {
        font-size: 14px;
    }


    .privacy-contact-actions {
        display: flex;

        flex-direction: column;

        gap: 10px;

        margin-top: 20px;
    }


    .privacy-email-btn,
    .privacy-phone-btn {
        width: 100%;
        max-width: 100%;

        min-height: 48px;

        padding: 11px 12px;

        font-size: 13px;
    }

}



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

@media (max-width: 480px) {

    .privacy-business-row {
        align-items: flex-start;
    }


    .privacy-request-heading {
        display: block;
    }


    .privacy-request-icon {
        margin-bottom: 13px;
    }


    .privacy-contact-block {
        padding: 22px 15px;
    }


    .privacy-contact-block h2 {
        font-size: 24px;
    }


    .privacy-email-btn {
        font-size: 12px;
    }

}

/* =========================================================
   TERMS & CONDITIONS - EXTRA STYLES
========================================================= */

.terms-main-heading {
    margin: 0 0 14px;

    color: #111111;

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;

    line-height: 1.1;
}


.terms-updated {
    display: inline-block;

    margin: 0 0 24px !important;
    padding: 7px 11px;

    border-radius: 5px;

    color: #555555 !important;
    background: #f2f2f2;

    font-size: 12px !important;
}


.terms-highlight-block {
    padding: 30px;

    border: 1px solid #dddddd;
    border-left: 4px solid #111111;
    border-radius: 10px;

    background: #f8f8f8;
}


.terms-consumer-block {
    padding: 30px;

    border-radius: 10px;

    color: #ffffff;

    background: #111111;
}


.terms-consumer-block h2 {
    color: #ffffff !important;
}


.terms-consumer-block p {
    color: #c8c8c8 !important;
}


.terms-consumer-block strong {
    color: #ffffff;
}


.terms-consumer-block .privacy-eyebrow {
    color: #aaaaaa;
}


.privacy-content a {
    color: #23aa07;

    font-weight: 600;

    text-decoration: underline;
    text-underline-offset: 3px;
}


.terms-consumer-block a,
.privacy-contact-block a {
    text-decoration: none;
}


@media (max-width: 767.98px) {

    .terms-main-heading {
        font-size: 32px;
    }


    .terms-highlight-block,
    .terms-consumer-block {
        padding: 22px 17px;
    }

}

/* =========================================================
   CANCELLATION & REFUND POLICY
========================================================= */

.refund-main-heading {
    margin: 0 0 14px;

    color: #111111;

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;

    line-height: 1.1;
}


/* EFFECTIVE DATE */

.refund-updated {
    display: inline-block;

    margin: 0 0 24px !important;
    padding: 7px 11px;

    border-radius: 5px;

    color: #555555 !important;

    background: #f2f2f2;

    font-size: 12px !important;
}


/* =========================================================
   IMPORTANT CANCELLATION BLOCK
========================================================= */

.refund-highlight-block {
    padding: 30px;

    border: 1px solid #dddddd;
    border-left: 4px solid #111111;
    border-radius: 10px;

    background: #f8f8f8;
}


/* =========================================================
   PROVIDER CANCELLATION
========================================================= */

.refund-provider-block {
    position: relative;

    padding: 30px;

    border: 1px solid #dedede;
    border-radius: 10px;

    background: #fafafa;
}


.refund-provider-block::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    border-radius: 10px 0 0 10px;

    background: #111111;
}


/* =========================================================
   AUSTRALIAN CONSUMER LAW
========================================================= */

.refund-consumer-block {
    padding: 32px;

    border-radius: 11px;

    background: #111111;

    color: #ffffff;
}


.refund-consumer-block h2 {
    color: #ffffff !important;
}


.refund-consumer-block p {
    color: #c7c7c7 !important;
}


.refund-consumer-block strong {
    color: #ffffff;
}


.refund-consumer-block .privacy-eyebrow {
    color: #aaaaaa !important;
}


/* =========================================================
   REFUND LIST
========================================================= */

.refund-list {
    margin: 18px 0 24px;

    padding: 0;

    list-style: none;
}


.refund-list li {
    position: relative;

    margin-bottom: 9px;

    padding-left: 27px;

    color: #606060;

    font-size: 14px;
    line-height: 1.6;
}


.refund-list li::before {
    content: "\F26E";

    position: absolute;

    top: 1px;
    left: 0;

    color: #111111;

    font-family: "bootstrap-icons";
    font-size: 15px;
}


/* =========================================================
   LINK STYLE
========================================================= */

.refund-policy-section .privacy-content a:not(
    .privacy-email-btn,
    .privacy-phone-btn,
    .privacy-request-btn
) {
    color: #111111;

    font-weight: 600;

    text-decoration: underline;

    text-underline-offset: 3px;
}


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

@media (max-width: 767.98px) {

    .refund-main-heading {
        font-size: 31px;
    }


    .refund-highlight-block,
    .refund-provider-block,
    .refund-consumer-block {
        padding: 22px 17px;
    }


    .refund-list li {
        padding-left: 24px;

        font-size: 13.5px;
    }

}

.booking-legal-note {
    max-width: 720px;

    margin: 13px auto 0;

    color: #767676;

    font-size: 11.5px;

    line-height: 1.65;

    text-align: center;
}


.booking-legal-note a {
    color: #111111;

    font-weight: 600;

    text-decoration: underline;

    text-underline-offset: 2px;
}


@media (max-width: 767.98px) {

    .booking-legal-note {
        padding: 0 5px;

        font-size: 11px;
		        margin-bottom: 10px;
    }

}


.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px 10px;
}

.footer-bottom-links a {
    color: inherit;

    font-size: 13px;
    text-decoration: none;

    transition: opacity 0.25s ease;
}

.footer-bottom-links a:hover {
    opacity: 0.7;
}

.footer-bottom-links span {
    opacity: 0.45;
}


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

    .footer-bottom-links {
        gap: 7px 8px;

        text-align: center;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }

}

/* =========================================================
   MOBILE CALL BAR - BELOW NAVBAR
========================================================= */

.mobile-top-call {
    display: none;
}


/* Show only on mobile */
@media (max-width: 767.98px) {

    .mobile-top-call {
        display: block;

        padding: 10px 0;

        background: #f3f3f3;

        border-bottom: 1px solid #dddddd;
    }


    .mobile-top-call-btn {
        width: 100%;

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

        gap: 8px;

        min-height: 48px;

        padding: 10px 14px;

        border-radius: 6px;

        background: #111111;

        color: #ffffff;

        text-decoration: none;

        font-size: 14px;
        font-weight: 600;
    }


    .mobile-top-call-btn i {
        font-size: 16px;
    }


    .mobile-top-call-btn strong {
        color: #ffffff;

        font-size: 15px;
        font-weight: 700;
    }


    .mobile-top-call-btn:hover {
        color: #ffffff;

        background: #1b1b1b;
    }

}


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

.thankyou-hero {
    position: relative;

    min-height: 230px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #111111 0%,
            #1e1e1e 55%,
            #333333 100%
        );
}


.thankyou-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(255, 255, 255, 0.07),
            transparent 40%
        );
}


.thankyou-hero-content {
    position: relative;

    z-index: 2;

    max-width: 760px;

    padding: 45px 0;

    color: #ffffff;
}


.thankyou-hero-label {
    display: block;

    margin-bottom: 9px;

    color: #bcbcbc;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


.thankyou-hero h1 {
    margin: 0 0 13px;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;

    line-height: 1.1;
}


.thankyou-hero p {
    max-width: 650px;

    margin: 0;

    color: #cccccc;

    font-size: 16px;

    line-height: 1.7;
}



/* =========================================================
   MAIN SECTION
========================================================= */

.thankyou-section {
    padding: 70px 0;

    background: #f4f4f4;
}


.thankyou-card {
    max-width: 1000px;

    margin: 0 auto;

    padding: 45px;

    border: 1px solid #e0e0e0;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.06);

    text-align: center;
}



/* =========================================================
   SUCCESS ICON
========================================================= */

.thankyou-success-icon {
    width: 76px;
    height: 76px;

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

    margin: 0 auto 22px;

    border-radius: 50%;

    color: #ffffff;

    background: #111111;

    font-size: 35px;
}


.thankyou-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #777777;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.thankyou-card > h2 {
    margin: 0 0 17px;

    color: #111111;

    font-size: clamp(29px, 3vw, 40px);
    font-weight: 700;
}


.thankyou-intro {
    max-width: 680px;

    margin: 0 auto 27px;

    color: #626262;

    font-size: 15px;

    line-height: 1.8;
}



/* =========================================================
   IMPORTANT NOTICE
========================================================= */

.thankyou-notice {
    max-width: 760px;

    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin: 0 auto 40px;
    padding: 18px 20px;

    border: 1px solid #dddddd;
    border-left: 4px solid #111111;
    border-radius: 8px;

    background: #f8f8f8;

    text-align: left;
}


.thankyou-notice-icon {
    width: 38px;
    height: 38px;

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

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    background: #111111;

    font-size: 15px;
}


.thankyou-notice strong {
    display: block;

    margin-bottom: 4px;

    color: #111111;

    font-size: 14px;
}


.thankyou-notice p {
    margin: 0;

    color: #696969;

    font-size: 13px;

    line-height: 1.65;
}



/* =========================================================
   WHAT HAPPENS NEXT
========================================================= */

.thankyou-next {
    margin-top: 10px;

    text-align: left;
}


.thankyou-next > h3 {
    margin: 0 0 22px;

    color: #111111;

    font-size: 23px;
    font-weight: 700;

    text-align: center;
}


.thankyou-step {
    position: relative;

    height: 100%;

    padding: 25px 20px;

    overflow: hidden;

    border: 1px solid #e1e1e1;
    border-radius: 10px;

    background: #fafafa;

    text-align: center;
}


.thankyou-step-number {
    position: absolute;

    top: 10px;
    right: 13px;

    color: #d7d7d7;

    font-size: 26px;
    font-weight: 800;
}


.thankyou-step > i {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 15px;

    border-radius: 50%;

    color: #ffffff;

    background: #111111;

    font-size: 18px;
}


.thankyou-step h4 {
    margin: 0 0 9px;

    color: #111111;

    font-size: 16px;
    font-weight: 700;
}


.thankyou-step p {
    margin: 0;

    color: #707070;

    font-size: 13px;

    line-height: 1.65;
}



/* =========================================================
   CALL BOX
========================================================= */

.thankyou-call-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 38px;
    padding: 27px 30px;

    border-radius: 10px;

    color: #ffffff;

    background: #111111;

    text-align: left;
}


.thankyou-call-box > div {
    flex: 1;

    min-width: 0;
}


.thankyou-call-box span {
    display: block;

    margin-bottom: 4px;

    color: #a9a9a9;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.thankyou-call-box h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 23px;
    font-weight: 700;
}


.thankyou-call-box p {
    margin: 0;

    color: #bdbdbd;

    font-size: 13px;

    line-height: 1.6;
}


.thankyou-call-btn {
    min-width: 185px;

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

    gap: 8px;

    padding: 13px 18px;

    flex-shrink: 0;

    border: 1px solid #ffffff;
    border-radius: 6px;

    color: #111111;

    background: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}


.thankyou-call-btn:hover {
    color: #ffffff;

    background: transparent;
}



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

.thankyou-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 11px;

    margin-top: 30px;
}


.thankyou-primary-btn,
.thankyou-secondary-btn {
    min-height: 48px;

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

    gap: 8px;

    padding: 11px 21px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}


.thankyou-primary-btn {
    color: #ffffff;

    border: 1px solid #111111;

    background: #111111;
}


.thankyou-primary-btn:hover {
    color: #111111;

    background: #ffffff;
}


.thankyou-secondary-btn {
    color: #111111;

    border: 1px solid #cfcfcf;

    background: #ffffff;
}


.thankyou-secondary-btn:hover {
    border-color: #111111;

    color: #111111;
}



/* =========================================================
   LEGAL NOTE
========================================================= */

.thankyou-legal {
    max-width: 730px;

    margin: 25px auto 0;

    color: #858585;

    font-size: 11px;

    line-height: 1.65;
}


.thankyou-legal a {
    color: #111111;

    font-weight: 600;

    text-decoration: underline;

    text-underline-offset: 2px;
}



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

@media (max-width: 991.98px) {

    .thankyou-card {
        padding: 38px 28px;
    }


    .thankyou-call-box {
        flex-direction: column;

        align-items: stretch;

        text-align: center;
    }


    .thankyou-call-btn {
        width: 100%;
    }

}



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

@media (max-width: 767.98px) {

    .thankyou-hero {
        min-height: 200px;
    }


    .thankyou-hero-content {
        padding: 35px 0;
    }


    .thankyou-hero h1 {
        font-size: 32px;
    }


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


    .thankyou-section {
        padding: 40px 0;
    }


    .thankyou-card {
        padding: 30px 17px;

        border-radius: 10px;
    }


    .thankyou-success-icon {
        width: 65px;
        height: 65px;

        font-size: 29px;
    }


    .thankyou-card > h2 {
        font-size: 28px;
    }


    .thankyou-intro {
        font-size: 14px;
    }


    .thankyou-notice {
        padding: 15px;

        text-align: left;
    }


    .thankyou-step {
        padding: 22px 17px;
    }


    .thankyou-call-box {
        padding: 24px 18px;
    }


    .thankyou-call-box h3 {
        font-size: 21px;
    }


    .thankyou-actions {
        flex-direction: column;
    }


    .thankyou-primary-btn,
    .thankyou-secondary-btn {
        width: 100%;
    }

}

/* =========================================================
   GOOGLE ADDRESS AUTOCOMPLETE VALIDATION
========================================================= */

.scs-address-invalid {
    border-color: #111111 !important;

    box-shadow:
        0 0 0 2px rgba(0, 0, 0, 0.08) !important;
}


.scs-address-error {
    width: 100%;

    margin-top: 5px;

    color: #b00020;

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

    line-height: 1.45;
}


/* Google Places dropdown */
.pac-container {
    z-index: 99999 !important;

    border: 1px solid #dddddd;
    border-radius: 6px;

    font-family: inherit;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15);
}


.pac-item {
    padding: 8px 10px;

    cursor: pointer;

    font-size: 13px;
}


.pac-item:hover {
    background: #f5f5f5;
}