/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  padding-top: 90px; /* match fixed nav height */
  background: #ffffff; /* PURE WHITE */
  color: #363636;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  color: #111;
  font-family: 'BioRhyme', serif;
}

/* ===== Global Layout System ===== */

.page-section {
  padding: 160px 0 120px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.tagline {
  margin-top: 25px;
  letter-spacing: 4px;
  font-size: 14px;
  color: #b5b5b5; /* softer grey */
}
/* ================= SLEEKFLOW FIX ================= */
html {
  overflow-x: unset;
}

/* ================= STABLE STICKY NAV ================= */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;

  padding: 0 80px;

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

  background: #ffffff; /* remove grey */
border-bottom: 1px solid rgba(0,0,0,0.06); /* subtle clean divider */

  z-index: 1000;

}
/* ================= NAV LINKS ================= */
a,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}
/* ================= NAV LINKS ================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;          /* lighter */
  font-size: 12px;           /* slightly smaller */
  font-weight: 400;  /* very light */
  letter-spacing: 3px;       /* more elegant spacing */
  text-transform: uppercase; /* clean caps */
  color: #000;               /* softer than pure black */
  text-decoration: none;
  transition: color 0.3s ease;
 
}

/* Gold hover */
.nav-links a:hover {
  color: #c6a85b;
}

/* Active page */
.nav-links a.active {
  color: #c6a85b;
}
.nav.shrink {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

/* Shrink inner content instead */
.nav.shrink .logo {
  transform: scale(0.92);
}

.nav.shrink .nav-links {
  transform: scale(0.95);
}


.nav-links li a {
  text-decoration: none;
  color: #000;
  font-size: 13px;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #c6a85b;
}

/* ================= TOP SOCIAL ICONS ================= */
.top-social {
  display: flex;
  gap: 18px;
  right: 80px;
  bottom: 12px;
}

.top-social a {
  font-size: 14px;
  color: #000;
  opacity: 0.85;
  transition: color 0.3s ease;
}

.top-social a:hover {
  color: #d4af37; /* gold hover */
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;        /* full immersive screen height */
  padding-top: 140px;       /* space under nav */
  padding-bottom: 140px;    /* pushes footer down */
  display: flex;
  flex-direction: column;
  justify-content: center;  /* centers CABX vertically */
  align-items: center;
  text-align: center;
}


.hero-logo {
  font-family: 'BioRhyme', serif;
  display: flex;
  align-items: center;
  color: #000;
}

.hero-logo .x {
  color: #c6a85b;
  display: inline-block;
  opacity: 0;
  transform: translateX(40px) scale(0.9);
  animation: revealX 1s cubic-bezier(.19,1,.22,1) forwards;
  animation-delay: 0.3s;
}

.logo {
  font-family: 'BioRhyme', serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 8px;
  color: #000;
}

.logo .x {
  color: #c6a85b;
}

.tagline {
  margin-top: 18px;
  letter-spacing: 3px;
  color: #b0b0b0;
}
.btn-primary {
  padding: 16px 45px;
  background: #c8a85d;      /* Solid Gold */
  color: #000;              /* Black Text */
  border: none;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn {
  margin-top: 32px;
  background: #c6a85b;
  padding: 14px 38px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 3px;
  color: #000;
   text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #c6a85b;
}

.about-section{
  max-width:1100px;
  margin:120px auto 60px auto;
  padding:0 20px;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-section {
  padding: 150px 0 100px;
}

.contact-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-left h1 {
  font-family: 'BioRhyme', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-intro {
  color: #bbb;
  margin-bottom: 40px;
  max-width: 450px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
}

.contact-item i {
  color: #c6a85b;
  font-size: 1.2rem;
}

.contact-item a {
  color: #c6a85b;
}

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

.contact-social {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.contact-social a {
  font-size: 1.2rem;
  color: #000;
  padding: 10px;
}

.contact-social a:hover {
  background: #c6a85b;
}

/* Map */
.contact-map iframe{
  width:100%;
  max-width:500px;
  height:400px;

}


/* =========================
   FOOTER
========================= */
.site-footer {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 90px 20px 40px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .site-footer {
    margin-top: 40px;
  }
}

/* Center inner content but allow full-width background */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px; /* content stays centered */
    margin: 0 auto;
}
/* Footer divider spans full width */
.footer-divider {
    height: 1px;
    background: #1a1a1a;
    margin: 60px 0 40px;
    width: 100%;
}

/* Optional: Footer bottom full width */
.footer-bottom {
    width: 100%;
    text-align: center;
}


/* ================= FOOTER SHRINK / EXPAND ================= */

/* FORCE footer links styling */
.site-footer .footer-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #c6a85b !important;
    text-decoration: none !important;
}

.site-footer .footer-col a:hover {
    color: #ffffff !important;
}




.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h2 {
    color: #fff;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.site-footer .footer-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #c6a85b;
    text-decoration: none;
}


.site-footer .footer-col a:hover {
    color: #fff;
}
  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: #fff;
    font-size: 14px;
  }

  .nav-links a:hover {
    color: #d4af37;
  }

  .top-social {
    display: none;
  }
  .hero-logo {
    font-size: 72px;
    letter-spacing: 12px;
  }

  .site-footer {
    padding: 70px 25px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-col {
    text-align: center;
  }
  .logo a{
  font-family: 'BioRhyme', serif;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  letter-spacing: 2px;
}

.logo .x{
  color: #c6a85b;
}
.hero-logo .x {
  display: inline-block;
  color: #c6a85b;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: revealX 1.2s ease forwards;
}

/* ================= FINAL FOOTER TYPOGRAPHY FIX ================= */

/* Remove forced uppercase */
.footer-col h2 {
    text-transform: none !important;
}

/* Footer Section Headings */
.footer-col h2 {
    font-family: 'BioRhyme', serif;
    font-weight: 400;        /* lighter = elegant */
    font-size: 21px;
    letter-spacing: 2px;     /* subtle spacing */
    color: #ffffff;
    margin-bottom: 24px;
}

/* CABX Logo – restore luxury spacing */
.footer-brand h2 {
    font-family: 'BioRhyme', serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 10px;    /* dramatic spacing */
    color: #ffffff;
}

/* Tagline */
.footer-brand p:first-of-type {
    color: #c6a85b;
    font-size: 14px;
    margin-top: 14px;
}

/* Location */
.footer-brand p:last-of-type {
    color: #ffffff;
    font-size: 15px;
}
/* ================= CLEAN FOOTER HEADINGS ================= */

.site-footer .footer-col h2 {
    font-family: 'BioRhyme', serif;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 1.5px;
    text-transform: none;
    color: #ffffff;
    margin-bottom: 26px;
}

.site-footer .footer-brand h2 {
    font-family: 'BioRhyme', serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 10px;
    color: #ffffff;
}
/* ================= CABX FOOTER LOGO (FINAL FIX) ================= */

.footer-logo {
    font-family: 'BioRhyme', serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 6px;
    color: #ffffff; /* CAB letters */
}

/* Gold X */
.footer-logo span {
    color: #c6a85b;
}

/* Remove weird spacing issues */
.footer-logo span {
    letter-spacing: 6px;
}

/* Tagline styling (clean + modern) */
.footer-tag {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-top: 12px;
    color: #c6a85b;
}
/* ================= FOOTER BOTTOM SIZE FIX ================= */

.footer-bottom {
    font-size: 13px;     /* smaller text */
    padding: 18px 0;     /* reduce vertical space */
}

/* Social Icons Smaller */
.footer-bottom i,
.footer-bottom svg,
.footer-bottom a {
    font-size: 16px;     /* smaller icons */
}

/* Reduce spacing between icons */
.footer-bottom .social-links {
    gap: 14px;
}


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

/* Hero Section */
.faq-hero{
  text-align:center;
  padding:160px 20px 90px;
  max-width:900px;
  margin:0 auto;
}

.faq-hero h1 {
    font-family: 'BioRhyme', serif;
    font-size: 46px;
    letter-spacing: 6px;
    color: #000;
}

.faq-hero p {
    margin-top: 18px;
    color: #9a9a9a;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}


/* Category Headings */
.faq-category {
    margin-top: 70px;
}

.faq-category h2 {
    font-family: 'BioRhyme', serif;
    font-size: 28px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: #000;
}

/* ================= ACCORDION ================= */

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* Hide checkbox */
.faq-item input {
    display: none;
}

/* Question Row */
.faq-question {
    display: block;
    padding: 22px 30px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    color: #000;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #faf6ea;
}

/* Gold + Icon */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #c6a85b;
    transition: transform 0.3s ease;
}

/* Rotate icon when open */
.faq-item input:checked + .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.faq-item input:checked ~ .faq-answer {
    max-height: 600px;
    padding: 0 30px 24px;
}

/* Lists inside answers */
.faq-answer ul {
    margin-top: 14px;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}
.faq-section {
    max-width: 900px;
    margin: 0 auto 140px;
    padding: 0 20px;
}

/* ================= QUICK FACTS CLEAN MATCH ================= */


.quick-facts h2 {
    font-family: 'BioRhyme', serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: #000;
}

.quick-facts ul {
    columns: 2;
    column-gap: 60px;
}

.quick-facts li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #666;
}
.facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* =========================================================
   RIDER GUIDE – FINAL CLEAN THEME MATCH
   ========================================================= */

/* ===== HERO (Fix spacing under sticky nav) ===== */


.faq-hero h1 {
    font-family: 'BioRhyme', serif;
    font-size: 46px;
    letter-spacing: 4px;
    color: #000;
    margin-bottom: 20px;
}

.faq-hero p {
    color: #9a9a9a;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ===== FAQ SECTION CONTAINER (Fix bottom spacing) ===== */

.faq-section {
    max-width: 900px;
    margin: 0 auto 140px;   /* breathing room before footer */
    padding: 0 20px;
}
.faq-hero h1 {
    font-size: 52px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 18px;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pdf-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.pdf-sub {
    font-size: 16px;
    color: #777;
    margin-bottom: 35px;
    line-height: 1.6;
}
.faq-hero {
    padding: 100px 20px 60px;
    text-align: center;
}

.pdf-section {
    padding: 60px 40px;
}
.guide-button-wrapper {
    text-align: center;
    margin: 50px 0 100px; /* more breathing room */
}

.btn-primary:hover {
    background: #c8a85d;
    color: #ffffff;
}
.hero-logo .x {
  animation-delay: 0.3s;
}

/* ===== PDF SECTION (Match site card styling) ===== */

.pdf-section {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 50px 40px;
    background: #f7f7f7;
    border-radius: 20px;
    text-align: center;
}

.pdf-section h2 {
    font-family: 'BioRhyme', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #000;
}

.pdf-section p {
    max-width: 650px;
    margin: 0 auto 40px;
    color: #777;
    line-height: 1.7;
}
section {
    margin-bottom: 80px;
}

/* ===== QUICK FACTS (Remove heavy gold glow, match cards) ===== */

.quick-facts {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 40px;
}

.quick-facts h2 {
    margin-bottom: 40px;
}

.quick-facts ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 80px;
    list-style: disc;
    padding-left: 20px;
}

.quick-facts li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #666;
}


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

@media (max-width: 768px) {

    .faq-hero {
        padding: 130px 20px 70px;
    }

    .faq-hero h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .pdf-section {
        padding: 45px 25px;
    }

    .quick-facts {
        padding: 40px 25px;
    }

    .quick-facts ul {
        columns: 1;
    }
}
/* =========================================
   QUICK FACTS LUXURY CARD
========================================= */

.quick-facts-card {
  max-width: 1000px;
  margin: 120px auto;
  padding: 50px 60px;
  border: 2px solid #c8a85d;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(200, 168, 93, 0.15);
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* Moving Announcement Text */

.quick-facts-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(200,168,93,0.4);
  padding-bottom: 15px;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  font-family: 'BioRhyme', serif;
  font-size: 14px;
  letter-spacing: 6px;
  font-weight: 700;
  color: #c8a85d;
  animation: scrollFacts 30s linear infinite;
}

/* Smooth Infinite Scroll */
@keyframes scrollFacts {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Facts Grid */

.quick-facts-content ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 60px;
  padding: 0;
}

.quick-facts-content li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.quick-facts-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c8a85d;
  font-size: 18px;
}

/* Mobile */

@media (max-width: 768px) {
  .quick-facts-content ul {
    grid-template-columns: 1fr;
  }
}
.guide-note {
    margin-top: 25px;
    font-size: 14px;
    color: #000; /* black, clear text */
    text-align: center;
    letter-spacing: 0.5px;
}

.guide-note a {
    color: #c8a85d; /* gold accent link */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.guide-note a:hover {
    color: #000; /* dark on hover for clarity */
}
.booking-policy {
  max-width: 900px;
  margin: 100px auto;
  padding: 0 20px;
}

.booking-policy h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.booking-policy p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #444;
}

.payment-methods {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.payment-methods li {
  margin-bottom: 8px;
}

.payment-methods a {
  color: #c8a85d;
  text-decoration: none;
  font-weight: 600;
}

.payment-methods a:hover {
  text-decoration: underline;
}

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links li a {
    font-size: 14px;
    letter-spacing: 3px;
  }
}

/* ================= DROPDOWN ================= */

.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
}

/* Hide menu by default */
.dropdown-menu {
 position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  padding: 10px 0;

  display: none;
  flex-direction: column;

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-radius: 6px;
  z-index: 999;
}

/* Dropdown links */
.dropdown-menu a {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  display: block;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #c4a24a; /* your gold */
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: flex;
}
/* Mobile dropdown open */
.dropdown.active .dropdown-menu {
  display: flex;
  position: static;
  box-shadow: none;
  background: transparent;
}
/* ================= WEATHER SECTION ================= */

.weather-section {
  padding: 80px 0 80px; /* was 120px — this was too large */
}

/* Header */
.weather-header {
  text-align: center;
  margin-bottom: 40px; /* was 60px */
}

.weather-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #111;
  font-family: 'BioRhyme', serif;
}

.weather-subtext {
  font-size: 14px;
  color: #c6a85b;
  letter-spacing: 0.5px;
  margin-top: 4px; /* keeps date tight under title */
}

/* Cards Layout */
.weather-cards {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* Individual Card */
.weather-card {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Iframe */
.weather-card iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}


/* Responsive */
@media (max-width: 992px) {
  .weather-cards {
    flex-direction: column;
  }
}

/* ================= CABX COMPARISON CHART ================= */

.cabx-comparison {
  padding: 20px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.cabx-comparison h2 {
  text-align: center;
  font-family: 'BioRhyme', serif;
  font-size: 36px;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 30px;
}

/* Table Wrapper */
.comparison-table {
  overflow-x: auto;
}

/* Table Card Style (matches site cards) */
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

/* Header */
.comparison-table thead {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  letter-spacing: 2px;
}

.comparison-table th {
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Body Cells */
.comparison-table td {
  padding: 18px 20px;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #f1f1f1;
}

/* Zebra Rows */
.comparison-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* Hover Effect */
.comparison-table tbody tr:hover {
  background: #faf6ea;
}

/* Highlight CABX Private Driver column */
.comparison-table td.highlight,
.comparison-table th.highlight {
  color: #c6a85b;
  font-weight: 600;
}

/* First column (feature labels) */
.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
  font-weight: 600;
  color: #111;
}

/* ================= TARGET COLUMN ================= */

/* TARGET header cell */
.comparison-table thead .target-col {
  background: #1a1a1a;
  color: #c6a85b !important;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
}

/* Gold top accent bar on TARGET header */
.comparison-table thead .target-col::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #c6a85b;
}

/* TARGET body cells */
.comparison-table tbody .target-col {
  background: #f5f5f5;
  color: #111 !important;
  font-weight: 500;
}

/* Zebra override — keep TARGET column distinct on even rows */
.comparison-table tbody tr:nth-child(even) .target-col {
  background: #eeeeee;
}

/* Hover override — keep TARGET visible on row hover */
.comparison-table tbody tr:hover .target-col {
  background: #e8e4d8;
}

/* Mobile */
@media (max-width: 768px) {

  .cabx-comparison h2 {
    font-size: 28px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px;
    font-size: 13px;
  }

}

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

.refer-card {
  display: block;
  text-align: center;
  margin: 60px auto 40px;
  padding: 50px 40px;

  max-width: 750px;

  background: #f8f5ec;
  border: 1px solid rgba(198,168,91,0.4);
  border-radius: 20px;

  text-decoration: none;
  color: inherit;

  transition: all 0.35s ease;
  box-shadow: 0 12px 35px rgba(0,0,0,0.04);
}

/* Remove blue link styles inside */
.refer-card h3,
.refer-card p,
.refer-card .price {
  text-decoration: none;
}

/* Hover Effect */
.refer-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.08),
    0 0 30px rgba(198,168,91,0.25);

  border-color: #c6a85b;
}
.payment-methods li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ================= BOOKING SECTION ================= */

.booking-container {
  max-width: 1300px;
  margin: 40px auto 120px;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  min-height: 80vh;
}

.book-text {
  flex: 1;
  max-width: 500px;
  min-width: 280px;
  line-height: 1.7;
}

.book-text h1 { margin-bottom: 20px; }

.booking-intro { margin-bottom: 18px; }

.booking-divider {
  width: 100%;
  height: 1px;
  background: #c6a85b;
  margin: 26px 0 30px;
  opacity: 0.5;
}

.policy-icon {
  color: #d4af37;
  margin-right: 10px;
  font-size: 15px;
  width: 18px;
  text-align: center;
}

.calendly-wrapper {
  flex: 1.8;
  min-width: 0;
  width: 100%;
}

.calendly-inline-widget {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 700px !important;
  overflow: hidden !important;
  position: relative !important;
}

@media (max-width: 1024px) {
  .booking-container { flex-direction: column; gap: 36px; padding: 0 20px; }
  .book-text { max-width: 100%; }
  .calendly-wrapper { width: 100%; }
  .calendly-inline-widget { height: 700px !important; }
}

@media (max-width: 768px) {
  .booking-container { margin-top: 20px; gap: 24px; padding: 0 16px; }
  .book-text h1 { font-size: 1.9rem; line-height: 1.3; }
  .booking-intro { font-size: 0.95rem; }
  .policy-title { font-size: 1.1rem; }
  .policy-icon { margin-right: 6px; }
  .calendly-inline-widget { height: 750px !important; }
}

@media (max-width: 480px) {
  .booking-container { padding: 0 12px; }
  .book-text h1 { font-size: 1.6rem; }
  .booking-intro { font-size: 0.9rem; }
  .calendly-inline-widget { height: 750px !important; }
}

@media (max-width: 360px) {
  .book-text h1 { font-size: 1.45rem; }
  .booking-intro { font-size: 0.85rem; }
  .calendly-inline-widget { height: 750px !important; }
}
.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.6;
}
/* Fix Payments spacing */
.site-footer .footer-col p,
.site-footer .footer-col li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Remove extra space under last item */
.site-footer .footer-col p:last-child,
.site-footer .footer-col li:last-child {
  margin-bottom: 0;
}


/* ============================================================
   CABX — 
   ============================================================ */

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #c6a85b;
  cursor: pointer;
  z-index: 3000;
  transition: color 0.3s ease;
}

.hamburger.open {
  color: #d4af37;
}

@media (max-width: 900px) {

  /* Show hamburger on mobile */
  .hamburger {
    display: block;
  }

@media (max-width: 900px) {

  .nav-links {
    position: absolute;
    top: 90px;
    right: 0;
    width: 100%;
    background: #ffffff;

    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 22px;

    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

}

  /* Mobile link styling */
  .nav-links a {
    color: #000 !important;
    font-size: 14px;
    letter-spacing: 3px;
  }

  /* Hide top social icons */
  .top-social {
    display: none !important;
  }

  /* Mobile dropdown behavior */
  .dropdown-menu {
    position: relative !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .dropdown-menu a {
    padding: 10px 0 !important;
    color: #000 !important;
  }
}
/* ============================================================
   CABX — RESTORE DESKTOP NAV COLORS (SAFE FIX)
   ============================================================ */

@media (min-width: 901px) {
  .nav-links a {
    color: #000 !important;        /* desktop default */
  }

  .nav-links a:hover {
    color: #c6a85b !important;     /* gold hover */
  }

  .nav-links a.active {
    color: #c6a85b !important;     /* gold active */
  }
  .top-social {
  display: none !important;
}
}


  .footer-top {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 60px !important;
    text-align: left !important;
  }

  .footer-col {
    text-align: left !important;
  }

  .footer-col h2 {
    font-size: 22px !important;
    letter-spacing: 1.5px !important;
  }

  .footer-bottom {
    text-align: center !important;
    padding: 18px 0 !important;
  }
  /* ============================================================
   CABX — RESTORE DESKTOP HERO LOGO SIZE
   ============================================================ */

@media (min-width: 901px) {

  /* Restore original large CABX logo on Home page */
  .hero-logo {
    font-size: 140px !important;
    letter-spacing: 22px !important;
  }

  .hero-logo .x {
    font-size: inherit !important;
  }

  /* Restore desktop header logo size */
  .logo {
    font-size: 26px !important;
    letter-spacing: 8px !important;
  }
}

/* ============================================================
   CABX — FIX MOBILE DROPDOWN INSIDE HAMBURGER
   ============================================================ */

@media (max-width: 900px) {

  /* Force dropdown to behave like a stacked menu */
  .dropdown {
    width: 100%;
    text-align: center;
  position: relative;
}


  /* Remove desktop hover behavior */
  .dropdown:hover .dropdown-menu {
    display: none !important;
  }

  /* Mobile dropdown menu */
  .dropdown-menu {
    display: none !important;
    position: relative !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: 100%;
  }

  /* When dropdown is active (clicked), show menu */
  .dropdown.active .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
  }

  /* Mobile dropdown links */
  .dropdown-menu a {
    padding: 10px 0 !important;
    color: #000 !important;
    font-size: 14px;
    letter-spacing: 3px;
  }
  .dropdown-menu {
  position: static !important;
}

}
/* ============================================================
   CABX — FIX DESKTOP DROPDOWN POSITION
   ============================================================ */

@media (min-width: 901px) {

  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute !important;
    top: 100%;
    left: 0;
  }

}
/* Make main ABOUT link look like other menu items */
.dropdown > a {
  letter-spacing: 3px;
  font-weight: 500;
  cursor: pointer;
}

/* Keep dropdown items normal */
.dropdown-menu a {
  letter-spacing: 2px;
  font-weight: 400;
}
.dropdown > a::after {
  content: " ▾";
  font-size: 12px;
}
@media (max-width: 900px){

  .site-footer{
    width:100%;
    padding:70px 20px 40px;
  }

  .footer-top{
    grid-template-columns:1fr;
    gap:40px;
    width:100%;
  }

}
@media (max-width:900px){

  .container{
    width:92%;
  }

}


/* =================================
   GLOBAL MOBILE RESPONSIVE FIX
================================= */

@media (max-width:900px){
  .page-section{
    padding:100px 20px 80px;
  }
}
.hero{
height:auto;
padding-top:120px;
}

.hero-logo{
font-size:clamp(60px,18vw,100px);
letter-spacing:10px;
}

/* CONTACT PAGE STACK */
.contact-container{
flex-direction:column;
gap:40px;
}

.contact-map iframe{
width:100%;
height:320px;
}



/* QUICK FACTS GRID */
.quick-facts-content ul{
grid-template-columns:1fr;
}

/* TABLE SCROLL */
.comparison-table{
overflow-x:auto;
}

/* NAV PADDING FIX */
.nav{
padding:0 25px;
}


@media (max-width:768px){

.contact-left h1{
font-size:32px;
}

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
padding-bottom:clamp(120px,15vh,220px);
}
}
/* =========================
   FOOTER MOBILE CENTER FIX
   ========================= */
@media (max-width: 900px) {
  .site-footer {
    padding: 40px 20px 30px !important;
  }

  /* Stack columns vertically and center content */
  .footer-top {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
    align-items: center !important;  /* center columns horizontally */
  }

  .footer-col {
    text-align: center !important;  /* center text inside each column */
    width: 100%;                    /* make each column full-width for spacing */
  }

  /* Footer Columns Headings */
  .footer-col h2 {
    font-size: 16px !important;
    letter-spacing: 1px !important;
    margin-bottom: 12px !important;
  }

  /* Footer Brand / Logo */
  .footer-logo,
  .footer-brand h2 {
    font-size: 18px !important;
    letter-spacing: 4px !important;
  }

  /* Footer tagline */
  .footer-tag {
    font-size: 12px !important;
    margin-top: 6px !important;
  }

  /* Footer bottom text & social icons */
  .footer-bottom {
    font-size: 12px !important;
    padding: 12px 0 !important;
    text-align: center !important;
  }

  .footer-bottom .social-links {
    gap: 10px !important;
    justify-content: center !important;
  }

  .footer-bottom i,
  .footer-bottom svg,
  .footer-bottom a {
    font-size: 14px !important;
  }

  /* Reduce spacing between paragraphs & list items */
  .site-footer .footer-col p,
  .site-footer .footer-col li {
    margin-bottom: 6px !important;
  }
}


@keyframes revealX {
  0% {
    opacity: 0;
    transform: translateX(40px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateX(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}



/* Mobile */
@media (max-width: 600px) {

  .weather-header h1 {
    font-size: 32px;
  }

  .weather-card {
    padding: 28px;
  }

  .weather-card iframe {
    height: 360px;
  }

}
/* ===== Affiliate Grid ===== */

.affiliate-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}
/* ===== Affiliate Cards ===== */

.affiliate-card{

background:#ffffff;

border-radius:12px;

padding:25px;

text-align:center;

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

transition:all .3s ease;

}

.affiliate-card:hover{

transform:translateY(-6px);

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

}

.affiliate-card img{

height:45px;

margin-bottom:15px;

}

.affiliate-card h3{

font-family:'BioRhyme', serif;

margin-bottom:10px;

}

.affiliate-card p{

font-size:14px;

color:#555;

margin-bottom:18px;

}
/* ===== Affiliate Buttons ===== */

.affiliate-btn{

display:inline-block;

background:#c8a24c;

padding:10px 20px;

border-radius:6px;

text-decoration:none;

font-size:14px;

transition:all .2s ease;

}

.affiliate-btn:hover{

background:#c8a24c; /* gold accent */

transform:scale(1.05);

}
/* ===== Featured Deals ===== */

.featured-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin:40px 0;

}

.featured-card{

background:#fff;

padding:30px;

border-radius:14px;

box-shadow:0 14px 35px rgba(0,0,0,0.1);

transition:.3s;

text-align:center;

}

.featured-card:hover{

transform:translateY(-8px);

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

}

.trusted-label{

display:inline-block;

background:#c8a24c;

color:#fff;

font-size:12px;

padding:4px 10px;

border-radius:4px;

margin-bottom:10px;

}
.shop-header{

text-align:center;

max-width:700px;

margin:auto;

}

.shop-header h1{

font-size:40px;

margin-bottom:10px;

}

.shop-header p{

color:#555;

line-height:1.6;

}

/* ================= DEALS PAGE BUTTONS ================= */
.deals-page .affiliate-btn {
  color: #ffffff;              /* White text */
  background-color: #0070f3;   /* Keep your current background */
  border: none;                 /* Remove border if any */
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Keep white text and original background on hover/focus/active */
.deals-page .affiliate-btn:hover,
.deals-page .affiliate-btn:focus,
.deals-page .affiliate-btn:active {
  color: #ffffff;
  background-color: #005bb5;   /* Slightly darker for hover effect */
  outline: none;               /* Remove browser outline */
  box-shadow: none;            /* Remove focus shadow */
  -webkit-tap-highlight-color: transparent; /* Remove mobile blue flash */
}
/* ============================================================
   CABX — LEGAL PAGE (RIDER GUIDE STYLE)
   ============================================================ */

.legal-section {
  max-width: 1000px;
  margin: 0 auto 140px;
  padding: 140px 20px 80px;
}

.legal-title {
  font-family: 'BioRhyme', serif;
  font-size: 46px;
  letter-spacing: 3px;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.legal-meta {
  text-align: center;
  color: #777;
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.legal-divider {
  border: none;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 40px auto 60px;
  width: 100%;
}

/* ===== CARD WRAPPER ===== */
.legal-section .container {
  background: #ffffff;
  padding: 60px 60px 70px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* ===== HEADINGS ===== */
.legal-section h2 {
  font-family: 'BioRhyme', serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: #000;
  margin-top: 50px;
  margin-bottom: 18px;
}

.legal-section h3 {
  font-family: 'BioRhyme', serif;
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #000;
}

/* ===== PARAGRAPHS ===== */
.legal-section p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 18px;
}

/* ===== LISTS ===== */
.legal-section ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

.legal-section li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .legal-section {
    padding: 120px 20px 60px;
  }

  .legal-section .container {
    padding: 40px 25px 50px;
  }

  .legal-title {
    font-size: 34px;
    letter-spacing: 2px;
  }

  .legal-section h2 {
    font-size: 22px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 15px;
  }
}
/* ================= NOTICE BLOCKS (Cleaning Fee & Lost Property) ================= */
.policy-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 20px 0 0;
  padding: 20px 26px;
  border-left: 4px solid #c6a85b;
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

.policy-notice.cleaning {
  background: #fff8f0;
}

.policy-notice.lost {
  background: #f7f7f7;
}

.policy-notice i {
  color: #c6a85b;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.policy-notice p {
  margin: 0;
}

.policy-notice strong {
  color: #111;
}

@media (max-width: 768px) {
  .policy-notice {
    padding: 16px 18px;
    gap: 12px;
    font-size: 13px;
  }

  .policy-notice i {
    font-size: 17px;
  }
}
/* ================= COPYRIGHT FIX ================= */
.copyright {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding: 12px 0 0;
  width: 100%;
  display: block;
}
/* ================= ABOUT CTA ================= */
.about-cta {
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta h2 {
  font-family: 'BioRhyme', serif;
  font-size: 32px;
  margin-bottom: 16px;
  color: #000;
}

.about-cta p {
  font-size: 15px;
  color: #777;
  margin-bottom: 10px;
  line-height: 1.7;
}

.about-cta .btn {
  margin-top: 24px;
}
/* ================= ABOUT GRID ================= */
.about-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  margin: 30px 0 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}

.about-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-card strong {
  font-size: 13px;
  font-weight: 600;
  color: #111;
}

.about-card span {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}
/* ================= FAQ ANSWER HEIGHT FIX ================= */
.faq-item input:checked ~ .faq-answer {
  max-height: 1200px;
}
/* ================= GUIDE BUTTON SPACING FIX ================= */
.guide-button-wrapper {
  text-align: center;
  margin: 40px 0 50px;
}

/* ================= SERVICE ALERT BANNER ================= */
.alert-banner {
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2200 100%);
  border-bottom: 2px solid #c8a24c;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.alert-banner.hidden {
  display: none;
}

.alert-banner-icon {
  color: #c8a24c;
  font-size: 17px;
  flex-shrink: 0;
}

.alert-banner-text {
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.4;
}

.alert-banner-text strong {
  color: #c8a24c;
  font-weight: 600;
}

.alert-banner-close {
  background: none;
  border: none;
  color: #888;
  font-size: 17px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 2px 6px;
  margin-left: 10px;
  line-height: 1;
  transition: color 0.2s;
}

.alert-banner-close:hover {
  color: #c8a24c;
}

@media (max-width: 768px) {
  .alert-banner {
    padding: 12px 16px;
    gap: 10px;
  }
  .alert-banner-text {
    font-size: 12.5px;
  }
}