
    /* TOP BAR */
    .top-bar {
      background: #b30000;
      color: #fff;
      font-size: 13px;
      padding: 6px 0;
    }

    .top-bar a {
      color: #fff;
      text-decoration: none;
    }

    /* NAVBAR */
    .navbar-brand img {
      height: 45px;
    }

    .nav-link {
      font-weight: 500;
      color: #111 !important;
      margin: 0 8px;
    }

    .book-btn {
      background: #b30000;
      color: #fff;
      padding: 10px 22px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .book-btn:hover {
      background: #8c0000;
      color: #fff;
    }


.offer-heading {
    color: #000;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 15px auto 20px;
    max-width: 900px;
}

/* Tablet */
@media (max-width: 991px) {
    .offer-heading {
        font-size: 2.8rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .offer-heading {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .offer-heading {
        font-size: 1.7rem;
    }
}

/* ============================================================
   WHY GRID ICON CARDS — MANLY CABBIES
============================================================ */

.mc-why-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mc-why-item {
  display: flex;
  align-items: center;
  gap: 12px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;

  padding: 16px 15px;
  color: #fff;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;

  transition: 0.3s ease;
}

.mc-why-item:hover {
  border-color: #B3001B;
  background: rgba(179,0,27,0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(179,0,27,0.18);
}

.mc-why-item i {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 38px;

  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;

  border-radius: 50%;
  font-size: 15px;

  box-shadow: 0 8px 18px rgba(179,0,27,0.28);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .mc-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mc-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-why-item {
    font-size: 13px;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .mc-why-grid {
    grid-template-columns: 1fr;
  }
}


.airport-heading {
    color: #000;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 15px auto 20px;
    max-width: 950px;
}

.airport-description {
    color: #555;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Tablet */
@media (max-width: 991px) {
    .airport-heading {
        font-size: 2.8rem;
    }

    .airport-description {
        font-size: 1.05rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .airport-heading {
        font-size: 2rem;
        line-height: 1.25;
    }

    .airport-description {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .airport-heading {
        font-size: 1.7rem;
    }

    .airport-description {
        font-size: 0.95rem;
    }
}


.airport-bottom-text {
    color: #555;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.9;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.airport-bottom-text:last-child {
    margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .airport-bottom-text {
        font-size: 1.05rem;
        line-height: 1.8;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .airport-bottom-text {
        font-size: 1rem;
        line-height: 1.75;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .airport-bottom-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* ============================================================
   AIRPORT ROUTES SECTION — MANLY CABBIES
============================================================ */

.mc-airport-routes {
  background: #0B0F14;
  color: #fff;
  padding: 90px 0;
}

.mc-airport-routes .text-center {
  max-width: 850px;
  margin: 0 auto;
}

.mc-airport-routes h2 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin: 12px 0;
  line-height: 1.2;
}

.mc-airport-routes p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-size: 15px;
}

/* ROUTE GRID */
.mc-route-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ROUTE CARD */
.mc-route {
  position: relative;

  display: flex;
  align-items: center;
  gap: 12px;

  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;

  padding: 14px 16px;

  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;

  transition: 0.3s ease;
}

/* ICON CIRCLE */
.mc-route::before {
  content: "\f5b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  width: 36px;
  height: 36px;
  flex: 0 0 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;

  font-size: 14px;
  box-shadow: 0 8px 18px rgba(179,0,27,0.28);
}

/* AIRPORT TO SUBURB ICON */
.mc-route:nth-child(even)::before {
  content: "\f5af";
}

/* HOVER */
.mc-route:hover {
  border-color: #B3001B;
  background: rgba(179,0,27,0.12);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(179,0,27,0.18);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .mc-route-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mc-airport-routes {
    padding: 65px 0;
  }

  .mc-airport-routes h2 {
    font-size: 28px;
  }

  .mc-route-grid {
    grid-template-columns: 1fr;
  }

  .mc-route {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .mc-route {
    align-items: flex-start;
    padding: 13px;
  }

  .mc-route::before {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    font-size: 12px;
  }
}
/* ============================================================
   TOP BAR — MANLY CABBIES THEME
============================================================ */

.mc-topbar {
  background: #b30000; /* YOUR NAVY THEME */
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(179, 0, 27, 0.25); /* red accent line */
}

.mc-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* LEFT + RIGHT */
.mc-topbar-left,
.mc-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* LINKS */
.mc-topbar a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

/* HOVER = RED THEME */
.mc-topbar a:hover {
  color: #fff;
}

/* ICONS */
.mc-topbar i {
  color: #FFFFFF; /* red brand icon */
  font-size: 13px;
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 768px) {

  .mc-topbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .mc-topbar-left,
  .mc-topbar-right {
    width: 100%;
    justify-content: flex-start;
  }

  .mc-topbar a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {

  .mc-topbar-left,
  .mc-topbar-right {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .mc-topbar-right {
    display: none;
  }
}

/* HERO BACKGROUND */
.hero-section {
  min-height: 90vh;
  background: url('image/cover1.jpg') no-repeat center center/cover;
  position: relative;
}

/* dark overlay like screenshot */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.75);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* FORM CARD */
.form-card {
  background: rgba(30, 30, 35, 0.85);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  color: #fff;
}

/* PLACEHOLDER BOX */
.placeholder-box {
  border: 1px dashed rgba(255,255,255,0.3);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  color: #ccc;
}

/* TAB STYLE */
.nav-pills .nav-link {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  margin-right: 10px;
}

.nav-pills .nav-link.active {
  background: #b30000;
}

/* ============================================================
   PREMIUM TAB SWITCH (MANLY CAB STYLE)
============================================================ */

.mc-tab-switch {
  display: flex;
  background: #0B0F14;
  padding: 6px;
  border-radius: 16px;
  gap: 6px;
  width: fit-content;
}

/* remove list style */
.mc-tab-switch li {
  list-style: none;
}

/* TAB BUTTON */
.mc-tab {
  border: none;
  background: transparent;

  color: rgba(255,255,255,0.65);
  font-weight: 600;

  padding: 12px 18px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  gap: 8px;

  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

/* HOVER */
.mc-tab:hover {
  color: #fff;
  background: rgba(255, 0, 0, 0.08);
}

/* ACTIVE TAB (CLEAN RED BRAND) */
.mc-tab.active {
  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;

  box-shadow: 0 10px 25px rgba(179, 0, 27, 0.35);
}

/* TEXT INSIDE TAB */
.mc-tab span {
  font-size: 14px;
}

/* FOCUS FIX */
.mc-tab:focus {
  outline: none;
  box-shadow: none;
}
@media (max-width: 768px) {

  .top-bar {
    font-size: 11px;
    text-align: center;
  }

  .top-bar .d-flex {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

}



@media (max-width: 991px) {

  .navbar-nav {
    text-align: center;
    padding: 15px 0;
  }

  .nav-link {
    margin: 8px 0;
  }

  .navbar-collapse {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
  }

}



@media (max-width: 991px) {

  .hero-section {
    min-height: auto;
    padding: 80px 0;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .hero-section h2 {
    font-size: 28px;
  }

}


@media (max-width: 576px) {

  .hero-section {
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 26px;
  }

  .hero-section h2 {
    font-size: 22px;
  }

  .placeholder-box {
    font-size: 13px;
    padding: 20px;
  }

}



/* =========================
   MANLY CAB SERVICES
========================= */

.mc-services {
  padding: 80px 0;
  background: #0b0f14;
  color: #fff;
}

/* INTRO */
.mc-services-intro {
  max-width: 700px;
  margin: 0 auto 50px;
}

.mc-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #b30000;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.mc-services-intro h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.mc-services-intro p {
  opacity: 0.7;
}

/* WRAPPER */
.mc-services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ROW */
.mc-service-row {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #121821;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* reverse layout */
.mc-service-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.mc-service-img {
  flex: 1;
  min-height: 260px;
}

.mc-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.mc-service-content {
  flex: 1;
  padding: 30px;
}

.mc-tag {
  display: inline-block;
  background: rgba(179,0,0,0.15);
  color: #ff3b3b;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

/* TITLE */
.mc-service-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.mc-service-content p {
  opacity: 0.75;
  line-height: 1.6;
}

/* LINK */
.mc-link {
  display: inline-block;
  margin-top: 15px;
  color: #ff3b3b;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .mc-service-row,
  .mc-service-row.reverse {
    flex-direction: column;
  }

  .mc-service-content {
    padding: 20px;
  }

  .mc-services-intro h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {

  .mc-services {
    padding: 50px 0;
  }

  .mc-service-content h3 {
    font-size: 20px;
  }
}


/* =========================
   FEATURE STRIP (LIGHT)
========================= */

.mc-features {
  background: #f7f8fa;
  padding: 25px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* WRAPPER */
.mc-feature-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* BOX */
.mc-feature-box {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 15px 18px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.mc-feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ICON */
.mc-icon {
  width: 45px;
  height: 45px;
  background: #b30000;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* TEXT */
.mc-feature-box h5 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.mc-feature-box p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .mc-feature-wrapper {
    justify-content: center;
  }

  .mc-feature-box {
    flex: 1 1 45%;
  }
}

@media (max-width: 576px) {

  .mc-feature-box {
    flex: 1 1 100%;
  }
}


/* =========================
   PREMIUM FLEET LIGHT STYLE
========================= */

.mc-fleet-light {
  padding: 90px 0;
  background: #f6f8fb;
}

/* HEADER */
.mc-fleet-head {
  max-width: 650px;
  margin: 0 auto 50px;
}

.mc-pill {
  display: inline-block;
  background: #b30000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 10px;
}

.mc-fleet-head h2 {
  font-size: 38px;
  font-weight: 800;
  color: #111;
}

.mc-fleet-head p {
  color: #666;
}

/* GRID */
.mc-fleet-grid-light {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.mc-fleet-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.35s ease;
  border: 1px solid #eee;
}

.mc-fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.mc-img {
  position: relative;
}

.mc-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* BADGE */
.mc-badge-car {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #b30000;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
}

.mc-badge-car.green { background: #16a34a; }
.mc-badge-car.red { background: #dc2626; }
.mc-badge-car.dark { background: #111; }

/* BODY */
.mc-body {
  padding: 18px;
}

.mc-body h4 {
  margin-bottom: 5px;
  color: #111;
}

.mc-body p {
  font-size: 14px;
  color: #666;
}

/* FEATURES */
.mc-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
  font-size: 13px;
  color: #444;
}

/* BUTTON */
.mc-btn {
  display: inline-block;
  background: #b30000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.mc-btn:hover {
  background: #8c0000;
}

/* =========================
   RESPONSIVE (VERY IMPORTANT)
========================= */

@media (max-width: 1200px) {
  .mc-fleet-grid-light {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .mc-fleet-grid-light {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-fleet-head h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .mc-fleet-grid-light {
    grid-template-columns: 1fr;
  }

  .mc-fleet-light {
    padding: 60px 0;
  }

  .mc-img img {
    height: 190px;
  }
}


/* ============================================================
   DESIGN SYSTEM — MANLY CAB CABBIES (UPDATED)
============================================================ */
:root {

  /* BRAND COLORS */
  --navy:   #0A0F14;   /* main background (deep premium black-blue) */
  --navy2:  #111922;   /* sections / cards background */
  --navy3:  #1A2532;   /* elevated surfaces / hover layers */
    --cyan: #F8B41C;
  --gold:          #b30000;   /* PRIMARY TAXI RED */
  --gold-dark:     #8c0000;
  --gold-light:    #ff3b3b;

  --accent:        #ffcc00;

  /* TEXT */
  --white:         #ffffff;
  --text:          #eaeaea;
  --muted:        #9aa4b2;

  /* SURFACES */
  --card:          rgba(255,255,255,0.04);
  --card-border:   rgba(255,255,255,0.08);

  /* TYPOGRAPHY */
  --font-heading:  'Poppins', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Typography */
  --font-heading:  'Raleway', sans-serif;
  --font-body:     'Source Sans 3', sans-serif;

  /* Spacing */
  --section-py:    90px;
  --container:     1200px;
  --radius:        12px;
  --radius-sm:     6px;
  --radius-lg:     20px;
  --radius-pill:   100px;

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(26,26,26,0.08);
  --shadow-md:     0 8px 32px rgba(26,26,26,0.14);
  --shadow-lg:     0 20px 60px rgba(26,26,26,0.22);
  --shadow-glow:   0 0 40px rgba(248,180,28,0.3);

  /* Transitions */
  --trans:         all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* RADIUS */
  --radius-sm:     10px;
  --radius:        14px;
  --radius-lg:     20px;
  --radius-pill:   999px;

  /* SHADOWS */
  --shadow:        0 10px 30px rgba(0,0,0,0.35);
  --shadow-hover:  0 20px 60px rgba(0,0,0,0.45);

  /* TRANSITION */
  --trans:         all 0.3s ease;
}




/* ============================================================
   FLEET SECTION — MANLY CABBIES VERSION
============================================================ */

.fleet-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

/* soft glow accent */
.fleet-section::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(179,0,0,0.10) 0%, transparent 65%);
}

/* HEADER */
.fleet-header {
  text-align: center;
  margin-bottom: 56px;
}

.fleet-header h2 {
  color: var(--white);
  font-size: 36px;
  font-weight: 700;
}

.fleet-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================
   CAROUSEL WRAP
========================= */

.fleet-carousel-wrap {
  position: relative;
}

/* BUTTONS */
.fleet-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;

  background: var(--gold);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  font-size: 18px;

  box-shadow: var(--shadow);
  transition: var(--trans);
}

.fleet-carousel-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-50%) scale(1.08);
}

.fleet-carousel-btn.prev { left: -18px; }
.fleet-carousel-btn.next { right: -18px; }

/* =========================
   GRID (SCROLL CAROUSEL)
========================= */

.fleet-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 10px;
}

.fleet-grid::-webkit-scrollbar {
  display: none;
}

/* =========================
   CARD (GLASS PREMIUM)
========================= */

.fleet-card {
  flex: 0 0 340px;
  min-width: 300px;

  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);

  backdrop-filter: blur(12px);

  overflow: hidden;
  transition: var(--trans);

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.fleet-card:hover {
  transform: translateY(-10px);
  border-color: rgba(179,0,0,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

/* =========================
   IMAGE
========================= */

.fleet-card-img {
  height: 200px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.35s ease;
}

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.05);
}

/* BADGE */
.fleet-card-img .fleet-badge {
  position: absolute;
  top: 14px;
  right: 14px;

  background: var(--gold);
  color: #fff;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;

  padding: 5px 10px;
  border-radius: var(--radius-pill);

  text-transform: uppercase;
}

/* =========================
   BODY
========================= */

.fleet-card-body {
  padding: 22px;
}

.fleet-card-body h3 {
  color: var(--white);
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.fleet-capacity {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

/* FEATURES */
.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.fleet-features li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 8px;
}

.fleet-features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}

/* =========================
   FOOTER
========================= */

.fleet-card-footer {
  padding: 18px 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* =========================
   RESPONSIVE FIX
========================= */

@media (max-width: 992px) {
  .fleet-card {
    flex: 0 0 300px;
  }

  .fleet-header h2 {
    font-size: 28px;
  }

  .fleet-carousel-btn.prev { left: 0; }
  .fleet-carousel-btn.next { right: 0; }
}

@media (max-width: 576px) {
  .fleet-card {
    flex: 0 0 85%;
  }

  .fleet-section {
    padding: 60px 0;
  }

  .fleet-header h2 {
    font-size: 24px;
  }
}



/* ============================================================
   SECTION LABELS — MANLY CABBIES
============================================================ */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--gold); /* PRIMARY BRAND RED */
  margin-bottom: 16px;
}

/* left line indicator */
.section-label::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: block;
}

/* =========================
   DARK VERSION (for light sections)
========================= */

.section-label-dark {
  color: var(--text);
}

.section-label-dark::before {
  background: var(--gold);
}

/* =========================
   LIGHT BACKGROUND VERSION
========================= */

.section-label-light {
  color: var(--gold);
}

.section-label-light::before {
  background: var(--gold);
}



/* ============================================================
   WHY CHOOSE US — MC VERSION (NO DESIGN CHANGE)
============================================================ */

.mc-why-section { background: var(--light-bg); }

.mc-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mc-why-left h2 { margin-bottom: 20px; }

.mc-why-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.mc-why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mc-why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.mc-feat-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border: 2px solid var(--silver-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--trans);
}

.mc-why-feature:hover .mc-feat-icon {
  border-color: var(--cyan);
  background: var(--navy);
}

.mc-feat-body h4 { margin-bottom: 4px; font-size: 1rem; }

.mc-feat-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.mc-why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mc-stat-card {
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  border: 2px solid transparent;
}

.mc-stat-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mc-stat-card:nth-child(2) { margin-top: 24px; }
.mc-stat-card:nth-child(4) { margin-top: 24px; }

.mc-stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.mc-stat-num .mc-stat-accent { color: var(--cyan); }

.mc-stat-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}





/* ============================================================
   DESIGN SYSTEM — MANLY CAB CABBIES (UPDATED)
============================================================ */
:root {

  /* BRAND COLORS */
  --navy:          #0B0F14;
  --navy2:         #121821;
  --navy3:         #1A2430;

  --gold:          #b30000;   /* PRIMARY TAXI RED */
  --gold-dark:     #8c0000;
  --gold-light:    #ff3b3b;

  --accent:        #ffcc00;

  /* TEXT */
  --white:         #ffffff;
  --red:            #b30000;
  --text:          #eaeaea;
  --muted:        #9aa4b2;

  /* SURFACES */
  --card:          rgba(255,255,255,0.04);
  --card-border:   rgba(255,255,255,0.08);

  /* TYPOGRAPHY */
  --font-heading:  'Poppins', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* SPACING */
  --section-py:    90px;

  /* RADIUS */
  --radius-sm:     10px;
  --radius:        14px;
  --radius-lg:     20px;
  --radius-pill:   999px;

  /* SHADOWS */
  --shadow:        0 10px 30px rgba(0,0,0,0.35);
  --shadow-hover:  0 20px 60px rgba(0,0,0,0.45);

  /* TRANSITION */
  --trans:         all 0.3s ease;
}

/* ============================================================
   HOW IT WORKS — MC VERSION (NO DESIGN CHANGE)
============================================================ */

.mc-how-section { background: var(--white); }


/* ============================================================
   HOW IT WORKS HEADER — SMART PREMIUM DESIGN
============================================================ */

.mc-how-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

/* SMALL LABEL EFFECT (optional enhancement look) */
.mc-how-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffb300;
  font-weight: 700;
  position: relative;
}

/* subtle line beside label */
.mc-how-header .section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #ffb300;
  display: inline-block;
}

/* MAIN TITLE */
.mc-how-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0A0F14;
  margin-top: 14px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* DESCRIPTION TEXT */
.mc-how-header p {
  color: #666;
  max-width: 620px;
  margin: 14px auto 0;
  font-size: 1rem;
  line-height: 1.7;

  /* subtle premium spacing feel */
  opacity: 0.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .mc-how-header h2 {
    font-size: 32px;
  }

  .mc-how-header p {
    max-width: 520px;
  }
}

@media (max-width: 576px) {
  .mc-how-header h2 {
    font-size: 26px;
  }

  .mc-how-header p {
    font-size: 0.95rem;
  }
}




/* ============================================================
   HOW IT WORKS CTA BUTTON — PREMIUM STYLE
============================================================ */

.mc-how-cta {
  text-align: center;
  margin-top: 56px;
}

/* MAIN BUTTON */
.mc-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 26px;

  background: linear-gradient(135deg, #ffb300, #ff3b3b);
  color: #0A0F14;

  font-weight: 800;
  font-size: 1rem;

  border-radius: 999px;

  text-decoration: none;

  box-shadow: 0 10px 25px rgba(255, 179, 0, 0.25);

  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.mc-btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 59, 59, 0.35);
}

/* ICON BOX */
.mc-btn-icon {
  width: 34px;
  height: 34px;

  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.mc-btn-text {
  letter-spacing: 0.2px;
}

/* MOBILE */
@media (max-width: 576px) {
  .mc-btn-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 14px 18px;
  }
}
.mc-steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.mc-steps-track::before {
content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, #000 100%);
  z-index: 0;
}


.mc-step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}





.mc-step-num {
 
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
    border: 3px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--cyan);
    margin: 0 auto 20px;
    transition: var(--trans);
}

.mc-step-item:hover .mc-step-num {
  background: var(--cyan);
  color: var(--navy);
  transform: scale(1.1);
}

.mc-step-item h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.mc-step-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}



/* ============================================================
   MC WHY SECTION H2 STYLE
============================================================ */

.mc-why-section .mc-why-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .mc-why-section .mc-why-left h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .mc-why-section .mc-why-left h2 {
    font-size: 26px;
  }
}


/* ============================================================
   MC WHY FEATURE — PARAGRAPH STYLE
============================================================ */

.mc-why-feature p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  margin-top: 4px;
}

/* =========================
   HOVER IMPROVEMENT (OPTIONAL BUT NICE)
========================= */

.mc-why-feature:hover p {
  color: var(--text-body);
}



/* ============================================================
   RESPONSIVE (MC VERSION - CLASS CONVERTED ONLY)
============================================================ */

/* Desktop */
@media (min-width: 769px) {

  .mc-hamburger { display: none !important; }

  .mc-site-logo {
    order: unset;
    flex: unset;
    justify-content: unset;
  }

  .mc-header-cta { order: unset; }

  .mc-header-phone { display: flex !important; }

  .mc-main-nav { display: flex !important; }
}


@media (max-width: 1024px) {

  .mc-hero-content { grid-template-columns: 1fr; gap: 40px; }

  .mc-hero-booking-card { max-width: 540px; }

  .mc-why-grid { grid-template-columns: 1fr; gap: 48px; }

  .mc-fleet-card { flex: 0 0 calc(50% - 12px); }

  .mc-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .mc-content-sidebar-grid { grid-template-columns: 1fr; }

  .mc-sidebar-card { position: static; }

  .mc-service-row { grid-template-columns: 1fr; }

  .mc-service-row.reverse .mc-service-row-img { order: 0; }

  .mc-about-intro-grid { grid-template-columns: 1fr; gap: 40px; }

  .mc-about-values-grid { grid-template-columns: repeat(2, 1fr); }

  .mc-service-row.reverse .mc-service-row-content { order: 0; }

  .mc-service-row-content { padding: 24px 20px; }

  .mc-service-row-img { min-height: 220px; }

  .mc-areas-grid { grid-template-columns: repeat(4, 1fr); }
}


@media (max-width: 768px) {

  :root { --section-py: 60px; }

  .mc-main-nav,
  .mc-header-phone { display: none; }

  .mc-hamburger { display: flex; }

  .mc-mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0;
  }

  .mc-site-header .container { padding: 0 10px; }

  .mc-header-inner {
    padding: 10px 0;
    gap: 0;
    position: static;
  }

  .mc-site-logo-img { height: 50px; max-width: 180px; }

  .mc-site-logo {
    order: 1;
    flex: 1;
    justify-content: flex-start;
    position: static;
    transform: none;
  }

  .mc-header-cta {
    order: 2;
    flex-shrink: 0;
  }

  .mc-hamburger {
    display: flex;
    order: 3;
    flex-shrink: 0;
    min-width: 44px;
    justify-content: flex-end;
  }

  .mc-header-phone { display: none; }

  .mc-header-quote-btn { display: none !important; }

  .mc-header-cta .btn-primary {
    padding: 6px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .mc-hero-title { font-size: 2.2rem; }

  .mc-hero-stats { gap: 20px; }

  .mc-grid-2,
  .mc-grid-3,
  .mc-grid-4 { grid-template-columns: 1fr; }

  .mc-fleet-card { flex: 0 0 80vw; min-width: 260px; }

  .mc-fleet-carousel-btn.prev { left: -12px; }

  .mc-fleet-carousel-btn.next { right: -12px; }

  .mc-steps-track { grid-template-columns: 1fr 1fr; }

  .mc-steps-track::before { display: none; }

  .mc-testimonials-grid .mc-testimonial-card {
    flex: 0 0 85vw;
    min-width: 260px;
  }

  .mc-cta-inner { grid-template-columns: 1fr; gap: 24px; }

  .mc-cta-text h2 { font-size: 1.6rem; }

  .mc-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .mc-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .mc-cta-banner { padding: 48px 0; }

  .mc-contact-grid { grid-template-columns: 1fr; }

  .mc-footer-grid { grid-template-columns: 1fr; }

  .mc-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mc-areas-grid { grid-template-columns: repeat(3, 1fr); }

  .mc-features-grid { grid-template-columns: 1fr 1fr; }

  .mc-about-values-grid { grid-template-columns: 1fr 1fr; }

  .mc-about-stats-col { grid-template-columns: 1fr 1fr; }

  .mc-suburb-airport-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .mc-vehicle-showcase { flex-direction: column; }

  .mc-vehicle-specs { width: 100%; }

  .mc-vehicle-img-wrap { width: 100%; }

  .mc-suburb-why-grid { grid-template-columns: 1fr; }

  .mc-suburb-landmarks { grid-template-columns: 1fr; }

  .mc-suburb-stats-bar {
    justify-content: flex-start;
    gap: 20px;
    padding: 16px 0;
  }

  .mc-suburb-cta-box { padding: 28px 20px; }

  .mc-trust-strip { padding: 20px 0; }

  .mc-trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .mc-trust-item { gap: 10px; }

  .mc-trust-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    flex-shrink: 0;
  }

  .mc-trust-text .mc-trust-val { font-size: 0.85rem; }

  .mc-trust-text .mc-trust-desc { font-size: 0.72rem; }
}




/* ============================================================
   BUTTONS — MANLY CABBIES THEME VERSION
============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 14px 32px;

  border-radius: var(--radius-sm);

  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;

  letter-spacing: 0.5px;
  text-transform: uppercase;

  transition: var(--trans);
  cursor: pointer;

  border: 2px solid transparent;
  white-space: nowrap;
}

/* =========================
   PRIMARY BUTTON (GOLD BRAND)
========================= */

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(179, 0, 0, 0.35);
  color: var(--white);
}

/* =========================
   OUTLINE BUTTON (DARK MODE)
========================= */

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  color: var(--white);
}

/* =========================
   SECONDARY LIGHT BUTTON
========================= */

.btn-silver {
  background: linear-gradient(135deg, #ffffff, #f3f4f6);
  color: var(--navy);
  border-color: #e5e7eb;
}

.btn-silver:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--navy);
}

/* =========================
   SIZES
========================= */

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
}
.section-label-dark {
  color: var(--navy);
}
.section-label-dark::before {
  background: var(--navy);
}




/* ============================================================
   TESTIMONIALS — MANLY CABBIES (RED THEME VERSION)
============================================================ */

.mc-reviews-section {
  background: #f6f7f9;
  padding: 90px 0;
}

/* HEADER */
.mc-reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.mc-reviews-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0A0F14;
  margin-top: 10px;
}

.mc-reviews-header p {
  color: #666;
  margin-top: 10px;
}

/* WRAP */
.mc-reviews-wrap {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* TRACK */
.mc-reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}

.mc-reviews-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.mc-review-card {
  flex: 0 0 auto;
  width: 320px;

  background: #fff;
  border-radius: 16px;
  padding: 24px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 1px solid #eee;

  transition: 0.3s;
}

.mc-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* TOP */
.mc-review-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mc-stars {
  color: #B3001B; /* 🔴 RED THEME STAR COLOR */
}

.mc-verified {
  font-size: 0.75rem;
  background: #0A0F14;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

/* TEXT */
.mc-review-text {
  margin: 14px 0 18px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* USER */
.mc-review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* AVATAR */
.mc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
}

/* NAME */
.mc-user-name {
  font-weight: 700;
  color: #0A0F14;
}

/* TIME */
.mc-user-time {
  font-size: 0.75rem;
  color: #777;
}

/* =========================
   ARROWS (RED THEME)
========================= */

.mc-reviews-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: none;

  background: #0A0F14;
  color: #fff;

  z-index: 999;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.mc-reviews-btn:hover {
  background: #B3001B; /* 🔴 RED HOVER */
  color: #fff;
}

.mc-reviews-btn.prev { left: 10px; }
.mc-reviews-btn.next { right: 10px; }

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 768px) {

  .mc-reviews-section {
    padding: 60px 0;
  }

  .mc-reviews-header h2 {
    font-size: 26px;
  }

  .mc-review-card {
    width: 85%;
  }

  .mc-reviews-btn {
    display: none;
  }
}

@media (max-width: 480px) {

  .mc-review-card {
    width: 92%;
    padding: 18px;
  }
}


/* ============================================================
   CTA SECTION — MANLY CABBIES RED THEME
============================================================ */

.mc-cta-section {
      background: linear-gradient(135deg, #9f0018, #840013);
  padding: 70px 0;
  color: #fff;
}

/* WRAPPER */
.mc-cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* LEFT TEXT */
.mc-cta-left h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.mc-cta-left p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.6;
}

/* RIGHT BUTTONS */
.mc-cta-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   PRIMARY BUTTON (RED BRAND)
========================= */

.mc-btn-primary {
 background: linear-gradient(135deg, #000000, #000000);
  color: #ffffff;

  padding: 14px 22px;
  border-radius: 10px;

  font-weight: 800;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: 1px solid rgba(179,0,27,0.4);

  transition: 0.3s;
}

.mc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(179,0,27,0.35);
}

/* =========================
   OUTLINE BUTTON
========================= */

.mc-btn-outline {
  border: 2px solid rgba(255,255,255,0.35);
  color: #000000;

  padding: 14px 22px;
  border-radius: 10px;

  font-weight: 700;
  text-decoration: none;

  transition: 0.3s;
}

.mc-btn-outline:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(179,0,27,0.08);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .mc-cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .mc-cta-right {
    justify-content: center;
  }

  .mc-cta-left h2 {
    font-size: 24px;
  }
}


/* ============================================================
   FOOTER — MANLY CABBIES RED THEME
============================================================ */

.mc-footer {
  background: #0B0F14;
  color: #ffffff;
  padding: 80px 0 30px;
}

/* GRID */
.mc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* LOGO */
.mc-footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

/* TEXT */
.mc-footer-col p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* HEADINGS */
.mc-footer-col h4 {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
}

.mc-footer-col h4::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #B3001B; /* RED ACCENT */
  position: absolute;
  bottom: -8px;
  left: 0;
}

/* LISTS */
.mc-footer-col ul {
  list-style: none;
  padding: 0;
}

.mc-footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: 0.3s;
}

.mc-footer-col ul li:hover {
  color: #B3001B;
  transform: translateX(4px);
}

/* CONTACT BOX */
.mc-footer-contact {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* BOTTOM BAR */
.mc-footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.mc-footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* LINKS */
.mc-footer-links {
  display: flex;
  gap: 15px;
}

.mc-footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.3s;
}

.mc-footer-links a:hover {
  color: #B3001B;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .mc-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .mc-footer-grid {
    grid-template-columns: 1fr;
  }

  .mc-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mc-footer-links {
    justify-content: center;
  }
}


/* ============================================================
   BASE SECTION LAYOUT
============================================================ */

.section-pad {
  padding: 90px 0;
}

.bg-dark2 {
  background: #0B0F14;
}

/* container (safe width control) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   SECTION HEADER
============================================================ */

.section-header {
  margin-bottom: 50px;
}

.section-header.center {
  text-align: center;
}

.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

/* ============================================================
   LABEL (RED THEME)
============================================================ */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff2d2d;   /* 🔴 RED THEME */
}

.section-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: #ff2d2d;
}

/* ============================================================
   TITLE
============================================================ */

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #000000 !important;
  margin-top: 10px;
}

.section-title-dark {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff !important;
  margin-top: 10px;
}



.text-white {
  color: #ffffff;
}

/* ============================================================
   GRID
============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================
   CARD ITEM
============================================================ */

.why-item {
  background: #11161d;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 26px;
  transition: 0.3s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  border-color: #ff2d2d;
  box-shadow: 0 12px 30px rgba(255,45,45,0.15);
}

/* ============================================================
   ICON
============================================================ */

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(255,45,45,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #ff2d2d;
}

/* ============================================================
   TEXT
============================================================ */

.why-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.why-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
}


/* ============================================================
   PAYMENT SECTION (LIGHT BACKGROUND)
============================================================ */

.payment-section {
  background: #f6f7f9;
}

/* header override for light bg */
.payment-section .section-title {
  color: #0B0F14;
}

.payment-subtext {
  color: #666;
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 15px;
}

/* GRID */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

/* CARD */
.payment-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-6px);
  border-color: #ff2d2d;
  box-shadow: 0 12px 30px rgba(255,45,45,0.12);
}

/* ICON */
.payment-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgb(179 0 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* TEXT */
.payment-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0B0F14;
  margin-bottom: 8px;
}

.payment-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
}

/* Form Area */
.tab_content {
    padding: 30px;
}

.book-inner {
    width: 100%;
    float: none !important;
}

.form-horizontal {
    width: 100%;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px 16px;
}

.form-group > [class*="col-"] {
    padding: 0 8px 14px !important;
}

/* Inputs */
.form-control {
    width: 100% !important;
    height: 48px;
    border: 1px solid #d9e2ef !important;
    border-radius: 12px !important;
    background: #f8fbff !important;
    color: #263238 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 10px 14px !important;
    box-shadow: none !important;
    transition: all 0.25s ease;
}

textarea.form-control {
    height: auto;
    min-height: 95px;
    resize: vertical;
}

.form-control:focus {
    background: #ffffff !important;
    border-color: #9d0018 !important;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.12) !important;
    outline: none;
}

.form-control::placeholder {
    color: #7b8794;
}

/* Time Select */
.time-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-select {
    width: 100%;
}

/* Return Trip */
.form-group.text-left {
    background: #f2f6fb;
    border: 1px solid #dde7f3;
    border-radius: 14px;
    padding: 13px 16px !important;
    margin: 0 0 18px 0 !important;
    font-size: 15px;
    font-weight: 700;
    color: #9d0018 !important;
}

input[type="radio"] {
    accent-color: #9d0018;
    transform: scale(1.1);
}

/* Submit Button */
input[type="submit"].btn,
.form-button {
    min-width: 190px;
    height: 50px;
    padding: 12px 32px !important;
    border: none !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #b30000, #b30000) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 14px 28px rgba(0, 86, 179, 0.28);
    transition: all 0.25s ease;
    margin: 0 auto !important;
}

input[type="submit"].btn:hover,
.form-button:hover {
       transform: translateY(-2px);
    background: linear-gradient(135deg, #b30000, #b30000) !important;
    box-shadow: 0 18px 35px rgb(179 0 0 / 15%)
}

/* Airport tab label */
.group {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 800;
}

/* Footer Disclaimer */
.footer-disclaimer {
    margin-top: 28px !important;
    background: rgb(0 90 177);
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
    .sld_area {
        min-height: auto;
        padding: 52px 0 28px;
    }

    .sld_ovrly > h1 {
        font-size: 34px;
        padding: 0 15px;
    }

    .sld_data h2 {
        font-size: 26px;
    }

    .sld_data p {
        font-size: 16px;
    }

    .book-bg {
        max-width: 92%;
    }

    .tab_content {
        padding: 24px;
    }

    .tabs li a {
        font-size: 15px;
        min-height: 58px;
        padding: 14px 12px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
    .sld_area {
        padding: 38px 0 22px;
        background-position: center top;
    }

    .sld_ovrly > h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .sld_ovrly > h1 i {
        font-size: 21px !important;
    }

    .sld_data {
        margin-bottom: 20px;
        padding: 0 12px;
    }

    .sld_data h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .sld_data p {
        font-size: 15px;
    }

    .book-bg {
        max-width: calc(100% - 24px);
    }

    .book-data {
        border-radius: 18px;
    }

    .tabs {
        grid-template-columns: 1fr;
    }

    .tabs li a {
        min-height: auto;
        padding: 15px 12px;
        font-size: 14px;
        border-bottom: 1px solid #dde7f3;
    }

    .tab_content {
        padding: 18px 14px 20px;
    }

    .form-group {
        display: block;
        margin: 0;
    }

    .form-group > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0 12px 0 !important;
    }

    .form-control {
        height: 46px;
        font-size: 14px !important;
        border-radius: 10px !important;
    }

    textarea.form-control {
        min-height: 90px;
    }

    .time-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .form-group.text-left {
        font-size: 14px;
        line-height: 1.7;
        padding: 12px !important;
        margin-bottom: 14px !important;
    }

    input[type="submit"].btn,
    .form-button {
        width: 100%;
        min-width: 100%;
        height: 48px;
        font-size: 15px !important;
    }

    .footer-disclaimer {
        margin: 22px 12px 0 !important;
        font-size: 11px !important;
        line-height: 1.6 !important;
        padding: 12px !important;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 420px) {
    .sld_ovrly > h1 {
        font-size: 23px;
    }

    .sld_data h2 {
        font-size: 20px;
    }

    .tabs li a {
        font-size: 13px;
    }

    .time-wrapper {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   MANLY CABBIES FORM CARD (RED THEME PREMIUM)
============================================================ */

.form-card {
    width: 100%;
    max-width: 100% !important;

    /* Premium dark glass with red tint */
    background: linear-gradient(
        135deg,
        rgba(10, 15, 20, 0.96),
        rgba(20, 0, 5, 0.92)
    );

    border-radius: 18px;

    /* red glow border */
    border: 1px solid rgba(179, 0, 27, 0.35);

    backdrop-filter: blur(14px);

    color: #fff;

    /* padding: 22px; */

    /* soft luxury depth */
    box-shadow:
        0 20px 60px rgba(0,0,0,0.45),
        0 0 40px rgba(179, 0, 27, 0.10);

    position: relative;
    overflow: hidden;
}

/* subtle red glow overlay */
.form-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at top left,
        rgba(179, 0, 27, 0.18),
        transparent 60%
    );

    pointer-events: none;
}

/* ensure content stays above glow */
.form-card > * {
    position: relative;
    z-index: 2;
}


/* ============================================================
   ABOUT SECTION — MANLY CABBIES
============================================================ */

.mc-about {
    background: #f6f7f9;
    padding: 90px 0;
}

/* HEADER */
.mc-about-header {
    margin-bottom: 60px;
}

.mc-about-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0B0F14;
    margin-top: 10px;
}

.mc-about-header p {
    color: #666;
    max-width: 700px;
    margin: 10px auto 0;
}

/* GRID */
.mc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGES */
.mc-about-images .img-main img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.img-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.img-small-grid img {
    width: 100%;
    border-radius: 14px;
    height: 140px;
    object-fit: cover;
}

/* CONTENT */
.mc-about-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #0B0F14;
    margin-bottom: 12px;
}

.mc-about-content p {
    color: #555;
    line-height: 1.7;
}

/* FEATURES */
.mc-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 25px;
}

.mc-about-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;

    border: 1px solid #eee;
    transition: 0.3s;
}

.mc-about-card:hover {
    transform: translateY(-3px);
    border-color: #B3001B;
    box-shadow: 0 10px 25px rgba(179,0,27,0.12);
}

.mc-about-card .icon {
    font-size: 20px;
    width: 42px;
    height: 42px;
    background: rgba(179,0,27,0.08);
    color: #B3001B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.mc-about-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0B0F14;
}

.mc-about-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* CTA BUTTON */
.mc-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #B3001B, #7A0012);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(179,0,27,0.25);
    transition: 0.3s;
}

.mc-btn:hover {
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .mc-about-grid {
        grid-template-columns: 1fr;
    }

    .mc-about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .mc-about-header h2 {
        font-size: 26px;
    }

    .img-small-grid img {
        height: 110px;
    }
}


/* ============================================================
   TRUST SECTION — MANLY CABBIES
============================================================ */

.mc-trust-section {
  background: #0B0F14;
  color: #fff;
}

.mc-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mc-trust-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin: 12px 0;
}

.mc-trust-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.mc-trust-list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.mc-trust-list li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.85);
}

.mc-trust-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mc-trust-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mc-trust-content {
    order: 2;
  }

  .mc-trust-image {
    order: 1;
  }
}



/* ============================================================
   SERVICE AREAS — MANLY CABBIES
============================================================ */

.mc-area-section {
  background: #f6f7f9;
}

.mc-area-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0B0F14;
  margin-top: 10px;
}

.mc-area-header p {
  color: #666;
  max-width: 700px;
  margin: 10px auto 0;
}

/* GRID */
.mc-area-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* CARD */
.mc-area-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  text-align: center;

  font-weight: 600;
  color: #0B0F14;

  border: 1px solid #eee;
  transition: 0.3s;
}

.mc-area-card:hover {
  border-color: #B3001B;
  color: #B3001B;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(179,0,27,0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mc-area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mc-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .mc-area-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   CONTACT PAGE — MANLY CABBIES
============================================================ */

.mc-contact {
  background: #f6f7f9;
}

/* HEADER */
.mc-contact-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0B0F14;
  margin-top: 10px;
}

.mc-contact-header p {
  color: #666;
  max-width: 700px;
  margin: 10px auto 0;
}

/* GRID */
.mc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

/* CONTACT INFO */
.mc-contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;

  display: flex;
  gap: 14px;
  align-items: center;

  border: 1px solid #eee;
  transition: 0.3s;
}

.mc-contact-card:hover {
  border-color: #B3001B;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(179,0,27,0.12);
}

.mc-contact-card .icon {
  width: 44px;
  height: 44px;
  background: rgba(179,0,27,0.10);
  color: #B3001B;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 18px;
}

/* TEXT */
.mc-contact-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mc-contact-card p {
  font-size: 14px;
  margin: 0;
  color: #666;
}

.mc-contact-card a {
  color: #B3001B;
  text-decoration: none;
  font-weight: 600;
}

/* FORM */
.mc-contact-form form {
  background: #0B0F14;
  padding: 25px;
  border-radius: 16px;

  border: 1px solid rgba(255,255,255,0.08);
}

.mc-contact-form input,
.mc-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);

  background: #121821;
  color: #fff;

  outline: none;
}

.mc-contact-form textarea {
  min-height: 110px;
  resize: none;
}

/* BUTTON */
.mc-contact-form button {
  width: 100%;
  padding: 14px;

  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;

  border: none;
  border-radius: 10px;

  font-weight: 700;

  cursor: pointer;
  transition: 0.3s;
}

.mc-contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(179,0,27,0.25);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mc-contact-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   GOOGLE MAP SECTION — MANLY CABBIES
============================================================ */

.mc-map-section {
  background: #f6f7f9;
}

/* HEADER */
.mc-map-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0B0F14;
  margin-top: 10px;
}

.mc-map-header p {
  color: #666;
  max-width: 700px;
  margin: 10px auto 0;
}

/* MAP WRAPPER */
.mc-map-wrapper {
  margin-top: 40px;
  border-radius: 18px;
  overflow: hidden;

  border: 2px solid rgba(179, 0, 27, 0.25);

  box-shadow: 0 20px 60px rgba(0,0,0,0.12);

  position: relative;
}

/* RED GLOW FRAME */
.mc-map-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 18px;

  box-shadow: inset 0 0 0 2px rgba(179, 0, 27, 0.25);

  pointer-events: none;
}

/* IFRAME */
.mc-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
}

/* MOBILE */
@media (max-width: 768px) {
  .mc-map-wrapper iframe {
    height: 320px;
  }
}




.mc-services-hero {
  padding: 90px 0;
  background: #0B0F14;
  color: #fff;
}

.mc-services-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mc-services-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0;
}

.mc-services-hero p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.mc-services-hero-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

@media (max-width: 992px) {
  .mc-services-hero-grid {
    grid-template-columns: 1fr;
  }
}




.mc-services-grid-section {
  background: #f6f7f9;
  padding: 90px 0;
}

.mc-services-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mc-service-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;

  border: 1px solid #eee;
  transition: 0.3s;
}

.mc-service-card:hover {
  transform: translateY(-4px);
  border-color: #B3001B;
  box-shadow: 0 12px 30px rgba(179,0,27,0.12);
}

.mc-service-card .icon {
  width: 50px;
  height: 50px;
  background: rgba(179,0,27,0.10);
  color: #B3001B;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 12px;
}

.mc-service-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.mc-service-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (max-width: 992px) {
  .mc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .mc-services-grid {
    grid-template-columns: 1fr;
  }
}




.mc-services-why {
  background: #0B0F14;
  color: #fff;
  padding: 80px 0;
}

.mc-why-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mc-why-item {
  background: rgba(255,255,255,0.05);
  padding: 14px;
  border-radius: 10px;

  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.mc-why-item:hover {
  border-color: #B3001B;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .mc-why-grid {
    grid-template-columns: 1fr;
  }
}

.mc-airport-hero {
  background: #0B0F14;
  color: #fff;
  padding: 90px 0;
}

.mc-airport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mc-airport-text h1 {
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0;
}

.mc-airport-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.mc-airport-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.mc-hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.mc-btn-primary {
  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.mc-btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
}

@media (max-width: 992px) {
  .mc-airport-grid {
    grid-template-columns: 1fr;
  }
}



.mc-airport-features {
  background: #f6f7f9;
  padding: 90px 0;
}

.mc-airport-feature-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mc-feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.mc-feature-card:hover {
  border-color: #B3001B;
  transform: translateY(-4px);
}

.mc-feature-card .icon {
  font-size: 22px;
  margin-bottom: 10px;
  color: #B3001B;
}

.mc-feature-card h3 {
  font-size: 15px;
  font-weight: 700;
}

.mc-feature-card p {
  font-size: 14px;
  color: #666;
}

@media (max-width: 992px) {
  .mc-airport-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .mc-airport-feature-grid {
    grid-template-columns: 1fr;
  }
}



.mc-airport-routes {
  background: #0B0F14;
  color: #fff;
  padding: 80px 0;
}

.mc-route-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mc-route {
  background: rgba(255,255,255,0.05);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.mc-route:hover {
  border-color: #B3001B;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .mc-route-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   AIRPORT IMAGE + CONTENT SECTION
============================================================ */

.mc-airport-info {
  background: #f6f7f9;
}

/* ROW */
.mc-airport-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* REVERSE */
.mc-airport-row.reverse .mc-airport-text {
  order: 2;
}

.mc-airport-row.reverse .mc-airport-img {
  order: 1;
}

/* TEXT */
.mc-airport-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0B0F14;
  margin: 10px 0;
}

.mc-airport-text p {
  color: #555;
  line-height: 1.7;
}

/* IMAGE */
.mc-airport-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}


.mc-checklist {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.mc-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 12px;
  font-weight: 600;
  color: #0B0F14;
}


.mc-checklist li i {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;

  color: #fff;
  background: linear-gradient(135deg, #B3001B, #7A0012);

  border-radius: 50%;

  box-shadow: 0 6px 15px rgba(179,0,27,0.25);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mc-airport-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mc-airport-row.reverse .mc-airport-text,
  .mc-airport-row.reverse .mc-airport-img {
    order: unset;
  }
}



/* ============================================================
   DARK TRANSFER SECTION — MANLY CABBIES
============================================================ */

.mc-dark-transfer {
  background: #0B0F14;
  color: #fff;
  padding: 90px 0;
}

/* HEADER */
.mc-dark-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-top: 10px;
}

.mc-dark-header p {
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 10px auto 0;
  line-height: 1.7;
}

/* GRID */
.mc-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

/* CONTENT */
.mc-dark-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.mc-dark-content p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* FEATURES */
.mc-dark-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mc-dark-item {
  display: flex;
  align-items: center;
  gap: 12px;

  background: rgba(255,255,255,0.05);
  padding: 12px 14px;
  border-radius: 10px;

  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.mc-dark-item:hover {
  border-color: #B3001B;
  transform: translateX(4px);
}

.mc-dark-item i {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #B3001B, #7A0012);
  border-radius: 50%;

  color: #fff;
  font-size: 14px;
}

/* BUTTON */
.mc-dark-btn {
  display: inline-block;
  margin-top: 25px;

  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;

  padding: 14px 22px;
  border-radius: 999px;

  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(179,0,27,0.25);
  transition: 0.3s;
}

.mc-dark-btn:hover {
  transform: translateY(-3px);
}


/* ============================================================
   IMAGE LAYOUT — BIG + SMALL (MANLY CABBIES)
============================================================ */

.mc-dark-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* BIG IMAGE */
.mc-img-big img {
  width: 100%;
  height: 280px;
  object-fit: cover;

  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* SMALL IMAGES ROW */
.mc-img-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* SMALL IMAGE STYLE */
.mc-img-small img {
  width: 100%;
  height: 140px;
  object-fit: cover;

  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mc-img-big img {
    height: 220px;
  }

  .mc-img-small img {
    height: 120px;
  }
}

@media (max-width: 576px) {
  .mc-img-small {
    grid-template-columns: 1fr;
  }

  .mc-img-small img {
    height: 180px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mc-dark-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   FLEET PAGE — MANLY CABBIES
============================================================ */

/* HERO */
.mc-fleet-hero {
  background: #0B0F14;
  color: #fff;
  padding: 90px 0;
}

.mc-fleet-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mc-fleet-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0;
}

.mc-fleet-hero p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.mc-fleet-hero img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* BUTTONS */
.mc-btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.mc-btn-primary {
  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;
}

.mc-btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.mc-btn-primary:hover {
  transform: translateY(-2px);
}

/* SECTION WRAP */
.mc-fleet-section {
  background: #f6f7f9;
  padding: 90px 0;
}

/* HEADER */
.mc-fleet-header {
  text-align: center;
  margin-bottom: 40px;
}

.mc-fleet-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0B0F14;
}

/* GRID */
.mc-fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.mc-fleet-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
}

.mc-fleet-card:hover {
  transform: translateY(-6px);
  border-color: #B3001B;
}

.mc-fleet-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.mc-fleet-card-body {
  padding: 18px;
}

.mc-fleet-card-body h3 {
  font-size: 18px;
  font-weight: 800;
}

.mc-fleet-card-body p {
  font-size: 14px;
  color: #666;
  margin: 8px 0;
}

/* FEATURES */
.mc-fleet-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.mc-fleet-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  margin-bottom: 8px;
}

.mc-fleet-list i {
  color: #B3001B;
}

/* DETAIL SECTION */
.mc-fleet-detail {
  background: #fff;
  padding: 90px 0;
}

.mc-fleet-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.mc-fleet-detail img {
  width: 100%;
  border-radius: 16px;
}

/* BENEFITS */
.mc-fleet-benefits {
  background: #0B0F14;
  color: #fff;
  padding: 80px 0;
}

.mc-fleet-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mc-benefit {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

.mc-benefit i {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #B3001B, #7A0012);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* CTA */
.mc-fleet-cta {
  background: #f6f7f9;
  padding: 70px 0;
}

.mc-fleet-cta-box {
  background: #0B0F14;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .mc-fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-fleet-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mc-fleet-hero-grid,
  .mc-fleet-detail-grid {
    grid-template-columns: 1fr;
  }

  .mc-fleet-grid,
  .mc-fleet-benefits-grid {
    grid-template-columns: 1fr;
  }

  .mc-fleet-cta-box {
    flex-direction: column;
    text-align: center;
  }
}



/* ============================================================
   BEST FLEET — MANLY & WARRINGAH
============================================================ */

.mc-best-fleet {
  background: #f6f7f9;
  padding: 90px 0;
}

.mc-best-fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mc-best-fleet h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0B0F14;
  margin: 10px 0;
}

.mc-best-fleet p {
  color: #555;
  line-height: 1.7;
}

/* FEATURES */
.mc-best-fleet-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.mc-best-fleet-item {
  display: flex;
  align-items: center;
  gap: 12px;

  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;

  border: 1px solid #eee;
  transition: 0.3s;
}

.mc-best-fleet-item:hover {
  border-color: #B3001B;
  transform: translateX(4px);
}

/* ICON */
.mc-best-fleet-item i {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;

  border-radius: 50%;
  font-size: 14px;
}

/* IMAGE STACK */
.mc-best-fleet-images {
  display: grid;
  gap: 14px;
}

.mc-best-fleet-images img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.mc-best-fleet-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mc-best-fleet-small img {
  height: 140px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mc-best-fleet-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .mc-best-fleet-small {
    grid-template-columns: 1fr;
  }

  .mc-best-fleet-small img {
    height: 180px;
  }
}

.mc-corporate-hero {
  background: #0B0F14;
  color: #fff;
  padding: 90px 0;
}

.mc-corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mc-corporate-text h1 {
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0;
}

.mc-corporate-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.mc-corporate-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
  .mc-corporate-grid {
    grid-template-columns: 1fr;
  }
}



.mc-corp-accounts {
  background: #f6f7f9;
  padding: 90px 0;
}

.mc-corp-account-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mc-corp-box {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #eee;
  text-align: center;
  transition: 0.3s;
}

.mc-corp-box:hover {
  border-color: #B3001B;
  transform: translateY(-4px);
}

.mc-corp-box i {
  font-size: 24px;
  color: #B3001B;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .mc-corp-account-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .mc-corp-account-grid {
    grid-template-columns: 1fr;
  }
}



.mc-exec-airport {
  background: #fff;
  padding: 90px 0;
}

.mc-exec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mc-exec-grid h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0B0F14;
}

.mc-exec-grid p {
  color: #555;
  line-height: 1.7;
}

.mc-exec-grid img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

@media (max-width: 992px) {
  .mc-exec-grid {
    grid-template-columns: 1fr;
  }
}



.mc-corp-usecases {
  background: #0B0F14;
  color: #fff;
  padding: 90px 0;
}

.mc-usecase-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mc-usecase {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: 0.3s;
}

.mc-usecase:hover {
  border-color: #B3001B;
  transform: translateY(-4px);
}

.mc-usecase i {
  font-size: 22px;
  color: #B3001B;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .mc-usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .mc-usecase-grid {
    grid-template-columns: 1fr;
  }
}

/* Hide on desktop */
.mobile-only-img {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-only-img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 20px auto 0;
    border-radius: 10px;
  }
}


@media (max-width: 768px) {
  /* .sld_data p { */
    /* display: none; */
  /* } */

  .mobile-only-img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 15px;
  }
}
.sld_data h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 10px;
}

.sld_data h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #f4b400, #ffcc33);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .sld_data h3 {
    font-size: 1.4rem;
    text-align: center;
  }

  .sld_data h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* ==========================================
   HERO + BOOKING SECTION
   Premium Luxury Taxi Design
========================================== */

.sld_area {
    position: relative;
    width: 100%;
    min-height: 760px;
   background: linear-gradient(rgb(157 0 24 / 54%), rgb(0 0 0)), url(image/lexus-silver.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0 35px;
    overflow: hidden;
}

.sld_ovrly {
    width: 100%;
    position: relative;
    z-index: 2;
}

.sld_ovrly > h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 18px;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.sld_ovrly > h1 i {
    color: #dbe9ff;
}

.sld_area .container {
    max-width: 1180px;
}

.sld_area .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Text */
.sld_data {
    text-align: center;
    margin-bottom: 28px;
}

.sld_data h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sld_data p {
    color: #e8eef7;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

/* Booking Wrapper */
.book-bg {
    width: 100% !important;
    max-width: 980px;
    margin: 0 auto !important;
    float: none !important;
    padding: 0 !important;
    position: relative;
    z-index: 3;
}

.book-data {
    width: 100% !important;
    float: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Tabs */
.tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f2f6fb;
    border-bottom: 1px solid #dde7f3;
}

.tabs li {
    margin: 0;
    padding: 0;
}

.tabs li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 62px;
    padding: 16px 20px;
    text-decoration: none;
    color: #9d0018;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    transition: all 0.25s ease;
}

.tabs li.active a,
.tabs li a:hover {
    background: linear-gradient(135deg, #9d0018, #9d0018);
    color: #ffffff;
}

.tabs li a i {
    font-size: 18px;
}

/* Form Area */
.tab_content {
    padding: 30px;
}

.book-inner {
    width: 100%;
    float: none !important;
}

.form-horizontal {
    width: 100%;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px 16px;
}

.form-group > [class*="col-"] {
    padding: 0 8px 14px !important;
}

/* Inputs */
.form-control {
    width: 100% !important;
    height: 48px;
    border: 1px solid #d9e2ef !important;
    border-radius: 12px !important;
    background: #f8fbff !important;
    color: #263238 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 10px 14px !important;
    box-shadow: none !important;
    transition: all 0.25s ease;
}

textarea.form-control {
    height: auto;
    min-height: 95px;
    resize: vertical;
}

.form-control:focus {
    background: #ffffff !important;
    border-color: #9d0018 !important;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.12) !important;
    outline: none;
}

.form-control::placeholder {
    color: #7b8794;
}

/* Time Select */
.time-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-select {
    width: 100%;
}

/* Return Trip */
.form-group.text-left {
    background: #f2f6fb;
    border: 1px solid #dde7f3;
    border-radius: 14px;
    padding: 13px 16px !important;
    margin: 0 0 18px 0 !important;
    font-size: 15px;
    font-weight: 700;
    color: #9d0018 !important;
}

input[type="radio"] {
    accent-color: #9d0018;
    transform: scale(1.1);
}

/* Submit Button */
input[type="submit"].btn,
.form-button {
    min-width: 190px;
    height: 50px;
    padding: 12px 32px !important;
    border: none !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #9d0018, #9d0018) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 14px 28px rgba(0, 86, 179, 0.28);
    transition: all 0.25s ease;
    margin: 0 auto !important;
}

input[type="submit"].btn:hover,
.form-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #9d0018, #9d0018) !important;
    box-shadow: 0 18px 35px rgba(0, 86, 179, 0.34);
}

/* Airport tab label */
.group {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 800;
}

/* Footer Disclaimer */
.footer-disclaimer {
    margin-top: 28px !important;
    background: rgba(1, 32, 83, 0.35);
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
    .sld_area {
        min-height: auto;
        padding: 52px 0 28px;
    }

    .sld_ovrly > h1 {
        font-size: 34px;
        padding: 0 15px;
    }

    .sld_data h2 {
        font-size: 26px;
    }

    .sld_data p {
        font-size: 16px;
    }

    .book-bg {
        max-width: 92%;
    }

    .tab_content {
        padding: 24px;
    }

    .tabs li a {
        font-size: 15px;
        min-height: 58px;
        padding: 14px 12px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
    .sld_area {
        padding: 38px 0 22px;
        background-position: center top;
    }

    .sld_ovrly > h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .sld_ovrly > h1 i {
        font-size: 21px !important;
    }

    .sld_data {
        margin-bottom: 20px;
        padding: 0 12px;
    }

    .sld_data h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .sld_data p {
        font-size: 15px;
    }

    .book-bg {
        max-width: calc(100% - 24px);
    }

    .book-data {
        border-radius: 18px;
    }

    .tabs {
        grid-template-columns: 1fr;
    }

    .tabs li a {
        min-height: auto;
        padding: 15px 12px;
        font-size: 14px;
        border-bottom: 1px solid #dde7f3;
    }

    .tab_content {
        padding: 18px 14px 20px;
    }

    .form-group {
        display: block;
        margin: 0;
    }

    .form-group > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0 12px 0 !important;
    }

    .form-control {
        height: 46px;
        font-size: 14px !important;
        border-radius: 10px !important;
    }

    textarea.form-control {
        min-height: 90px;
    }

    .time-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .form-group.text-left {
        font-size: 14px;
        line-height: 1.7;
        padding: 12px !important;
        margin-bottom: 14px !important;
    }

    input[type="submit"].btn,
    .form-button {
        width: 100%;
        min-width: 100%;
        height: 48px;
        font-size: 15px !important;
    }

    .footer-disclaimer {
        margin: 22px 12px 0 !important;
        font-size: 11px !important;
        line-height: 1.6 !important;
        padding: 12px !important;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 420px) {
    .sld_ovrly > h1 {
        font-size: 23px;
    }

    .sld_data h2 {
        font-size: 20px;
    }

    .tabs li a {
        font-size: 13px;
    }

    .time-wrapper {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   MANLY CABBIES HOME HERO + BOOKING FORM
============================================================ */

.mc-home-hero {
  position: relative;
  min-height: 920px;
  background-size: cover;
  background-position: center;
  padding: 90px 16px 120px;
  font-family: 'Fira Sans', sans-serif;
  overflow: hidden;
}

.mc-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 15, 20, 0.96) 0%,
    rgba(52, 0, 10, 0.84) 48%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}

.mc-home-hero__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 45px;
}

.mc-home-hero__content {
  color: #fff;
}

.mc-home-hero__eyebrow {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(179, 0, 27, 0.18);
  border: 1px solid rgba(179, 0, 27, 0.45);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mc-home-hero__content h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
}

.mc-home-hero__content h3 {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}

.mc-home-hero__content p {
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}

.mc-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.mc-home-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
}

.mc-home-hero__btn--primary {
  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;
  box-shadow: 0 14px 30px rgba(179,0,27,0.32);
}

.mc-home-hero__btn--outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
}

.mc-home-hero__btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

.mc-home-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mc-home-hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.12);
}

.mc-home-hero__badges i {
  color: #ff3850;
}

/* ================= BOOKING CARD ================= */

.mc-booking-card {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.34);
  border: 1px solid rgba(255,255,255,0.35);
}

.mc-booking-card__head {
  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;
  padding: 22px 28px;
}

.mc-booking-card__head span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  font-weight: 800;
}

.mc-booking-card__head h2 {
  margin: 5px 0 0;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}

.mc-booking-card__body {
  padding: 24px;
  background: #f7f7f8;
}

.mc-booking-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #f0e7e9;
  padding: 8px;
  border-radius: 18px;
  margin-bottom: 20px;
}

.mc-booking-tabs label {
  margin: 0;
  cursor: pointer;
}

.mc-booking-tabs input {
  display: none;
}

.mc-booking-tabs span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 14px;
  color: #0B0F14;
  font-weight: 900;
  font-size: 14px;
  transition: 0.25s ease;
  text-align: center;
}

.mc-booking-tabs input:checked + span {
  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;
  box-shadow: 0 8px 20px rgba(179,0,27,0.25);
}

.mc-booking-form .form-control,
.mc-booking-card .form-control {
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(179,0,27,0.18);
  background: #fff;
  color: #0B0F14;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
}

.mc-booking-form textarea.form-control {
  height: auto;
  min-height: 95px;
}

.mc-booking-form .form-control:focus,
.mc-booking-card .form-control:focus {
  border-color: #B3001B;
  box-shadow: 0 0 0 4px rgba(179,0,27,0.12);
}

.mc-booking-label {
  display: block;
  color: #0B0F14;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 7px;
}

.mc-return-toggle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(179,0,27,0.12);
  color: #0B0F14;
}

.mc-return-toggle strong {
  color: #B3001B;
}

.mc-return-toggle label {
  margin: 0;
  font-weight: 700;
  cursor: pointer;
}

.mc-booking-section-title {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  background: #f0e7e9;
  color: #7A0012;
  font-size: 14px;
  font-weight: 900;
}

.mc-booking-submit {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(179,0,27,0.28);
  transition: 0.25s ease;
}

.mc-booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(179,0,27,0.36);
}

.mc-site-disclaimer {
  padding: 14px 20px;
  background: #0B0F14;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .mc-home-hero {
    padding: 70px 14px 80px;
    min-height: auto;
  }

  .mc-home-hero__container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .mc-home-hero__content {
    text-align: center;
	padding: 3px 10px 1px 10px;
  }

  .mc-home-hero__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .mc-home-hero__actions {
    justify-content: center;
  }

  .mc-home-hero__badges {
    justify-content: center;
  }

  .mc-home-hero__content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 576px) {
  .mc-home-hero {
    padding: 45px 10px 60px;
  }

  .mc-booking-card {
    border-radius: 20px;
  }

  .mc-booking-card__head {
    padding: 18px;
  }

  .mc-booking-card__head h2 {
    font-size: 1.3rem;
  }

  .mc-booking-card__body {
    padding: 16px;
  }

  .mc-booking-tabs {
    grid-template-columns: 1fr;
  }

  .mc-home-hero__btn {
    width: 100%;
    justify-content: center;
  }

  .mc-home-hero__badges {
    display: none;
  }

  .mc-home-hero__content h1 {
    font-size: 2rem;
  }
}

.mc-footer-contact a,
.mc-footer-grid a {
    color: white;
    text-decoration: none;
}

.mc-footer-contact a:hover,
.mc-footer-contact a:focus,
.mc-footer-grid a:hover,
.mc-footer-grid a:focus {
    color: red;
    text-decoration: none;
}


/* ============================================================
   TRUST LIST ICONS — MANLY CABBIES
============================================================ */

.mc-trust-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.mc-trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 12px;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  line-height: 1.5;
}

.mc-trust-list li i {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 34px;

  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;

  border-radius: 50%;
  font-size: 14px;

  box-shadow: 0 8px 18px rgba(179,0,27,0.28);
}

@media (max-width: 576px) {
  .mc-trust-list li {
    align-items: flex-start;
    font-size: 14px;
  }

  .mc-trust-list li i {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    font-size: 12px;
  }
}


/* ============================================================
   DISCLAIMER PAGE — MANLY CABBIES THEME
============================================================ */

.mc-policy-page {
  background: #f6f7f9;
  padding: 90px 0;
  color: #0B0F14;
}

.mc-policy-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.mc-policy-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px;
  border: 1px solid #eee;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

/* TOP DISCLAIMER STRIP */
.mc-policy-brand-disclaimer {
  margin: 0 auto 28px auto;
  padding: 16px 20px;
  max-width: 100%;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  text-align: center;
  background: linear-gradient(135deg, #0B0F14, #121821);
  border-top: 2px solid rgba(179,0,27,0.45);
  border-bottom: 2px solid rgba(179,0,27,0.45);
  border-radius: 12px;
}

/* UPDATED DATE */
.mc-policy-updated {
  font-size: 14px;
  font-weight: 700;
  color: #B3001B;
  margin-bottom: 24px;
}

/* HEADINGS */
.mc-policy-card h2 {
  font-size: 28px;
  font-weight: 900;
  color: #0B0F14;
  margin: 34px 0 14px;
  position: relative;
  padding-bottom: 12px;
}

.mc-policy-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: linear-gradient(135deg, #B3001B, #7A0012);
  border-radius: 10px;
}

.mc-policy-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #121821;
  margin: 22px 0 10px;
}

/* TEXT */
.mc-policy-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}

/* LISTS */
.mc-policy-card ul {
  padding-left: 0;
  margin: 16px 0 24px;
  list-style: none;
}

.mc-policy-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.mc-policy-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #B3001B;
  font-size: 13px;
}

.mc-policy-card strong {
  color: #0B0F14;
  font-weight: 800;
}

/* LINKS */
.mc-policy-link {
  color: #B3001B;
  font-weight: 700;
  text-decoration: none;
}

.mc-policy-link:hover {
  color: #7A0012;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mc-policy-page {
    padding: 60px 0;
  }

  .mc-policy-card {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .mc-policy-card h2 {
    font-size: 24px;
  }

  .mc-policy-card h3 {
    font-size: 18px;
  }

  .mc-policy-card p,
  .mc-policy-card ul li {
    font-size: 14px;
  }

  .mc-policy-brand-disclaimer {
    font-size: 11px;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .mc-policy-card {
    padding: 20px 14px;
  }

  .mc-policy-card h2 {
    font-size: 22px;
  }
}


/* ============================================================
   TERMS & CONDITIONS PAGE — MANLY CABBIES THEME
============================================================ */

.mc-terms-page {
  background: #f6f7f9;
  padding: 90px 0;
  color: #0B0F14;
}

.mc-terms-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.mc-terms-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px;
  border: 1px solid #eee;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

/* TOP DISCLAIMER STRIP */
.mc-terms-brand-disclaimer {
  margin: 0 auto 28px auto;
  padding: 16px 20px;
  max-width: 100%;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  text-align: center;
  background: linear-gradient(135deg, #0B0F14, #121821);
  border-top: 2px solid rgba(179,0,27,0.45);
  border-bottom: 2px solid rgba(179,0,27,0.45);
  border-radius: 12px;
}

.mc-terms-brand-disclaimer p {
  margin: 0;
  color: rgba(255,255,255,0.88);
}

/* TEXT */
.mc-terms-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}

.mc-terms-updated {
  font-size: 14px !important;
  font-weight: 700;
  color: #B3001B !important;
  margin-bottom: 18px;
}

/* HEADINGS */
.mc-terms-card h2 {
  font-size: 28px;
  font-weight: 900;
  color: #0B0F14;
  margin: 34px 0 14px;
  position: relative;
  padding-bottom: 12px;
}

.mc-terms-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: linear-gradient(135deg, #B3001B, #7A0012);
  border-radius: 10px;
}

.mc-terms-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #121821;
  margin: 22px 0 10px;
}

/* LISTS */
.mc-terms-card ul {
  padding-left: 0;
  margin: 16px 0 24px;
  list-style: none;
}

.mc-terms-card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.mc-terms-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: #B3001B;
  font-size: 13px;
}

.mc-terms-card ul li p {
  margin: 0;
}

.mc-terms-card strong {
  color: #0B0F14;
  font-weight: 800;
}

/* LINKS */
.mc-terms-link {
  color: #B3001B;
  font-weight: 700;
  text-decoration: none;
}

.mc-terms-link:hover {
  color: #7A0012;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mc-terms-page {
    padding: 60px 0;
  }

  .mc-terms-card {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .mc-terms-card h2 {
    font-size: 24px;
  }

  .mc-terms-card h3 {
    font-size: 18px;
  }

  .mc-terms-card p,
  .mc-terms-card ul li {
    font-size: 14px;
  }

  .mc-terms-brand-disclaimer {
    font-size: 11px;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .mc-terms-card {
    padding: 20px 14px;
  }

  .mc-terms-card h2 {
    font-size: 22px;
  }
}


/* ============================================================
   PRIVACY POLICY PAGE — MANLY CABBIES THEME
============================================================ */

.mc-privacy-page {
  background: #f6f7f9;
  padding: 90px 0;
  color: #0B0F14;
}

.mc-privacy-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.mc-privacy-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px;
  border: 1px solid #eee;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

/* TOP DISCLAIMER STRIP */
.mc-privacy-brand-disclaimer {
  margin: 0 auto 28px auto;
  padding: 16px 20px;
  max-width: 100%;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  text-align: center;
  background: linear-gradient(135deg, #0B0F14, #121821);
  border-top: 2px solid rgba(179,0,27,0.45);
  border-bottom: 2px solid rgba(179,0,27,0.45);
  border-radius: 12px;
}

.mc-privacy-brand-disclaimer p {
  margin: 0;
  color: rgba(255,255,255,0.88);
}

/* TEXT */
.mc-privacy-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}

.mc-privacy-updated {
  font-size: 14px !important;
  font-weight: 700;
  color: #B3001B !important;
  margin-bottom: 18px;
}

/* HEADINGS */
.mc-privacy-card h2 {
  font-size: 28px;
  font-weight: 900;
  color: #0B0F14;
  margin: 34px 0 14px;
  position: relative;
  padding-bottom: 12px;
}

.mc-privacy-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: linear-gradient(135deg, #B3001B, #7A0012);
  border-radius: 10px;
}

.mc-privacy-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #121821;
  margin: 22px 0 10px;
}

/* LISTS */
.mc-privacy-card ul {
  padding-left: 0;
  margin: 16px 0 24px;
  list-style: none;
}

.mc-privacy-card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.mc-privacy-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: #B3001B;
  font-size: 13px;
}

.mc-privacy-card ul li p {
  margin: 0;
}

.mc-privacy-card strong {
  color: #0B0F14;
  font-weight: 800;
}

/* LINKS */
.mc-privacy-link {
  color: #B3001B;
  font-weight: 700;
  text-decoration: none;
}

.mc-privacy-link:hover {
  color: #7A0012;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mc-privacy-page {
    padding: 60px 0;
  }

  .mc-privacy-card {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .mc-privacy-card h2 {
    font-size: 24px;
  }

  .mc-privacy-card h3 {
    font-size: 18px;
  }

  .mc-privacy-card p,
  .mc-privacy-card ul li {
    font-size: 14px;
  }

  .mc-privacy-brand-disclaimer {
    font-size: 11px;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .mc-privacy-card {
    padding: 20px 14px;
  }

  .mc-privacy-card h2 {
    font-size: 22px;
  }
}


.mc-policy-brand-disclaimer p {
    color: rgba(255,255,255,0.9) !important;
}
}

/* ============================================================
   BOOKING THANK YOU PAGE — MANLY CABBIES THEME
============================================================ */

.mc-thanks-page {
  background: #f6f7f9;
  color: #0B0F14;
  font-family: 'Fira Sans', sans-serif;
}

/* HERO */
.mc-thanks-hero {
  position: relative;
  background: linear-gradient(135deg, #0B0F14, #121821);
  padding: 100px 16px 90px;
  overflow: hidden;
  color: #fff;
}

.mc-thanks-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(179,0,27,0.26), transparent 36%),
    radial-gradient(circle at bottom right, rgba(179,0,27,0.18), transparent 38%);
  pointer-events: none;
}

.mc-thanks-container {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mc-thanks-hero-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.mc-thanks-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;

  font-size: 34px;
  box-shadow: 0 18px 40px rgba(179,0,27,0.35);
}

.mc-thanks-eyebrow {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(179,0,27,0.18);
  border: 1px solid rgba(179,0,27,0.42);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 18px;
}

.mc-thanks-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
}

.mc-thanks-hero p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.mc-thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.mc-thanks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 14px 24px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 900;
  text-decoration: none;

  transition: 0.25s ease;
}

.mc-thanks-btn-primary {
  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;
  box-shadow: 0 14px 30px rgba(179,0,27,0.32);
}

.mc-thanks-btn-outline {
  border: 2px solid rgba(255,255,255,0.68);
  color: #fff;
}

.mc-thanks-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* STATUS CARDS */
.mc-thanks-status {
  padding: 80px 16px 40px;
}

.mc-thanks-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mc-thanks-status-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid #eee;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.mc-thanks-status-card:hover {
  transform: translateY(-5px);
  border-color: #B3001B;
  box-shadow: 0 18px 45px rgba(179,0,27,0.12);
}

.mc-thanks-status-card i {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: rgba(179,0,27,0.10);
  color: #B3001B;

  font-size: 22px;
  margin-bottom: 16px;
}

.mc-thanks-status-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #0B0F14;
  margin-bottom: 8px;
}

.mc-thanks-status-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* MAIN INFO SECTION */
.mc-thanks-info {
  padding: 50px 16px 90px;
}

.mc-thanks-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}

.mc-thanks-panel {
  background: #fff;
  border-radius: 18px;
  padding: 34px;
  border: 1px solid #eee;
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
}

.mc-thanks-panel h2 {
  font-size: 30px;
  font-weight: 900;
  color: #0B0F14;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}

.mc-thanks-panel h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 58px;
  height: 3px;

  background: linear-gradient(135deg, #B3001B, #7A0012);
  border-radius: 10px;
}

.mc-thanks-panel p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

/* STEPS */
.mc-thanks-steps {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.mc-thanks-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.mc-thanks-step-number {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;

  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(179,0,27,0.25);
}

.mc-thanks-step h4 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 4px;
  color: #0B0F14;
}

.mc-thanks-step p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/* CONTACT PANEL */
.mc-thanks-contact-card {
  background: linear-gradient(135deg, #0B0F14, #121821);
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
}

.mc-thanks-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(179,0,27,0.24), transparent 42%);
  pointer-events: none;
}

.mc-thanks-contact-card > * {
  position: relative;
  z-index: 2;
}

.mc-thanks-contact-card h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 14px;
}

.mc-thanks-contact-card p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.mc-thanks-contact-list {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.mc-thanks-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(255,255,255,0.9);
  font-weight: 700;
  text-decoration: none;
}

.mc-thanks-contact-item i {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: linear-gradient(135deg, #B3001B, #7A0012);
  color: #fff;
}

.mc-thanks-contact-item:hover {
  color: #fff;
}

.mc-thanks-note {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.7;
}

/* QUICK LINKS */
.mc-thanks-links {
  background: #fff;
  padding: 70px 16px;
}

.mc-thanks-links-header {
  text-align: center;
  margin-bottom: 34px;
}

.mc-thanks-links-header span {
  display: inline-flex;
  color: #B3001B;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.mc-thanks-links-header h2 {
  font-size: 32px;
  font-weight: 900;
  color: #0B0F14;
  margin-bottom: 8px;
}

.mc-thanks-links-header p {
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.mc-thanks-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mc-thanks-link-card {
  background: #f6f7f9;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 22px;

  text-decoration: none;
  color: #0B0F14;

  transition: 0.3s ease;
}

.mc-thanks-link-card:hover {
  transform: translateY(-5px);
  border-color: #B3001B;
  box-shadow: 0 14px 34px rgba(179,0,27,0.12);
  color: #0B0F14;
}

.mc-thanks-link-card i {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: rgba(179,0,27,0.10);
  color: #B3001B;

  font-size: 20px;
  margin-bottom: 14px;
}

.mc-thanks-link-card h3 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
}

.mc-thanks-link-card p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mc-thanks-status-grid,
  .mc-thanks-info-grid,
  .mc-thanks-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mc-thanks-info-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .mc-thanks-hero {
    padding: 75px 16px 70px;
  }

  .mc-thanks-status-grid,
  .mc-thanks-info-grid,
  .mc-thanks-links-grid {
    grid-template-columns: 1fr;
  }

  .mc-thanks-panel,
  .mc-thanks-contact-card {
    padding: 26px 20px;
  }

  .mc-thanks-panel h2,
  .mc-thanks-contact-card h2,
  .mc-thanks-links-header h2 {
    font-size: 25px;
  }

  .mc-thanks-actions {
    flex-direction: column;
  }

  .mc-thanks-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .mc-thanks-hero {
    padding: 60px 12px;
  }

  .mc-thanks-icon {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }

  .mc-thanks-panel,
  .mc-thanks-contact-card,
  .mc-thanks-link-card,
  .mc-thanks-status-card {
    border-radius: 14px;
  }
}


/* ============================================================
   THANK YOU PAGE CAR IMAGE (LEXUS HERO VISUAL)
============================================================ */

.mc-thanks-car-image {
  margin: 22px auto 26px;
  max-width: 520px;
  text-align: center;
}

.mc-thanks-car-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;

  /* premium look */
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);

  transform: scale(1);
  transition: 0.35s ease;
}

.mc-thanks-car-image img:hover {
  transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 768px) {
  .mc-thanks-car-image {
    max-width: 90%;
    margin: 18px auto 22px;
  }
}

