:root {
  --white-color: #ffffff;
  --primary-color: #16a6e1;
  --primary-color-dark: #0b6dbb;
  --secondary-color: #102a6b;
  --section-bg-color: #f5f8fe;
  --custom-btn-bg-color: #f39a12;
  --custom-btn-bg-hover-color: #de8200;
  --dark-color: #0d152d;
  --p-color: #65708b;
  --link-hover-color: #ffd08a;
  --border-color: rgba(16, 42, 107, 0.12);
  --body-font-family: 'DM Sans', sans-serif;
  --h1-font-size: 62px;
  --h2-font-size: 42px;
  --h3-font-size: 28px;
  --h4-font-size: 22px;
  --h5-font-size: 20px;
  --h6-font-size: 18px;
  --p-font-size: 18px;
  --menu-font-size: 16px;
  --btn-font-size: 15px;
  --border-radius-large: 999px;
  --border-radius-medium: 24px;
  --border-radius-small: 12px;
  --shadow-soft: 0 18px 50px rgba(12, 36, 89, 0.12);
  --shadow-card: 0 20px 60px rgba(16, 42, 107, 0.16);
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  color: var(--dark-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

h1 { font-size: var(--h1-font-size); line-height: 1.02; }
h2 { font-size: var(--h2-font-size); line-height: 1.08; }
h3 { font-size: var(--h3-font-size); }
h4 { font-size: var(--h4-font-size); }
h5 { font-size: var(--h5-font-size); }
h6 { font-size: var(--h6-font-size); }

p, ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  line-height: 1.7;
}

a, button {
  touch-action: manipulation;
  transition: all 0.3s ease;
}

a {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover { color: var(--primary-color); }
strong, b { font-weight: var(--font-weight-bold); }
::selection { background-color: var(--secondary-color); color: var(--white-color); }

.section-padding {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-bg {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 30px;
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-color-dark);
  font-weight: 700;
  margin-bottom: 14px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(16, 42, 107, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
}

.navbar.navbar-scrolled {
  background: rgba(12, 31, 79, 0.94);
  box-shadow: 0 12px 30px rgba(7, 20, 54, 0.22);
}

.navbar-brand,
.navbar-brand:hover {
  max-width: none;
  color: var(--white-color);
}

.navbar-brand-image,
.logo-img {
  display: block;
  height: 82px;
  width: auto;
  filter: none !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 0 6px;
  padding: 10px 14px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.92);
  font-size: var(--menu-font-size);
  font-weight: 700;
}

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

.navbar .dropdown-menu {
  background: var(--white-color);
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  display: inherit;
  opacity: 0;
  margin-top: 22px;
  min-width: 11rem;
  padding: 12px 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--white-color);
  transform: rotate(45deg);
  position: absolute;
  top: -7px;
  left: 22px;
}

.navbar .dropdown-item {
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: 700;
  padding: 10px 18px;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active { background: transparent; color: var(--primary-color-dark); }

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 12px;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 35px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler .navbar-toggler-icon,
.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  background: var(--white-color);
  width: 30px;
  height: 2px;
  display: block;
  position: relative;
  content: '';
  transition: all 0.3s ease;
}
.navbar-toggler .navbar-toggler-icon:before { top: -8px; position: absolute; left: 0; }
.navbar-toggler .navbar-toggler-icon:after { top: 8px; position: absolute; left: 0; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon { background: transparent; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before { top: 0; transform: rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after { top: 0; transform: rotate(-45deg); }

/* Buttons */
.custom-btn {
  background: linear-gradient(135deg, var(--custom-btn-bg-color), #f8ab2f);
  border: 1px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: 700;
  padding: 14px 24px;
  box-shadow: 0 10px 24px rgba(243,154,18,0.25);
}
.custom-btn:hover {
  background: linear-gradient(135deg, var(--custom-btn-bg-hover-color), #f39a12);
  color: var(--white-color);
  transform: translateY(-2px);
}
.custom-border-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white-color);
  box-shadow: none;
}
.custom-border-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.45);
}
.secondary-btn {
  background: rgba(255,255,255,0.08);
  color: var(--white-color);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--border-radius-large);
  padding: 14px 24px;
  font-weight: 700;
}
.secondary-btn:hover {
  color: var(--white-color);
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

/* Offcanvas */
.offcanvas {
  background: linear-gradient(180deg, #14367f 0%, #102a6b 100%);
  padding: 26px;
}
.offcanvas.offcanvas-end { border-left: 0; }
.offcanvas-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}
.offcanvas-title { color: var(--white-color); }
.support-block p { color: rgba(255,255,255,0.94); }

/* Forms */
.custom-form .form-control {
  border-radius: 18px;
  border: 1px solid rgba(16,42,107,0.12);
  box-shadow: none;
  color: var(--dark-color);
  margin-bottom: 18px;
  padding: 14px 18px;
  min-height: 56px;
}
.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: rgba(22,166,225,0.55);
  box-shadow: 0 0 0 4px rgba(22,166,225,0.08);
}
.form-floating > label {
  padding-left: 18px;
  color: #7a87a6;
}
.custom-form button[type="submit"] {
  background: linear-gradient(135deg, var(--custom-btn-bg-color), #f8ab2f);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  padding-left: 10px;
  margin-bottom: 0;
}
.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: linear-gradient(135deg, var(--custom-btn-bg-hover-color), #f39a12);
  border-color: transparent;
}

/* Hero */
.hero-section {
    position: relative;
    background:
            linear-gradient(90deg, rgba(10, 23, 55, 0.82) 0%, rgba(10, 23, 55, 0.58) 48%, rgba(8, 22, 56, 0.76) 100%),
            url('../images/parktoflyhome.png') center/cover no-repeat;

    min-height: calc(100vh - 90px); /* 🔥 enlève l’espace de la navbar */

    padding: 20px 0 140px; /* réduit encore plus */
    margin-top: -80px;
    overflow: hidden;
}
.section-overlay { display: none; }
.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.45;
  pointer-events: none;
}
.hero-orb-one {
  width: 320px;
  height: 320px;
  top: 90px;
  right: -120px;
  background: radial-gradient(circle, rgba(22,166,225,0.75) 0%, rgba(22,166,225,0) 70%);
  animation: floatOrb 9s ease-in-out infinite;
}
.hero-orb-two {
  width: 260px;
  height: 260px;
  bottom: 80px;
  left: -80px;
  background: radial-gradient(circle, rgba(243,154,18,0.65) 0%, rgba(243,154,18,0) 70%);
  animation: floatOrb 11s ease-in-out infinite reverse;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white-color);
  padding: 10px 16px;
  border-radius: var(--border-radius-large);
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.premium-badge i { color: var(--custom-btn-bg-color); }
.hero-title {
  max-width: 700px;
  font-size: clamp(44px, 6vw, 74px);
}
.hero-title span { color: var(--link-hover-color); }
.hero-copy {
  max-width: 620px;
  font-size: 19px;
  color: rgba(255,255,255,0.84) !important;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white-color);
  border-radius: 18px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.hero-highlight i { color: var(--custom-btn-bg-color); }
.hero-stats .stat-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 18px 18px 16px;
  backdrop-filter: blur(12px);
}
.hero-stats strong {
  display: block;
  color: var(--white-color);
  font-size: 28px;
  line-height: 1;
}
.hero-stats span {
  display: block;
  color: rgba(255,255,255,0.74);
  margin-top: 8px;
  font-weight: 500;
}
.hero-media-card {
    margin-top:50px;
    margin-left: 50px;
    position: relative;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.28);
    transform: translateY(0);
    transition: all 0.4s ease;
}

/* Hover effect instead of constant animation */
.hero-media-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}
.media-topbar {
  display: flex;
  gap: 8px;
  padding: 16px 16px 0;
}
.media-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}
.hero-media-card .ratio {
  border-radius: 22px;
  overflow: hidden;
  margin: 14px;
}
.hero-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 0 20px 20px;
  color: var(--white-color);
}
.hero-media-footer strong {
  display: block;
  color: var(--white-color);
}
.hero-media-footer span {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  margin-top: 3px;
}
.media-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--link-hover-color);
  font-weight: 700;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

/* About + features */
.about-section {
  position: relative;
  padding-bottom: 90px;
}
.about-copy-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.mini-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.mini-feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--dark-color);
}
.mini-feature-list i { color: var(--primary-color-dark); }
.feature-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.feature-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ebf8ff, #dff0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color-dark);
  font-size: 22px;
}
.feature-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 20px;
}
.feature-card h4 {
  margin-bottom: 10px;
}

/* Banner */
.premium-banner {
  position: relative;
  background:
    linear-gradient(130deg, rgba(16,42,107,0.96), rgba(7,83,145,0.82)),
    url('../images/parkingphotos.png') center/cover no-repeat;
  padding: 80px 0;
}
.premium-subscribe-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
}
.premium-subscribe-card .input-group {
  background: rgba(255,255,255,0.96);
  border-radius: var(--border-radius-large);
  padding: 8px 10px;
}
.premium-subscribe-card .input-group-text {
  background: transparent;
  border: 0;
  color: var(--primary-color-dark);
}
.premium-subscribe-card input[type="email"] {
  border: 0;
  box-shadow: none;
  padding-left: 0;
  margin-bottom: 0;
}
.premium-subscribe-card button[type="submit"] {
  max-width: 160px;
  min-height: 52px;
}

/* Table + booking */
.table-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.table-card-header {
  padding: 24px 24px 14px;
}
.table-card-header span {
  display: block;
  color: var(--p-color);
  margin-top: 6px;
}
.table-responsive {
  border-radius: 0 0 28px 28px;
}
.table-responsive tbody,
.table-responsive td,
.table-responsive tfoot,
.table-responsive th,
.table-responsive thead,
.table-responsive tr { border: 0; }
.table-responsive thead tr {
  background: linear-gradient(90deg, #112e75 0%, #143a8e 100%);
  color: var(--white-color);
}
.table-responsive thead th {
  padding: 20px 16px !important;
  font-weight: 700;
}
.table-responsive tbody tr:nth-child(even) { background-color: #f7faff; }
.table>:not(caption)>*>* { padding: 18px 16px; }
.table-responsive .bi-check-circle-fill { color: #10b981; }
.table-responsive .bi-x-circle-fill { color: #ef6b63; }
.membership-section .container { position: relative; z-index: 2; }
.premium-booking-card {
  background: linear-gradient(180deg, #102a6b 0%, #133480 100%);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-card);
}
.booking-card-top p { font-size: 15px; }
.membership-form .form-floating>textarea { border-radius: 22px; height: 100px; }
.membership-form .form-control { border: 1px solid rgba(255,255,255,0.08); }
.membership-form .form-floating>label { color: #8e9bc5; }
.membership-form .form-control:not(button) {
  background: rgba(255,255,255,0.95);
}

/* Why choose us */
.premium-block {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.premium-block:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
}
.custom-block-image-wrap {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.custom-block-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.custom-block-image-wrap:hover .custom-block-image { transform: scale(1.06); }
.custom-block-icon {
  background: rgba(255,255,255,0.94);
  color: var(--secondary-color);
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  border-radius: 18px;
  position: absolute;
  right: 18px;
  bottom: 18px;
  opacity: 1;
  transform: none;
  top: auto;
  left: auto;
  box-shadow: 0 10px 24px rgba(13,21,45,0.16);
}
.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf6ff, #dfeeff);
  color: var(--primary-color-dark);
  font-weight: 800;
  margin-bottom: 18px;
}
.events-title {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-color);
}
.info-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.info-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--primary-color-dark);
  font-weight: 700;
  font-size: 14px;
}

/* Contact */
.contact-form .form-floating>textarea {
  border-radius: 22px;
  height: 120px;
}
.contact-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.contact-panel {
  background: linear-gradient(180deg, #102a6b 0%, #133987 100%);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}
.contact-panel-copy h3,
.contact-panel-copy p,
.contact-panel-copy .section-kicker { color: var(--white-color); }
.contact-panel-copy p { color: rgba(255,255,255,0.78); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 28px;
}
.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 18px;
  color: var(--white-color);
}
.contact-card:hover {
  color: var(--white-color);
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}
.contact-card i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: var(--link-hover-color);
  font-size: 18px;
}
.contact-card strong,
.contact-card span { display: block; }
.contact-card strong { color: var(--white-color); font-size: 16px; }
.contact-card span { color: rgba(255,255,255,0.74); font-size: 14px; margin-top: 4px; }
.world-map-wrap {
  margin-top: 26px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
}
.world-map-wrap img { width: 100%; opacity: 0.92; }
.contact-link { color: var(--white-color); }
.contact-link:hover { color: var(--link-hover-color); }

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0d255e 0%, #0a1d49 100%);
  color: rgba(255,255,255,0.74);
  padding: 90px 0 180px;
  overflow: hidden;
}
.site-footer .container { position: relative; z-index: 2; }
.site-footer svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.site-footer .navbar-brand-image,
.site-footer .logo-img { height: 68px; width: auto; }
.site-footer-title { color: var(--white-color); }
.footer-copy,
.footer-list li,
.footer-bottom p,
.copyright-text { color: rgba(255,255,255,0.72); }
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer-list li::before {
  content: '•';
  color: var(--custom-btn-bg-color);
  margin-right: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.social-icon {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-icon-item { display: inline-block; }
.social-icon-link {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 14px;
  text-align: center;
  color: var(--white-color);
  background: rgba(255,255,255,0.08);
  margin-right: 8px;
}
.social-icon-link:hover {
  background: var(--custom-btn-bg-color);
  color: var(--white-color);
}

/* Reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* Existing animated headline colors */
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}
.cd-words-wrapper b {
  color: var(--link-hover-color);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}
.cd-words-wrapper b.is-visible { position: relative; }
.no-js .cd-words-wrapper b { opacity: 0; }
.no-js .cd-words-wrapper b.is-visible { opacity: 1; }
.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}
.cd-headline.rotate-1 b {
  opacity: 0;
  transform-origin: 50% 100%;
  transform: rotateX(180deg);
}
.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  transform: rotateX(0deg);
  animation: cd-rotate-1-in 1.2s;
}
.cd-headline.rotate-1 b.is-hidden {
  transform: rotateX(180deg);
  animation: cd-rotate-1-out 1.2s;
}
@keyframes cd-rotate-1-in {
  0% { transform: rotateX(180deg); opacity: 0; }
  35% { transform: rotateX(120deg); opacity: 0; }
  65% { opacity: 0; }
  100% { transform: rotateX(360deg); opacity: 1; }
}
@keyframes cd-rotate-1-out {
  0% { transform: rotateX(0deg); opacity: 1; }
  35% { transform: rotateX(-40deg); opacity: 1; }
  65% { opacity: 0; }
  100% { transform: rotateX(180deg); opacity: 0; }
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(8px); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Focus */
.social-icon-link:focus,
.custom-btn:focus,
.nav-link:focus,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--custom-btn-bg-color);
  outline-offset: 2px;
}

/* Responsive */
@media screen and (max-width: 991px) {
  :root {
    --h1-font-size: 46px;
    --h2-font-size: 34px;
    --h3-font-size: 24px;
    --p-font-size: 17px;
  }
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .navbar {
    background: rgba(12, 31, 79, 0.96);
    padding: 12px 0;
  }
  .navbar-brand-image,
  .logo-img {
    height: 62px;
  }
  .navbar-expand-lg .navbar-nav {
    padding-top: 14px;
    padding-bottom: 10px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 4px 0;
    padding: 10px 0;
  }
  .navbar .dropdown-menu {
    position: relative;
    left: 0;
    opacity: 1;
    pointer-events: auto;
    margin-top: 10px;
    box-shadow: none;
  }
  .hero-section {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 120px;
  }
  .hero-title { font-size: clamp(38px, 8vw, 52px); }
  .hero-copy { max-width: 100%; }
  .hero-stats .stat-card { min-height: 100%; }
  .hero-media-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-image,
  .custom-block-image { height: 230px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media screen and (max-width: 767px) {
  .hero-highlights { flex-direction: column; align-items: stretch; }
  .premium-badge { font-size: 12px; }
  .about-copy-card,
  .feature-card,
  .table-card,
  .premium-booking-card,
  .contact-form-card,
  .contact-panel,
  .premium-block { padding: 24px; }
  .site-footer { padding-top: 70px; }
}

@media screen and (max-width: 480px) {
  :root {
    --h1-font-size: 40px;
    --h2-font-size: 30px;
  }
  .navbar-brand-image,
  .logo-img { height: 54px; }
  .custom-btn,
  .secondary-btn { width: 100%; justify-content: center; text-align: center; }
  .hero-stats .col-12 .stat-card,
  .hero-stats .col-6 .stat-card { height: 100%; }
}


/* =========================================================
   Global Park Fly - final production overrides
   Keep these at the bottom so they safely override earlier styles.
   ========================================================= */

/* Accessibility: visible skip link for keyboard users */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1200;
  background: #ffffff;
  color: var(--secondary-color);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus {
  top: 16px;
}

/* Honeypot anti-bot field: keep hidden from real users */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Logo: larger and more readable */
.navbar-brand,
.navbar-brand:hover {
  max-width: none;
}
.navbar-brand-image,
.logo-img {
  display: block;
  width: auto;
  height: 96px;
  max-height: none;
  object-fit: contain;
  filter: none !important;
}
.site-footer .navbar-brand-image,
.site-footer .logo-img {
  height: 78px;
}

/* Navbar: cleaner premium color */
.navbar {
  background: linear-gradient(180deg, rgba(10, 29, 73, 0.88) 0%, rgba(13, 37, 94, 0.82) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.navbar.navbar-scrolled {
  background: linear-gradient(180deg, rgba(8, 22, 56, 0.97) 0%, rgba(11, 31, 79, 0.95) 100%);
}

/* Hero: tighter spacing under navbar */
.hero-section {
  padding-top: 118px;
}

/* The decorative wave should never block clicks */
.hero-wave,
.hero-wave svg,
.hero-wave path,
.section-overlay {
  pointer-events: none !important;
}

/* Hero media card: cleaner placement */
.hero-media-card {
  margin-top: -90px;
  margin-left: 24px;
}

/* Better touch targets and mobile layout */
.navbar-nav .nav-link,
.dropdown-item,
.custom-btn,
.secondary-btn,
.contact-card {
  min-height: 44px;
}

section[id] {
  scroll-margin-top: 110px;
}

@media screen and (max-width: 1199px) {
  .hero-media-card {
    margin-top: -40px;
    margin-left: 0;
  }
}

@media screen and (max-width: 991px) {
  .navbar-brand-image,
  .logo-img {
    height: 72px;
  }

  .hero-section {
    padding-top: 136px;
    padding-bottom: 96px;
  }

  .hero-copy,
  .hero-title,
  .hero-highlights,
  .custom-btn-group,
  .hero-stats {
    max-width: 100%;
  }

  .hero-media-card {
    margin-top: 0;
    margin-left: 0;
  }

  .premium-badge,
  .hero-highlight {
    width: 100%;
    justify-content: flex-start;
  }

  .custom-btn-group {
    gap: 12px !important;
  }

  .custom-btn,
  .secondary-btn {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .section-padding {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .navbar-brand-image,
  .logo-img {
    height: 64px;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-media-footer {
    padding: 0 16px 16px;
  }

  .table-card-header,
  .about-copy-card,
  .feature-card,
  .premium-booking-card,
  .contact-form-card,
  .contact-panel,
  .premium-block {
    padding: 22px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* =========================================================
   ★ GLOBAL PARK FLY — 2026 PREMIUM REFRESH
   Layered on top of the existing styles. Nothing above is
   replaced or removed; everything below is additive and uses
   higher-specificity overrides where needed.
   ========================================================= */

/* ---------- Typography refresh ---------- */
/* Fonts are loaded via <link> in each page's <head> for non-blocking delivery. */

:root {
  --display-font: 'Bricolage Grotesque', 'DM Sans', system-ui, sans-serif;
  --accent-yellow: #ffd75a;
  --accent-coral: #ff8a5b;
  --aurora-1: #1d4ed8;
  --aurora-2: #06b6d4;
  --aurora-3: #f59e0b;
  --ink: #0a1430;
  --ink-soft: #1a2752;
  --paper: #ffffff;
  --paper-warm: #fbfaf6;
  --hairline: rgba(16, 42, 107, 0.08);
  --shadow-xl: 0 30px 80px -20px rgba(10, 20, 48, 0.35), 0 12px 30px -10px rgba(10, 20, 48, 0.18);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,0.6) inset, 0 30px 80px -20px rgba(10, 20, 48, 0.4);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

body { font-feature-settings: 'ss01', 'ss02', 'cv11'; }

h1, h2, h3, .hero-title, .events-title, .section-heading h2,
.hero-media-footer strong, .booking-card-top h4 {
  font-family: var(--display-font);
  font-feature-settings: 'ss01', 'ss02';
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 32, "wght" 700;
}

h1, .hero-title { font-variation-settings: "opsz" 48, "wght" 700; letter-spacing: -0.035em; }
h4, h5, h6 { font-family: var(--display-font); font-variation-settings: "opsz" 18, "wght" 700; letter-spacing: -0.018em; }

.section-kicker {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  position: relative;
  padding-left: 28px;
}
.section-kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--custom-btn-bg-color));
  transform: translateY(-50%);
}
.section-heading h2 { font-size: clamp(34px, 4.4vw, 52px); }

/* ---------- Page-wide ambient background ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 700px at 12% 8%, rgba(22,166,225,0.10), transparent 65%),
    radial-gradient(700px 600px at 92% 18%, rgba(243,154,18,0.08), transparent 65%),
    radial-gradient(800px 700px at 50% 95%, rgba(16,42,107,0.06), transparent 70%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.025 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  opacity: 0.7;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ---------- Navbar polish ---------- */
.navbar { transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease; }
.navbar-nav .nav-link { position: relative; transition: color 0.3s ease; }
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--custom-btn-bg-color));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* ---------- Buttons: magnetic + shimmer ---------- */
.custom-btn, .secondary-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, background 0.4s ease;
}
.custom-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease-smooth);
  z-index: -1;
}
.custom-btn:hover::before { transform: translateX(120%); }
.custom-btn:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 16px 38px rgba(243,154,18,0.42);
}
.secondary-btn:hover { transform: translateY(-3px); }

/* ---------- Hero upgrades ---------- */
.hero-section {
  position: relative;
  background:
    linear-gradient(125deg, rgba(8,18,46,0.88) 0%, rgba(11,38,98,0.66) 45%, rgba(8,18,46,0.86) 100%),
    url('../images/parktoflyhome.png') center/cover no-repeat;
}
/* Animated aurora layer behind hero content */
.hero-section::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(40% 50% at 20% 30%, rgba(22,166,225,0.55), transparent 60%),
    radial-gradient(35% 45% at 80% 20%, rgba(243,154,18,0.45), transparent 60%),
    radial-gradient(45% 55% at 65% 75%, rgba(120,80,255,0.35), transparent 60%);
  filter: blur(40px);
  opacity: 0.8;
  animation: auroraDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes auroraDrift {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-3%, 2%, 0) scale(1.05); }
  100% { transform: translate3d(2%, -2%, 0) scale(0.98); }
}

/* Subtle scanline grid in hero */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}

.hero-orb { animation-duration: 14s; }

/* Hero title gradient sweep on the highlight span */
.hero-title span {
  background: linear-gradient(120deg, #ffd75a 0%, #ffb84d 30%, #ffe9a3 60%, #ffd75a 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: titleShimmer 6s ease-in-out infinite;
}
@keyframes titleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Premium badge with pulse dot */
.premium-badge {
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.premium-badge::before {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(52,211,153,0.7);
  animation: livePulse 2s ease-out infinite;
}
.premium-badge { padding-left: 32px !important; }
.premium-badge i { display: none; }
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

/* Hero highlight chips: reveal-in animation */
.hero-highlight {
  transition: transform 0.4s var(--ease-spring), background 0.3s ease, border-color 0.3s ease;
}
.hero-highlight:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
}

/* Hero media card: tiltable & shimmer rim */
.hero-media-card {
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-spring), box-shadow 0.5s ease;
  will-change: transform;
}
.hero-media-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,215,90,0.5), rgba(22,166,225,0.4) 40%, transparent 60%, rgba(255,215,90,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  opacity: 0.7;
  animation: rimShimmer 6s linear infinite;
  background-size: 200% 100%;
}
@keyframes rimShimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* Stat cards: count-up sweep */
.hero-stats .stat-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), background 0.3s ease;
}
.hero-stats .stat-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255,255,255,0.13);
}
.hero-stats .stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,215,90,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-stats .stat-card:hover::before { opacity: 1; }

/* ---------- Marquee strip (under hero) ---------- */
.gpf-marquee {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}
.gpf-marquee::before, .gpf-marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2;
  pointer-events: none;
}
.gpf-marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.gpf-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.gpf-marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marqueeRoll 38s linear infinite;
  font-family: var(--display-font);
  font-variation-settings: "wght" 600, "opsz" 18;
  font-size: 17px;
}
.gpf-marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.gpf-marquee-track > span::after {
  content: "✈";
  color: var(--custom-btn-bg-color);
  font-size: 14px;
  opacity: 0.7;
}
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Section heading ornamentation ---------- */
.section-heading h2 {
  position: relative;
  display: inline-block;
}
.section-heading h2 .accent-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--custom-btn-bg-color), var(--accent-yellow));
  margin-left: 6px;
  vertical-align: 4px;
  box-shadow: 0 0 0 4px rgba(243,154,18,0.18);
}

/* ---------- About & feature cards ---------- */
.about-copy-card, .feature-card, .premium-block, .table-card,
.contact-form-card, .premium-booking-card, .contact-panel {
  position: relative;
}
.about-copy-card::before, .feature-card::before, .premium-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px 200px at var(--mx, 50%) var(--my, 0%), rgba(22,166,225,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.about-copy-card:hover::before, .feature-card:hover::before, .premium-block:hover::before { opacity: 1; }
.feature-card { transition: transform 0.5s var(--ease-spring), box-shadow 0.4s ease; }
.feature-card:hover { transform: translateY(-10px) rotate(-0.3deg); }
.feature-image {
  transition: transform 0.6s var(--ease-smooth), filter 0.4s ease;
}
.feature-card:hover .feature-image { transform: scale(1.04); filter: saturate(1.1); }
.feature-icon {
  transition: transform 0.5s var(--ease-spring), background 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: rotate(-8deg) scale(1.08);
  background: linear-gradient(135deg, var(--custom-btn-bg-color), var(--accent-yellow));
  color: #fff;
}

/* ---------- Lot Amenities grid (NEW) ---------- */
.amenities-section {
  position: relative;
  padding: 110px 0 100px;
  background:
    radial-gradient(700px 500px at 90% 0%, rgba(22,166,225,0.08), transparent 60%),
    radial-gradient(500px 400px at 5% 100%, rgba(243,154,18,0.07), transparent 60%),
    linear-gradient(180deg, #fbfdff 0%, #f4f7fd 100%);
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.amenity-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 26px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  box-shadow: 0 16px 40px -20px rgba(10,20,48,0.18);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s ease, border-color 0.4s ease;
  overflow: hidden;
  isolation: isolate;
}
.amenity-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(22,166,225,0.18), transparent 60%);
  border-radius: 50%;
  transition: transform 0.7s var(--ease-smooth), opacity 0.5s ease;
  z-index: -1;
  opacity: 0;
}
.amenity-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: rgba(22,166,225,0.25); }
.amenity-card:hover::before { transform: translate(-30%, 20%); opacity: 1; }
.amenity-card .amenity-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 18px;
  font-size: 24px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #eaf4ff 0%, #d9eaff 100%);
  color: var(--primary-color-dark);
  position: relative;
  transition: transform 0.4s var(--ease-spring);
}
.amenity-card:hover .amenity-icon {
  transform: rotate(-6deg) scale(1.06);
  background: linear-gradient(135deg, var(--custom-btn-bg-color), var(--accent-yellow));
  color: #fff;
}
.amenity-card h4 {
  margin-bottom: 8px;
  font-size: 19px;
  font-variation-settings: "wght" 700;
}
.amenity-card p { font-size: 15px; line-height: 1.6; margin: 0; }
.amenity-card .amenity-tag {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p-color);
  font-weight: 700;
}

/* ---------- How-it-works / Shuttle (NEW) ---------- */
.shuttle-section {
  position: relative;
  padding: 110px 0 110px;
  background: linear-gradient(180deg, #0a1d49 0%, #0d255e 60%, #0e2a6c 100%);
  color: #fff;
  overflow: hidden;
}
.shuttle-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(800px 500px at 80% 0%, rgba(22,166,225,0.18), transparent 60%),
    radial-gradient(700px 500px at 10% 100%, rgba(255,168,80,0.14), transparent 60%);
  pointer-events: none;
}
.shuttle-section .container { position: relative; z-index: 2; }
.shuttle-section .section-heading h2,
.shuttle-section .section-heading p { color: #fff; }
.shuttle-section .section-heading p { color: rgba(255,255,255,0.74); }
.shuttle-section .section-kicker { color: var(--accent-yellow); }
.shuttle-section .section-kicker::before { background: linear-gradient(90deg, var(--accent-yellow), transparent); }

/* Live shuttle status pill */
.shuttle-live {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 22px;
  color: #fff;
}
.shuttle-live .dot {
  position: relative;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52,211,153,0.25);
  animation: livePulse 2s ease-out infinite;
}
.shuttle-live .dot.is-off { background: #f87171; box-shadow: 0 0 0 4px rgba(248,113,113,0.22); animation: none; }
.shuttle-live span.label { letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; color: rgba(255,255,255,0.7); }
.shuttle-live span.eta { color: var(--accent-yellow); }

/* Step rail */
.step-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
  position: relative;
}
.step-rail::before {
  content: "";
  position: absolute;
  top: 38px; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22) 12%, rgba(255,255,255,0.22) 88%, transparent);
}
.step-card {
  position: relative;
  padding: 26px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  backdrop-filter: blur(8px);
  transition: transform 0.5s var(--ease-spring), background 0.4s ease, border-color 0.4s ease;
}
.step-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.10); border-color: rgba(255,215,90,0.35); }
.step-card .step-num {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--custom-btn-bg-color), var(--accent-yellow));
  color: var(--ink);
  font-family: var(--display-font);
  font-variation-settings: "wght" 800;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(243,154,18,0.32);
  position: relative;
  z-index: 1;
}
.step-card h5 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.step-card p { color: rgba(255,255,255,0.74); font-size: 15px; line-height: 1.55; margin: 0; }

/* Terminal pickup map */
.pickup-map {
  position: relative;
  margin-top: 56px;
  padding: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  overflow: hidden;
}
.pickup-map h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 8px;
}
.pickup-map .pickup-sub { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.terminal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.terminal-card {
  position: relative;
  padding: 24px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.4s ease;
}
.terminal-card:hover { transform: translateY(-4px); border-color: rgba(255,215,90,0.5); }
.terminal-card .term-badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  color: var(--accent-yellow);
  font-family: var(--display-font);
  font-variation-settings: "wght" 800;
  font-size: 20px;
  margin-bottom: 16px;
}
.terminal-card .term-name { color: #fff; font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.terminal-card .term-spot {
  color: var(--accent-yellow);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 18px;
}
.terminal-card .term-line { color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 8px; }
.terminal-card .arrow {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 18px;
  color: rgba(255,255,255,0.45);
  transition: transform 0.4s var(--ease-spring), color 0.3s ease;
}
.terminal-card:hover .arrow { transform: translateX(4px); color: var(--accent-yellow); }

/* ---------- Travel-tip callout ---------- */
.travel-tip {
  margin-top: 36px;
  padding: 22px 26px;
  border-radius: 20px;
  background: linear-gradient(110deg, rgba(255,215,90,0.16), rgba(255,255,255,0.04) 60%);
  border: 1px solid rgba(255,215,90,0.28);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  color: #fff;
}
.travel-tip i {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,215,90,0.2);
  color: var(--accent-yellow);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 22px;
}
.travel-tip strong { color: var(--accent-yellow); }
.travel-tip p { color: rgba(255,255,255,0.86); margin: 0; font-size: 15px; line-height: 1.6; }

/* ---------- Booking card refinement ---------- */
.premium-booking-card {
  position: relative;
  overflow: hidden;
}
.premium-booking-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 200%;
  background: radial-gradient(circle, rgba(255,215,90,0.18), transparent 60%);
  filter: blur(20px);
  animation: bookingGlow 9s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes bookingGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-20%, 20%); }
}

/* Premium block (Why Choose Us) refinement */
.premium-block { transition: transform 0.55s var(--ease-spring), box-shadow 0.5s ease; }
.premium-block:hover { transform: translateY(-12px) rotate(0.2deg); }
.custom-block-image-wrap { position: relative; }
.custom-block-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,20,48,0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.custom-block-image-wrap:hover::after { opacity: 1; }
.custom-block-icon { transition: transform 0.4s var(--ease-spring), background 0.3s ease, color 0.3s ease; }
.custom-block-image-wrap:hover .custom-block-icon {
  background: var(--custom-btn-bg-color);
  color: #fff;
  transform: rotate(-45deg);
}

/* ---------- Pricing table sparkle ---------- */
.premium-table thead tr th { position: relative; }
.premium-table thead tr th:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 8px; right: 50%; transform: translateX(50%);
  width: 24px; height: 2px;
  background: var(--accent-yellow);
  border-radius: 2px;
  opacity: 0.7;
}
.premium-table tbody tr {
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.premium-table tbody tr:hover {
  background-color: #eef5ff !important;
}

/* ---------- Contact panel + grid ---------- */
.contact-panel::before {
  content: "";
  position: absolute;
  top: -40%; left: -10%;
  width: 70%; height: 80%;
  background: radial-gradient(circle, rgba(22,166,225,0.22), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  animation: bookingGlow 12s ease-in-out infinite alternate;
}
.contact-card {
  transition: transform 0.4s var(--ease-spring), background 0.3s ease, border-color 0.3s ease;
}
.contact-card:hover {
  border-color: rgba(255,215,90,0.4);
}
.contact-card i { transition: transform 0.4s var(--ease-spring), background 0.3s ease, color 0.3s ease; }
.contact-card:hover i {
  transform: rotate(-8deg) scale(1.05);
  background: var(--accent-yellow);
  color: var(--ink);
}

/* ---------- Footer polish ---------- */
.site-footer { position: relative; }
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(22,166,225,0.16), transparent 60%),
    radial-gradient(700px 400px at 100% 0%, rgba(243,154,18,0.10), transparent 60%);
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 3; }
.social-icon-link {
  transition: transform 0.4s var(--ease-spring), background 0.3s ease, color 0.3s ease;
}
.social-icon-link:hover { transform: translateY(-3px) rotate(-6deg); }

/* ---------- Floating reservation CTA ---------- */
.float-cta {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, var(--custom-btn-bg-color), #ffb84d);
  color: #fff;
  font-family: var(--display-font);
  font-variation-settings: "wght" 700;
  font-size: 15px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(243,154,18,0.42);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-spring), box-shadow 0.4s ease;
}
.float-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.float-cta:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 50px rgba(243,154,18,0.55);
}
.float-cta i {
  font-size: 18px;
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  align-items: center; justify-content: center;
}

/* ---------- Cursor glow (desktop only, JS-driven) ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,166,225,0.18), rgba(22,166,225,0) 60%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  opacity: 0;
  mix-blend-mode: screen;
  filter: blur(8px);
}
@media (hover: hover) and (pointer: fine) {
  .cursor-glow.is-active { opacity: 1; }
}

/* ---------- Reveal patterns (extends existing) ---------- */
.reveal-fade {
  opacity: 0;
  transition: opacity 0.9s var(--ease-smooth);
}
.reveal-fade.is-visible { opacity: 1; }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-spring);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }
.reveal-up { transition: opacity 0.85s var(--ease-smooth), transform 0.85s var(--ease-smooth); transform: translateY(36px); }

/* Stagger child reveal */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }

/* ---------- Responsive tuning for new sections ---------- */
@media (max-width: 991px) {
  .amenity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step-rail { grid-template-columns: repeat(2, 1fr); }
  .step-rail::before { display: none; }
  .terminal-grid { grid-template-columns: 1fr; }
  .float-cta { right: 14px; bottom: 14px; padding: 12px 18px 12px 14px; font-size: 14px; }
}
@media (max-width: 575px) {
  .amenity-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-rail { grid-template-columns: 1fr; }
  .pickup-map { padding: 24px 20px; }
  .gpf-marquee-track { gap: 36px; font-size: 15px; }
  .navbar-nav .nav-link::after { display: none; }
}

/* Reduce motion safety net */
@media (prefers-reduced-motion: reduce) {
  .gpf-marquee-track,
  .hero-section::before,
  .premium-badge::before,
  .shuttle-live .dot,
  .hero-title span,
  .hero-media-card::after,
  .premium-booking-card::before,
  .contact-panel::before {
    animation: none !important;
  }
  .float-cta { transition: none; }
}


/* =========================================================
   ★ REFINEMENT PASS — calmer, more impactful, less busy
   Surgical overrides; nothing above is removed.
   ========================================================= */

/* ---- Fix #1: video ratio overflow on the right ----
   Bootstrap's .ratio has width:100%; combined with margin:14px
   it spilled 28px past the parent. Constrain width to match. */
.hero-media-card .ratio {
  width: calc(100% - 28px);
  margin: 14px auto;
}
/* Ensure footer also respects symmetric inner gutter */
.hero-media-footer { padding: 0 20px 20px !important; }

/* ---- Quiet the hero ---- */
/* Remove decorative grid scanlines */
.hero-section::after { content: none; }
/* Calm the aurora — keep the soft glow, drop the animation */
.hero-section::before {
  animation: none;
  opacity: 0.45;
  filter: blur(60px);
}
/* Soften / shrink the floating orbs */
.hero-orb-one,
.hero-orb-two {
  animation: none;
  opacity: 0.25;
  filter: blur(28px);
}
.hero-orb-one { width: 220px; height: 220px; right: -80px; top: 120px; }
.hero-orb-two { width: 180px; height: 180px; left: -60px; bottom: 120px; }

/* Static gradient on hero accent — no shimmer animation */
.hero-title span { animation: none; background-position: 0 50%; }

/* Remove rim shimmer on hero card; keep a clean subtle border */
.hero-media-card::after { content: none; }

/* No more page-wide noise/grain textures */
body::before,
body::after { content: none; }

/* Static booking card glow */
.premium-booking-card::before { animation: none; opacity: 0.6; }
.contact-panel::before { animation: none; opacity: 0.7; }

/* Drop the spotlight-follow effect on cards (was creating busy noise) */
.about-copy-card::before,
.feature-card::before,
.premium-block::before { content: none; }

/* Hide the cursor glow entirely */
.cursor-glow { display: none !important; }

/* Hide the marquee — it competes with the hero CTA */
.gpf-marquee { display: none; }

/* Hide the floating CTA — replaced by a prominent navbar CTA */
.float-cta { display: none !important; }

/* Remove the lonely accent dots that wrap to their own line */
.accent-dot { display: none; }

/* ---- Fix #2: footer hours block (labels were touching values) ---- */
.site-footer .col-lg-3 p.d-flex {
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.site-footer .col-lg-3 p.d-flex span {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* ---- Fix #3: prominent reservation CTA in the navbar ---- */
.nav-reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--custom-btn-bg-color) 0%, #ffb84d 100%);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 28px rgba(243,154,18,0.42), 0 0 0 1px rgba(255,255,255,0.08) inset;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, filter 0.3s ease;
  white-space: nowrap;
}
.nav-reserve-btn:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(243,154,18,0.55), 0 0 0 1px rgba(255,255,255,0.18) inset;
  filter: brightness(1.05);
}
.nav-reserve-btn i { font-size: 13px; }

/* The old "Manage Booking" button becomes a secondary text-link in the navbar */
.nav-manage-link {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.nav-manage-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Wrap the two buttons together for clean alignment */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---- Fix #4: hero CTA hierarchy ----
   Make "Reserve Your Parking" big and unmistakable */
.hero-section .custom-btn-group .custom-btn {
  padding: 18px 32px;
  font-size: 16px;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 40px rgba(243,154,18,0.45);
}
.hero-section .custom-btn-group .secondary-btn {
  padding: 18px 26px;
  font-size: 15px;
  background: transparent;
  border-color: rgba(255,255,255,0.32);
}
.hero-section .custom-btn-group .secondary-btn:hover {
  background: rgba(255,255,255,0.08);
}

/* Tighten hero copy block so CTAs land above the fold on common laptops */
.hero-copy { max-width: 560px; font-size: 18px; line-height: 1.55; }
.hero-highlights { gap: 10px; }
.hero-highlight { padding: 10px 14px; font-size: 14px; }

/* Quieter section kicker accent (no need for the bright gradient line) */
.section-kicker::before {
  background: var(--primary-color-dark);
  opacity: 0.55;
}

/* Subtle, single-side hover on cards instead of the busy radial glow */
.amenity-card,
.about-copy-card,
.feature-card,
.premium-block {
  transition: transform 0.4s var(--ease-spring), box-shadow 0.35s ease, border-color 0.3s ease;
}

/* Mobile: still keep the navbar CTA prominent */
@media (max-width: 991px) {
  .nav-actions {
    width: 100%;
    justify-content: flex-end;
    padding-top: 8px;
  }
  .nav-reserve-btn {
    flex: 1;
    justify-content: center;
    padding: 14px 18px;
  }
}


/* =========================================================
   ★ Logo refinement — bigger, more readable, gently animated
   + colored "Manage Booking" link
   ========================================================= */

/* Bigger, crisper logo on dark navbar */
.navbar-brand,
.site-footer .navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.navbar-brand-image,
.logo-img {
  height: 100px !important;
  width: auto !important;
  max-height: none !important;
  object-fit: contain;
  /* Multi-layer halo: tight white halo lifts dark-blue 'GLOBAL' off
     the navy navbar; warm gold layer adds brand identity; bottom
     shadow adds depth. */
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.55))
    drop-shadow(0 0 16px rgba(255,255,255,0.22))
    drop-shadow(0 4px 14px rgba(255,215,90,0.28))
    drop-shadow(0 2px 6px rgba(0,0,0,0.4)) !important;
  transition: transform 0.5s var(--ease-spring), filter 0.4s ease;
  transform-origin: center;
  will-change: transform;
  animation: logoFloat 5s ease-in-out infinite;
}

/* Footer logo: lighter glow (footer is dark too) */
.site-footer .navbar-brand-image,
.site-footer .logo-img {
  height: 88px !important;
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.45))
    drop-shadow(0 0 14px rgba(255,255,255,0.18))
    drop-shadow(0 2px 6px rgba(0,0,0,0.35)) !important;
  animation: none;
}

/* Hover: lift, brighten, intensify glow */
.navbar-brand:hover .navbar-brand-image,
.navbar-brand:hover .logo-img {
  transform: scale(1.06);
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,0.7))
    drop-shadow(0 0 22px rgba(255,255,255,0.35))
    drop-shadow(0 8px 22px rgba(255,215,90,0.5))
    drop-shadow(0 4px 8px rgba(0,0,0,0.4))
    brightness(1.08) !important;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Page-load entrance — subtle, only the first time */
@keyframes logoEntrance {
  from { opacity: 0; transform: translateY(-12px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.navbar-brand-image {
  animation: logoEntrance 0.9s var(--ease-spring) both,
             logoFloat 5s ease-in-out 0.9s infinite;
}

/* Pull the navbar height up a hair so the bigger logo fits cleanly */
.navbar { padding-top: 14px; padding-bottom: 14px; }

/* Reduce-motion: keep the logo static */
@media (prefers-reduced-motion: reduce) {
  .navbar-brand-image,
  .logo-img {
    animation: none !important;
  }
}

/* Smaller screens: scale logo down so it doesn't dominate */
@media (max-width: 991px) {
  .navbar-brand-image,
  .logo-img { height: 72px !important; }
}
@media (max-width: 575px) {
  .navbar-brand-image,
  .logo-img { height: 56px !important; }
  /* Tighter Reserve Now button on small mobile so the logo has room */
  .d-lg-none .nav-reserve-btn { padding: 10px 14px; font-size: 13px; }
}

/* ---- "Manage Booking" link — now in color ---- */
.nav-manage-link {
  color: var(--accent-yellow) !important; /* warm gold */
  border: 1px solid rgba(255,215,90,0.32);
  background: rgba(255,215,90,0.08);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-spring);
}
.nav-manage-link:hover,
.nav-manage-link:focus {
  color: #0a1430 !important;
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
}
