/* =================================================================
   PRIME AUTO CARE — style.css
   Premium luxury auto garage, Dubai.
   Identity: "diagnostic instrument cluster" — condensed motorsport
   display type, monospace data readouts, brushed silver dividers,
   one confident brake-caliper red.
================================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Surfaces */
  --ink:        #0A0A0C;   /* deep near-black base */
  --charcoal:   #141519;   /* primary panels */
  --charcoal-2: #1B1D23;   /* raised panels / cards */
  --charcoal-3: #232631;   /* hovers / borders-light */

  /* Metal + text */
  --white:      #F6F7F9;
  --silver:     #B7BCC6;   /* secondary text */
  --steel:      #80858F;   /* muted captions */
  --hairline:   rgba(255,255,255,0.08);
  --hairline-2: rgba(255,255,255,0.14);

  /* Accent — brake-caliper red */
  --red:        #E11D2A;
  --red-deep:   #B0121D;
  --red-glow:   rgba(225,29,42,0.45);

  /* Brushed silver gradient */
  --metal: linear-gradient(180deg,#FFFFFF 0%,#C9CDD4 45%,#8E939C 55%,#EDEFF2 100%);

  /* Type */
  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Spacing / layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 120px);
  --radius: 14px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: .2s;
  --t-med: .45s;
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--silver);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

/* ---------- ACCESSIBILITY ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--red); color: #fff; padding: 10px 16px;
  border-radius: 8px; z-index: 2000; transition: top var(--t-fast);
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }

/* ---------- TYPOGRAPHY ATOMS ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--silver);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.eyebrow-dot {
  width: 8px; height: 8px; background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  display: inline-block; flex: none;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: .005em;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  text-transform: uppercase;
}
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-intro { color: var(--steel); margin-top: 14px; font-size: 1.02rem; }
.lead { color: var(--silver); font-size: 1.05rem; margin-bottom: 26px; }
.text-accent { color: var(--red); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 6px 22px -8px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px -10px var(--red-glow), 0 0 0 1px rgba(255,255,255,.05) inset;
}
.btn-ghost {
  color: var(--white);
  border: 1px solid var(--hairline-2);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  background: rgba(225,29,42,.08);
}
.btn-block { width: 100%; }

/* =================================================================
   NAVBAR
================================================================= */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: transparent;
  transition: background var(--t-med) var(--ease),
              backdrop-filter var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10,10,12,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--hairline);
  box-shadow: 0 12px 40px -24px rgba(0,0,0,.9);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px;
}
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  color: var(--white);
  border: 1px solid var(--hairline-2);
  border-radius: 9px;
  background: linear-gradient(160deg, var(--charcoal-3), var(--ink));
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.4rem;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--white);
}
.logo-accent { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-links > a {
  font-size: .92rem; font-weight: 500; color: var(--silver);
  letter-spacing: .02em; position: relative; padding: 6px 0;
  transition: color var(--t-fast);
}
.nav-links > a:not(.nav-cta)::after {
  content:""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); transition: width var(--t-fast) var(--ease);
}
.nav-links > a:not(.nav-cta):hover { color: var(--white); }
.nav-links > a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--red); color: #fff !important;
  padding: 11px 22px !important; border-radius: 8px;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .07em; font-weight: 600;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-cta:hover {
  background: var(--red-deep); transform: translateY(-2px);
  box-shadow: 0 8px 22px -8px var(--red-glow);
}

/* Hamburger */
.hamburger { display: none; width: 44px; height: 44px; position: relative; }
.hamburger span {
  position: absolute; left: 11px; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast);
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* =================================================================
   HERO
================================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 110px; padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  animation: heroZoom 18s ease-out forwards;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.45) 40%, rgba(10,10,12,.92) 100%),
    linear-gradient(90deg, rgba(10,10,12,.85) 0%, rgba(10,10,12,.25) 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow { color: var(--silver); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: .98;
  letter-spacing: .005em;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  margin-bottom: 22px;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--silver);
  max-width: 560px; margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 14px 26px;
}
.hero-badges li {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .82rem;
  letter-spacing: .04em; color: var(--white);
  text-transform: uppercase;
}
.hero-badges .check { color: var(--red); flex: none; }

/* scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--hairline-2);
  border-radius: 14px; z-index: 3;
  display: grid; place-items: start center; padding-top: 8px;
}
.scroll-cue span {
  width: 4px; height: 8px; border-radius: 4px; background: var(--red);
  animation: scrollDot 1.6s infinite var(--ease);
}
@keyframes scrollDot { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 80%,100%{opacity:0;transform:translateY(14px)} }
@keyframes heroZoom { from { transform: scale(1.18); } to { transform: scale(1.02); } }

/* =================================================================
   STATS
================================================================= */
.stats {
  background: var(--charcoal);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding-block: clamp(40px, 6vw, 64px);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 30px 20px;
}
.stat { text-align: center; position: relative; }
.stat::after {
  content:""; position: absolute; right: 0; top: 12%; height: 76%;
  width: 1px; background: var(--hairline);
}
.stat:last-child::after, .stat:nth-child(2)::after { display: none; }
.stat-num {
  font-family: var(--font-mono); font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--white); line-height: 1;
  display: inline-flex; align-items: baseline;
}
.stat-suffix, .stat-static { color: var(--red); }
.stat-label {
  font-family: var(--font-mono); font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--steel); margin-top: 12px;
}

/* =================================================================
   ABOUT
================================================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.about-media { position: relative; }
.about-img { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--hairline); }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.about-img:hover img { transform: scale(1.06); }
.about-img-main { aspect-ratio: 16/11; }
.about-img-sub {
  position: absolute; right: -8px; bottom: -28px; width: 46%;
  aspect-ratio: 4/3; border: 3px solid var(--ink);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.8);
}
.about-tag {
  position: absolute; left: -8px; top: 22px;
  background: var(--red); color: #fff;
  padding: 14px 18px; border-radius: 12px;
  box-shadow: 0 18px 40px -16px var(--red-glow);
  max-width: 180px;
}
.about-tag-num { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; display: block; line-height: 1; }
.about-tag-text { font-size: .78rem; line-height: 1.3; display: block; margin-top: 6px; }

.about-points { margin: 4px 0 30px; display: grid; gap: 14px; }
.about-points li { display: flex; align-items: center; gap: 14px; color: var(--silver); }
.dash { width: 22px; height: 2px; background: var(--red); flex: none; }

/* =================================================================
   SERVICES
================================================================= */
.services { background: var(--ink); }
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
.service-card {
  background: var(--charcoal-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease),
              border-color var(--t-med), box-shadow var(--t-med);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--charcoal-3);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.9);
}
.service-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.service-img::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,21,25,.6));
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 24px; position: relative; flex: 1; display: flex; flex-direction: column; }
.service-icon {
  position: absolute; top: -26px; left: 24px;
  width: 50px; height: 50px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  box-shadow: 0 12px 28px -12px var(--red-glow);
}
.service-body h3 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.4rem; color: var(--white); letter-spacing: .02em;
  margin: 14px 0 8px;
}
.service-body p { font-size: .94rem; color: var(--steel); flex: 1; }
.learn-more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-family: var(--font-mono); font-size: .76rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); width: max-content;
}
.learn-more span { color: var(--red); transition: transform var(--t-fast); }
.learn-more:hover span { transform: translateX(5px); }

/* =================================================================
   WHY CHOOSE US
================================================================= */
.why { background: var(--charcoal); }
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(40px, 5vw, 60px);
  align-items: center;
}
.why-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); }
.why-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .7s var(--ease); }
.why-media:hover img { transform: scale(1.05); }
.why-media-badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(10,10,12,.78); backdrop-filter: blur(10px);
  border: 1px solid var(--hairline-2);
  padding: 16px 18px; border-radius: 12px;
}
.why-media-badge .eyebrow { margin-bottom: 6px; }
.why-media-badge p { font-family: var(--font-display); text-transform: uppercase; color: var(--white); font-size: 1.2rem; letter-spacing: .02em; }

.why-cards { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
.why-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--charcoal-2); border: 1px solid var(--hairline);
  border-radius: 12px; padding: 20px;
  transition: border-color var(--t-fast), transform var(--t-fast), background var(--t-fast);
}
.why-card:hover { border-color: var(--red); transform: translateX(4px); background: var(--charcoal-3); }
.why-icon {
  width: 44px; height: 44px; flex: none; border-radius: 10px;
  display: grid; place-items: center;
  color: var(--red); background: rgba(225,29,42,.1);
  border: 1px solid rgba(225,29,42,.25);
}
.why-card h3 { font-family: var(--font-display); text-transform: uppercase; color: var(--white); font-size: 1.18rem; letter-spacing: .02em; margin-bottom: 4px; }
.why-card p { font-size: .9rem; color: var(--steel); }

/* =================================================================
   PROCESS
================================================================= */
.process { background: var(--ink); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 20px; counter-reset: step; }
.process-step {
  position: relative; padding: 30px 26px 30px;
  background: var(--charcoal-2); border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med);
  overflow: hidden;
}
.process-step::before {
  content:""; position: absolute; left: 0; top: 0; width: 4px; height: 100%;
  background: var(--red); transform: scaleY(0); transform-origin: top;
  transition: transform var(--t-med) var(--ease);
}
.process-step:hover { transform: translateY(-5px); border-color: var(--charcoal-3); }
.process-step:hover::before { transform: scaleY(1); }
.process-num {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 2.4rem; color: var(--charcoal-3);
  display: block; margin-bottom: 12px;
  -webkit-text-stroke: 1px var(--steel); color: transparent;
}
.process-step h3 { font-family: var(--font-display); text-transform: uppercase; color: var(--white); font-size: 1.32rem; letter-spacing: .02em; margin-bottom: 8px; }
.process-step p { font-size: .92rem; color: var(--steel); }

/* =================================================================
   GALLERY
================================================================= */
.gallery { background: var(--charcoal); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 16px; grid-auto-flow: dense;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--hairline); aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s; filter: grayscale(.15) brightness(.92); }
.gallery-item::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(225,29,42,.0));
  transition: background var(--t-med);
}
.gallery-item:hover img { transform: scale(1.08); filter: grayscale(0) brightness(1); }
.gallery-item:hover::after { background: linear-gradient(180deg, transparent 50%, rgba(225,29,42,.22)); }

/* =================================================================
   TESTIMONIALS
================================================================= */
.testimonials { background: var(--ink); }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 56px); align-items: center; }
.testi-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); }
.testi-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .7s var(--ease); }
.testi-media:hover img { transform: scale(1.05); }
.testi-head { margin-bottom: 28px; }
.testi-cards { display: grid; gap: 16px; }
.testi-card {
  background: var(--charcoal-2); border: 1px solid var(--hairline);
  border-radius: 12px; padding: 24px; position: relative;
}
.testi-card::before {
  content:"\201C"; position: absolute; top: 6px; right: 18px;
  font-family: var(--font-display); font-size: 4rem; color: var(--charcoal-3);
  line-height: 1;
}
.stars { color: var(--red); letter-spacing: 3px; font-size: .9rem; margin-bottom: 12px; }
.testi-card p { color: var(--silver); font-size: .98rem; }
.testi-card footer { margin-top: 16px; display: flex; flex-direction: column; }
.testi-name { font-family: var(--font-display); text-transform: uppercase; color: var(--white); font-size: 1.05rem; letter-spacing: .03em; }
.testi-loc { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); }

/* =================================================================
   BOOKING
================================================================= */
.booking { background: var(--charcoal); }
.booking-grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 56px); align-items: start; }
.booking-points { display: grid; gap: 12px; }
.booking-points li { display: flex; align-items: center; gap: 14px; color: var(--silver); font-size: .96rem; }

.booking-form {
  background: var(--charcoal-2); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 34px);
  display: grid; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--steel);
}
.field input, .field select, .field textarea {
  background: var(--ink); border: 1px solid var(--hairline-2);
  border-radius: 9px; padding: 13px 14px; color: var(--white);
  font-size: .95rem; transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input::placeholder, .field textarea::placeholder { color: #5a5e68; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,29,42,.18);
}
.field select option { background: var(--charcoal); color: var(--white); }
/* date/time icon visibility on dark */
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(.8); cursor: pointer; }
.form-status { font-size: .9rem; min-height: 1.2em; }
.form-status.ok { color: #46d27a; }
.form-status.err { color: var(--red); }

/* =================================================================
   CONTACT
================================================================= */
.contact { background: var(--ink); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 56px); align-items: center; }
.contact-list { display: grid; gap: 20px; margin: 8px 0 30px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-ic {
  width: 46px; height: 46px; flex: none; border-radius: 11px;
  display: grid; place-items: center; color: var(--red);
  background: var(--charcoal-2); border: 1px solid var(--hairline);
}
.contact-k {
  display: block; font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--steel);
  margin-bottom: 3px;
}
.contact-list a { color: var(--white); font-size: 1.02rem; transition: color var(--t-fast); }
.contact-list a:hover { color: var(--red); }
.hours { border-top: 1px solid var(--hairline); padding-top: 22px; }
.hours p { display: flex; justify-content: space-between; gap: 18px; color: var(--silver); padding: 6px 0; max-width: 360px; }
.hours p span:last-child { font-family: var(--font-mono); font-size: .86rem; color: var(--white); }
.contact-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); }
.contact-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .7s var(--ease); }
.contact-media:hover img { transform: scale(1.05); }

/* =================================================================
   FOOTER
================================================================= */
.footer { background: var(--charcoal); border-top: 1px solid var(--hairline); }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-block: clamp(50px, 7vw, 80px);
}
.footer-tag { color: var(--steel); font-size: .92rem; margin: 18px 0 22px; max-width: 360px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--charcoal-2); border: 1px solid var(--hairline);
  color: var(--silver); transition: all var(--t-fast);
}
.socials a:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-3px); }
.footer-col h4 {
  font-family: var(--font-display); text-transform: uppercase;
  color: var(--white); font-size: 1.1rem; letter-spacing: .04em; margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-contact li { color: var(--steel); font-size: .92rem; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--red); }
.footer-bar { border-top: 1px solid var(--hairline); }
.footer-bar-inner {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
  padding-block: 22px;
}
.footer-bar p { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; color: var(--steel); text-transform: uppercase; }

/* =================================================================
   FLOATING ELEMENTS
================================================================= */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  animation: waPulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55), 0 12px 30px -8px rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 12px 30px -8px rgba(37,211,102,.6); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 12px 30px -8px rgba(37,211,102,.6); }
}
.to-top {
  position: fixed; right: 20px; bottom: 88px; z-index: 900;
  width: 46px; height: 46px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--charcoal-2); border: 1px solid var(--hairline-2);
  color: var(--white);
  opacity: 0; transform: scale(.7); pointer-events: none;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease),
              background var(--t-fast), border-color var(--t-fast);
}
.to-top.show { opacity: 1; transform: scale(1); pointer-events: auto; }
.to-top:hover { background: var(--red); border-color: var(--red); transform: scale(1.06) translateY(-2px); }

/* =================================================================
   REVEAL / LOAD ANIMATIONS
   Default: fully visible (safe fallback if JS fails).
   Only hidden once <html class="js"> is present.
================================================================= */
html.js [data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
html.js [data-reveal].in {
  opacity: 1; transform: none;
}

/* staggered children inside grids */
html.js .services-grid [data-reveal],
html.js .why-cards [data-reveal],
html.js .gallery-grid [data-reveal],
html.js .testi-cards [data-reveal],
html.js .process-grid [data-reveal],
html.js .stats-grid [data-reveal] {
  transition-delay: var(--stagger, 0ms);
}

/* hero load animation */
html.js [data-load] { opacity: 0; transform: translateY(26px); }
html.js .hero-loaded [data-load] {
  animation: loadUp .8s var(--ease) forwards;
}
html.js .hero-loaded [data-load]:nth-child(1) { animation-delay: .15s; }
html.js .hero-loaded [data-load]:nth-child(2) { animation-delay: .30s; }
html.js .hero-loaded [data-load]:nth-child(3) { animation-delay: .45s; }
html.js .hero-loaded [data-load]:nth-child(4) { animation-delay: .60s; }
html.js .hero-loaded [data-load]:nth-child(5) { animation-delay: .75s; }
@keyframes loadUp { to { opacity: 1; transform: none; } }

/* navbar slide-down on load */
html.js .navbar { transform: translateY(-100%); transition: transform .6s var(--ease), background var(--t-med), backdrop-filter var(--t-med), border-color var(--t-med), box-shadow var(--t-med); }
html.js .navbar.nav-ready { transform: translateY(0); }

/* =================================================================
   RESPONSIVE
================================================================= */
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .why-cards { grid-template-columns: repeat(2,1fr); }
}

@media (min-width: 880px) {
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .stat:nth-child(2)::after { display: block; }
  .about-grid { grid-template-columns: 1fr 1.05fr; }
  .testi-grid { grid-template-columns: .85fr 1.15fr; }
  .booking-grid { grid-template-columns: .9fr 1.1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: .85fr 1.15fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; }
  .gallery-grid { grid-template-columns: repeat(4,1fr); }
  .gallery-item { aspect-ratio: 1/1; }
  .gallery-item.g-wide { grid-column: span 2; aspect-ratio: 2/1; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4,1fr); }
  .process-grid { grid-template-columns: repeat(4,1fr); }
}

/* Mobile nav */
@media (max-width: 940px) {
  .hamburger { display: block; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 16px var(--gutter) 28px;
    background: rgba(10,10,12,.96); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--hairline);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
    max-height: calc(100svh - 76px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links > a { padding: 15px 4px; border-bottom: 1px solid var(--hairline); font-size: 1.05rem; }
  .nav-links > a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 16px; padding: 15px !important; }
}

@media (max-width: 600px) {
  .about-img-sub { position: static; width: 100%; margin-top: 16px; aspect-ratio: 16/9; border-width: 1px; }
  .about-tag { position: static; max-width: none; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 12px; }
  .about-tag-num { display: inline; }
  .about-tag-text { display: inline; margin: 0; }
  .br-d { display: none; }
  .footer-bar-inner { justify-content: center; text-align: center; }
}

/* =================================================================
   REDUCED MOTION — force everything visible, kill motion
================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html.js [data-reveal],
  html.js [data-load] { opacity: 1 !important; transform: none !important; }
  html.js .navbar { transform: none !important; }
  .hero-bg img { animation: none; transform: scale(1.04); }
  .whatsapp-float { animation: none; }
  .scroll-cue span { animation: none; }
}
