/* ===================================================================
   M.B. Motors — Stylesheet
   Design language: "Service Bay" — dashboard/odometer inspired.
   Display type is a bold condensed face (stamped-metal feel), body
   copy is a clean grotesque, and data (stats, prices, tags) is set
   in mono to read like a workshop instrument readout.
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root{
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-ink: #0B1B3A;
  --orange: #1D4ED8;
  --orange-dark: #1E40AF;

  --bg: #FFFFFF;
  --bg-soft: #F5F7FB;
  --bg-soft-2: #EEF2FA;
  --ink: #0F172A;
  --muted: #5B6472;
  --line: #E4E9F2;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);

  --container: 1240px;
  --nav-h: 76px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }
input, select, textarea{ font-family: inherit; font-size: 1rem; }
h1,h2,h3,h4{ margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: 0.2px; line-height: 1.02; }
p{ margin: 0; }
:focus-visible{ outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

.container{ max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section{ padding: 96px 0; }
.section-soft{ background: var(--bg-soft); }
.section-surface{ background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%); }

.feature-panel{
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center;
  padding: 34px; border-radius: 24px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.feature-panel h2{ font-size: clamp(1.7rem, 2.3vw, 2.2rem); color: var(--blue-ink); margin-top: 8px; }
.feature-panel p{ margin-top: 12px; color: var(--muted); line-height: 1.7; }
.feature-list{ display: grid; gap: 12px; }
.feature-item{
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 16px;
  background: var(--bg-soft); border: 1px solid var(--line);
}
.feature-badge{
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--orange)); color: #fff; font-family: var(--font-mono); font-weight: 700;
}
.feature-item strong{ display: block; font-size: 0.95rem; color: var(--ink); }
.feature-item p{ margin-top: 4px; font-size: 0.88rem; line-height: 1.55; }

.page-hero-card{
  padding: 28px; border-radius: 22px; background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(29,78,216,0.03));
  border: 1px solid rgba(37,99,235,0.16);
}
.page-hero-card h3{ font-size: 1.2rem; margin-bottom: 10px; }
.page-hero-card ul{ display: grid; gap: 10px; margin-top: 14px; }
.page-hero-card li{ display: flex; align-items: center; gap: 10px; color: var(--muted); }
.page-hero-card li::before{ content: "•"; color: var(--orange); font-size: 1.2rem; }

.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue);
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.18);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

.section-head{ max-width: 680px; margin-bottom: 52px; }
.section-head.center{ margin-inline: auto; text-align: center; }
.section-title{ font-size: clamp(2rem, 3.6vw, 2.9rem); color: var(--blue-ink); }
.section-title .accent{ color: var(--orange); }
.section-sub{ margin-top: 14px; font-size: 1.05rem; color: var(--muted); line-height: 1.65; }

.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 0.98rem;
  border: 2px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg{ width: 18px; height: 18px; }
.btn-primary{ background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(29,78,216,0.32); }
.btn-primary:hover{ background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(29,78,216,0.4); }
.btn-outline{ background: transparent; color: var(--blue-ink); border-color: var(--line); }
.btn-outline:hover{ border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-ghost-light{ background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.btn-ghost-light:hover{ background: rgba(255,255,255,0.22); }
.btn-block{ width: 100%; }
.btn-sm{ padding: 10px 18px; font-size: 0.85rem; }

/* ---------- Reveal animation ---------- */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in-view{ opacity: 1; transform: translateY(0); }
.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Preloader ---------- */
#preloader{
  position: fixed; inset: 0; z-index: 999; background: var(--blue-ink);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 18px;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide{ opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark{ width: 64px; height: 64px; position: relative; }
.loader-mark svg{ width: 100%; height: 100%; }
.loader-ring{ fill: none; stroke: rgba(255,255,255,0.15); stroke-width: 4; }
.loader-arc{ fill: none; stroke: var(--orange); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 150; stroke-dashoffset: 40; transform-origin: center; animation: spin 1s linear infinite; }
@keyframes spin{ to{ transform: rotate(360deg); } }
.loader-text{ font-family: var(--font-mono); color: #cfd8ef; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- Nav ---------- */
.site-nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h); display: flex; align-items: center;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.site-nav.scrolled{ box-shadow: 0 8px 24px rgba(15,23,42,0.08); border-color: var(--line); }
.nav-inner{ display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand{ display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--blue-ink); }
.brand-mark{ width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(145deg, var(--blue), var(--blue-dark)); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(37,99,235,0.35); }
.brand-mark svg{ width: 22px; height: 22px; color: #fff; }
.brand span{ color: var(--orange); }

.nav-links{ display: flex; align-items: center; gap: 4px; }
.nav-links a{
  padding: 10px 16px; font-weight: 600; font-size: 0.94rem; color: var(--ink);
  border-radius: 999px; transition: background .25s ease, color .25s ease;
  position: relative;
}
.nav-links a:hover{ background: var(--bg-soft-2); color: var(--blue); }
.nav-links a.active{ background: var(--bg-soft-2); color: var(--blue); }

.nav-actions{ display: flex; align-items: center; gap: 14px; }
.nav-call{ display: flex; align-items: center; gap: 8px; }
.nav-call svg{ width: 18px; height: 18px; }

.hamburger{ display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.hamburger span{ width: 20px; height: 2px; background: var(--ink); margin-inline: auto; transition: transform .3s ease, opacity .3s ease; }
.hamburger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position: relative; padding-top: calc(var(--nav-h) + 64px); padding-bottom: 0;
  background: radial-gradient(1100px 520px at 82% -10%, rgba(37,99,235,0.10), transparent 60%),
              radial-gradient(700px 420px at 10% 10%, rgba(29,78,216,0.08), transparent 55%),
              var(--bg);
  overflow: hidden;
}
.hero-grid{ display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-copy .eyebrow{ margin-bottom: 22px; }
.hero-title{ font-size: clamp(2.5rem, 5vw, 4.1rem); color: var(--blue-ink); }
.hero-title em{ font-style: normal; color: var(--orange); }
.hero-sub{ margin-top: 22px; font-size: 1.12rem; color: var(--muted); max-width: 520px; line-height: 1.7; }
.hero-actions{ display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta{ display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.hero-meta .stars{ display: flex; gap: 3px; color: var(--orange); }
.hero-meta .stars svg{ width: 16px; height: 16px; }
.hero-meta small{ font-family: var(--font-mono); color: var(--muted); font-size: 0.8rem; }

.hero-art{ position: relative; }
.gauge-wrap{ position: relative; width: 100%; max-width: 480px; margin-inline: auto; }
.gauge-wrap svg{ width: 100%; height: auto; }
.gauge-needle{ transform-origin: 250px 250px; animation: needle-settle 1.6s cubic-bezier(.2,.9,.25,1) both; animation-delay: .5s; }
@keyframes needle-settle{
  0%{ transform: rotate(-92deg); }
  60%{ transform: rotate(46deg); }
  100%{ transform: rotate(40deg); }
}
.gauge-readout{ font-family: var(--font-mono); font-weight: 700; }

/* ---------- Odometer stats strip ---------- */
.odometer-strip{ background: var(--blue-ink); margin-top: 72px; position: relative; }
.odometer-strip::before{
  content: ""; position: absolute; inset: 0; background:
  repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 64px);
  pointer-events: none;
}
.odo-grid{ display: grid; grid-template-columns: repeat(4, 1fr); }
.odo-item{ padding: 40px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.odo-item:last-child{ border-right: none; }
.odo-num{
  font-family: var(--font-mono); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff; display: inline-flex; align-items: baseline; gap: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  padding: 6px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
}
.odo-num .suffix{ color: var(--orange); font-size: 0.6em; }
.odo-label{ margin-top: 12px; font-size: 0.82rem; letter-spacing: 0.04em; color: #aab6d6; }

/* ---------- Services ---------- */
.services-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-tag{
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px 24px; box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.service-tag::before{
  content: ""; position: absolute; top: -11px; left: 26px; width: 22px; height: 22px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(15,23,42,0.08);
}
.service-tag::after{
  content: ""; position: absolute; top: -5px; left: 34px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}
.service-tag:hover{ transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(37,99,235,0.25); }
.service-ic{ width: 52px; height: 52px; border-radius: 12px; background: rgba(37,99,235,0.08); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-ic svg{ width: 26px; height: 26px; }
.service-tag h3{ font-family: var(--font-body); font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.service-tag p{ margin-top: 8px; font-size: 0.9rem; color: var(--muted); line-height: 1.55; min-height: 62px; }
.service-foot{ margin-top: 18px; display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px dashed var(--line); }
.service-link{ font-size: 0.85rem; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; }
.service-link svg{ width: 14px; height: 14px; transition: transform .2s ease; }
.service-link:hover svg{ transform: translateX(3px); }

/* ---------- Booking form ---------- */
.booking-wrap{ display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0; background: #fff; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.booking-side{ background: linear-gradient(165deg, var(--blue-ink), #14265a 60%, var(--blue-dark)); padding: 52px 44px; color: #fff; position: relative; overflow: hidden; }
.booking-side::before{ content:""; position:absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(29,78,216,0.25), transparent 70%); top: -120px; right: -120px; }
.booking-side h3{ font-size: 1.9rem; position: relative; }
.booking-side p{ margin-top: 14px; color: #c4cee7; line-height: 1.7; position: relative; }
.booking-list{ margin-top: 32px; display: flex; flex-direction: column; gap: 18px; position: relative; }
.booking-list li{ display: flex; align-items: center; gap: 12px; font-size: 0.92rem; }
.booking-list .ic{ width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.booking-list .ic svg{ width: 17px; height: 17px; color: var(--orange); }
.booking-form{ padding: 52px 44px; }
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field{ display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{ font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.form-field label .req{ color: var(--orange); }
.form-field input, .form-field select, .form-field textarea{
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px 16px;
  background: var(--bg-soft); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,0.12); outline: none;
}
.form-field textarea{ resize: vertical; min-height: 96px; }
.field-error{ font-size: 0.76rem; color: #DC2626; min-height: 16px; font-weight: 600; }
.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea{ border-color: #DC2626; background: #FEF2F2; }
.form-actions{ display: flex; gap: 14px; margin-top: 6px; flex-wrap: wrap; }
.form-note{ margin-top: 16px; font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.form-note svg{ width: 15px; height: 15px; color: var(--blue); flex-shrink: 0; }

/* ---------- Why choose us ---------- */
.why-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card{ padding: 32px 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.why-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-ic{ width: 50px; height: 50px; border-radius: 12px; background: rgba(37,99,235,0.1); color: var(--blue-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-ic svg{ width: 24px; height: 24px; }
.why-card h3{ font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; }
.why-card p{ margin-top: 8px; font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ---------- Reviews ---------- */
.reviews-section{ overflow: hidden; }
.reviews-track-wrap{ position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.reviews-track{ display: flex; gap: 22px; width: max-content; animation: scroll-left 42s linear infinite; }
.reviews-track:hover{ animation-play-state: paused; }
@keyframes scroll-left{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
.review-card{ width: 340px; flex-shrink: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.review-top{ display: flex; align-items: center; gap: 12px; }
.review-avatar{ width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.review-name{ font-weight: 700; font-size: 0.95rem; }
.review-service{ font-size: 0.76rem; color: var(--muted); }
.review-stars{ display: flex; gap: 2px; color: var(--orange); margin-top: 12px; }
.review-stars svg{ width: 14px; height: 14px; }
.review-text{ margin-top: 10px; font-size: 0.92rem; color: var(--ink); line-height: 1.6; }

/* ---------- About ---------- */
.about-grid{ display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-art{ position: relative; }
.about-art svg{ width: 100%; height: auto; border-radius: 24px; box-shadow: var(--shadow-lg); }
.about-badge{ position: absolute; bottom: -22px; right: -22px; background: var(--orange); color: #fff; border-radius: 18px; padding: 18px 22px; box-shadow: var(--shadow-md); text-align: center; }
.about-badge strong{ display: block; font-family: var(--font-mono); font-size: 1.6rem; }
.about-badge span{ font-size: 0.72rem; letter-spacing: 0.04em; }
.about-copy p{ font-size: 1.03rem; color: var(--muted); line-height: 1.75; }
.about-achieve{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.achieve-item{ padding: 20px; border-radius: var(--radius-sm); background: var(--bg-soft); border: 1px solid var(--line); }
.achieve-item strong{ display: block; font-family: var(--font-mono); font-size: 1.7rem; color: var(--blue); }
.achieve-item span{ font-size: 0.82rem; color: var(--muted); }

/* ---------- Location ---------- */
.location-grid{ display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.location-map{ position: relative; min-height: 420px; background: var(--bg-soft-2); }
.location-map iframe{ width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(0.9); }
.location-info{ background: #fff; padding: 48px 40px; display: flex; flex-direction: column; gap: 26px; }
.loc-row{ display: flex; gap: 14px; align-items: flex-start; }
.loc-row .ic{ width: 40px; height: 40px; border-radius: 10px; background: rgba(37,99,235,0.08); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loc-row .ic svg{ width: 20px; height: 20px; }
.loc-row h4{ font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; }
.loc-row p{ margin-top: 4px; font-size: 0.88rem; color: var(--muted); line-height: 1.55; }
.loc-row p a{ color: var(--blue); font-weight: 600; transition: color .2s ease; }
.loc-row p a:hover{ color: var(--orange); text-decoration: underline; }
.loc-actions{ display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }

/* ---------- Contact cards ---------- */
.contact-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.contact-card{ background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.contact-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-ic{ width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.contact-ic svg{ width: 24px; height: 24px; }
.contact-card h3{ font-family: var(--font-body); font-weight: 700; font-size: 1rem; }
.contact-card .val{ margin-top: 6px; font-family: var(--font-mono); font-size: 0.88rem; color: var(--muted); }
.contact-card .btn{ margin-top: 18px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--blue-ink); color: #cfd8ef; padding-top: 72px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand{ color: #fff; }
.footer-brand p{ margin-top: 16px; font-size: 0.9rem; line-height: 1.7; color: #aab6d6; max-width: 300px; }
.footer-social{ display: flex; gap: 10px; margin-top: 22px; }
.footer-social a{ width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background .2s ease, transform .2s ease; }
.footer-social a:hover{ background: var(--orange); transform: translateY(-3px); }
.footer-social svg{ width: 17px; height: 17px; }
.footer-col h4{ font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col ul{ display: flex; flex-direction: column; gap: 13px; }
.footer-col a{ font-size: 0.9rem; color: #aab6d6; transition: color .2s ease; }
.footer-col a:hover{ color: var(--orange); }
.footer-hours li{ display: flex; justify-content: space-between; font-size: 0.88rem; color: #aab6d6; }
.footer-hours strong{ color: #e6ebf7; font-weight: 600; }
.footer-bottom{ padding: 26px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: #8b98bd; }
.footer-bottom a{ color: #8b98bd; }
.footer-bottom a:hover{ color: #fff; }

/* ---------- Floating buttons ---------- */
.floating-stack{ position: fixed; right: 22px; bottom: 22px; z-index: 400; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab{ width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease, visibility .25s ease; color: #fff; }
.fab svg{ width: 24px; height: 24px; }
.fab:hover{ transform: scale(1.08) translateY(-2px); }
.fab-whatsapp{ background: #25D366; }
.fab-call{ background: var(--blue); animation: pulse-ring 2.6s ease-in-out infinite; }
@keyframes pulse-ring{ 0%,100%{ box-shadow: var(--shadow-md), 0 0 0 0 rgba(37,99,235,0.4);} 50%{ box-shadow: var(--shadow-md), 0 0 0 10px rgba(37,99,235,0);} }
.fab-top{ background: var(--blue-ink); opacity: 0; visibility: hidden; transform: translateY(10px); width: 46px; height: 46px; }
.fab-top.show{ opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .odo-grid{ grid-template-columns: repeat(2, 1fr); }
  .odo-item:nth-child(2){ border-right: none; }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 940px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; max-width: 380px; margin-inline: auto; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-art{ order: -1; max-width: 460px; margin-inline: auto; }
  .booking-wrap{ grid-template-columns: 1fr; }
  .location-grid{ grid-template-columns: 1fr; }
  .feature-panel{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .nav-links, .nav-call-text{ display: none; }
  .hamburger{ display: flex; }
  .nav-links{
    position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; flex-direction: column;
    align-items: stretch; padding: 12px; gap: 4px; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all .3s ease;
  }
  .nav-links.open{ display: flex; transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a{ padding: 14px 16px; border-radius: 10px; }
}
@media (max-width: 720px){
  .section{ padding: 64px 0; }
  .services-grid, .why-grid, .contact-grid{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .about-achieve{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .odo-grid{ grid-template-columns: 1fr 1fr; }
  .booking-side, .booking-form{ padding: 36px 26px; }
  .location-info{ padding: 34px 26px; }
}
