/* ================================================================
   NEW ROYAL AUTO PARTS — Premium Dark Theme
   🎨 Deep Black + Electric Blue + Pure White
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --bg: #080a0f;
  --bg2: #0b0f17;
  --bg3: #101520;
  --surface: #121824;
  --card: #161d2b;
  --card2: #1a2436;
  --border: rgba(255, 255, 255, 0.08);
  --border-blue: rgba(0, 102, 255, 0.3);
  --blue: #0066FF;
  --blue-d: #004acc;
  --blue-glow: rgba(0, 102, 255, 0.25);
  --white: #ffffff;
  --silver: #B8BCC8;
  --silver-l: #dde0ea;
  --text: #a0a4b8;
  --text-dim: #646b85;
  --font-head: 'Bebas Neue', sans-serif;
  --font-sub: 'Rajdhani', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
  --shadow-blue: 0 0 30px rgba(0, 102, 255, 0.3);
  --trans: all 0.35s cubic-bezier(.25, .8, .25, 1);
  --nav-h: 78px;
}

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

html {
  scroll-behavior: smooth
}

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

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

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

ul {
  list-style: none
}

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

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--bg)
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px
}

::selection {
  background: var(--blue);
  color: #fff
}

/* ── Grid Lines Background Pattern ──────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

nav,
section,
div,
header,
footer,
aside {
  position: relative;
  z-index: 1;
}

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(8, 8, 16, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}

.navbar.scrolled {
  background: rgba(8, 8, 16, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: var(--shadow-blue);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-family: var(--font-head);
  font-size: 19px;
  letter-spacing: 2.5px;
  color: var(--white);
}

.logo-text span:last-child {
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 3.5px;
  color: var(--silver);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
  transition: var(--trans);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: var(--trans);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  transition: var(--trans);
}

.btn-call:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--silver);
  transition: var(--trans);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8, 8, 16, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 5%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-110%);
  transition: var(--trans);
  z-index: 999;
  border-bottom: 1px solid var(--border-blue);
}

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

.mobile-menu a {
  font-family: var(--font-sub);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}

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

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(-100%);
  transition: var(--trans);
}

.btn:hover::after {
  transform: translateX(0)
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  color: #fff;
  box-shadow: var(--shadow-blue);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 102, 255, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--silver);
  border: 1px solid rgba(184, 188, 200, 0.35);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px)
}

.btn-gold {
  background: var(--white);
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4)
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px
}

/* ================================================================
   LAYOUT
================================================================ */
.section {
  padding: 100px 5%;
}

.section-sm {
  padding: 60px 5%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--blue)
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
}

.section-title span {
  color: var(--blue)
}

.section-title .gold {
  color: var(--white)
}

.section-desc {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

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

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

/* ================================================================
   CARDS
================================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--trans);
  box-shadow: var(--shadow);
}

.card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow), var(--shadow-blue)
}

.service-card {
  padding: 36px 30px;
}

.service-card .icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 102, 255, 0.05));
  border: 1px solid rgba(0, 102, 255, 0.25);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: var(--trans);
}

.service-card:hover .icon {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue)
}

.service-card h3 {
  font-family: var(--font-sub);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px
}

.service-card p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7
}

/* ── Light accent line on card hover ── */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--white));
  transition: var(--trans);
}

.service-card:hover::before {
  width: 100%
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
}

.product-card .product-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: var(--trans)
}

.product-card:hover .product-img {
  transform: scale(1.06)
}

.product-card .product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px
}

.product-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px
}

.badge-original {
  background: rgba(0, 200, 100, 0.1);
  color: #00c864;
  border: 1px solid rgba(0, 200, 100, 0.25)
}

.badge-scrap {
  background: rgba(0, 102, 255, 0.1);
  color: var(--blue);
  border: 1px solid rgba(0, 102, 255, 0.25)
}

.product-card h3 {
  font-family: var(--font-sub);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px
}

.product-card .compat {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px
}

.product-card .product-actions {
  margin-top: auto;
  display: flex;
  gap: 8px
}

.product-card .product-actions .btn {
  flex: 1;
  justify-content: center;
  font-size: 12px;
  padding: 10px 10px
}

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 70px) 5% 70px;
  background:
    linear-gradient(160deg, rgba(11, 15, 23, 0.98) 0%, rgba(5, 10, 20, 0.95) 100%),
    url('../images/hero_car_workshop_1772602522954.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--white), var(--blue), transparent);
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 84px);
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 14px
}

.page-hero h1 span {
  color: var(--blue)
}

.page-hero p {
  font-size: 17px;
  color: var(--text);
  max-width: 580px;
  margin: 0 auto
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim)
}

.breadcrumb a {
  color: var(--blue);
  transition: var(--trans)
}

.breadcrumb a:hover {
  color: var(--white)
}

/* ================================================================
   STATS BAR
================================================================ */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
}

.stats-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: stretch
}

.stat-item {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  flex: 1;
  transition: var(--trans);
  position: relative;
}

.stat-item:last-child {
  border-right: none
}

.stat-item:hover {
  background: rgba(0, 102, 255, 0.04)
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: var(--trans)
}

.stat-item:hover::before {
  width: 60%
}

.stat-num {
  font-family: var(--font-head);
  font-size: 52px;
  color: var(--blue);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 8px
}

.stat-label {
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim)
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 34px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--white));
  opacity: 0;
  transition: var(--trans);
}

.testimonial-card:hover {
  border-color: rgba(0, 102, 255, 0.3)
}

.testimonial-card:hover::before {
  opacity: 1
}

.stars {
  color: var(--blue);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 22px;
  font-style: italic
}

.testimonial-text::before {
  content: '"';
  font-size: 48px;
  color: var(--blue);
  line-height: 0.5;
  vertical-align: -20px;
  margin-right: 4px
}

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

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #003399);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-info .name {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 16px;
  color: var(--white)
}

.reviewer-info .location {
  font-size: 12px;
  color: var(--text-dim)
}

/* ================================================================
   CONTACT FORM
================================================================ */
.form-group {
  margin-bottom: 20px
}

.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--trans);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 118px
}

.form-group select option {
  background: var(--bg2)
}

/* ================================================================
   GALLERY
================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--trans)
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease
}

.gallery-item:hover img {
  transform: scale(1.1)
}

.gallery-item:hover {
  border-color: var(--blue)
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 102, 255, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--trans);
  display: grid;
  place-items: end center;
  padding: 18px;
}

.gallery-item:hover .overlay {
  opacity: 1
}

.gallery-item .overlay span {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  display: none;
  place-items: center
}

.lightbox.active {
  display: grid
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow)
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  transition: var(--trans)
}

.lightbox-close:hover {
  color: var(--blue)
}

/* ================================================================
   CART
================================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  backdrop-filter: blur(4px)
}

.cart-overlay.active {
  display: block
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 95vw;
  height: 100vh;
  background: var(--bg2);
  border-left: 1px solid var(--border);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: var(--trans)
}

.cart-sidebar.active {
  transform: translateX(0)
}

.cart-header {
  padding: 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.cart-header h3 {
  font-family: var(--font-head);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--white)
}

.cart-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--silver);
  font-size: 18px;
  cursor: pointer;
  transition: var(--trans)
}

.cart-close:hover {
  border-color: var(--blue);
  color: var(--blue)
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px
}

.cart-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.cart-item-img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0
}

.cart-item-info {
  flex: 1
}

.cart-item-info h4 {
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px
}

.cart-item-info p {
  font-size: 12px;
  color: var(--text-dim)
}

.cart-item-remove {
  color: var(--blue);
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--trans)
}

.cart-item-remove:hover {
  transform: scale(1.2)
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim)
}

.cart-empty .icon {
  font-size: 48px;
  margin-bottom: 16px
}

.cart-footer {
  padding: 18px;
  border-top: 1px solid var(--border)
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 20px
}

.modal-overlay.active {
  display: grid
}

.modal {
  background: var(--bg3);
  border: 1px solid var(--border-blue);
  border-radius: var(--r-lg);
  padding: 40px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.35s ease;
  position: relative
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0
  }

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

.modal-title {
  font-family: var(--font-head);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 6px
}

.modal-sub {
  color: var(--text-dim);
  margin-bottom: 26px;
  font-size: 14px
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: var(--text-dim);
  cursor: pointer;
  transition: var(--trans)
}

.modal-close-btn:hover {
  color: var(--blue)
}

/* ================================================================
   FLOATING BUTTONS
================================================================ */
.floating-buttons {
  position: fixed;
  right: 22px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow);
  transition: var(--trans);
  position: relative
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.1)
}

.float-btn-wa {
  background: #25D366;
  color: #fff
}

.float-btn-call {
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  color: #fff
}

.float-btn .tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--card);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  border: 1px solid var(--border)
}

.float-btn:hover .tooltip {
  opacity: 1
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulse 2s ease-out infinite
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5)
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

/* Cart fab */
.cart-fab {
  position: fixed;
  top: 20px;
  right: 5%;
  z-index: 1001;
  display: none
}

.cart-fab-btn {
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 50px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-blue);
  transition: var(--trans)
}

.cart-fab-btn:hover {
  transform: scale(1.05)
}

.cart-badge {
  background: #fff;
  color: var(--blue);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 900;
  display: grid;
  place-items: center
}

/* ================================================================
   INFO BOX
================================================================ */
.info-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--r-sm);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--trans);
}

.info-box:hover {
  border-color: rgba(0, 102, 255, 0.4);
  background: var(--card2)
}

.info-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center
}

.info-box p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75
}

.info-box strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px
}

/* ================================================================
   TICKER
================================================================ */
.ticker-bar {
  background: linear-gradient(90deg, var(--blue), #004acc, var(--blue));
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap
}

.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 28s linear infinite
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

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

.ticker-item {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: 0.9
}

.ticker-item::before {
  content: '✦';
  color: var(--white)
}

/* ================================================================
   CTA BAND — FIXED SPACING
================================================================ */
.cta-band {
  padding: 90px 5%;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 70%),
    var(--surface);
  border-top: 1px solid rgba(0, 102, 255, 0.2);
  border-bottom: 1px solid rgba(0, 102, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band .cta-eyebrow {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  display: block;
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 62px);
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 16px;
  line-height: 1.1
}

.cta-band h2 span {
  color: var(--blue)
}

.cta-band p {
  color: var(--text);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7
}

.cta-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 72px 5% 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border)
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.85;
  margin: 16px 0 22px
}

.footer-social {
  display: flex;
  gap: 10px
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--silver);
  font-size: 16px;
  transition: var(--trans)
}

.social-link:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px)
}

.footer-col h4 {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
  display: inline-block
}

.footer-links li {
  margin-bottom: 10px
}

.footer-links a {
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans)
}

.footer-links a:hover {
  color: var(--blue);
  padding-left: 4px
}

.footer-links a::before {
  content: '›';
  color: var(--white);
  font-size: 18px
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px
}

.contact-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6
}

.contact-text strong {
  display: block;
  color: var(--silver);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 3px;
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim)
}

.footer-bottom span {
  color: var(--blue)
}

/* ================================================================
   MAP, B/A SLIDER
================================================================ */
.map-container {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-blue);
  height: 360px
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(90%) hue-rotate(180deg)
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 16/8;
  cursor: col-resize;
  user-select: none;
  border: 1px solid var(--border)
}

.ba-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0
}

.ba-after {
  clip-path: inset(0 50% 0 0)
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--blue);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 20px var(--blue)
}

.ba-handle::before {
  content: '⟺';
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  box-shadow: var(--shadow-blue)
}

.ba-label {
  position: absolute;
  top: 14px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 12px;
  border-radius: 4px
}

.ba-label-before {
  left: 14px
}

.ba-label-after {
  right: 14px
}

/* ================================================================
   ANIMATIONS (only with body.animate-enabled)
================================================================ */
body.animate-enabled .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease
}

body.animate-enabled .fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

body.animate-enabled .fade-up:nth-child(2) {
  transition-delay: 0.1s
}

body.animate-enabled .fade-up:nth-child(3) {
  transition-delay: 0.2s
}

body.animate-enabled .fade-up:nth-child(4) {
  transition-delay: 0.3s
}

body.animate-enabled .stagger>* {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease
}

body.animate-enabled .stagger.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s
}

body.animate-enabled .stagger.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: .1s
}

body.animate-enabled .stagger.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: .2s
}

body.animate-enabled .stagger.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: .3s
}

body.animate-enabled .stagger.visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: .4s
}

body.animate-enabled .stagger.visible>*:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: .5s
}

/* ================================================================
   UTILITIES
================================================================ */
.text-blue {
  color: var(--blue)
}

.text-white {
  color: var(--white)
}

.text-center {
  text-align: center
}

.mt-8 {
  margin-top: 8px
}

.mt-16 {
  margin-top: 16px
}

.mt-24 {
  margin-top: 24px
}

.mt-32 {
  margin-top: 32px
}

.mb-8 {
  margin-bottom: 8px
}

.mb-16 {
  margin-bottom: 16px
}

.mb-32 {
  margin-bottom: 32px
}

.tag {
  display: inline-block;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: var(--blue);
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px
}

/* WHY GRID (About teaser on home) */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

.why-img-wrap {
  position: relative
}

.why-img-wrap img {
  width: 100%;
  border-radius: var(--r-lg);
  border: 2px solid var(--border)
}

.why-img-label {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: var(--shadow-blue)
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px
}

.why-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--r-md);
  transition: var(--trans)
}

.why-feat:hover {
  border-color: rgba(0, 102, 255, 0.3);
  background: var(--card2)
}

.why-feat .feat-icon {
  font-size: 26px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(0, 102, 255, 0.08);
  border-radius: 10px;
  display: grid;
  place-items: center
}

.why-feat h4 {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px
}

.why-feat p {
  font-size: 14px;
  color: var(--text-dim)
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media(max-width:1100px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .stats-bar .container {
    flex-wrap: wrap
  }

  .stat-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid var(--border)
  }
}

@media(max-width:640px) {
  .section {
    padding: 60px 5%
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .modal {
    padding: 26px 18px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }

  .cart-sidebar {
    width: 100%
  }

  .cta-band {
    padding: 64px 5%
  }
}