/* ============================================================
   SHIVA LUXURY CABS — style.css
   All styles centralised here. index.html has zero inline CSS.
   ============================================================ */

/* ── TOKENS ── */
:root {
  --gold:        #f5a623;
  --gold2:       #ffd166;
  --gold3:       #d4881a;
  --navy:        #0a1628;
  --navy2:       #112240;
  --navy3:       #1a3a5c;
  --white:       #ffffff;
  --offwhite:    #f7f8fc;
  --gray:        #eef0f6;
  --text:        #1a1a2e;
  --muted:       #5a5a7a;
  --green:       #25D366;
  --red:         #e63946;
  --radius:      10px;
  --shadow:      0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 32px rgba(0,0,0,0.14);
  --transition:  0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: "Open Sans", sans-serif;
  background: var(--offwhite);
  color: var(--text);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: "Montserrat", sans-serif; }
a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; display: block; }
ul   { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 4.5rem 1.5rem; }
.sec-gray  { background: var(--gray); }
.sec-white { background: var(--white); }
.sec-dark  { background: var(--navy); }

.sec-head           { text-align: center; margin-bottom: 3rem; }
.sec-head h2        { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 0.7rem; }
.sec-dark .sec-head h2 { color: var(--white); }
.sec-head p         { color: var(--muted); font-size: 0.95rem; margin-top: 0.8rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.gold-bar           { width: 60px; height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--gold2)); margin: 0 auto; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 2000;
  background: var(--navy);
  box-shadow: 0 3px 24px rgba(0,0,0,0.5);
}
.hdr {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.0rem 1.5rem;
  position: relative;
}
.logo-wrap        { display: flex; align-items: center; gap: 0.65rem; }
.logo-wrap img    { height: 56px; width: auto; object-fit: contain; border-radius: 6px; }
.brand strong     { display: block; font-family: "Montserrat", sans-serif; font-size: 1.25rem; color: var(--gold); line-height: 1.2; }
.brand span       { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 2px; }

nav { display: flex; align-items: center; gap: 0.05rem; flex-wrap: wrap; }
nav a {
  padding: 0.42rem 0.78rem; font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.82); border-radius: 5px; transition: all var(--transition); white-space: nowrap;
}
nav a:hover            { color: var(--gold); background: rgba(245,166,35,0.1); }
.nav-cta               { background: linear-gradient(135deg, var(--gold), var(--gold3)) !important; color: var(--navy) !important; font-weight: 800 !important; box-shadow: 0 3px 14px rgba(245,166,35,0.45); border-radius: 6px !important; }
.nav-cta:hover         { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,166,35,0.6) !important; }

.hamburger             { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span        { display: block; width: 26px; height: 2.5px; background: var(--gold); border-radius: 2px; transition: var(--transition); }

/* ── HERO SLIDER ── */
.slider-wrap { position: relative; overflow: hidden; height: 92vh; min-height: 560px; }

.slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 7% 100px;
  opacity: 0;
  transition: opacity 1.8s ease;
  pointer-events: none;
  overflow: hidden;
}
.slide.active { opacity: 1; pointer-events: auto; }

.slide picture {
  position: absolute; inset: -4%;
  width: 108%; height: 108%;
  display: block; z-index: 0;
}
.slide-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease-in-out;
  will-change: transform;
}
.slide.active .slide-bg-img { transform: scale(1); }

.slide-overlay { position: absolute; inset: 0; z-index: 1; }

.slide-1 .slide-overlay { background: linear-gradient(110deg,rgba(5,15,30,0.82) 30%,rgba(5,15,30,0.25) 100%); }
.slide-2 .slide-overlay { background: linear-gradient(110deg,rgba(100,15,25,0.85) 0%,rgba(5,15,30,0.45) 100%); }
.slide-3 .slide-overlay { background: linear-gradient(110deg,rgba(0,55,110,0.85) 0%,rgba(5,15,30,0.45) 100%); }
.slide-4 .slide-overlay { background: linear-gradient(110deg,rgba(55,10,100,0.85) 0%,rgba(5,15,30,0.45) 100%); }
.slide-5 .slide-overlay { background: linear-gradient(110deg,rgba(5,60,25,0.85) 0%,rgba(5,15,30,0.45) 100%); }
.slide-6 .slide-overlay { background: linear-gradient(110deg,rgba(5,15,30,0.78) 30%,rgba(5,15,30,0.2) 100%); }
.slide-7 .slide-overlay { background: linear-gradient(110deg,rgba(120,65,0,0.82) 0%,rgba(5,15,30,0.45) 100%); }

.slide-content { position: relative; z-index: 2; }

.slide-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15); border: 1.5px solid var(--gold);
  color: var(--gold); font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1.2rem;
  font-family: "Montserrat", sans-serif; font-weight: 700;
}
.slide-title {
  font-size: clamp(2rem,5.5vw,3.8rem); font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 0.7rem; text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.slide-title em { color: var(--gold); font-style: normal; }
.slide-sub {
  font-size: clamp(0.95rem,2.2vw,1.2rem); color: rgba(255,255,255,0.85);
  margin-bottom: 2rem; max-width: 540px; line-height: 1.65;
}
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-slide-call {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--navy); padding: 0.9rem 2rem; border-radius: 8px;
  font-weight: 800; font-size: 0.95rem; font-family: "Montserrat", sans-serif;
  box-shadow: 0 5px 22px rgba(245,166,35,0.5); transition: all var(--transition);
}
.btn-slide-call:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(245,166,35,0.65); }

.btn-slide-wa {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--green); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 8px;
  font-weight: 800; font-size: 0.95rem; font-family: "Montserrat", sans-serif;
  box-shadow: 0 5px 22px rgba(37,211,102,0.4); transition: all var(--transition);
}
.btn-slide-wa:hover { background: #1fbd5a; transform: translateY(-3px); }

/* Call bar */
.callbar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy3) 50%, var(--navy) 100%);
  border-top: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  padding: 0.85rem 2rem;
}
.cb-label { color: var(--white); font-size: clamp(1rem,2.8vw,1.7rem); font-weight: 900; font-family: "Montserrat", sans-serif; letter-spacing: 1px; }
.cb-badge {
  width: 56px; height: 56px; border-radius: 50%; border: 2.5px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.48rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.3; flex-shrink: 0;
}
.cb-badge strong { font-size: 0.95rem; display: block; }
.cb-num { color: var(--gold); font-size: clamp(1.1rem,3vw,1.9rem); font-weight: 900; font-family: "Montserrat", sans-serif; letter-spacing: 1.5px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--navy2); display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1rem 2rem; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85); border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border: none; }
.t-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ti1 { background: rgba(245,166,35,0.2); }
.ti2 { background: rgba(0,180,216,0.2); }
.ti3 { background: rgba(44,198,83,0.2); }

/* ── TAB SWITCHER ── */
.tab-bar {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 2.5rem;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); max-width: 500px; margin-left: auto; margin-right: auto;
  border: 2px solid #e5e5e5;
}
.tab-btn {
  flex: 1; padding: 0.85rem 1rem;
  font-family: "Montserrat", sans-serif; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  cursor: pointer; border: none; background: transparent; color: var(--muted);
  transition: all var(--transition);
}
.tab-btn.active { background: linear-gradient(135deg, var(--gold), var(--gold3)); color: var(--navy); }
.tab-btn:hover:not(.active) { background: rgba(245,166,35,0.08); color: var(--navy); }

.tab-panel         { display: none; }
.tab-panel.active  { display: block; }

/* ── FLEET CARDS ── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.5rem;
}
.fleet-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
  background: #ffffff;
  border: 1.5px solid #eee;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.car-img-wrap {
  background: #ffffff;
  padding: 1rem 1rem 0; text-align: center; position: relative;
  overflow: hidden; height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.car-img-wrap img {
  height: 140px; width: 100%; object-fit: contain;
  object-position: center bottom;
  margin: 0 auto;
  transition: transform var(--transition);
}
.fleet-card:hover .car-img-wrap img { transform: scale(1.05); }

.car-badge {
  position: absolute; top: 10px; right: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--navy); font-size: 0.62rem; font-weight: 800;
  padding: 0.25rem 0.6rem; border-radius: 20px;
  font-family: "Montserrat", sans-serif; letter-spacing: 0.5px;
}
.car-body  { padding: 1rem 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; background: #ffffff; }
.car-name  { font-family: "Montserrat", sans-serif; font-size: 0.88rem; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 0.5rem; }
.car-price { text-align: center; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.car-price strong { color: var(--gold3); font-size: 1.15rem; }
.car-meta  { display: flex; align-items: center; justify-content: center; gap: 1rem; font-size: 0.72rem; color: var(--muted); margin-bottom: 0.9rem; flex-wrap: wrap; }
.car-note  { text-align: center; font-size: 0.7rem; color: #aaa; margin-bottom: 0.9rem; }

.car-btns  { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: auto; }
.btn-book-form {
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--navy); text-align: center; padding: 0.62rem 0.4rem;
  border-radius: 6px; font-weight: 800; font-size: 0.76rem;
  font-family: "Montserrat", sans-serif; cursor: pointer; border: none;
  transition: all var(--transition); letter-spacing: 0.3px;
}
.btn-book-form:hover { background: linear-gradient(135deg, var(--gold2), var(--gold)); transform: translateY(-1px); }
.btn-wa-direct {
  background: #111; color: var(--white); text-align: center;
  padding: 0.62rem 0.4rem; border-radius: 6px;
  font-weight: 800; font-size: 0.76rem;
  font-family: "Montserrat", sans-serif; display: flex; align-items: center; justify-content: center; gap: 0.3rem;
  transition: all var(--transition); letter-spacing: 0.3px;
}
.btn-wa-direct:hover { background: var(--green); transform: translateY(-1px); }

/* ── BOOKING MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,22,40,0.85); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white); border-radius: 16px; width: 100%; max-width: 520px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4); overflow: hidden;
  animation: modalIn 0.3s ease both;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-head {
  background: linear-gradient(135deg, var(--navy), var(--navy3));
  padding: 1.4rem 1.8rem; display: flex; align-items: center; justify-content: space-between;
}
.modal-head h3    { color: var(--white); font-size: 1.1rem; font-weight: 800; }
.modal-head .car-selected { color: var(--gold); font-size: 0.78rem; margin-top: 0.2rem; font-weight: 600; }
.modal-close {
  background: rgba(255,255,255,0.15); border: none; color: var(--white);
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.3); }

.modal-body  { padding: 1.5rem 1.8rem; }
.mf-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mf-group    { margin-bottom: 1rem; }
.mf-group label {
  display: block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--navy); margin-bottom: 0.35rem; font-family: "Montserrat", sans-serif;
}
.mf-group input,
.mf-group select,
.mf-group textarea {
  width: 100%; padding: 0.72rem 0.95rem;
  border: 1.5px solid #dde0ea; border-radius: 7px;
  font-size: 0.9rem; font-family: "Open Sans", sans-serif;
  outline: none; transition: border-color var(--transition); background: #fafbff; color: var(--text);
}
.mf-group input:focus,
.mf-group select:focus,
.mf-group textarea:focus { border-color: var(--gold); background: var(--white); }
.mf-group textarea { resize: vertical; min-height: 70px; }
.mf-err { color: var(--red); font-size: 0.72rem; display: block; margin-top: 0.2rem; }

.modal-submit {
  width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--navy); border: none; border-radius: 8px;
  padding: 0.95rem; font-size: 1rem; font-weight: 800;
  font-family: "Montserrat", sans-serif; cursor: pointer;
  transition: all var(--transition); letter-spacing: 0.3px;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.modal-submit:hover         { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(245,166,35,0.45); }
.modal-submit:disabled      { opacity: 0.6; cursor: not-allowed; transform: none; }
.modal-note    { text-align: center; font-size: 0.73rem; color: var(--muted); margin-top: 0.7rem; }
.modal-wa-alt  { text-align: center; margin-top: 0.8rem; }
.modal-wa-alt span  { font-size: 0.72rem; color: #aaa; }
.modal-wa-btn  {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.5rem; background: var(--green); color: var(--white);
  padding: 0.5rem 1.2rem; border-radius: 6px;
  font-size: 0.8rem; font-weight: 700; font-family: "Montserrat", sans-serif;
  transition: background var(--transition);
}
.modal-wa-btn:hover { background: #1fbd5a; }
.modal-success { display: none; }
.modal-success.show { display: block; text-align: center; padding: 0.8rem 0; }
.modal-success-icon   { font-size: 3rem; margin-bottom: 0.6rem; }
.modal-success-title  { font-size: 1.05rem; font-weight: 800; color: #2e7d32; margin-bottom: 0.5rem; font-family: "Montserrat", sans-serif; }
.modal-success-msg    { font-size: 0.85rem; color: #555; line-height: 1.7; }

/* ── ROUTES ── */
.routes-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.route-card  { position: relative; border-radius: 12px; overflow: hidden; height: 210px; cursor: pointer; box-shadow: var(--shadow); }
.route-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.route-card:hover img { transform: scale(1.07); }
.route-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,22,40,0.85) 0%,transparent 55%); }
.route-label   { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.2rem; }
.route-label h4  { color: var(--white); font-size: 0.95rem; font-weight: 800; margin-bottom: 0.2rem; }
.route-label span { color: var(--gold); font-size: 0.82rem; font-weight: 700; }
.route-cta {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem;
  background: var(--gold); color: var(--navy); font-size: 0.7rem; font-weight: 800;
  padding: 0.3rem 0.8rem; border-radius: 20px; font-family: "Montserrat", sans-serif;
  transition: background var(--transition);
}
.route-card:hover .route-cta { background: var(--gold2); }

/* ── WHY SECTION ── */
.why-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.why-points { display: flex; flex-direction: column; gap: 1.2rem; }
.why-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border-radius: var(--radius); padding: 1.2rem;
  box-shadow: var(--shadow); border-left: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-item:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.why-icon-wrap {
  width: 46px; height: 46px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.why-item h4 { font-size: 0.9rem; font-weight: 800; color: var(--navy); margin-bottom: 0.3rem; }
.why-item p  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.why-img img { width: 100%; border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,0.15); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.5rem; }
.testi-card {
  background: var(--white); border-radius: 12px; padding: 1.8rem;
  box-shadow: var(--shadow); border-top: 4px solid var(--gold);
  transition: transform var(--transition);
}
.testi-card:hover { transform: translateY(-4px); }
.stars       { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.testi-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; font-style: italic; }
.testi-author { margin-top: 1rem; font-weight: 700; color: var(--navy); font-size: 0.85rem; }
.testi-loc    { color: #aaa; font-size: 0.75rem; }

/* ── FAQ ── */
details {
  background: var(--white); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; box-shadow: var(--shadow); border-left: 4px solid var(--gold);
  margin-bottom: 1rem;
}
details summary {
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  color: var(--navy); font-family: "Montserrat", sans-serif;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; margin-left: 1rem; transition: transform var(--transition); }
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 0.8rem; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.faq-list { max-width: 800px; margin: 0 auto; }

/* ── COVERAGE PILLS ── */
.coverage-wrap { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; margin-top: 2rem; }
.area-pill {
  background: var(--white); border: 1.5px solid rgba(245,166,35,0.4);
  border-radius: 100px; padding: 0.45rem 1.1rem;
  font-size: 0.83rem; color: var(--navy); font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all var(--transition);
}
.area-pill:hover { background: var(--gold); border-color: var(--gold); }
.coverage-note { text-align: center; margin-top: 1.5rem; color: var(--muted); font-size: 0.9rem; }

/* ── FOOTER ── */
footer { background: #000; }
.footer-main {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  padding: 3rem 2rem; border-bottom: 1px solid #222;
}
.footer-contact h3 { color: var(--white); font-family: "Montserrat", sans-serif; font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; text-align: center; margin-bottom: 1.5rem; }
.footer-contact p  { font-size: 0.85rem; line-height: 2.1; text-align: center; color: #bbb; }
.footer-contact a  { color: var(--gold); }
.footer-contact a:hover { text-decoration: underline; }
.fg                { color: var(--gold); font-weight: 700; }
.footer-right      { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; }
.footer-logo img   { height: 70px; object-fit: contain; border-radius: 8px; }
.footer-nav        { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem 1rem; }
.footer-nav a      { color: #bbb; font-size: 0.8rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold); }
.footer-nav span   { color: #444; }
.footer-copy       { color: #666; font-size: 0.78rem; text-align: center; }

.seo-section  { border-top: 1px solid #1a1a1a; padding: 2.5rem 2rem; }
.seo-section h4 { color: var(--white); font-family: "Montserrat", sans-serif; font-size: 0.82rem; text-align: center; margin-bottom: 1.5rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.seo-links    { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 0.3rem 1.5rem; }
.seo-links a  { color: #666; font-size: 0.75rem; line-height: 2.1; transition: color var(--transition); }
.seo-links a:hover { color: var(--gold); }

/* ── FLOATERS ── */
.float-wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 3000;
  background: var(--green); color: var(--white); width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  animation: waPulse 2.2s infinite;
}
.float-call {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 3000;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--navy); width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 4px 18px rgba(245,166,35,0.5);
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.5); }
  50%     { box-shadow: 0 4px 30px rgba(37,211,102,0.75); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { display: none; }
  nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); padding: 1rem 1.5rem; gap: 0.5rem;
    border-top: 2px solid var(--gold); z-index: 1999;
  }
  .hamburger     { display: flex; }
  .why-grid      { grid-template-columns: 1fr; }
  .why-img       { display: none; }
  .footer-main   { grid-template-columns: 1fr; }
  .seo-links     { grid-template-columns: 1fr 1fr; }
  .mf-row        { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {

  /* Trust bar */
  .trust-item { padding: 0.75rem 1rem; font-size: 0.68rem; }

  /* Footer SEO links */
  .seo-links { grid-template-columns: 1fr; }

  /* Slider */
  .slide   { padding: 0 5% 110px; }
  .callbar { gap: 0.8rem; }
  .cb-badge { width: 46px; height: 46px; }

  /* Section & container spacing */
  .section     { padding: 2.5rem 0.75rem; }
  .container   { padding: 0 0.75rem; }
  .sec-head    { margin-bottom: 1.5rem; }
  .sec-head h2 { font-size: 1.4rem; }

  /* Tab bar */
  .tab-bar { max-width: 100%; border-radius: 6px; }
  .tab-btn { padding: 0.7rem 0.5rem; font-size: 0.72rem; letter-spacing: 0.5px; }

  /* Fleet grid */
  .fleet-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Fleet card — force one solid white card, no splits */
  .fleet-card {
    background: #ffffff !important;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  /* Car image area */
  .car-img-wrap {
    background: #ffffff !important;
    height: 160px;
    padding: 0.75rem 0.75rem 0;
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid #eeeeee;
  }
  .car-img-wrap img {
    height: 120px;
    object-position: center bottom;
  }

  /* Card info area */
  .car-body {
    background: #ffffff !important;
    padding: 0.75rem 1rem 1rem;
    margin: 0;
    border-radius: 0;
  }

  /* Card text */
  .car-name  { font-size: 0.82rem; }
  .car-price { font-size: 0.9rem; }

  /* Card buttons */
  .btn-book-form,
  .btn-wa-direct { font-size: 0.78rem; padding: 0.65rem 0.4rem; }

  /* Floating buttons */
  .float-wa,
  .float-call { width: 48px; height: 48px; font-size: 1.2rem; bottom: 1rem; }
  .float-wa   { right: 1rem; }
  .float-call { left: 1rem; }
}

@media (max-width: 380px) {
  .section    { padding: 2rem 0.6rem; }
  .container  { padding: 0 0.6rem; }
  .tab-btn    { font-size: 0.65rem; padding: 0.65rem 0.3rem; }
  .car-btns   { gap: 0.4rem; }
  .fleet-card,
  .car-img-wrap,
  .car-body   { background: #ffffff !important; }
}