:root{
    /* Warm charcoal base + emerald/teal + peach-coral accents */
    --bg-base:#12100f;
    --bg-panel:#1a1715;
    --bg-panel-2:#221d1a;
    --teal:#0f9d8f;
    --teal-light:#2fd0bd;
    --teal-deep:#0a5a52;
    --peach:#f2a26a;
    --peach-light:#f9c79a;
    --coral:#e86a52;
    --cream:#f6f0e8;
    --white:#ffffff;
    --muted:#b3a99f;
    --line:rgba(246,240,232,0.10);
    --green-check:#4bd48a;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter',sans-serif;
    background:var(--bg-base);
    color:var(--cream);
    overflow-x:hidden;
    width:100%;
    font-size:17px;
    line-height:1.5;
  }
  img{max-width:100%;display:block;}
  h1,h2,h3,h4,h5{font-family:'Bricolage Grotesque',sans-serif;letter-spacing:-0.01em;}

  .eyebrow{
    color:var(--peach);
    font-weight:600;
    letter-spacing:0.5px;
    font-size:15px;
    display:block;
    margin-bottom:12px;
  }
  .section-title{
    font-size:38px;
    font-weight:700;
    text-align:center;
    line-height:1.1;
  }
  .container{
    max-width:1300px;
    margin:0 auto;
    padding:0 40px;
  }
  .btn{
    border:none;
    cursor:pointer;
    font-family:'Bricolage Grotesque',sans-serif;
    font-weight:600;
    border-radius:10px;
    transition:transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease, border-color .2s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
  }
  .btn-teal{
    background:linear-gradient(135deg,var(--teal-light),var(--teal));
    color:#04302b;
    box-shadow:0 6px 18px rgba(15,157,143,0.30);
  }
  .btn-teal:hover{transform:translateY(-3px);box-shadow:0 12px 26px rgba(15,157,143,0.45);}
  .btn-peach{
    background:linear-gradient(135deg,var(--peach-light),var(--peach));
    color:#3d2413;
    box-shadow:0 6px 18px rgba(242,162,106,0.30);
  }
  .btn-peach:hover{transform:translateY(-3px);box-shadow:0 12px 26px rgba(242,162,106,0.45);}
  .btn-outline{
    background:transparent;
    color:var(--cream);
    border:1px solid rgba(246,240,232,0.28);
  }
  .btn-outline:hover{border-color:var(--peach);color:var(--peach-light);}

  /* ============ HERO ============ */
  .hero{
    position:relative;
    background:
      linear-gradient(180deg, rgba(18,16,15,0.55) 0%, rgba(18,16,15,0.78) 55%, var(--bg-base) 100%),
      radial-gradient(ellipse at 78% 15%, rgba(15,157,143,0.40), transparent 58%),
      url('https://images.unsplash.com/photo-1501466044931-62695578f5c3?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    padding:74px 0 44px;
    overflow:hidden;
  }
  .hero-inner{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    gap:24px;
    align-items:center;
    min-height:440px;
  }
  .hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--teal-light);
    font-weight:700;
    font-size:14px;
    letter-spacing:0.4px;
    padding:6px 14px;
    border:1px solid rgba(47,208,189,0.35);
    border-radius:100px;
    background:rgba(15,157,143,0.10);
    margin-bottom:20px;
    opacity:0;
    animation:fadeUp .8s ease forwards .1s;
  }
  .hero h1{
    font-size:52px;
    line-height:1.06;
    font-weight:800;
    margin-bottom:8px;
    opacity:0;
    animation:fadeUp .8s ease forwards .25s;
  }
  .hero h1 .brand{
    display:block;
    font-size:22px;
    font-weight:600;
    letter-spacing:0.3px;
    color:var(--peach);
    margin-bottom:10px;
  }
  .hero h1 .accent{color:var(--teal-light);}
  .hero p{
    color:var(--muted);
    max-width:520px;
    margin:20px 0 30px;
    line-height:1.65;
    font-size:16px;
    opacity:0;
    animation:fadeUp .8s ease forwards .4s;
  }
  .hero-feats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    opacity:0;
    animation:fadeUp .8s ease forwards .55s;
  }
  .hero-feat{display:flex;align-items:center;gap:10px;}
  .hero-feat .ic{
    width:36px;height:36px;flex:0 0 36px;
    border-radius:10px;
    background:rgba(242,162,106,0.14);
    display:flex;align-items:center;justify-content:center;
    color:var(--peach);
    font-size:16px;
  }
  .hero-feat .tx{font-size:12px;color:var(--muted);line-height:1.35;font-weight:600;}
  .hero-visual{position:relative;opacity:0;animation:fadeIn 1.1s ease forwards .3s;}
  .hero-visual img{
    width:100%;
    border-radius:16px;
    filter:drop-shadow(0 30px 40px rgba(0,0,0,0.55));
    transition:transform .6s ease;
  }
  .hero-visual:hover img{transform:translateY(-4px);}

  @keyframes fadeUp{from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);}}
  @keyframes fadeIn{from{opacity:0;}to{opacity:1;}}

  /* ============ CONTACT / QUOTE BAR ============ */
  .booking-wrap{margin-top:-6px;position:relative;z-index:5;}
  .booking-card{
    background:linear-gradient(180deg,var(--bg-panel-2),var(--bg-panel));
    border:1px solid var(--line);
    border-radius:18px;
    padding:28px 32px 22px;
    box-shadow:0 25px 60px rgba(0,0,0,0.5);
  }
  .booking-title{
    text-align:center;
    font-size:20px;
    font-weight:700;
    font-family:'Bricolage Grotesque',sans-serif;
    margin-bottom:6px;
    color:var(--cream);
  }
  .booking-title b{color:var(--teal-light);}
  .booking-note{text-align:center;font-size:14px;color:var(--muted);margin-bottom:22px;}
  .booking-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:16px;
  }
  .field{display:flex;flex-direction:column;}
  .field.full{grid-column:1 / -1;}
  .field label{
    font-size:13px;
    color:var(--muted);
    margin-bottom:8px;
    font-weight:600;
  }
  .field input,.field textarea,.field select{
    width:100%;
    background:#17130f;
    border:1px solid var(--line);
    border-radius:10px;
    padding:13px 15px;
    color:var(--cream);
    font-size:15px;
    font-family:'Inter',sans-serif;
    transition:border-color .2s ease, background .2s ease;
  }
  .field textarea{resize:vertical;min-height:88px;}
  .field input::placeholder,.field textarea::placeholder{color:#6f665d;}
  .field input:focus,.field textarea:focus,.field select:focus{
    outline:none;border-color:var(--teal-light);background:#1e1813;
  }
  .field input[type="date"]::-webkit-calendar-picker-indicator,
  .field input[type="time"]::-webkit-calendar-picker-indicator{filter:invert(0.7);cursor:pointer;}
  .booking-submit{margin-top:20px;display:flex;flex-direction:column;align-items:center;gap:14px;}
  .booking-submit .btn{padding:14px 40px;font-size:15px;}
  .booking-strip{
    display:flex;justify-content:center;gap:28px;flex-wrap:wrap;
    font-size:13px;color:var(--muted);font-weight:600;
  }
  .booking-strip span{display:flex;align-items:center;gap:7px;}
  .booking-strip span::before{content:"";width:5px;height:5px;background:var(--peach);border-radius:50%;}
  .form-msg{font-size:14px;color:var(--teal-light);min-height:18px;text-align:center;}

  /* ============ FLEET ============ */
  .fleet-section{padding:82px 0 60px;}
  .fleet-section .eyebrow,.fleet-section .section-title{text-align:center;}
  .fleet-section .section-title{margin-bottom:44px;}

  .bus-row{
    display:grid;
    grid-template-columns:1fr 1fr 1.15fr;
    border:1px solid var(--line);
    border-radius:16px;
    overflow:hidden;
    margin-bottom:20px;
    background:var(--bg-panel);
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  }
  .bus-row:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(15,157,143,0.20);
    border-color:rgba(47,208,189,0.40);
  }
  .bus-photo{position:relative;overflow:hidden;min-height:300px;background:var(--bg-panel);}
  .bus-photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .6s ease;}
  .bus-row:hover .bus-photo img{transform:scale(1.08);}
  .bus-interior{position:relative;overflow:hidden;min-height:300px;background:#000;}
  .bus-interior iframe{position:absolute;inset:0;width:100%;height:100%;border:0;display:block;}

  .bus-info{padding:22px 26px;display:flex;flex-direction:column;justify-content:center;gap:8px;}
  .bus-info .top-row{display:flex;justify-content:space-between;align-items:flex-start;}
  .bus-info h3{font-size:22px;font-weight:700;}
  .bus-info .pax{color:var(--muted);font-size:13px;margin-top:3px;font-weight:600;}
  .bus-price{text-align:right;}
  .bus-price .amt{font-size:26px;font-weight:800;color:var(--peach-light);font-family:'Bricolage Grotesque',sans-serif;}
  .bus-price .per{font-size:10px;color:var(--muted);letter-spacing:0.4px;text-transform:uppercase;}
  .bus-feats{display:flex;flex-direction:column;gap:9px;margin:8px 0;}
  .bus-feats li{list-style:none;font-size:14px;display:flex;align-items:flex-start;gap:9px;color:#ddd4ca;font-weight:500;}
  .bus-feats li .tick{
    width:17px;height:17px;border-radius:50%;
    background:var(--green-check);color:#04331c;
    font-size:9px;font-weight:900;
    display:flex;align-items:center;justify-content:center;flex:0 0 17px;margin-top:1px;
  }
  .bus-feats li .sub{color:#8f867c;font-weight:400;}
  .bus-actions{display:flex;gap:10px;margin-top:8px;}
  .bus-actions .btn{padding:11px 22px;font-size:13px;}

  /* WHY / ADVANTAGE BANNER */
  .why-banner{
    margin:64px 0 0;
    background:linear-gradient(120deg, rgba(15,157,143,0.16), rgba(26,23,21,0.6)), radial-gradient(circle at 82% 18%, rgba(47,208,189,0.18), transparent 60%);
    border:1px solid rgba(47,208,189,0.28);
    border-radius:18px;
    padding:38px 24px;
  }
  .why-banner .eyebrow{text-align:center;}
  .why-banner .banner-title{text-align:center;font-size:24px;font-weight:700;margin-bottom:26px;}
  .why-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:22px;}
  .why-item{text-align:center;padding:0 10px;}
  .why-icon{
    width:54px;height:54px;margin:0 auto 14px;border-radius:14px;
    background:rgba(242,162,106,0.14);border:1px solid rgba(242,162,106,0.38);
    display:flex;align-items:center;justify-content:center;font-size:22px;color:var(--peach);
    transition:background .3s ease, transform .3s ease, color .3s ease;
  }
  .why-item:hover .why-icon{background:var(--peach);color:#3d2413;transform:scale(1.08);}
  .why-item h4{font-size:16px;margin-bottom:8px;font-weight:700;}
  .why-item p{font-size:14px;color:var(--muted);line-height:1.6;}

  /* ============ EXPERIENCE / FEATURES ============ */
  .features-section{
    background:var(--bg-panel);
    padding:74px 0;
    text-align:center;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .features-section .section-title{margin-bottom:44px;}
  .features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
  .feature-item{
    text-align:left;
    background:var(--bg-panel-2);
    border:1px solid var(--line);
    border-radius:14px;
    padding:26px 24px;
    transition:transform .3s ease, border-color .3s ease;
  }
  .feature-item:hover{transform:translateY(-6px);border-color:rgba(47,208,189,0.35);}
  .feature-icon{
    width:52px;height:52px;margin-bottom:18px;border-radius:12px;
    display:flex;align-items:center;justify-content:center;
    background:rgba(15,157,143,0.15);color:var(--teal-light);font-size:22px;
  }
  .feature-item h4{font-size:16px;font-weight:700;margin-bottom:10px;}
  .feature-item p{font-size:14px;color:var(--muted);line-height:1.6;}

  /* ============ SERVICES ============ */
  .services-section{background:var(--bg-base);padding:78px 0;text-align:center;}
  .services-section .section-title{margin-bottom:40px;}
  .services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:38px;text-align:left;}
  .service-card{
    border-radius:14px;overflow:hidden;background:var(--bg-panel);border:1px solid var(--line);
    display:flex;flex-direction:column;
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  }
  .service-card:hover{transform:translateY(-8px);box-shadow:0 18px 34px rgba(15,157,143,0.22);border-color:rgba(47,208,189,0.40);}
  .service-card .simg{height:190px;overflow:hidden;}
  .service-card .simg img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
  .service-card:hover .simg img{transform:scale(1.09);}
  .service-card .slabel{padding:18px 20px 6px;font-size:17px;font-weight:700;font-family:'Bricolage Grotesque',sans-serif;color:var(--cream);}
  .service-card .sdesc{padding:0 20px 18px;font-size:14px;line-height:1.6;color:var(--muted);flex:1;}
  .service-card .scta{padding:0 20px 20px;}
  .service-card .scta .btn{width:100%;padding:11px 16px;font-size:13px;}

  /* ============ REVIEWS ============ */
  .reviews-section{background:var(--bg-panel);padding:66px 0;text-align:center;border-top:1px solid var(--line);}
  .reviews-title{font-size:30px;font-weight:700;margin-bottom:8px;font-family:'Bricolage Grotesque',sans-serif;}
  .reviews-sub{color:var(--muted);font-size:15px;margin-bottom:34px;}
  .reviews-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
  .review-card{
    background:var(--bg-panel-2);border:1px solid var(--line);border-radius:14px;
    padding:24px 22px;text-align:left;
    transition:transform .3s ease, border-color .3s ease;
  }
  .review-card:hover{transform:translateY(-6px);border-color:rgba(47,208,189,0.35);}
  .stars{color:var(--peach);letter-spacing:2px;font-size:15px;margin-bottom:12px;}
  .review-card p{font-size:15px;line-height:1.65;color:#ddd4ca;margin-bottom:16px;}
  .review-card .who{font-size:14px;font-weight:700;color:var(--cream);font-family:'Bricolage Grotesque',sans-serif;}

  /* ============ STEPS ============ */
  .steps-section{background:var(--bg-base);padding:88px 0 96px;text-align:center;border-top:1px solid var(--line);}
  .steps-section .eyebrow{text-align:center;}
  .steps-section .section-title{margin-bottom:8px;}
  .steps-sub{color:var(--muted);font-size:15px;max-width:560px;margin:0 auto 58px;line-height:1.6;}
  .steps-track{position:relative;display:grid;grid-template-columns:repeat(6,1fr);gap:22px;max-width:1200px;margin:0 auto;}
  .steps-track::before{
    content:"";position:absolute;top:30px;left:8%;right:8%;height:2px;
    background:linear-gradient(90deg, transparent, var(--teal-light) 12%, var(--peach) 88%, transparent);
    opacity:0.45;z-index:0;
  }
  .step-item{position:relative;z-index:1;padding:0 6px;transition:transform .3s ease;}
  .step-item:hover{transform:translateY(-6px);}
  .step-num{
    width:60px;height:60px;border-radius:16px;
    background:linear-gradient(135deg,var(--teal-light),var(--teal));
    display:flex;align-items:center;justify-content:center;margin:0 auto 18px;
    font-weight:800;font-size:20px;font-family:'Bricolage Grotesque',sans-serif;color:#04302b;
    box-shadow:0 0 0 5px var(--bg-base), 0 8px 20px rgba(15,157,143,0.45);
    transition:all .35s ease;
  }
  .step-item:hover .step-num{
    background:linear-gradient(135deg,var(--peach-light),var(--peach));color:#3d2413;
    box-shadow:0 0 0 5px var(--bg-base), 0 10px 26px rgba(242,162,106,0.5);
  }
  .step-item h5{font-size:15px;font-weight:700;margin-bottom:10px;}
  .step-item p{font-size:14px;color:var(--muted);line-height:1.6;max-width:190px;margin:0 auto;}

  /* ============ FAQ ============ */
  .faq-section{background:var(--bg-panel);padding:88px 0;text-align:center;border-top:1px solid var(--line);}
  .faq-section .section-title{margin-bottom:10px;}
  .faq-sub{color:var(--muted);font-size:15px;max-width:560px;margin:0 auto 44px;line-height:1.6;}
  .faq-wrap{max-width:820px;margin:0 auto;text-align:left;display:flex;flex-direction:column;gap:14px;}
  .faq-item{
    background:var(--bg-panel-2);border-radius:14px;overflow:hidden;border:1px solid var(--line);
    transition:box-shadow .3s ease, border-color .3s ease;
  }
  .faq-item.open{box-shadow:0 14px 34px rgba(15,157,143,0.20);border-color:rgba(47,208,189,0.40);}
  .faq-q{
    display:flex;justify-content:space-between;align-items:center;padding:20px 24px;cursor:pointer;
    color:var(--cream);font-size:16px;font-weight:600;font-family:'Bricolage Grotesque',sans-serif;transition:background .2s ease;
  }
  .faq-q:hover{background:rgba(246,240,232,0.03);}
  .faq-q .plus{
    width:28px;height:28px;flex:0 0 28px;border-radius:50%;
    background:rgba(47,208,189,0.16);display:flex;align-items:center;justify-content:center;
    font-size:16px;color:var(--teal-light);transition:transform .3s ease, background .3s ease, color .3s ease;
  }
  .faq-item.open .faq-q .plus{transform:rotate(45deg);background:var(--teal-light);color:#04302b;}
  .faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease, padding .35s ease;padding:0 24px;color:var(--muted);font-size:15px;line-height:1.7;}
  .faq-item.open .faq-a{max-height:240px;padding:0 24px 22px;}

  /* ============ SERVICE AREAS ============ */
  .areas-section{background:var(--bg-base);padding:88px 0;text-align:center;border-top:1px solid var(--line);}
  .areas-section .eyebrow{text-align:center;}
  .areas-section .section-title{margin-bottom:44px;}
  .serve-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;max-width:1200px;margin:0 auto;}
  .serve-card{
    position:relative;border-radius:16px;overflow:hidden;height:220px;display:flex;align-items:flex-end;
    box-shadow:0 14px 34px rgba(0,0,0,0.4);transition:transform .4s ease, box-shadow .4s ease;
  }
  .serve-card:hover{transform:translateY(-8px);box-shadow:0 20px 44px rgba(15,157,143,0.3);}
  .serve-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .6s ease;}
  .serve-card:hover img{transform:scale(1.10);}
  .serve-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 30%,rgba(0,0,0,0.85));}
  .serve-card .pin{
    position:absolute;top:16px;left:16px;z-index:2;width:38px;height:38px;border-radius:11px;
    background:rgba(242,162,106,0.16);border:1px solid rgba(242,162,106,0.42);
    display:flex;align-items:center;justify-content:center;font-size:16px;color:var(--peach);
  }
  .serve-card .stx{position:relative;z-index:2;padding:20px;text-align:left;}
  .serve-card .stx b{font-size:19px;display:block;font-family:'Bricolage Grotesque',sans-serif;font-weight:700;}
  .serve-card .stx span{font-size:12px;color:#d9d6cc;}

  /* ============ CTA ============ */
  .cta-banner{
    position:relative;margin:0 auto 64px;max-width:1300px;border-radius:20px;overflow:hidden;
    background:
      linear-gradient(90deg, rgba(12,10,9,0.94) 30%, rgba(12,10,9,0.55) 75%),
      radial-gradient(circle at 90% 30%, rgba(15,157,143,0.35), transparent 60%),
      url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?q=80&w=1600&auto=format&fit=crop') right center/cover no-repeat;
    padding:52px 50px;display:flex;align-items:center;justify-content:space-between;gap:24px;
  }
  .cta-left h2{font-size:34px;font-weight:800;margin-bottom:12px;}
  .cta-left p{color:var(--muted);font-size:16px;margin-bottom:24px;max-width:440px;}
  .cta-btns{display:flex;gap:14px;flex-wrap:wrap;}
  .cta-btns .btn{padding:15px 28px;font-size:15px;}

  /* Reveal-on-scroll is a progressive enhancement. Content is visible by
     default so it ALWAYS shows even if JavaScript is blocked, deferred, cached
     away, or errors out. The hidden/animated state applies only after JS adds
     the "js-reveal" class to <html>. */
  .reveal{opacity:1;transform:none;transition:opacity .7s ease, transform .7s ease;}
  .js-reveal .reveal{opacity:0;transform:translateY(30px);}
  .js-reveal .reveal.show{opacity:1;transform:translateY(0);}

  /* ============ RESPONSIVE ============ */
  @media(max-width:1100px){
    .hero-inner{grid-template-columns:1fr;text-align:center;}
    .hero-feats{grid-template-columns:repeat(2,1fr);}
    .hero p{margin-left:auto;margin-right:auto;}
    .hero-eyebrow{margin-left:auto;margin-right:auto;}
    .booking-grid{grid-template-columns:1fr 1fr;}
    .bus-row{grid-template-columns:1fr 1fr;}
    .bus-info{grid-column:span 2;}
    .bus-photo,.bus-interior{min-height:0;aspect-ratio:16/10;}
    .why-grid{grid-template-columns:repeat(3,1fr);}
    .features-grid{grid-template-columns:repeat(2,1fr);}
    .services-grid{grid-template-columns:repeat(2,1fr);}
    .reviews-grid{grid-template-columns:repeat(2,1fr);}
    .steps-track{grid-template-columns:repeat(3,1fr);gap:38px 20px;}
    .steps-track::before{display:none;}
    .serve-grid{grid-template-columns:repeat(2,1fr);}
    .cta-banner{flex-direction:column;text-align:center;padding:42px 26px;}
    .cta-left p{margin-left:auto;margin-right:auto;}
    .cta-btns{justify-content:center;}
  }
  @media(max-width:640px){
    .container{padding:0 18px;}
    .hero h1{font-size:34px;}
    .hero h1 .brand{font-size:18px;}
    .hero-feats{grid-template-columns:1fr 1fr;}
    .booking-grid{grid-template-columns:1fr;}
    .bus-row{grid-template-columns:1fr;}
    .bus-info{grid-column:span 1;}
    .bus-photo,.bus-interior{aspect-ratio:16/9;}
    .why-grid{grid-template-columns:1fr 1fr;}
    .features-grid{grid-template-columns:1fr;}
    .services-grid{grid-template-columns:1fr;}
    .reviews-grid{grid-template-columns:1fr;}
    .steps-track{grid-template-columns:repeat(2,1fr);}
    .serve-grid{grid-template-columns:1fr;}
  }


/* ============================================================
   HEADER (dashboard-managed) - added for WP theme
   ============================================================ */
.site-topbar{background:#0d0b0a;border-bottom:1px solid var(--line);font-size:13px;color:var(--muted);}
.site-topbar .container{display:flex;align-items:center;justify-content:flex-end;gap:24px;padding-top:8px;padding-bottom:8px;flex-wrap:wrap;}
.site-topbar a{color:var(--muted);text-decoration:none;display:inline-flex;align-items:center;gap:7px;transition:color .2s ease;font-weight:600;}
.site-topbar a:hover{color:var(--peach-light);}
.site-topbar .tb-ic{color:var(--peach);}

.site-header{position:sticky;top:0;z-index:100;background:rgba(13,11,10,0.92);backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid var(--line);transition:background .3s ease, box-shadow .3s ease;}
.site-header.scrolled{background:rgba(13,11,10,0.98);box-shadow:0 8px 30px rgba(0,0,0,0.5);}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;padding-top:14px;padding-bottom:14px;}
.site-branding{display:flex;align-items:center;gap:12px;}
.site-branding a{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--cream);}
.site-branding img{max-height:52px;width:auto;}
.site-branding .site-title{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;font-size:22px;letter-spacing:-0.01em;}
.site-branding .site-title .accent{color:var(--peach);}

.main-nav{display:flex;align-items:center;gap:30px;}
.main-nav ul{list-style:none;display:flex;align-items:center;gap:26px;margin:0;padding:0;}
.main-nav li{position:relative;}
.main-nav a{color:var(--cream);text-decoration:none;font-weight:600;font-size:15px;font-family:'Inter',sans-serif;padding:6px 0;position:relative;transition:color .2s ease;}
.main-nav a::after{content:"";position:absolute;left:0;bottom:0;height:2px;width:0;background:linear-gradient(90deg,var(--teal-light),var(--peach));transition:width .3s ease;}
.main-nav a:hover,.main-nav .current-menu-item > a{color:var(--peach-light);}
.main-nav a:hover::after,.main-nav .current-menu-item > a::after{width:100%;}
.main-nav ul ul{position:absolute;top:130%;left:0;flex-direction:column;gap:0;min-width:210px;background:var(--bg-panel-2);border:1px solid var(--line);border-radius:12px;padding:8px;opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .25s ease, transform .25s ease, visibility .25s;box-shadow:0 18px 40px rgba(0,0,0,0.5);z-index:50;}
.main-nav li:hover > ul{opacity:1;visibility:visible;transform:translateY(0);}
.main-nav ul ul li{width:100%;}
.main-nav ul ul a{display:block;padding:9px 12px;border-radius:8px;font-size:14px;}
.main-nav ul ul a:hover{background:rgba(47,208,189,0.10);}
.main-nav ul ul a::after{display:none;}

.header-cta{display:flex;align-items:center;gap:14px;}
.header-cta .btn{padding:11px 22px;font-size:14px;text-decoration:none;}

.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px;z-index:101;}
.nav-toggle span{display:block;width:26px;height:2px;background:var(--cream);border-radius:2px;transition:transform .3s ease, opacity .3s ease;}
.nav-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.active span:nth-child(2){opacity:0;}
.nav-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ============================================================
   FOOTER (dashboard-managed)
   ============================================================ */
.footer-cta{position:relative;margin:0 auto;max-width:1300px;border-radius:20px;overflow:hidden;background:linear-gradient(90deg, rgba(12,10,9,0.94) 30%, rgba(12,10,9,0.55) 75%),radial-gradient(circle at 90% 30%, rgba(15,157,143,0.35), transparent 60%),url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?q=80&w=1600&auto=format&fit=crop') right center/cover no-repeat;padding:52px 50px;display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:56px;}
.footer-cta h2{font-size:32px;font-weight:800;margin-bottom:12px;}
.footer-cta p{color:var(--muted);font-size:16px;margin-bottom:24px;max-width:440px;}
.footer-cta .cta-btns{display:flex;gap:14px;flex-wrap:wrap;}
.footer-cta .btn{padding:15px 28px;font-size:15px;text-decoration:none;}

.site-footer{background:#0b0908;border-top:1px solid var(--line);padding:56px 0 0;}
.footer-widgets{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:44px;border-bottom:1px solid var(--line);}
.footer-col h4{font-family:'Bricolage Grotesque',sans-serif;font-size:16px;font-weight:700;margin-bottom:18px;color:var(--cream);letter-spacing:0.3px;}
.footer-col p{color:var(--muted);font-size:14px;line-height:1.7;}
.footer-brand img{max-height:56px;margin-bottom:16px;}
.footer-brand .site-title{font-family:'Bricolage Grotesque',sans-serif;font-weight:800;font-size:22px;margin-bottom:14px;}
.footer-brand .site-title .accent{color:var(--peach);}
.footer-menu ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:11px;}
.footer-menu a{color:var(--muted);text-decoration:none;font-size:14px;font-weight:500;transition:color .2s ease, padding-left .2s ease;}
.footer-menu a:hover{color:var(--peach-light);padding-left:5px;}
.footer-contact li{list-style:none;display:flex;align-items:flex-start;gap:10px;margin-bottom:13px;color:var(--muted);font-size:14px;}
.footer-contact li .fic{color:var(--peach);flex:0 0 auto;margin-top:2px;}
.footer-contact a{color:var(--muted);text-decoration:none;transition:color .2s ease;}
.footer-contact a:hover{color:var(--peach-light);}
.footer-social{display:flex;gap:12px;margin-top:18px;}
.footer-social a{width:40px;height:40px;border-radius:11px;display:flex;align-items:center;justify-content:center;background:rgba(242,162,106,0.12);border:1px solid rgba(242,162,106,0.30);color:var(--peach);transition:background .25s ease, transform .25s ease, color .25s ease;}
.footer-social a:hover{background:var(--peach);color:#3d2413;transform:translateY(-3px);}
.footer-social svg{width:18px;height:18px;fill:currentColor;}
.site-bottom{padding:22px 0;text-align:center;color:var(--muted);font-size:13px;}
.site-bottom a{color:var(--peach-light);text-decoration:none;}
.footer-widget-area .widget{margin-bottom:20px;}
.footer-widget-area .widget-title{font-family:'Bricolage Grotesque',sans-serif;font-size:16px;margin-bottom:14px;color:var(--cream);}

@media(max-width:1100px){
  .footer-widgets{grid-template-columns:1fr 1fr;gap:32px;}
  .footer-cta{flex-direction:column;text-align:center;padding:42px 26px;}
  .footer-cta p{margin-left:auto;margin-right:auto;}
  .footer-cta .cta-btns{justify-content:center;}
}
@media(max-width:900px){
  .nav-toggle{display:flex;}
  .main-nav{position:fixed;top:0;right:-100%;height:100vh;width:min(320px,84vw);background:var(--bg-panel-2);flex-direction:column;align-items:flex-start;padding:90px 28px 28px;gap:0;transition:right .35s ease;z-index:99;border-left:1px solid var(--line);overflow-y:auto;}
  .main-nav.open{right:0;box-shadow:-20px 0 60px rgba(0,0,0,0.6);}
  .main-nav ul{flex-direction:column;align-items:flex-start;gap:0;width:100%;}
  .main-nav li{width:100%;border-bottom:1px solid var(--line);}
  .main-nav a{display:block;padding:15px 0;width:100%;}
  .main-nav ul ul{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;background:transparent;border:none;padding:0 0 8px 14px;}
  .header-cta .btn{display:none;}
  .nav-backdrop{position:fixed;inset:0;background:rgba(0,0,0,0.6);opacity:0;visibility:hidden;transition:opacity .35s ease, visibility .35s ease;z-index:98;}
  .nav-backdrop.show{opacity:1;visibility:visible;}
}
@media(max-width:640px){
  .site-topbar .container{justify-content:center;gap:16px;}
  .footer-widgets{grid-template-columns:1fr;}
}

/* Accessibility helper */
.screen-reader-text{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
.screen-reader-text:focus{
  background:var(--peach);color:#3d2413;left:10px;top:10px;width:auto;height:auto;
  padding:10px 18px;border-radius:8px;clip:auto;z-index:999;font-weight:700;
}

/* ============================================================
   CONTACT & QUOTE PAGES
   ============================================================ */
.page-hero{
  position:relative;
  padding:70px 0 80px;
  text-align:center;
  background:
    linear-gradient(180deg, rgba(18,16,15,0.55) 0%, rgba(18,16,15,0.86) 60%, var(--bg-base) 100%),
    radial-gradient(ellipse at 78% 12%, rgba(15,157,143,0.35), transparent 58%),
    url('https://images.unsplash.com/photo-1501466044931-62695578f5c3?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}
.page-hero .hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;color:var(--teal-light);font-weight:700;
  font-size:14px;letter-spacing:0.4px;padding:6px 14px;border:1px solid rgba(47,208,189,0.35);
  border-radius:100px;background:rgba(15,157,143,0.10);margin-bottom:18px;
}
.page-hero h1{font-size:48px;line-height:1.08;font-weight:800;margin-bottom:14px;}
.page-hero h1 .accent{color:var(--teal-light);}
.page-hero p{color:var(--muted);max-width:620px;margin:0 auto;font-size:16px;line-height:1.65;}

/* form select styled to match inputs */
.field select{
  width:100%;background:#17130f;border:1px solid var(--line);border-radius:10px;
  padding:13px 15px;color:var(--cream);font-size:15px;font-family:'Inter',sans-serif;
  transition:border-color .2s ease, background .2s ease;
  appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b3a99f' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 15px center;padding-right:38px;cursor:pointer;
}
.field select:focus{outline:none;border-color:var(--teal-light);background-color:#1e1813;}
.field select option{background:#17130f;color:var(--cream);}

/* WP form plugin embed wrapper */
.wp-form-embed{margin-top:8px;}
.wp-form-embed input[type="text"],
.wp-form-embed input[type="email"],
.wp-form-embed input[type="tel"],
.wp-form-embed input[type="date"],
.wp-form-embed input[type="time"],
.wp-form-embed input[type="number"],
.wp-form-embed textarea,
.wp-form-embed select{
  width:100%;background:#17130f;border:1px solid var(--line);border-radius:10px;
  padding:13px 15px;color:var(--cream);font-size:15px;font-family:'Inter',sans-serif;margin-bottom:14px;
}
.wp-form-embed textarea{min-height:120px;resize:vertical;}
.wp-form-embed input:focus,.wp-form-embed textarea:focus,.wp-form-embed select:focus{outline:none;border-color:var(--teal-light);}
.wp-form-embed label{color:var(--muted);font-size:14px;font-weight:600;display:block;margin-bottom:6px;}
.wp-form-embed input[type="submit"],
.wp-form-embed button[type="submit"]{
  background:linear-gradient(135deg,var(--teal-light),var(--teal));color:#04302b;border:none;cursor:pointer;
  font-family:'Bricolage Grotesque',sans-serif;font-weight:600;border-radius:10px;padding:14px 40px;font-size:15px;
  box-shadow:0 6px 18px rgba(15,157,143,0.30);transition:transform .2s ease, box-shadow .2s ease;
}
.wp-form-embed input[type="submit"]:hover,
.wp-form-embed button[type="submit"]:hover{transform:translateY(-3px);box-shadow:0 12px 26px rgba(15,157,143,0.45);}

/* CONTACT info cards */
.contact-info-section{background:var(--bg-base);padding:64px 0 28px;}
.contact-info-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.contact-info-card{
  background:var(--bg-panel);border:1px solid var(--line);border-radius:16px;padding:30px 22px;
  text-align:center;text-decoration:none;color:var(--cream);display:block;
  transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.contact-info-card:hover{transform:translateY(-6px);border-color:rgba(47,208,189,0.40);box-shadow:0 18px 34px rgba(15,157,143,0.18);}
.contact-info-card .ci-icon{
  width:56px;height:56px;margin:0 auto 16px;border-radius:14px;
  background:rgba(242,162,106,0.14);border:1px solid rgba(242,162,106,0.38);
  display:flex;align-items:center;justify-content:center;font-size:24px;color:var(--peach);
}
.contact-info-card h4{font-family:'Bricolage Grotesque',sans-serif;font-size:16px;font-weight:700;margin-bottom:8px;}
.contact-info-card p{color:var(--muted);font-size:14px;line-height:1.5;}

.contact-social{
  margin-top:24px;padding-top:22px;border-top:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;
}
.contact-social > span{color:var(--muted);font-size:14px;font-weight:600;}

/* QUOTE alt contact */
.alt-contact{background:var(--bg-base);padding:20px 0 80px;text-align:center;}
.alt-contact-lead{color:var(--muted);font-size:16px;margin-bottom:24px;}
.alt-contact-row{display:flex;justify-content:center;gap:20px;flex-wrap:wrap;}
.alt-contact-card{
  display:flex;align-items:center;gap:14px;background:var(--bg-panel);border:1px solid var(--line);
  border-radius:14px;padding:18px 26px;text-decoration:none;color:var(--cream);min-width:250px;
  transition:transform .3s ease, border-color .3s ease;
}
.alt-contact-card:hover{transform:translateY(-4px);border-color:rgba(47,208,189,0.40);}
.alt-contact-card .ac-ic{
  width:46px;height:46px;flex:0 0 46px;border-radius:12px;
  background:rgba(15,157,143,0.15);color:var(--teal-light);
  display:flex;align-items:center;justify-content:center;font-size:20px;
}
.alt-contact-card .ac-tx{display:flex;flex-direction:column;text-align:left;}
.alt-contact-card .ac-tx b{font-family:'Bricolage Grotesque',sans-serif;font-size:16px;}
.alt-contact-card .ac-tx span{color:var(--muted);font-size:14px;}

@media(max-width:1100px){
  .contact-info-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:640px){
  .page-hero h1{font-size:34px;}
  .contact-info-grid{grid-template-columns:1fr;}
  .alt-contact-card{width:100%;}
}

/* ============================================================
   DMV PARTY BUS FORMS PLUGIN — blend the plugin's form panel
   into the theme's booking-card when embedded via template.
   ============================================================ */
.dmvpb-embed .dmvpb-wrap{
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  padding:0 !important;
  max-width:100% !important;
  box-shadow:none !important;
}
/* The theme's booking-card already shows a title/subtitle, so hide the
   plugin's duplicate heading inside the embed. */
.dmvpb-embed .dmvpb-wrap > h2,
.dmvpb-embed .dmvpb-wrap > .dmvpb-sub{ display:none !important; }

/* Re-skin the plugin fields to the theme's teal/peach palette. */
.dmvpb-embed .dmvpb-field label{
  color:var(--muted) !important;
  text-transform:none !important;
  letter-spacing:0 !important;
  font-size:13px !important;
  font-weight:600 !important;
}
.dmvpb-embed .dmvpb-field input,
.dmvpb-embed .dmvpb-field select,
.dmvpb-embed .dmvpb-field textarea{
  background-color:#17130f !important;
  border:1px solid var(--line) !important;
  border-radius:10px !important;
  color:var(--cream) !important;
  font-size:15px !important;
}
.dmvpb-embed .dmvpb-field input:focus,
.dmvpb-embed .dmvpb-field select:focus,
.dmvpb-embed .dmvpb-field textarea:focus{
  border-color:var(--teal-light) !important;
  background-color:#1e1813 !important;
}
.dmvpb-embed .dmvpb-btn{
  background:linear-gradient(135deg,var(--teal-light),var(--teal)) !important;
  color:#04302b !important;
  box-shadow:0 6px 18px rgba(15,157,143,0.30) !important;
  border-radius:10px !important;
}
.dmvpb-embed .dmvpb-btn:hover{ box-shadow:0 12px 26px rgba(15,157,143,0.45) !important; }
.dmvpb-embed .dmvpb-note{ color:var(--muted) !important; }
