/* ==========================================
   STUDIO 62 — AUTOMOTIVE PROTECTION STUDIO
   Lahore, Pakistan
   Official Website Stylesheet (GitHub Pages Ready)
   ========================================== */

:root {
  --bg: #070707;
  --surface: #0d0d0d;
  --surface2: #121212;
  --text: #f6f7f4;
  --muted: #a4a7a0;
  --lime: #b7ef27;
  --lime-soft: rgba(183, 239, 39, 0.14);
  --silver: #dfe2dd;
  --line: rgba(255, 255, 255, 0.15);
  --soft: rgba(255, 255, 255, 0.06);
  --max: 1380px;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Space Grotesk", sans-serif;
  --nav-h: 110px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

::selection {
  background: var(--lime);
  color: #070707;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(183, 239, 39, 0.35);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #050505;
  display: grid;
  place-content: center;
  text-align: center;
  transition: transform 1s cubic-bezier(0.77, 0, 0.18, 1);
}

.preloader.done {
  transform: translateY(-100%);
}

.loader-brand {
  font: 700 clamp(2rem, 5vw, 4rem)/1 var(--display);
  letter-spacing: 0.08em;
}

.loader-sub,
.loader-percent {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: #777;
  margin-top: 12px;
}

.loader-track {
  width: min(260px, 60vw);
  height: 1px;
  background: #222;
  margin: 35px auto 0;
  overflow: hidden;
}

.loader-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime);
}

.loader-percent {
  font-variant-numeric: tabular-nums;
}

/* Header & Navbar */
.navbar {
  height: var(--nav-h);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  transition: height 0.45s, background 0.45s, border-color 0.45s, box-shadow 0.45s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.72), rgba(4, 4, 4, 0.22));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  height: 88px;
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

.logo {
  width: 180px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.logo img {
  width: 180px !important;
  height: 95px !important;
  object-fit: contain !important;
  object-position: left center;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.65));
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.6vw, 3rem);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: #f1f2ef;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: var(--nav-h);
  color: #f1f2ef;
  font-weight: 700;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  transition: color 0.25s, opacity 0.25s;
}

.navbar.scrolled .desktop-nav a {
  height: 88px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(183, 239, 39, 0.3);
}

.navbar.scrolled .desktop-nav a::after {
  bottom: 22px;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--lime);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.nav-book {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(183, 239, 39, 0.55);
  color: #f7f8f4;
  background: rgba(7, 7, 7, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-weight: 800;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.nav-book span {
  margin-left: 3px;
  font-size: 1.1rem;
  color: var(--lime);
}

.nav-book:hover {
  background: var(--lime);
  color: #070707;
  border-color: var(--lime);
}

.nav-book:hover span {
  color: #070707;
}

.menu-toggle {
  display: none;
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #090a08, #050505 65%);
  z-index: 850;
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  padding: 130px 8vw;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.eyebrow,
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: #b5b8b0;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--lime);
  vertical-align: middle;
  margin: 0 10px 2px 0;
}

.mobile-menu a {
  font: 600 clamp(2.3rem, 10vw, 5rem)/1.1 var(--display);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #f4f5f1;
  transition: color 0.25s, padding-left 0.25s;
}

.mobile-menu a:hover {
  color: var(--lime);
  padding-left: 8px;
}

.mobile-menu i {
  font: 400 0.7rem var(--font);
  color: #777;
}

.mobile-menu a:hover i {
  color: var(--lime);
}

.mobile-cta {
  margin-top: 35px !important;
  font-size: 1rem !important;
  letter-spacing: 0.15em !important;
  border: 0 !important;
  color: var(--lime) !important;
}

/* Hero Section */
.hero {
  height: 100svh;
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media,
.cta-bg {
  position: absolute;
  inset: -5%;
  background: url("../images/fortuner.jpg") center/cover no-repeat;
  transform: scale(1.06);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2) 70%),
              linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 55%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.075;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  margin: 0 0 8vh 7vw;
  max-width: 850px;
}

.hero h1 {
  font: 700 clamp(4rem, 8.7vw, 9.8rem)/0.82 var(--display);
  letter-spacing: -0.065em;
  margin: 24px 0 30px;
}

.hero h1 em,
.section-head em,
.intro h2 em,
.standard-heading em,
.testimonial-head em,
.faq-layout em,
.cta h2 em,
.ppf-header h2 em {
  font-style: normal;
  color: var(--lime);
}

.hero-content > p {
  max-width: 480px;
  color: #bbb;
  font-size: 0.94rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  border: 1px solid var(--line);
  transition: 0.3s;
}

.btn-light {
  background: var(--lime);
  color: #070707;
  border-color: var(--lime);
  font-weight: 800;
}

.btn-light:hover {
  background: #d0ff55;
  border-color: #d0ff55;
  transform: translateY(-3px);
}

.btn-outline:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: #070707;
  transform: translateY(-3px);
}

.hero-meta {
  position: absolute;
  right: 5vw;
  bottom: 7vh;
  z-index: 2;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: #999;
  display: flex;
  gap: 15px;
  align-items: center;
}

.hero-meta b {
  font-size: 1.1rem;
  color: #fff;
}

.hero-index {
  position: absolute;
  right: 5vw;
  top: 50%;
  writing-mode: vertical-rl;
  color: #777;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
}

.section-pad {
  padding: 140px 5vw;
  max-width: var(--max);
  margin: auto;
}

/* About Intro Section */
.intro {
  max-width: none;
  padding-left: 7vw;
  padding-right: 7vw;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 9vw;
  align-items: center;
  margin-top: 65px;
}

.intro h2,
.section-head h2,
.standard-heading h2,
.testimonial-head h2,
.faq-layout > h2 {
  font: 600 clamp(3rem, 6vw, 7.4rem)/0.88 var(--display);
  letter-spacing: -0.055em;
}

.intro-copy p {
  max-width: 570px;
  color: #999;
  line-height: 1.8;
  margin: 38px 0;
}

.text-link {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  border-bottom: 1px solid #555;
  padding-bottom: 8px;
  color: #f0f1ed;
}

.text-link:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.text-link span {
  margin-left: 25px;
}

.image-frame {
  height: min(66vh, 700px);
  position: relative;
  overflow: hidden;
}

.image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 65px;
}

.section-head h2 {
  font-size: clamp(3rem, 6vw, 7rem);
}

.section-head p {
  color: #777;
  margin-top: 24px;
  max-width: 350px;
  line-height: 1.7;
}

/* Services Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--bg);
  min-height: 460px;
  position: relative;
  overflow: hidden;
}

.service-image {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  transition: 0.8s;
}

.service-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #050505 5%, transparent 75%);
}

.service-card:hover .service-image {
  transform: scale(1.06);
  opacity: 0.72;
}

.service-content {
  position: absolute;
  inset: auto 30px 28px;
  z-index: 2;
}

.service-content > span {
  font-size: 0.58rem;
  color: #888;
  letter-spacing: 0.14em;
}

.service-content h3 {
  font: 600 1.1rem var(--display);
  margin: 12px 0;
}

.service-content p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #aaa;
  max-width: 340px;
}

.service-content a {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.3rem;
  transition: 0.3s;
}

.service-card:hover .service-content a {
  transform: translateX(8px);
}

/* Featured Builds Track */
.builds {
  max-width: none;
  padding-left: 7vw;
  padding-right: 0;
  overflow: hidden;
}

.build-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-right: 7vw;
  scrollbar-width: none;
  cursor: grab;
}

.build-track::-webkit-scrollbar {
  display: none;
}

.build-card {
  min-width: min(78vw, 1050px);
  height: 70vh;
  min-height: 500px;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
}

.build-card img {
  transition: 1s;
}

.build-card:hover img {
  transform: scale(1.04);
}

.build-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent 55%);
}

.build-card > div {
  position: absolute;
  z-index: 2;
  left: 35px;
  bottom: 30px;
}

.build-card span {
  font-size: 0.58rem;
  letter-spacing: 0.17em;
  color: #bbb;
}

.build-card h3 {
  font: 600 clamp(1.5rem, 3vw, 3rem) var(--display);
  margin: 8px 0 20px;
}

.build-card a {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}

/* PPF Studio Gallery */
.ppf-section {
  max-width: none;
  padding: 120px 7vw;
  background: #080808;
}

.ppf-header {
  margin-bottom: 70px;
}

.ppf-header .eyebrow {
  margin-bottom: 20px;
  display: block;
}

.ppf-header h2 {
  font: 600 clamp(3rem, 6vw, 7rem)/0.88 var(--display);
  letter-spacing: -0.055em;
}

.ppf-header p {
  color: #777;
  margin-top: 22px;
  max-width: 500px;
  line-height: 1.7;
  font-size: 0.8rem;
}

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

.ppf-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111;
}

.ppf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.9s;
}

.ppf-card:hover img {
  transform: scale(1.07);
  filter: brightness(1.08);
}

.ppf-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.78));
}

.ppf-card-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.ppf-card-label span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: #b7ef27;
  margin-bottom: 5px;
}

.ppf-card-label p {
  font: 600 0.95rem var(--display);
  color: #fff;
}

.ppf-card-wide {
  grid-column: span 2;
}

.ppf-machine-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.ppf-machine-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}

.ppf-machine-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ppf-machine-card:hover img {
  transform: scale(1.06);
}

.ppf-machine-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8));
}

.ppf-machine-card-label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: #b7ef27;
  font-weight: 700;
}

/* Before / After Interactive Slider */
.comparison {
  padding: 80px 5vw 140px;
}

.comparison-title {
  max-width: var(--max);
  margin: 0 auto 55px;
}

.comparison-title span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #777;
}

.comparison-title h2 {
  font: 600 clamp(2.8rem, 6vw, 7rem)/0.9 var(--display);
  letter-spacing: -0.05em;
  margin-top: 20px;
}

.comparison-title em {
  font-style: normal;
  color: #888;
}

.compare {
  width: min(1200px, 100%);
  height: min(70vw, 720px);
  margin: auto;
  position: relative;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}

.compare > img,
.compare-before {
  position: absolute;
  inset: 0;
}

.compare-before {
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 1px solid #fff;
}

.compare-before img {
  width: min(1200px, calc(100vw - 10vw));
  max-width: none;
}

.compare-label {
  position: absolute;
  z-index: 4;
  top: 20px;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  padding: 9px 12px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.before {
  left: 20px;
}

.after {
  right: 20px;
}

.compare-handle {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #080808;
}

.compare-handle i:before,
.compare-handle i:after {
  content: "";
  position: absolute;
  top: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.compare-handle i:before {
  left: 7px;
  transform: rotate(-135deg);
}

.compare-handle i:after {
  right: 7px;
  transform: rotate(45deg);
}

/* Studio Standards */
.standard {
  max-width: none;
  background: #0a0a0a;
}

.standard-heading {
  margin: 65px 0 100px;
}

.standard-heading h2 {
  font-size: clamp(3.5rem, 9vw, 10rem);
}

.standard-list {
  border-top: 1px solid var(--line);
}

.standard-item {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.standard-item strong {
  font: 500 clamp(2.5rem, 5vw, 5rem) var(--display);
  color: #333;
}

.standard-item span {
  font: 600 clamp(1.2rem, 2.5vw, 2.5rem) var(--display);
}

.standard-item p {
  font-size: 0.72rem;
  line-height: 1.6;
  color: #777;
  max-width: 260px;
  justify-self: end;
}

/* Process Timeline */
.process {
  max-width: none;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 100px;
}

.timeline-line {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.step {
  padding-right: 25px;
  position: relative;
}

.step b {
  display: flex;
  width: 20px;
  height: 20px;
  background: #070707;
  border: 1px solid #777;
  border-radius: 50%;
  font-size: 0;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.step b:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin: auto;
}

.step h3 {
  font: 600 1.25rem var(--display);
}

.step p {
  font-size: 0.7rem;
  color: #777;
  line-height: 1.7;
  margin-top: 15px;
  max-width: 220px;
}

/* Stats Counter */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 70px 5vw;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font: 600 clamp(3.5rem, 6vw, 7rem) var(--display);
  letter-spacing: -0.06em;
}

.stat strong:after {
  content: "+";
}

.stat:nth-child(3) strong:after,
.stat:nth-child(4) strong:after {
  content: "%";
}

.stat span {
  display: block;
  color: #777;
  font-size: 0.57rem;
  letter-spacing: 0.16em;
  margin-top: 12px;
}

/* Client Testimonials */
.testimonial-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 60px 0;
}

.testimonial-controls {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #777;
  font-size: 0.65rem;
}

.testimonial-controls button {
  font-size: 1.5rem;
}

.testimonial-window {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}

.testimonial {
  min-width: 100%;
  padding: 60px 7vw;
  border: 1px solid var(--line);
  background: #0b0b0b;
}

.stars {
  letter-spacing: 0.3em;
  font-size: 0.65rem;
}

.testimonial blockquote {
  font: 500 clamp(1.8rem, 4vw, 4.5rem)/1.1 var(--display);
  letter-spacing: -0.04em;
  max-width: 1000px;
  margin: 45px 0;
}

.testimonial > div:last-child {
  display: flex;
  gap: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.testimonial > div:last-child span {
  color: #666;
}

/* FAQ Accordion */
.faq {
  max-width: none;
  background: #0b0b0b;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 10vw;
  margin-top: 65px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.faq-item button span {
  color: #777;
  font-size: 1.3rem;
  transition: 0.3s;
}

.faq-item.active button span {
  transform: rotate(45deg);
  color: #fff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s;
}

.faq-answer p {
  overflow: hidden;
  color: #777;
  font-size: 0.75rem;
  line-height: 1.7;
  max-width: 700px;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding: 0 0 25px;
}

/* Call To Action */
.cta {
  height: 90vh;
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  background-image: url("../images/fortuner.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

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

.cta h2 {
  font: 600 clamp(3.5rem, 8vw, 9rem)/0.86 var(--display);
  letter-spacing: -0.065em;
  margin: 25px 0;
}

.cta p {
  color: #aaa;
}

.cta .hero-actions {
  justify-content: center;
}

/* Footer */
footer {
  padding: 90px 7vw 25px;
  background: #050505;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.7fr;
  gap: 8vw;
  padding-bottom: 100px;
}

.footer-logo {
  font-size: clamp(2.5rem, 6vw, 7rem);
  letter-spacing: -0.05em;
}

.footer-brand p {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: #666;
  margin-top: 12px;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.footer-contact span,
.footer-social > span {
  display: block;
  color: #555;
  font-size: 0.53rem;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.footer-contact a,
.footer-contact p,
.footer-social a {
  font-size: 0.68rem;
  color: #aaa;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 40px;
  align-items: center;
  color: #555;
  font-size: 0.53rem;
  letter-spacing: 0.1em;
}

.footer-bottom strong {
  color: #888;
  text-align: center;
  font-weight: 500;
}

.footer-bottom button {
  border: 1px solid var(--line);
  width: 38px;
  height: 38px;
}

/* Floating Widgets & Custom Cursor */
.whatsapp {
  position: fixed;
  z-index: 800;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(183, 239, 39, 0.5);
  background: #111;
  color: var(--lime);
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.whatsapp:hover {
  background: var(--lime);
  color: #070707;
  border-color: var(--lime);
  transform: translateY(-4px);
}

.cursor {
  position: fixed;
  z-index: 10001;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.25s, height 0.25s, background 0.25s;
}

.cursor.hover {
  width: 48px;
  height: 48px;
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-image {
  opacity: 0;
  transform: translateY(50px) scale(0.98);
  transition: 1s;
}

.reveal-image.visible {
  opacity: 1;
  transform: none;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .navbar {
    grid-template-columns: 170px 1fr 170px;
    padding: 0 3vw;
  }
  .logo,
  .logo img {
    width: 140px !important;
    height: 80px !important;
  }
  .desktop-nav {
    gap: 1.05rem;
    font-size: 0.66rem;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 70px;
  }
  .timeline-line {
    display: none;
  }
  .step b {
    margin-bottom: 25px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-social {
    grid-column: 2;
  }
  .ppf-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ppf-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  :root {
    --nav-h: 80px;
  }
  .navbar {
    height: var(--nav-h);
    display: flex;
    justify-content: space-between;
    padding: 0 5vw;
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(18px);
  }
  .navbar.scrolled {
    height: 70px;
  }
  .desktop-nav,
  .nav-book {
    display: none;
  }
  .logo {
    width: 120px;
    height: 68px;
  }
  .logo img {
    width: 120px !important;
    height: 68px !important;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.25);
    border-radius: 2px;
  }
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #f5f5f5;
    transition: 0.3s;
  }
  .menu-toggle:hover {
    border-color: var(--lime);
  }
  .menu-toggle:hover span {
    background: var(--lime);
  }
  .menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(2px, 3px);
  }
  .menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(2px, -3px);
  }
  .hero {
    min-height: 680px;
  }
  .hero-content {
    margin: 0 5vw 11vh;
  }
  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 6rem);
    line-height: 0.84;
  }
  .hero-content > p {
    font-size: 0.78rem;
  }
  .hero-actions {
    gap: 8px;
  }
  .btn {
    width: 100%;
    min-height: 48px;
  }
  .hero-meta {
    right: 5vw;
    bottom: 3vh;
  }
  .hero-index {
    display: none;
  }
  .section-pad {
    padding: 90px 5vw;
  }
  .intro {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-top: 45px;
  }
  .image-frame {
    height: 65vh;
  }
  .intro h2,
  .section-head h2,
  .standard-heading h2,
  .testimonial-head h2,
  .faq-layout > h2 {
    font-size: clamp(2.7rem, 13vw, 5rem);
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 45px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 430px;
  }
  .builds {
    padding-left: 5vw;
  }
  .build-card {
    min-width: 88vw;
    height: 64vh;
  }
  .comparison {
    padding: 60px 5vw 90px;
  }
  .compare {
    height: 110vw;
  }
  .compare-before img {
    width: 90vw;
  }
  .standard-heading {
    margin: 45px 0 60px;
  }
  .standard-item {
    grid-template-columns: 55px 1fr;
    gap: 15px;
  }
  .standard-item strong {
    font-size: 2.2rem;
  }
  .standard-item p {
    grid-column: 2;
    justify-self: start;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 60px;
    padding-left: 30px;
    border-left: 1px solid var(--line);
  }
  .step {
    padding: 0;
  }
  .step b {
    position: absolute;
    left: -41px;
    top: 0;
    margin: 0;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 45px 5vw;
    border-bottom: 1px solid var(--line);
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: 0;
  }
  .stat strong {
    font-size: 3.4rem;
  }
  .testimonial {
    padding: 40px 25px;
  }
  .testimonial blockquote {
    font-size: 1.8rem;
    margin: 35px 0;
  }
  .testimonial-head {
    align-items: start;
    flex-direction: column;
    gap: 30px;
  }
  .faq-item button {
    font-size: 0.78rem;
  }
  .cta {
    height: 82vh;
    min-height: 600px;
  }
  .cta h2 {
    font-size: clamp(3rem, 14vw, 6rem);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-bottom: 70px;
  }
  .footer-contact {
    grid-template-columns: 1fr;
  }
  .footer-social {
    grid-column: auto;
  }
  .footer-bottom {
    grid-template-columns: 1fr 40px;
    gap: 15px;
  }
  .footer-bottom strong {
    display: none;
  }
  .cursor {
    display: none;
  }
  .ppf-section {
    padding: 80px 5vw;
  }
  .ppf-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ppf-card-wide {
    grid-column: span 1;
  }
  .ppf-machine-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .navbar {
    padding: 0 4vw;
  }
  .logo,
  .logo img {
    width: 100px !important;
    height: 62px !important;
  }
  .mobile-menu {
    padding: 115px 6vw 35px;
  }
  .mobile-menu a {
    font-size: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-image {
    opacity: 1;
    transform: none;
  }
}
