/* ============================================
   MOKAI MOTORS — Premium Auto Care
   styles.css — Brand Guide Aligned
   ============================================ */

/* ---------- Design Tokens (Brand Guide) ---------- */
:root {
  --n9: #050A12;
  --n8: #0A1628;
  --n7: #0F1E35;
  --n6: #152A4A;
  --o4: #FFAD4D;
  --o5: #F7941D;
  --o6: #E0850F;
  --og: rgba(247, 148, 29, .15);
  --ogh: rgba(247, 148, 29, .04);
  --ch: #C8D1E0;
  --st: #8B9BB4;
  --sd: #5A6B84;
  --w: #FFF;
  --fd: 'Oswald', sans-serif;
  --fs: 'DM Serif Display', serif;
  --fb: 'Barlow', sans-serif;
  --fu: 'Barlow Condensed', sans-serif;
  --eo: cubic-bezier(.19, 1, .22, 1);
  --es: cubic-bezier(.34, 1.56, .64, 1);
  --mx: 1280px;
  --gp: clamp(20px, 4vw, 40px);
  --sy: clamp(100px, 12vw, 160px);
  --r: 14px;
  --rs: 8px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--n9);
  color: var(--ch);
  font-family: var(--fb);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: none;
}

ul {
  list-style: none;
}

::selection {
  background: var(--o5);
  color: var(--w);
}

.container {
  max-width: var(--mx);
  margin: 0 auto;
  padding: 0 var(--gp);
}

/* ---------- Typography ---------- */
.label {
  font-family: var(--fu);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--o5);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--o5);
  opacity: .5;
}

.heading-lg {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 58px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--w);
  line-height: 1.08;
}

.heading-xl {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 80px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--w);
  line-height: 1.02;
}

.body-lg {
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--st);
  line-height: 1.9;
  max-width: 540px;
}

.accent {
  color: var(--o5);
}

.gt {
  background: linear-gradient(135deg, var(--o4), var(--o6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fu);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 17px 38px;
  border-radius: 5px;
  transition: all .5s var(--eo);
}

.btn-p {
  background: linear-gradient(135deg, var(--o4), var(--o6));
  color: var(--w);
  box-shadow: 0 4px 24px rgba(247, 148, 29, .3);
}

.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(247, 148, 29, .4);
}

.btn-g {
  color: var(--w);
  border: 1px solid rgba(255, 255, 255, .12);
}

.btn-g:hover {
  border-color: var(--o5);
  color: var(--o5);
}

/* ---------- Scroll Reveal ---------- */
[data-r] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .9s ease, transform .9s var(--eo);
}

[data-r].v {
  opacity: 1;
  transform: translateY(0);
}

[data-r="l"] {
  transform: translateX(-60px);
}

[data-r="l"].v {
  transform: translateX(0);
}

[data-r="r"] {
  transform: translateX(60px);
}

[data-r="r"].v {
  transform: translateX(0);
}

[data-r="s"] {
  transform: scale(.9);
}

[data-r="s"].v {
  transform: scale(1);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all .5s var(--eo);
}

.nav.sc {
  padding: 12px 0;
  background: rgba(5, 10, 18, .92);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, .03);
}

.nav-i {
  max-width: var(--mx);
  margin: 0 auto;
  padding: 0 var(--gp);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 42px;
  width: auto;
  transition: transform .5s var(--es);
}

.logo:hover .logo-img {
  transform: rotate(5deg) scale(1.05);
}

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

.nav-l {
  font-family: var(--fu);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--st);
  position: relative;
  padding: 4px 0;
  transition: color .4s;
}

.nav-l:hover {
  color: var(--w);
}

.nav-l::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--o5);
  transition: width .5s var(--eo);
}

.nav-l:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--fu);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--o4), var(--o6));
  color: var(--w);
  border-radius: 4px;
  transition: all .5s var(--eo);
  box-shadow: 0 2px 16px rgba(247, 148, 29, .25);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(247, 148, 29, .4);
}

/* Hamburger */
.ham {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.ham span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--w);
  border-radius: 2px;
  transition: all .3s;
  transform-origin: center;
}

.ham.op span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.ham.op span:nth-child(2) {
  opacity: 0;
}

.ham.op span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav */
.mnav {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 18, .98);
  backdrop-filter: blur(30px);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all .5s var(--eo);
}

.mnav.op {
  opacity: 1;
  visibility: visible;
}

.mnav a {
  font-family: var(--fd);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--w);
  transition: color .3s;
}

.mnav a:hover {
  color: var(--o5);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

#hpc {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-atm {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-atm::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 65% 35%, rgba(247, 148, 29, .06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 15% 85%, rgba(10, 22, 40, .9) 0%, transparent 50%);
}

.hero-atm::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .012) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-in {
  position: relative;
  z-index: 2;
  max-width: var(--mx);
  margin: 0 auto;
  padding: 0 var(--gp);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-c {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  background: rgba(247, 148, 29, .06);
  border: 1px solid rgba(247, 148, 29, .15);
  border-radius: 100px;
  font-family: var(--fu);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--o5);
  margin-bottom: 30px;
  animation: fsu .8s var(--eo) both;
}

.pdot {
  width: 8px;
  height: 8px;
  background: var(--o5);
  border-radius: 50%;
  position: relative;
}

.pdot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--o5);
  animation: pp 2s ease infinite;
}

.hero h1 {
  margin-bottom: 26px;
  animation: fsu .8s var(--eo) .1s both;
}

.hero-d {
  animation: fsu .8s var(--eo) .2s both;
  margin-bottom: 44px;
}

.hero-act {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fsu .8s var(--eo) .3s both;
}

.hero-sts {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  animation: fsu .8s var(--eo) .5s both;
}

.hs-n {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 42px;
  color: var(--w);
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.hs-n .sfx {
  color: var(--o5);
  font-size: 28px;
  margin-left: 2px;
}

.hs-t {
  font-family: var(--fu);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sd);
  margin-top: 6px;
}

/* Hero Visual (right side) */
.hero-v {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fi 1.4s ease .4s both;
}

.hgw {
  position: relative;
  width: clamp(320px, 30vw, 460px);
  aspect-ratio: 1;
}

.hg-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  background: radial-gradient(circle, rgba(247, 148, 29, .1) 0%, transparent 70%);
  border-radius: 50%;
  animation: br 5s ease infinite;
  filter: blur(20px);
}

.hgw svg {
  width: 100%;
  height: 100%;
}

.hgw .hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(247, 148, 29, .15));
}

.gs {
  animation: sp 50s linear infinite;
  transform-origin: center;
}

.gsr {
  animation: sp 35s linear infinite reverse;
  transform-origin: center;
}

.gb {
  animation: br 4s ease infinite;
}

/* Hero Floating Badges */
.hfb {
  position: absolute;
  background: rgba(5, 10, 18, .85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fb 6s ease infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.hfb:nth-child(2) {
  animation-delay: -2s;
}

.hfb:nth-child(3) {
  animation-delay: -4s;
}

.hfb-i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ogh);
  border: 1px solid rgba(247, 148, 29, .15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hfb-t span {
  display: block;
  font-family: var(--fu);
  font-weight: 600;
  font-size: 13px;
  color: var(--w);
  line-height: 1.2;
}

.hfb-t small {
  font-size: 10px;
  font-weight: 300;
  color: var(--st);
}

.fb1 {
  top: 5%;
  right: -10%;
}

.fb2 {
  bottom: 15%;
  left: -15%;
}

.fb3 {
  bottom: 0;
  right: 0;
}

/* ---------- Marquee ---------- */
.mq {
  background: var(--n8);
  border-top: 1px solid rgba(255, 255, 255, .03);
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  padding: 16px 0;
  overflow: hidden;
}

.mq-t {
  display: flex;
  gap: 56px;
  animation: ms 50s linear infinite;
  width: max-content;
}

.mq-i {
  font-family: var(--fu);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sd);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.mq-d {
  width: 5px;
  height: 5px;
  background: var(--o5);
  transform: rotate(45deg);
  opacity: .6;
}

/* ---------- Services ---------- */
.svc {
  padding: var(--sy) 0;
}

.svc-hd {
  text-align: center;
  margin-bottom: 72px;
}

.svc-hd .body-lg {
  margin: 16px auto 0;
}

.svc-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sc {
  background: rgba(15, 30, 53, .5);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--r);
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: all .6s var(--eo);
}

.sc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--o5), transparent);
  transform: scaleX(0);
  transition: transform .6s var(--eo);
}

.sc:hover {
  border-color: rgba(247, 148, 29, .12);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.sc:hover::before {
  transform: scaleX(1);
}

.sc-i {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--ogh);
  border: 1px solid rgba(247, 148, 29, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: all .5s var(--eo);
  position: relative;
  z-index: 1;
}

.sc:hover .sc-i {
  background: linear-gradient(135deg, var(--o4), var(--o6));
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(247, 148, 29, .3);
}

.sc-i svg {
  width: 22px;
  height: 22px;
  transition: all .4s;
}

.sc:hover .sc-i svg {
  stroke: var(--w);
}

.sc h3 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--w);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.sc p {
  font-size: 14px;
  font-weight: 300;
  color: var(--st);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.sc-l {
  font-family: var(--fu);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--o5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .5s var(--eo);
  position: relative;
  z-index: 1;
}

.sc:hover .sc-l {
  gap: 16px;
}

.sc-n {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 64px;
  color: rgba(255, 255, 255, .02);
  line-height: 1;
  z-index: 0;
  transition: color .6s;
}

.sc:hover .sc-n {
  color: rgba(247, 148, 29, .04);
}

/* ---------- About ---------- */
.abt {
  padding: var(--sy) 0;
  background: var(--n8);
  position: relative;
  overflow: hidden;
}

.abt::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 148, 29, .06) 0%, transparent 65%);
  pointer-events: none;
}

.abt-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.abt-v {
  position: relative;
}

.abt-img {
  aspect-ratio: 4/5;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(145deg, var(--n7), var(--n6));
}

.abt-img-in {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.abt-img-in svg {
  opacity: .08;
}

.abt-img-in span {
  font-family: var(--fu);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sd);
}

/* About floating metrics */
.abt-m {
  position: absolute;
  background: rgba(5, 10, 18, .9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 148, 29, .12);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

.abt-m1 {
  bottom: -20px;
  left: -30px;
  animation: fb 7s ease infinite;
}

.abt-m2 {
  top: 40px;
  right: -30px;
  animation: fb 7s ease infinite -3s;
}

.abt-mn {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 32px;
  color: var(--o5);
  line-height: 1;
}

.abt-mt {
  font-family: var(--fu);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ch);
  line-height: 1.4;
}

.abt-c .label {
  margin-bottom: 14px;
}

.abt-c .heading-lg {
  margin-bottom: 20px;
}

.abt-c .body-lg {
  margin-bottom: 20px;
}

/* About features */
.abt-f {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.af {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .015);
  border: 1px solid rgba(255, 255, 255, .04);
  transition: all .5s var(--eo);
}

.af:hover {
  border-color: rgba(247, 148, 29, .15);
  background: var(--ogh);
  transform: translateY(-2px);
}

.af-i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ogh);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.af h4 {
  font-family: var(--fu);
  font-weight: 600;
  font-size: 14px;
  color: var(--w);
  margin-bottom: 3px;
}

.af p {
  font-size: 12px;
  font-weight: 300;
  color: var(--st);
}

/* ---------- Process ---------- */
.proc {
  padding: var(--sy) 0;
}

.proc-hd {
  text-align: center;
  margin-bottom: 80px;
}

.proc-hd .body-lg {
  margin: 16px auto 0;
}

.proc-t {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.proc-t::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      rgba(247, 148, 29, .15) 0px,
      rgba(247, 148, 29, .15) 8px,
      transparent 8px,
      transparent 16px);
}

.ps {
  text-align: center;
  padding: 0 16px;
}

.ps-n {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--n8);
  border: 2px solid rgba(247, 148, 29, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 22px;
  color: var(--o5);
  position: relative;
  z-index: 2;
  transition: all .6s var(--eo);
}

.ps:hover .ps-n {
  background: linear-gradient(135deg, var(--o4), var(--o6));
  color: var(--w);
  border-color: transparent;
  box-shadow: 0 0 40px rgba(247, 148, 29, .3);
  transform: scale(1.1);
}

.ps h3 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--w);
  margin-bottom: 10px;
}

.ps p {
  font-size: 13px;
  font-weight: 300;
  color: var(--st);
  line-height: 1.7;
  max-width: 210px;
  margin: 0 auto;
}

/* ---------- Testimonials ---------- */
.tst {
  padding: var(--sy) 0;
  overflow: hidden;
}

.tst-hd {
  text-align: center;
  margin-bottom: 64px;
}

.tst-hd .body-lg {
  margin: 16px auto 0;
}

.tst-s {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 var(--gp) 20px;
  max-width: var(--mx);
  margin: 0 auto;
}

.tst-s::-webkit-scrollbar {
  display: none;
}

.tc {
  min-width: 380px;
  max-width: 400px;
  scroll-snap-align: start;
  flex-shrink: 0;
  background: rgba(15, 30, 53, .5);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--r);
  padding: 36px;
  transition: all .5s var(--eo);
}

.tc:hover {
  border-color: rgba(247, 148, 29, .12);
  transform: translateY(-4px);
}

.tc-st {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
}

.tc-st svg {
  width: 16px;
  height: 16px;
}

.tc-q {
  font-family: var(--fs);
  font-size: 16px;
  color: var(--ch);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.tc-q::before {
  content: '\201C';
  font-size: 48px;
  color: var(--o5);
  opacity: .3;
  line-height: 0;
  display: block;
  margin-bottom: 8px;
}

.tc-a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tc-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--o4), var(--o6));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 16px;
  color: var(--w);
}

.tc-ai h4 {
  font-family: var(--fu);
  font-weight: 600;
  font-size: 14px;
  color: var(--w);
}

.tc-ai span {
  font-size: 12px;
  font-weight: 300;
  color: var(--st);
}

.tst-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.td {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  transition: all .4s;
  padding: 0;
}

.td.ac {
  background: var(--o5);
  width: 24px;
  border-radius: 4px;
}

/* ---------- Booking ---------- */
.bk {
  padding: var(--sy) 0;
}

.bk-c {
  background: linear-gradient(140deg, rgba(247, 148, 29, .06) 0%, transparent 40%), var(--n8);
  border: 1px solid rgba(247, 148, 29, .1);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.bk-c::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247, 148, 29, .05) 0%, transparent 60%);
  pointer-events: none;
}

.bk-info {
  position: relative;
  z-index: 1;
}

.bk-info .label {
  margin-bottom: 14px;
}

.bk-info .heading-lg {
  margin-bottom: 16px;
}

.bk-info .body-lg {
  margin-bottom: 40px;
}

.bk-ds {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bk-d {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bk-di {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ogh);
  border: 1px solid rgba(247, 148, 29, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bk-d h4 {
  font-family: var(--fu);
  font-weight: 600;
  font-size: 14px;
  color: var(--w);
}

.bk-d p {
  font-size: 13px;
  font-weight: 300;
  color: var(--st);
}

.bk-map {
  margin-top: 36px;
  border-radius: var(--rs);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .04);
  height: 180px;
}

.bk-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(.7) contrast(1.1) saturate(.3);
  transition: filter .5s;
}

.bk-map:hover iframe {
  filter: brightness(.85) saturate(.6);
}

/* Booking Form */
.bk-f {
  position: relative;
  z-index: 1;
  background: rgba(5, 10, 18, .5);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--r);
  padding: 36px;
}

.bk-f h3 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--w);
  margin-bottom: 4px;
}

.bk-f>p {
  font-size: 13px;
  font-weight: 300;
  color: var(--st);
  margin-bottom: 28px;
}

.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg {
  margin-bottom: 16px;
}

.fg label {
  display: block;
  font-family: var(--fu);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--st);
  margin-bottom: 7px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--n9);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 8px;
  color: var(--w);
  font-family: var(--fb);
  font-size: 14px;
  outline: none;
  transition: all .4s var(--eo);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--o5);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, .08);
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--sd);
}

.fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235A6B84' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.fg select option {
  background: var(--n8);
}

.f-sub {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--o4), var(--o6));
  color: var(--w);
  font-family: var(--fu);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 8px;
  margin-top: 4px;
  transition: all .5s var(--eo);
  box-shadow: 0 4px 20px rgba(247, 148, 29, .25);
  cursor: pointer;
}

.f-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(247, 148, 29, .4);
}

.f-sub.ok {
  background: #22C55E;
}

/* ---------- Booking Widget (Progressive Steps) ---------- */
.bk-step {
  position: relative;
  z-index: 1;
  background: rgba(5, 10, 18, .5);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--r);
  padding: 28px;
  margin-bottom: 16px;
  backdrop-filter: blur(12px);
  transition: opacity .4s, transform .4s, max-height .5s ease;
}

.bk-step.bk-locked {
  opacity: .3;
  pointer-events: none;
  max-height: 80px;
  overflow: hidden;
}

.bk-step.bk-active {
  opacity: 1;
  pointer-events: auto;
  max-height: 2000px;
}

.bk-step.bk-done {
  opacity: .6;
  max-height: 80px;
  overflow: hidden;
}

.bk-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.bk-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--o5);
  color: var(--w);
  font-family: var(--fu);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.bk-step-header h3 {
  font-family: var(--fd);
  color: var(--w);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Service cards */
.bk-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.bk-svc-opt {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 18px 14px;
  cursor: pointer;
  text-align: left;
  transition: all .3s var(--eo);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bk-svc-opt:hover {
  border-color: rgba(247, 148, 29, .3);
  background: rgba(247, 148, 29, .06);
}

.bk-svc-opt.selected {
  border-color: var(--o5);
  background: rgba(247, 148, 29, .12);
  box-shadow: 0 0 0 2px rgba(247, 148, 29, .2);
}

.bk-svc-name {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  color: var(--w);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.bk-svc-price {
  font-family: var(--fu);
  font-size: 18px;
  font-weight: 700;
  color: var(--o5);
}

.bk-svc-dur {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--st);
}

/* Calendar */
.bk-cal {
  max-width: 400px;
  margin: 0 auto;
}

.bk-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.bk-cal-label {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 600;
  color: var(--w);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bk-cal-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--w);
  font-size: 16px;
  cursor: pointer;
  transition: all .3s;
}

.bk-cal-btn:hover {
  background: rgba(247, 148, 29, .15);
  border-color: var(--o5);
}

.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.bk-cal-dh {
  text-align: center;
  font-family: var(--fu);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--st);
  padding: 8px 0;
}

.bk-cal-day {
  text-align: center;
  padding: 10px 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid transparent;
  color: var(--w);
  font-family: var(--fb);
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
}

.bk-cal-day:hover:not(.disabled):not(.empty) {
  background: rgba(247, 148, 29, .1);
  border-color: rgba(247, 148, 29, .3);
}

.bk-cal-day.selected {
  background: var(--o5) !important;
  color: var(--w) !important;
  font-weight: 700;
}

.bk-cal-day.disabled {
  opacity: .2;
  cursor: not-allowed;
}

.bk-cal-day.empty {
  background: transparent;
  cursor: default;
}

/* Time slots */
.bk-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}

.bk-time-slot {
  padding: 12px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  color: var(--w);
  font-family: var(--fu);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .3s;
  text-align: center;
}

.bk-time-slot:hover:not(.disabled) {
  border-color: rgba(247, 148, 29, .3);
  background: rgba(247, 148, 29, .08);
}

.bk-time-slot.selected {
  background: var(--o5);
  border-color: var(--o5);
  color: var(--w);
}

.bk-time-slot.disabled {
  opacity: .25;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Summary */
.bk-summary {
  background: rgba(247, 148, 29, .06);
  border: 1px solid rgba(247, 148, 29, .15);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.bk-sum-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--st);
}

.bk-sum-row strong {
  color: var(--w);
}

/* Confirmation */
.bk-confirm-msg {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--st);
  line-height: 1.7;
  text-align: center;
  padding: 20px 0;
}

.bk-info-form .fg,
.bk-info-form .fr {
  margin-bottom: 12px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--sy) 0;
  background: var(--n8);
}

.faq-hd {
  text-align: center;
  margin-bottom: 60px;
}

.faq-hd .body-lg {
  margin: 16px auto 0;
}

.faq-l {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fi {
  background: rgba(15, 30, 53, .5);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .4s;
}

.fi.op {
  border-color: rgba(247, 148, 29, .15);
}

.fq {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  color: var(--w);
  font-family: var(--fu);
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  transition: color .3s;
}

.fq:hover {
  color: var(--o5);
}

.fq-i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ogh);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .4s;
}

.fi.op .fq-i {
  background: var(--o5);
  transform: rotate(45deg);
}

.fi.op .fq-i svg path {
  stroke: var(--w);
}

.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--eo);
}

.fa-in {
  padding: 0 28px 24px;
  font-size: 14px;
  font-weight: 300;
  color: var(--st);
  line-height: 1.9;
}

/* ---------- Portfolio / Our Work ---------- */
.portfolio {
  padding: var(--sy) 0;
  background: var(--n9);
}

.pf-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pf-tab {
  background: none;
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--st);
  font-family: var(--fu);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 40px;
  cursor: pointer;
  transition: all .4s var(--eo);
}

.pf-tab:hover {
  color: var(--w);
  border-color: rgba(255, 255, 255, .2);
}

.pf-tab.active {
  background: var(--o5);
  border-color: var(--o5);
  color: var(--w);
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: 280px;
}

.pf-item {
  opacity: 1;
  transition: opacity .4s ease, transform .4s ease;
}

.pf-item.pf-hidden {
  opacity: 0;
  transform: scale(0.9);
  position: absolute;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}

.pf-item-tall {
  grid-row: span 2;
}

.pf-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--r);
  overflow: hidden;
}

.pf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--eo), filter .8s var(--eo);
}

.pf-img:hover img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

.pf-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(5, 10, 18, .95), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: all .5s var(--eo);
}

.pf-img:hover .pf-overlay {
  transform: translateY(0);
  opacity: 1;
}

.pf-cat {
  display: inline-block;
  font-family: var(--fu);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--o5);
  margin-bottom: 6px;
}

.pf-title {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 600;
  color: var(--w);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.pf-desc {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--st);
}

/* ---------- Trust Bar ---------- */
.trust {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, .03);
  border-bottom: 1px solid rgba(255, 255, 255, .03);
}

.trust-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 80px);
  flex-wrap: wrap;
}

.ti {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: .4;
  transition: opacity .5s;
}

.ti:hover {
  opacity: .8;
}

.ti svg {
  width: 28px;
  height: 28px;
}

.ti span {
  font-family: var(--fu);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--st);
}

/* ---------- Footer ---------- */
.ft {
  background: var(--n9);
  border-top: 1px solid rgba(255, 255, 255, .03);
  padding: 80px 0 0;
}

.ft-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.ft-brand .logo {
  margin-bottom: 20px;
}

.ft-brand>p {
  font-size: 14px;
  font-weight: 300;
  color: var(--st);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}

.ft-soc {
  display: flex;
  gap: 10px;
}

.ft-soc a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s var(--eo);
}

.ft-soc a:hover {
  background: var(--ogh);
  border-color: rgba(247, 148, 29, .2);
  transform: translateY(-2px);
}

.ft-col h4 {
  font-family: var(--fu);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--w);
  margin-bottom: 22px;
}

.ft-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-col li a {
  font-size: 14px;
  font-weight: 300;
  color: var(--st);
  transition: color .3s;
}

.ft-col li a:hover {
  color: var(--o5);
}

.ft-nl p {
  font-size: 13px;
  font-weight: 300;
  color: var(--st);
  line-height: 1.7;
  margin-bottom: 18px;
}

.ft-nlf {
  display: flex;
  gap: 8px;
}

.ft-nlf input {
  flex: 1;
  padding: 13px 16px;
  background: var(--n8);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 8px;
  color: var(--w);
  font-family: var(--fb);
  font-size: 13px;
  outline: none;
}

.ft-nlf input:focus {
  border-color: var(--o5);
}

.ft-nlf button {
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--o4), var(--o6));
  color: var(--w);
  border-radius: 8px;
  font-family: var(--fu);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .5s var(--eo);
}

.ft-nlf button:hover {
  box-shadow: 0 4px 20px rgba(247, 148, 29, .3);
}

.ft-btm {
  border-top: 1px solid rgba(255, 255, 255, .03);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ft-btm p {
  font-size: 12px;
  font-weight: 300;
  color: var(--sd);
}

.ft-btm-l {
  display: flex;
  gap: 24px;
}

.ft-btm-l a {
  font-size: 12px;
  font-weight: 300;
  color: var(--sd);
  transition: color .3s;
}

.ft-btm-l a:hover {
  color: var(--o5);
}

/* ---------- Back to Top ---------- */
.btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--o4), var(--o6));
  color: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all .5s var(--eo);
  box-shadow: 0 4px 20px rgba(247, 148, 29, .3);
}

.btt.vis {
  opacity: 1;
  transform: translateY(0);
}

.btt:hover {
  transform: translateY(-3px);
}

/* ---------- Keyframe Animations ---------- */
@keyframes fsu {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fi {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes sp {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes br {

  0%,
  100% {
    opacity: .7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes pp {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes fb {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes ms {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   RESPONSIVE — Premium Mobile Experience
   ============================================ */

/* ---------- Tablet (≤ 1100px) ---------- */
@media (max-width: 1100px) {
  .hero-in {
    grid-template-columns: 1fr;
  }

  .hero-v {
    display: none;
  }

  .abt-g {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pr-g {
    grid-template-columns: 1fr 1fr;
  }

  .ft-g {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ---------- Small Tablet (≤ 900px) ---------- */
@media (max-width: 900px) {

  .nav-m,
  .nav-cta {
    display: none;
  }

  .ham {
    display: flex;
  }

  .svc-g {
    grid-template-columns: 1fr 1fr;
  }

  .proc-t {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .proc-t::before {
    display: none;
  }

  .bk-c {
    grid-template-columns: 1fr;
  }

  .tc {
    min-width: 300px;
  }
}

/* ---------- Mobile (≤ 640px) — Premium Polish ---------- */
@media (max-width: 640px) {

  /* -- Portfolio Mobile -- */
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    grid-auto-rows: 200px;
  }

  .pf-item-tall {
    grid-row: span 1;
  }

  .pf-tabs {
    gap: 6px;
    margin-bottom: 28px;
  }

  .pf-tab {
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  .pf-overlay {
    opacity: 1;
    transform: translateY(0);
    padding: 14px 12px;
  }

  .pf-title {
    font-size: 14px;
  }

  .pf-desc {
    font-size: 11px;
  }

  .pf-cat {
    font-size: 9px;
  }

  /* -- Global Mobile Tokens -- */
  :root {
    --gp: 20px;
    --sy: clamp(64px, 10vw, 100px);
  }

  /* -- Body bottom padding for sticky bar -- */
  body {
    padding-bottom: 72px;
  }

  /* -- Navigation -- */
  .nav {
    padding: 14px 0;
  }

  .nav.sc {
    padding: 10px 0;
  }

  .logo-img {
    height: 34px;
  }

  .ham {
    width: 32px;
    height: 22px;
    padding: 4px;
    /* 48px minimum touch target */
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile Nav Overlay — Premium Glassmorphism */
  .mnav {
    background: rgba(5, 10, 18, .97);
    backdrop-filter: blur(40px) saturate(1.6);
    gap: 28px;
    padding: 80px 40px;
  }

  .mnav a {
    font-size: 28px;
    letter-spacing: 6px;
    padding: 10px 0;
    position: relative;
  }

  .mnav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--o5);
    transition: width .3s var(--eo);
  }

  .mnav a:active::after {
    width: 60%;
  }

  /* -- Hero Section -- */
  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-badge {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 6px 14px 6px 10px;
    margin-bottom: 20px;
  }

  .hero h1 {
    margin-bottom: 20px;
  }

  .heading-xl {
    font-size: clamp(36px, 9vw, 52px);
    letter-spacing: 1px;
    line-height: 1.06;
  }

  .hero-d {
    margin-bottom: 32px;
  }

  .body-lg {
    font-size: 15px;
    line-height: 1.8;
  }

  /* Hero buttons — full width on mobile */
  .hero-act {
    flex-direction: column;
    gap: 12px;
  }

  .hero-act .btn {
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 12px;
    letter-spacing: 2.5px;
    border-radius: 10px;
  }

  .hero-act .btn-p {
    box-shadow: 0 6px 28px rgba(247, 148, 29, .35);
  }

  /* Hero stats — horizontal row on mobile */
  .hero-sts {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 28px;
  }

  .hero-sts>div {
    text-align: center;
    flex: 1;
    position: relative;
  }

  .hero-sts>div:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, .06);
  }

  .hs-n {
    font-size: 32px;
    justify-content: center;
  }

  .hs-n .sfx {
    font-size: 22px;
  }

  .hs-t {
    font-size: 9px;
    letter-spacing: 2px;
    margin-top: 4px;
  }

  /* -- Marquee -- */
  .mq {
    padding: 12px 0;
  }

  .mq-i {
    font-size: 10px;
    letter-spacing: 3px;
    gap: 10px;
  }

  .mq-t {
    gap: 36px;
  }

  /* -- Services Section -- */
  .svc-g,
  .pr-g,
  .abt-f,
  .proc-t {
    grid-template-columns: 1fr;
  }

  .svc-hd {
    margin-bottom: 48px;
  }

  .heading-lg {
    font-size: clamp(28px, 7vw, 40px);
    letter-spacing: 1px;
  }

  .sc {
    padding: 28px 24px 24px;
    border-radius: 12px;
    /* Touch feedback */
    -webkit-tap-highlight-color: transparent;
  }

  .sc:active {
    transform: scale(.98);
    border-color: rgba(247, 148, 29, .15);
  }

  .sc:active::before {
    transform: scaleX(1);
  }

  .sc-i {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .sc h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .sc p {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .sc-n {
    font-size: 48px;
    top: 16px;
    right: 18px;
  }

  /* -- About Section -- */
  .abt-img {
    aspect-ratio: 16/10;
    border-radius: 12px;
  }

  .abt-m {
    padding: 14px 18px;
    border-radius: 10px;
  }

  .abt-m1 {
    bottom: -12px;
    left: -8px;
  }

  .abt-m2 {
    top: 16px;
    right: -8px;
  }

  .abt-mn {
    font-size: 26px;
  }

  .abt-mt {
    font-size: 11px;
  }

  .abt-f {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .af {
    padding: 16px;
    border-radius: 10px;
    gap: 12px;
  }

  .af:active {
    background: var(--ogh);
    border-color: rgba(247, 148, 29, .12);
  }

  .af-i {
    width: 36px;
    height: 36px;
  }

  .af h4 {
    font-size: 13px;
  }

  .af p {
    font-size: 11px;
  }

  /* -- Process Section -- */
  .proc-hd {
    margin-bottom: 48px;
  }

  .proc-t {
    gap: 32px;
  }

  .ps {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0;
  }

  .ps-n {
    width: 52px;
    height: 52px;
    font-size: 20px;
    margin: 0;
    flex-shrink: 0;
  }

  .ps h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .ps p {
    font-size: 13px;
    max-width: none;
    margin: 0;
  }

  /* -- Testimonials -- */
  .tst-hd {
    margin-bottom: 40px;
  }

  .tc {
    min-width: 280px;
    max-width: 320px;
    padding: 28px 24px;
    border-radius: 12px;
  }

  .tc-st {
    margin-bottom: 16px;
  }

  .tc-q {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .tc-q::before {
    font-size: 36px;
    margin-bottom: 6px;
  }

  .tc-av {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .tc-ai h4 {
    font-size: 13px;
  }

  .tc-ai span {
    font-size: 11px;
  }

  .tst-dots {
    margin-top: 24px;
  }

  /* -- Booking Section -- */
  .bk-c {
    border-radius: 16px;
    padding: 28px 20px;
    gap: 36px;
  }

  .bk-info .heading-lg {
    font-size: clamp(26px, 7vw, 36px);
  }

  .bk-info .body-lg {
    margin-bottom: 28px;
  }

  .bk-d {
    gap: 14px;
  }

  .bk-di {
    width: 40px;
    height: 40px;
  }

  .bk-d h4 {
    font-size: 13px;
  }

  .bk-d p {
    font-size: 12px;
  }

  .bk-map {
    height: 160px;
    margin-top: 28px;
    border-radius: 10px;
  }

  .bk-f {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .bk-f h3 {
    font-size: 20px;
  }

  .fr {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* iOS zoom prevention + bigger touch targets */
  .fg input,
  .fg select,
  .fg textarea {
    font-size: 16px;
    padding: 16px;
    border-radius: 10px;
    min-height: 50px;
  }

  .fg label {
    font-size: 10px;
    letter-spacing: 2.5px;
    margin-bottom: 6px;
  }

  .f-sub {
    padding: 18px;
    font-size: 13px;
    letter-spacing: 3px;
    border-radius: 10px;
    min-height: 56px;
  }

  .f-sub:active {
    transform: scale(.97);
  }

  /* -- FAQ Section -- */
  .faq-hd {
    margin-bottom: 40px;
  }

  .fq {
    padding: 20px 20px;
    font-size: 14px;
    gap: 12px;
    /* Touch target */
    min-height: 56px;
  }

  .fq-i {
    width: 32px;
    height: 32px;
  }

  .fa-in {
    padding: 0 20px 20px;
    font-size: 13px;
    line-height: 1.8;
  }

  /* -- Trust Bar -- */
  .trust {
    padding: 40px 0;
  }

  .trust-in {
    gap: 20px 32px;
    justify-content: flex-start;
  }

  .ti {
    gap: 8px;
  }

  .ti svg {
    width: 22px;
    height: 22px;
  }

  .ti span {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  /* -- Footer -- */
  .ft {
    padding: 48px 0 0;
  }

  .ft-g {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 36px;
  }

  .ft-brand>p {
    font-size: 13px;
    max-width: none;
  }

  .ft-soc a {
    width: 44px;
    height: 44px;
  }

  .ft-col h4 {
    margin-bottom: 16px;
  }

  .ft-col ul {
    gap: 12px;
  }

  .ft-col li a {
    font-size: 14px;
    padding: 4px 0;
    display: inline-block;
  }

  .ft-nlf {
    flex-direction: column;
    gap: 10px;
  }

  .ft-nlf input {
    font-size: 16px;
    padding: 14px 16px;
  }

  .ft-nlf button {
    padding: 14px 22px;
    font-size: 13px;
    text-align: center;
  }

  .ft-btm {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
  }

  .ft-btm p {
    font-size: 11px;
  }

  .ft-btm-l {
    gap: 16px;
  }

  .ft-btm-l a {
    font-size: 12px;
    padding: 4px 0;
  }

  /* -- Back to Top — repositioned for sticky bar -- */
  .btt {
    bottom: 84px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  /* -- All touch targets -- */
  .cdot,
  .cring {
    display: none;
  }
}

/* ---------- Sticky Mobile CTA Bar ---------- */
.m-sticky {
  display: none;
}

@media (max-width: 640px) {
  .m-sticky {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(5, 10, 18, .95);
    backdrop-filter: blur(20px) saturate(1.4);
    border-top: 1px solid rgba(247, 148, 29, .15);
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    gap: 10px;
  }

  .m-sticky a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 10px;
    font-family: var(--fu);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all .3s var(--eo);
    min-height: 48px;
  }

  .m-sticky-call {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--w);
  }

  .m-sticky-call:active {
    background: rgba(255, 255, 255, .08);
    transform: scale(.97);
  }

  .m-sticky-book {
    background: linear-gradient(135deg, var(--o4), var(--o6));
    color: var(--w);
    box-shadow: 0 4px 20px rgba(247, 148, 29, .3);
  }

  .m-sticky-book:active {
    transform: scale(.97);
    box-shadow: 0 2px 12px rgba(247, 148, 29, .4);
  }
}

/* ---------- Small Phone (≤ 380px) ---------- */
@media (max-width: 380px) {
  .heading-xl {
    font-size: 32px;
  }

  .heading-lg {
    font-size: 24px;
  }

  .hero-sts {
    gap: 0;
  }

  .hs-n {
    font-size: 28px;
  }

  .tc {
    min-width: 260px;
    max-width: 280px;
    padding: 24px 20px;
  }

  .m-sticky a {
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 12px 8px;
  }
}