/* =========================================================
   LUXi — PREMIUM MIDNIGHT NAVY + GOLD V8
   ========================================================= */

:root {
  --navy-black: #020315;
  --navy-deep: #040725;
  --navy: #070b32;
  --navy-mid: #0b1040;
  --navy-light: #11184d;

  --gold-dark: #8f6d16;
  --gold: #c9a63a;
  --gold-rich: #d9b94f;
  --gold-light: #f1d778;
  --gold-pale: #fff0b0;

  --white: #ffffff;
  --soft-white: #eef0f8;
  --muted: #a7adc3;

  --gold-border: rgba(217, 185, 79, 0.28);
  --white-border: rgba(255, 255, 255, 0.07);

  --shadow-deep:
    0 30px 80px rgba(0, 0, 0, 0.42);

  --shadow-gold:
    0 12px 38px rgba(201, 166, 58, 0.11);
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-black);
}

body {
  margin: 0;
  padding: 0;

  color: var(--white);

  background:
    var(--navy-black);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}


/* =========================================================
   REAL LUXi LOGO CROPPING
   ========================================================= */

.logo-crop {
  position: relative;
  display: block;
  overflow: hidden;
  flex-shrink: 0;

  background:
    var(--navy-deep);
}

.logo-crop img {
  position: absolute;
  left: 50%;
  max-width: none;
  transform: translateX(-50%);
}


/* HEADER LOGO */

.logo-header {
  width: 128px;
  height: 54px;
}

.logo-header img {
  width: 305px;
  top: -55px;
}


/* HERO LOGO */

.logo-hero {
  width: 345px;
  height: 140px;

  margin:
    0 auto 18px;

  background: transparent;
}

.logo-hero img {
  width: 815px;
  top: -144px;
}


/* DOWNLOAD LOGO */

.logo-download {
  width: 205px;
  height: 84px;

  background: transparent;
}

.logo-download img {
  width: 485px;
  top: -86px;
}


/* FOOTER LOGO */

.logo-footer {
  width: 155px;
  height: 64px;

  margin-bottom: 18px;

  background: transparent;
}

.logo-footer img {
  width: 367px;
  top: -66px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;

  z-index: 3000;

  background:
    rgba(2, 3, 21, 0.93);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom:
    1px solid rgba(217, 185, 79, 0.16);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.25);
}

.header-inner {
  width:
    min(1180px, calc(100% - 42px));

  min-height: 76px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.header-logo-link {
  text-decoration: none;
}

.desktop-nav {
  display: flex;
  align-items: center;

  gap: 28px;
}

.desktop-nav > a {
  color:
    rgba(255, 255, 255, 0.72);

  font-size: 12.5px;
  font-weight: 700;

  letter-spacing: 0.2px;

  text-decoration: none;

  transition:
    color 0.2s ease;
}

.desktop-nav > a:hover {
  color: var(--gold-light);
}

.header-phone {
  padding:
    10px 16px;

  display: flex;
  align-items: center;

  gap: 8px;

  color:
    var(--gold-light) !important;

  border:
    1px solid rgba(217, 185, 79, 0.4);

  border-radius: 50px;

  background:
    rgba(217, 185, 79, 0.035);

  box-shadow:
    inset 0 0 18px rgba(217, 185, 79, 0.03);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 765px;

  padding:
    82px 28px 96px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:

    radial-gradient(
      ellipse at 50% 8%,
      rgba(37, 50, 135, 0.55),
      transparent 40%
    ),

    radial-gradient(
      circle at 10% 85%,
      rgba(201, 166, 58, 0.075),
      transparent 30%
    ),

    radial-gradient(
      circle at 90% 70%,
      rgba(201, 166, 58, 0.055),
      transparent 30%
    ),

    linear-gradient(
      145deg,
      #020315,
      #070b32 50%,
      #020417
    );
}


/* Subtle grid */

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.13;

  background-image:

    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );

  background-size:
    52px 52px;
}


.hero::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 170px;

  background:
    linear-gradient(
      transparent,
      var(--navy-black)
    );
}


.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(100px);

  pointer-events: none;
}

.hero-glow-one {
  width: 420px;
  height: 420px;

  top: -160px;
  left: 50%;

  transform:
    translateX(-50%);

  background:
    rgba(47, 62, 151, 0.3);
}

.hero-glow-two {
  width: 250px;
  height: 250px;

  right: 5%;
  bottom: 3%;

  background:
    rgba(212, 175, 55, 0.09);
}


/* MAIN HERO FRAME */

.hero-frame {
  position: relative;

  z-index: 3;

  width:
    min(1050px, 100%);

  min-height: 600px;

  padding:
    65px 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:

    linear-gradient(
      145deg,
      rgba(18, 25, 76, 0.52),
      rgba(3, 6, 27, 0.45)
    );

  border:
    1px solid rgba(217, 185, 79, 0.22);

  border-radius: 7px;

  box-shadow:

    0 50px 110px
    rgba(0, 0, 0, 0.38),

    inset
    0 1px 0
    rgba(255, 255, 255, 0.04),

    inset
    0 0 80px
    rgba(0, 0, 0, 0.16);

  backdrop-filter: blur(7px);
}


/* GOLD CORNERS */

.corner {
  position: absolute;

  width: 46px;
  height: 46px;
}

.corner-tl {
  top: -1px;
  left: -1px;

  border-top:
    2px solid var(--gold-rich);

  border-left:
    2px solid var(--gold-rich);
}

.corner-tr {
  top: -1px;
  right: -1px;

  border-top:
    2px solid var(--gold-rich);

  border-right:
    2px solid var(--gold-rich);
}

.corner-bl {
  bottom: -1px;
  left: -1px;

  border-bottom:
    2px solid var(--gold-rich);

  border-left:
    2px solid var(--gold-rich);
}

.corner-br {
  bottom: -1px;
  right: -1px;

  border-bottom:
    2px solid var(--gold-rich);

  border-right:
    2px solid var(--gold-rich);
}


.hero-content {
  position: relative;
  z-index: 5;

  width:
    min(790px, 100%);

  text-align: center;
}

.gold-line {
  width: 65px;
  height: 1px;

  margin:
    0 auto 25px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold-light),
      transparent
    );

  box-shadow:
    0 0 18px
    rgba(217, 185, 79, 0.55);
}


.eyebrow {
  margin:
    0 0 15px;

  color:
    var(--gold-rich);

  font-size: 10.5px;
  font-weight: 800;

  letter-spacing: 3.2px;

  text-transform: uppercase;
}


.hero h1 {
  margin: 0;

  color: var(--white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(49px, 6.4vw, 79px);

  font-weight: 400;

  line-height: 1.06;

  letter-spacing: -2px;

  text-shadow:
    0 10px 38px
    rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  display: block;
}


.hero-description {
  width:
    min(650px, 100%);

  margin:
    24px auto 0;

  color:
    rgba(255, 255, 255, 0.66);

  font-size: 16px;

  line-height: 1.8;
}


.hero-actions {
  margin-top: 31px;

  display: flex;
  justify-content: center;

  gap: 13px;

  flex-wrap: wrap;
}


/* =========================================================
   MAIN BUTTONS
   ========================================================= */

.button {
  min-width: 190px;
  min-height: 52px;

  padding:
    13px 24px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  border-radius: 5px;

  font-size: 13px;
  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform:
    translateY(-2px);
}

.button-gold {
  color:
    #0a0a10;

  background:

    linear-gradient(
      135deg,
      #917019 0%,
      #d8b64c 30%,
      #f4dd84 56%,
      #bc9223 100%
    );

  border:
    1px solid #efd26d;

  box-shadow:

    0 15px 38px
    rgba(212, 175, 55, 0.19),

    inset
    0 1px 0
    rgba(255, 255, 255, 0.6);
}

.button-gold:hover {
  box-shadow:

    0 20px 48px
    rgba(212, 175, 55, 0.27),

    inset
    0 1px 0
    rgba(255, 255, 255, 0.6);
}


.button-dark {
  color:
    var(--white);

  background:
    rgba(0, 0, 0, 0.2);

  border:
    1px solid
    rgba(255, 255, 255, 0.18);
}

.button-dark:hover {
  border-color:
    rgba(217, 185, 79, 0.55);
}


/* =========================================================
   APP STORE BUTTONS
   ========================================================= */

.store-buttons {
  margin-top: 23px;

  display: flex;
  justify-content: center;

  gap: 11px;

  flex-wrap: wrap;
}

.store-button {
  min-width: 180px;
  height: 57px;

  padding:
    7px 15px;

  display: flex;
  align-items: center;

  gap: 11px;

  color:
    var(--white);

  background:

    linear-gradient(
      180deg,
      #0a0a0a,
      #000000
    );

  border:
    1px solid rgba(255, 255, 255, 0.29);

  border-radius: 8px;

  box-shadow:
    0 10px 28px
    rgba(0, 0, 0, 0.3);

  text-decoration: none;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.store-button:hover {
  transform:
    translateY(-2px);

  border-color:
    rgba(217, 185, 79, 0.7);
}

.store-icon {
  width: 31px;

  color: white;

  font-size: 32px;

  text-align: center;
}

.play-icon {
  font-size: 26px;
}

.store-button > span {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  line-height: 1.02;
}

.store-button small {
  margin-bottom: 4px;

  color: #dedede;

  font-size: 8px;
}

.store-button strong {
  font-size: 18px;
  font-weight: 500;
}


/* =========================================================
   PREMIUM STRIP — NOW NAVY
   ========================================================= */

.premium-strip {
  position: relative;

  z-index: 10;

  padding:
    31px 20px;

  color:
    var(--white);

  background:

    linear-gradient(
      90deg,
      #03051d,
      #0c113f 50%,
      #03051d
    );

  border-top:
    1px solid var(--gold-border);

  border-bottom:
    1px solid var(--gold-border);

  box-shadow:
    0 16px 45px
    rgba(0, 0, 0, 0.18);
}

.premium-strip-inner {
  width:
    min(960px, 100%);

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.premium-item {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;
}

.premium-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color:
    var(--gold-light);

  border:
    1px solid rgba(217, 185, 79, 0.34);

  border-radius: 50%;

  background:
    rgba(217, 185, 79, 0.035);

  box-shadow:
    inset 0 0 18px
    rgba(217, 185, 79, 0.035);

  font-size: 14px;
}

.premium-item strong {
  display: block;

  color:
    var(--white);

  font-size: 13px;
}

.premium-item span {
  display: block;

  margin-top: 1px;

  color:
    var(--muted);

  font-size: 10.5px;
}

.premium-divider {
  width: 1px;
  height: 40px;

  background:

    linear-gradient(
      transparent,
      rgba(217, 185, 79, 0.35),
      transparent
    );
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-heading {
  width:
    min(790px, 100%);

  margin:
    0 auto 60px;

  text-align: center;
}

.section-heading h2 {
  margin: 0;

  color:
    var(--white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(37px, 5vw, 56px);

  font-weight: 400;

  line-height: 1.16;

  letter-spacing: -1px;

  text-shadow:
    0 10px 30px
    rgba(0, 0, 0, 0.24);
}

.section-heading > p:last-child {
  width:
    min(620px, 100%);

  margin:
    18px auto 0;

  color:
    var(--muted);

  font-size: 14px;

  line-height: 1.8;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
  padding:
    115px 22px;

  background:

    radial-gradient(
      circle at 50% 0%,
      rgba(28, 42, 120, 0.27),
      transparent 32%
    ),

    linear-gradient(
      180deg,
      #020416,
      #050829
    );
}

.services-grid {
  width:
    min(1080px, 100%);

  margin:
    0 auto;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.service-card {
  position: relative;

  min-height: 290px;

  padding:
    32px 28px;

  overflow: hidden;

  background:

    linear-gradient(
      145deg,
      rgba(19, 27, 82, 0.76),
      rgba(3, 6, 28, 0.94)
    );

  border:
    1px solid
    rgba(217, 185, 79, 0.21);

  border-radius: 8px;

  box-shadow:

    0 26px 65px
    rgba(0, 0, 0, 0.28),

    inset
    0 1px 0
    rgba(255, 255, 255, 0.025);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform:
    translateY(-5px);

  border-color:
    rgba(217, 185, 79, 0.5);

  box-shadow:
    0 35px 80px
    rgba(0, 0, 0, 0.38);
}

.service-top {
  margin-bottom: 35px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon {
  width: 49px;
  height: 49px;

  display: flex;
  align-items: center;
  justify-content: center;

  color:
    var(--gold-light);

  border:
    1px solid
    rgba(217, 185, 79, 0.32);

  border-radius: 50%;

  background:
    rgba(217, 185, 79, 0.035);

  font-size: 16px;

  box-shadow:
    0 8px 28px
    rgba(0, 0, 0, 0.14);
}

.service-number {
  color:
    rgba(217, 185, 79, 0.28);

  font-family:
    Georgia,
    serif;

  font-size: 31px;
}

.service-card h3 {
  margin:
    0 0 13px;

  color: var(--white);

  font-family:
    Georgia,
    serif;

  font-size: 23px;

  font-weight: 400;
}

.service-card p {
  margin: 0;

  color:
    var(--muted);

  font-size: 13.5px;

  line-height: 1.75;
}

.service-line {
  position: absolute;

  left: 28px;
  right: 28px;

  bottom: 0;

  height: 2px;

  background:

    linear-gradient(
      90deg,
      transparent,
      rgba(217, 185, 79, 0.75),
      transparent
    );
}


/* =========================================================
   BOOKING SECTION — NO MORE WHITE
   ========================================================= */

.booking-section {
  position: relative;

  padding:
    120px 22px;

  overflow: hidden;

  color:
    var(--white);

  background:

    radial-gradient(
      ellipse at 50% 5%,
      rgba(31, 46, 132, 0.27),
      transparent 34%
    ),

    radial-gradient(
      circle at 5% 70%,
      rgba(217, 185, 79, 0.055),
      transparent 25%
    ),

    linear-gradient(
      180deg,
      #050829,
      #020416
    );

  border-top:
    1px solid
    rgba(217, 185, 79, 0.10);
}

.booking-section::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 850px;
  height: 850px;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    rgba(41, 56, 141, 0.06);

  filter:
    blur(80px);

  pointer-events: none;
}


.booking-shell {
  position: relative;

  z-index: 2;

  width:
    min(1010px, 100%);

  margin:
    0 auto;
}


.booking-heading {
  width:
    min(690px, 100%);

  margin:
    0 auto 47px;

  text-align: center;
}


.booking-heading h2 {
  margin: 0;

  color: var(--white);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(40px, 5vw, 58px);

  font-weight: 400;

  text-shadow:
    0 10px 30px
    rgba(0, 0, 0, 0.25);
}

.booking-heading > p:last-child {
  width:
    min(600px, 100%);

  margin:
    17px auto 0;

  color:
    var(--muted);

  font-size: 14px;

  line-height: 1.8;
}


/* HONEYPOT */

.honeypot {
  display: none !important;

  position: absolute !important;

  left: -10000px !important;
}


/* =========================================================
   DARK PREMIUM BOOKING FORM
   ========================================================= */

#ride-request-form {
  position: relative;

  width:
    min(850px, 100%);

  margin:
    0 auto;

  padding:
    46px;

  background:

    linear-gradient(
      145deg,
      rgba(15, 22, 69, 0.88),
      rgba(3, 6, 27, 0.96)
    );

  border:
    1px solid
    rgba(217, 185, 79, 0.29);

  border-radius: 10px;

  box-shadow:

    0 40px 100px
    rgba(0, 0, 0, 0.42),

    0 0 60px
    rgba(31, 47, 137, 0.06),

    inset
    0 1px 0
    rgba(255, 255, 255, 0.04);

  backdrop-filter:
    blur(14px);
}


/* GOLD TOP ACCENT */

#ride-request-form::before {
  content: "";

  position: absolute;

  top: -1px;
  left: 10%;

  width: 80%;

  height: 2px;

  background:

    linear-gradient(
      90deg,
      transparent,
      var(--gold-light),
      transparent
    );

  box-shadow:
    0 0 15px
    rgba(217, 185, 79, 0.34);
}


.form-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  color:
    var(--gold-light);

  font-size: 10.5px;

  font-weight: 800;

  letter-spacing: 0.65px;

  text-transform: uppercase;
}

.form-group label span {
  color:
    var(--gold-rich);
}


.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding:
    14px 14px;

  color:
    var(--white);

  background:
    rgba(1, 3, 18, 0.62);

  border:
    1px solid
    rgba(217, 185, 79, 0.19);

  border-radius: 6px;

  outline: none;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color:
    rgba(255, 255, 255, 0.30);
}

.form-group select {
  color:
    rgba(255, 255, 255, 0.9);
}

.form-group select option {
  color: #111;
  background: white;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background:
    rgba(3, 6, 30, 0.88);

  border-color:
    rgba(241, 215, 120, 0.72);

  box-shadow:
    0 0 0 3px
    rgba(217, 185, 79, 0.09);
}

.form-group textarea {
  min-height: 125px;

  resize: vertical;
}


/* =========================================================
   SMS CONSENT — DARK
   ========================================================= */

.sms-consent {
  margin:
    8px 0 22px;

  padding:
    20px;

  background:
    rgba(1, 3, 17, 0.38);

  border:
    1px solid
    rgba(217, 185, 79, 0.22);

  border-radius: 7px;
}

.sms-consent legend {
  padding:
    0 8px;

  color:
    var(--gold-light);

  background:
    transparent;

  font-size: 10.5px;

  font-weight: 800;

  letter-spacing: 0.8px;

  text-transform: uppercase;
}

.checkbox-label {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  color:
    rgba(255, 255, 255, 0.75);

  font-size: 12.5px;

  line-height: 1.65;
}

.checkbox-label input {
  width: 18px;
  height: 18px;

  margin-top: 3px;

  flex: 0 0 auto;

  accent-color:
    var(--gold-rich);
}

.sms-disclosure {
  margin:
    14px 0 0 30px;

  color:
    rgba(255, 255, 255, 0.47);

  font-size: 10.8px;

  line-height: 1.7;
}

.sms-disclosure a {
  color:
    var(--gold-light);

  font-weight: 700;
}

.booking-notice {
  margin:
    6px 0 20px;

  color:
    rgba(255, 255, 255, 0.42);

  font-size: 11.5px;

  line-height: 1.65;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.submit-button {
  width: 100%;

  min-height: 55px;

  padding:
    14px 22px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  color:
    #090a10;

  background:

    linear-gradient(
      135deg,
      #8f6c16,
      #d9b94f 34%,
      #f3dc82 58%,
      #b98e20
    );

  border:
    1px solid #ecd16e;

  border-radius: 5px;

  box-shadow:

    0 17px 40px
    rgba(217, 185, 79, 0.17),

    inset
    0 1px 0
    rgba(255, 255, 255, 0.6);

  font-size: 13px;

  font-weight: 900;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.submit-button:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 22px 50px
    rgba(217, 185, 79, 0.25);
}


/* =========================================================
   APP DOWNLOAD
   ========================================================= */

.download-section {
  padding:
    110px 22px;

  background:

    radial-gradient(
      ellipse at 80% 50%,
      rgba(33, 48, 136, 0.35),
      transparent 42%
    ),

    linear-gradient(
      135deg,
      #020416,
      #080d38
    );

  border-top:
    1px solid
    rgba(217, 185, 79, 0.10);
}


.download-frame {
  position: relative;

  width:
    min(1050px, 100%);

  margin:
    0 auto;

  padding:
    56px 60px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 65px;

  background:

    linear-gradient(
      145deg,
      rgba(19, 27, 81, 0.55),
      rgba(3, 6, 27, 0.64)
    );

  border:
    1px solid
    rgba(217, 185, 79, 0.24);

  border-radius: 8px;

  box-shadow:

    0 35px 85px
    rgba(0, 0, 0, 0.30),

    inset
    0 1px 0
    rgba(255, 255, 255, 0.035);
}


.download-frame::before,
.download-frame::after {
  content: "";

  position: absolute;

  width: 50px;
  height: 2px;

  top: -1px;

  background:
    var(--gold-light);
}

.download-frame::before {
  left: 0;
}

.download-frame::after {
  right: 0;
}


.download-copy {
  max-width: 470px;
}

.download-copy h2 {
  margin:
    0 0 16px;

  color:
    var(--white);

  font-family:
    Georgia,
    serif;

  font-size:
    clamp(39px, 5vw, 57px);

  font-weight: 400;

  line-height: 1.08;

  text-shadow:
    0 10px 30px
    rgba(0, 0, 0, 0.24);
}

.download-copy > p:last-child {
  margin: 0;

  color:
    var(--muted);

  font-size: 13.5px;

  line-height: 1.75;
}

.download-store-area {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.mini-logo-frame {
  margin-bottom: 15px;

  padding:
    4px 14px 8px;

  border-bottom:
    1px solid rgba(217, 185, 79, 0.18);
}

.download-buttons {
  margin-top: 5px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background:

    linear-gradient(
      180deg,
      #020416,
      #01020c
    );

  border-top:
    1px solid
    rgba(217, 185, 79, 0.13);
}

.footer-inner {
  width:
    min(1100px, calc(100% - 42px));

  margin:
    0 auto;

  padding:
    60px 0 44px;

  display: grid;

  grid-template-columns:
    1.6fr 1fr 1fr;

  gap: 60px;
}

.footer-brand p {
  max-width: 400px;

  margin: 0;

  color:
    rgba(255, 255, 255, 0.41);

  font-size: 12px;

  line-height: 1.75;
}

.footer-column {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.footer-column h3 {
  margin:
    0 0 10px;

  color:
    var(--gold-rich);

  font-size: 9.5px;

  font-weight: 800;

  letter-spacing: 1.7px;

  text-transform: uppercase;
}

.footer-column a {
  color:
    rgba(255, 255, 255, 0.51);

  font-size: 12px;

  text-decoration: none;

  transition:
    color 0.2s ease;
}

.footer-column a:hover {
  color:
    var(--gold-light);
}

.footer-bottom {
  width:
    min(1100px, calc(100% - 42px));

  margin:
    0 auto;

  padding:
    18px 0 22px;

  display: flex;

  justify-content: space-between;

  gap: 25px;

  color:
    rgba(255, 255, 255, 0.23);

  border-top:
    1px solid
    rgba(255, 255, 255, 0.055);

  font-size: 9.5px;
}


/* =========================================================
   MOBILE ACTION BAR
   ========================================================= */

.mobile-actions {
  display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 920px) {

  .desktop-nav {
    gap: 17px;
  }

  .services-grid {
    grid-template-columns: 1fr;

    max-width: 650px;
  }

  .service-card {
    min-height: auto;
  }

  .download-frame {
    flex-direction: column;

    align-items: flex-start;
  }

  .download-store-area {
    width: 100%;

    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns:
      1fr 1fr;
  }

  .footer-brand {
    grid-column:
      1 / -1;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 700px) {

  body {
    padding-bottom:
      67px;
  }


  /* HEADER */

  .header-inner {
    width:
      calc(100% - 28px);

    min-height:
      65px;
  }

  .logo-header {
    width: 97px;
    height: 42px;
  }

  .logo-header img {
    width: 232px;
    top: -42px;
  }

  .desktop-nav > a:not(.header-phone) {
    display: none;
  }

  .header-phone {
    padding:
      8px 10px;

    font-size:
      10px !important;
  }

  .header-phone i {
    display: none;
  }


  /* HERO */

  .hero {
    min-height: auto;

    padding:
      48px 13px 72px;
  }

  .hero-frame {
    min-height: auto;

    padding:
      50px 19px 47px;

    border-radius: 5px;
  }

  .corner {
    width: 28px;
    height: 28px;
  }

  .logo-hero {
    width: 218px;
    height: 89px;

    margin-bottom: 15px;
  }

  .logo-hero img {
    width: 515px;
    top: -92px;
  }

  .hero h1 {
    font-size: 41px;

    line-height: 1.08;

    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 14.5px;

    line-height: 1.75;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .store-buttons {
    width: 100%;

    flex-direction: column;
  }

  .store-button {
    width: 100%;

    justify-content: flex-start;

    padding-left: 25px;
  }


  /* PREMIUM STRIP */

  .premium-strip {
    padding:
      32px 20px;
  }

  .premium-strip-inner {
    flex-direction: column;

    gap: 16px;
  }

  .premium-item {
    width: 100%;

    justify-content: flex-start;

    max-width: 275px;
  }

  .premium-divider {
    width: 60px;
    height: 1px;

    background:

      linear-gradient(
        90deg,
        transparent,
        rgba(217, 185, 79, 0.38),
        transparent
      );
  }


  /* SERVICES */

  .services-section {
    padding:
      82px 15px;
  }

  .section-heading {
    margin-bottom:
      45px;
  }

  .section-heading h2 {
    font-size:
      38px;
  }

  .services-grid {
    gap: 16px;
  }

  .service-card {
    padding:
      28px 23px;
  }


  /* BOOKING */

  .booking-section {
    padding:
      82px 13px;
  }

  .booking-heading h2 {
    font-size:
      42px;
  }

  #ride-request-form {
    padding:
      27px 17px;

    border-radius: 8px;
  }

  .form-row {
    grid-template-columns:
      1fr;

    gap: 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 49px;

    font-size: 15px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .sms-consent {
    padding:
      17px 14px;
  }

  .sms-disclosure {
    margin-left: 0;
  }


  /* DOWNLOAD */

  .download-section {
    padding:
      80px 14px;
  }

  .download-frame {
    padding:
      41px 22px;
  }

  .download-copy h2 {
    font-size:
      41px;
  }

  .mini-logo-frame {
    width: 100%;
  }

  .logo-download {
    width: 185px;
    height: 76px;

    margin:
      0 auto;
  }

  .logo-download img {
    width: 438px;
    top: -78px;
  }

  .download-store-area {
    align-items: stretch;
  }


  /* FOOTER */

  .footer-inner {
    grid-template-columns:
      1fr;

    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 6px;
  }


  /* MOBILE CALL + TEXT */

  .mobile-actions {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 5000;

    display: grid;

    grid-template-columns:
      1fr 1fr;

    background:
      rgba(1, 3, 16, 0.98);

    backdrop-filter:
      blur(15px);

    border-top:
      1px solid
      rgba(217, 185, 79, 0.28);

    box-shadow:
      0 -12px 38px
      rgba(0, 0, 0, 0.35);
  }

  .mobile-actions a {
    min-height: 59px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    color:
      var(--gold-light);

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;
  }

  .mobile-actions a:first-child {
    border-right:
      1px solid
      rgba(217, 185, 79, 0.17);
  }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media screen and (max-width: 380px) {

  .hero-frame {
    padding-left: 15px;
    padding-right: 15px;
  }

  .logo-hero {
    width: 196px;
    height: 80px;
  }

  .logo-hero img {
    width: 464px;
    top: -83px;
  }

  .hero h1 {
    font-size: 36px;
  }
}