/* ============================================
   CARBONBROS — Luxury Glassmorphism Dark Theme
   Modern • Clean • Premium • Breathable
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Syne:wght@400;500;600;700;800&display=swap');

/* ─── Design Tokens ─── */
:root {
  --black: #050505;
  --black-rich: #0a0a0a;
  --surface: #0f0f0f;
  --surface-raised: #151515;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --accent: #c8102e;
  --accent-soft: rgba(200, 16, 46, 0.12);
  --accent-glow: rgba(200, 16, 46, 0.25);
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.92);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-04: rgba(255, 255, 255, 0.04);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  /* Carbon Fiber — Realistic 2×2 Twill Weave */
  --carbon-weave:
    repeating-conic-gradient(rgba(30,30,30,0.9) 0% 25%, rgba(18,18,18,0.95) 0% 50%),
    repeating-conic-gradient(rgba(22,22,22,0.8) 0% 25%, rgba(14,14,14,0.9) 0% 50%),
    linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.02) 75%),
    linear-gradient(-45deg, rgba(255,255,255,0.015) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.015) 75%),
    linear-gradient(0deg, #0c0c0c, #0c0c0c);
  --carbon-size: 10px 10px, 10px 10px, 14px 14px, 14px 14px, 100% 100%;
  --carbon-pos: 0 0, 5px 5px, 0 0, 0 0, 0 0;
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white-90);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ─── Carbon Fiber Utilities ─── */
.carbon-bg {
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
  position: relative;
}

.carbon-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 40%, rgba(255,255,255,0.015) 60%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* Edge Glow — red light bleeding through carbon */
.carbon-glow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.45;
  z-index: 3;
  border-radius: 2px;
}

.carbon-glow-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.35), transparent);
  z-index: 3;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

.navbar {
  max-width: 100vw;
}

.container.nav-inner {
  max-width: 100%;
}

/* Red ambient glow through carbon weave */
.carbon-red-ambient {
  position: relative;
}
.carbon-red-ambient > .carbon-ambient-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,16,46,0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* Carbon trim strip — thin line accent */
.carbon-trim {
  height: 4px;
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
  position: relative;
}
.carbon-trim::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

/* ─── Typography ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--white-60);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-glass {
  background: var(--glass);
  color: var(--white-90);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn-glass:hover {
  background: var(--glass-hover);
  border-color: var(--white-20);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  font-weight: 600;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.15);
}

/* ─── Navbar ─── */
/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s var(--ease);
  max-width: 100vw;
  overflow: hidden;
} */
/* .container.nav-inner {
  max-width: 100%;
  overflow: hidden;
} */

.navbar.scrolled {
  padding: 12px 0;
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(200,16,46,0.3), 0 8px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo img {
  height: 50px;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled .nav-logo img { height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-60);
  transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  padding: 10px 28px !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 100px;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  font-size: 12px !important;
}
.nav-cta:hover {
  box-shadow: 0 8px 30px var(--accent-glow);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s var(--ease);
  display: block;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7.5px); }

/* Nav Dropdown */
/* 1. Reset & Parent Anchor */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

/* 2. The Trigger (Services Link) */
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* Rotate the SVG arrow on hover */
.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
  color: var(--accent);
}

/* 3. The Dropdown Menu */
.nav-dropdown-menu {
  position: absolute;
  /* Reduced gap to 8px so hover doesn't break easily */
  top: calc(100% + 8px); 
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 300px;
  /* max-width: max-content; */
  /* min-width: 260px; */
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 12px;
  
  /* Hidden State */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 1000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* 4. The "Hover Bridge" (Crucial Fix) */
/* This invisible box fills the gap so the menu stays open while moving the mouse down */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

/* 5. Show Menu on Hover */
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* 6. Individual Links inside Menu */
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px !important;
  color: var(--white-60) !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--accent-soft);
  color: var(--white) !important;
}

/* Style for the icons inside the dropdown if you use them */
.nav-dropdown-menu a .dd-icon {
  width: 32px;
  height: 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Service Detail Page ─── */
.service-hero {
  padding: 180px 0 100px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
  opacity: 0.3;
  pointer-events: none;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-hero-content {
  position: relative;
  z-index: 1;
}
.service-hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  filter: brightness(0.85);
}

.service-detail {
  padding: 120px 0;
}
.service-detail:nth-child(even) { background: var(--surface); }
.service-detail:nth-child(odd) { background: var(--black); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  filter: brightness(0.85);
  transition: all 0.5s var(--ease);
}
.service-detail-img:hover { filter: brightness(1); }

.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.service-detail-content p {
  font-size: 16px;
  color: var(--white-60);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 16px;
}

/* Benefits list */
.benefits-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
}
.benefit-item:hover {
  background: var(--glass-hover);
  border-color: var(--white-20);
}
.benefit-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-soft);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.benefit-text {
  font-size: 14px;
  color: var(--white-90);
  line-height: 1.6;
}
.benefit-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--white);
}

@media (max-width: 1024px) {
  .service-hero-grid,
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid.reverse { direction: ltr; }
  .service-hero-img, .service-detail-img { height: 300px; }
}
/* @media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0 0 0 20px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    display: none;
  }
  .nav-links.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { justify-content: center; padding: 8px; font-size: 15px !important; }
  .nav-dropdown-menu a .dd-icon { display: none; }
} */

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.4) 0%, transparent 30%),
    linear-gradient(90deg, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.3) 60%, transparent 100%),
    linear-gradient(180deg, transparent 60%, var(--black) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 100px;
}

.hero-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.5s forwards;
}
.hero-title span {
  background: linear-gradient(135deg, var(--accent), #ff4d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--white-60);
  line-height: 1.9;
  margin-bottom: 44px;
  max-width: 460px;
  font-weight: 300;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.9s forwards;
}

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 72px;
  padding: 32px 40px;
  border-top: none;
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 1.1s forwards;
  overflow: hidden;
}

.hero-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 40%, rgba(255,255,255,0.015) 60%, transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}

.hero-stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.hero-stat {
  position: relative;
  z-index: 1;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--white-40);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 400;
}

/* ─── Glass Card System ─── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s var(--ease);
  overflow: hidden;
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: var(--white-20);
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

/* ─── Services ─── */
.services-section {
  padding: 140px 0;
  background: var(--black);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  position: relative;
}

.service-card:hover {
  background: var(--glass-hover);
  border-color: var(--white-20);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.service-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.8);
}
.service-card:hover .service-card-img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

.service-card-body {
  padding: 32px 28px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card-desc {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.8;
  font-weight: 300;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.service-card-link:hover { gap: 14px; }

/* ─── Products ─── */
.products-section {
  padding: 140px 0;
  background: var(--surface);
}

.products-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 48px 0 36px;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--glass);
  color: var(--white-60);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.product-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.85);
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.95);
}

/* Product card hover overlay */
.product-view-hint {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: 2;
}
.product-card:hover .product-view-hint {
  opacity: 1;
}
.product-view-hint span {
  padding: 10px 28px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}
.badge-stock { background: rgba(46,125,50,0.85); color: var(--white); }
.badge-out { background: rgba(200,16,46,0.85); color: var(--white); }

.product-body { padding: 24px; }

.product-category {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 6px;
}

.product-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.product-quote-btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 18px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--glass);
  color: var(--white-60);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.product-quote-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ─── About ─── */
.about-section {
  padding: 140px 0;
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 0;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  filter: brightness(0.85);
  transition: all 0.5s var(--ease);
}
.about-images img:hover { filter: brightness(1); }
.about-images img:first-child {
  grid-column: 1 / -1;
  height: 300px;
}

.about-text p {
  font-size: 16px;
  color: var(--white-60);
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--white-90);
  padding: 12px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
}
.about-feature:hover {
  background: var(--glass-hover);
  border-color: var(--white-20);
}
.about-feature::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 11px;
  flex-shrink: 0;
  color: var(--white);
}

/* ─── Gallery ─── */
.gallery-section {
  padding: 140px 0;
  background: var(--surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 64px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s var(--ease);
  filter: brightness(0.75);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.95);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.85) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

/* ─── Locations ─── */
.locations-section {
  padding: 140px 0;
  background: var(--black);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 64px;
}

.location-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.location-card:hover {
  border-color: var(--white-20);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.location-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(0.8);
  transition: all 0.5s var(--ease);
}
.location-card:hover .location-img { filter: brightness(0.95); }

.location-body { padding: 32px; }

.location-badge {
  display: inline-block;
  padding: 5px 16px;
  background: var(--accent);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.location-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.location-info {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.8;
  font-weight: 300;
}

/* ─── Contact / Quote Form ─── */
.contact-section {
  padding: 140px 0;
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  margin-top: 64px;
}

.contact-info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 44px;
  backdrop-filter: blur(20px);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-soft);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
}
.contact-info-value a:hover { color: var(--accent); }

.contact-hours {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}

.contact-hours-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--white-60);
  border-bottom: 1px solid var(--white-04);
}
.hours-row span:last-child { color: var(--white-90); font-weight: 500; }

/* ─── Form ─── */
.quote-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(20px);
}

.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 15px;
  color: var(--white-60);
  margin-bottom: 36px;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(200,16,46,0.04);
  box-shadow: 0 0 0 4px rgba(200,16,46,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-40);
  font-weight: 300;
}

.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select { cursor: pointer; appearance: none; }

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.form-success { display: none; text-align: center; padding: 48px; }
.form-success.show { display: block; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.form-success p { color: var(--white-60); font-weight: 300; }

/* Fix for invisible text in dropdowns */
.form-group select option {
  background-color: #1a1a1a; /* A solid dark color */
  color: white;             /* Ensure text is white against the dark background */
  padding: 10px;
}

/* Optional: Ensure the select itself looks right on all browsers */
.form-group select {
  color-scheme: dark; /* Tells the browser to use dark-themed system UI for the dropdown */
}

/* ─── Blog ─── */
.blog-section {
  padding: 140px 0;
  background: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.blog-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.blog-card:hover {
  border-color: var(--white-20);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.8);
  transition: all 0.5s var(--ease);
}
.blog-card:hover .blog-card-img { filter: brightness(0.95); }

.blog-card-body { padding: 28px; }

.blog-card-date {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
  color: var(--white);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.8;
  font-weight: 300;
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,16,46,0.08) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 40%, rgba(255,255,255,0.015) 60%, transparent 100%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.cta-banner .cta-top-glow {
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.3), transparent);
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.cta-desc {
  font-size: 17px;
  color: var(--white-60);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Footer ─── */
.footer {
  background: var(--black-rich);
  border-top: none;
  padding: 80px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}

.footer-brand img { height: 40px; margin-bottom: 20px; }

.footer-brand p {
  font-size: 14px;
  color: var(--white-40);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.3s var(--ease);
}
.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 14px;
  color: var(--white-40);
  font-weight: 300;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--white-40);
  font-weight: 300;
}

/* ─── Page Header ─── */
.page-header {
  padding: 180px 0 100px;
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(200,16,46,0.07) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}
.page-header .section-label { display: block; text-align: center; }
.page-header .section-subtitle { margin: 0 auto; }

/* ─── Reveal Animations ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px var(--accent-soft); }
  50% { box-shadow: 0 0 40px var(--accent-glow); }
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.7s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.8s; }

/* ─── Lightbox ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 32px 100px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.lightbox-close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ─── Ambient Gradient Orbs ─── */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.15;
}

/* ─── Trending Vehicles ─── */
.trending-section {
  padding: 140px 0;
  background: var(--black);
  position: relative;
}

.trending-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}

.trending-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.trending-card {
  display: flex;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.trending-card:hover {
  background: var(--glass-hover);
  border-color: var(--white-20);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.trending-card-img {
  width: 200px;
  min-height: 200px;
  flex-shrink: 0;
  overflow: hidden;
}

.trending-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: all 0.6s var(--ease);
}

.trending-card:hover .trending-card-img img {
  filter: brightness(0.95);
  transform: scale(1.06);
}

.trending-card-body {
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trending-tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}

.trending-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.trending-desc {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 18px;
}

.trending-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  transition: letter-spacing 0.3s var(--ease);
}

.trending-card:hover .trending-link {
  letter-spacing: 3px;
}

/* ─── Individual Service Page ─── */
.service-hero {
  padding: 180px 0 120px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
  opacity: 0.3;
  pointer-events: none;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.service-hero-text {
  position: relative;
  z-index: 1;
}

.service-hero-text .section-title {
  font-size: clamp(36px, 5vw, 52px);
}

.service-hero-desc {
  font-size: 17px;
  color: var(--white-60);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 36px;
}

.service-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.service-hero-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: all 0.6s var(--ease);
}

.service-hero-img:hover img {
  filter: brightness(1);
  transform: scale(1.03);
}

/* Benefits Grid */
.benefits-section {
  padding: 120px 0;
  background: var(--surface);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.benefit-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
}

.benefit-card:hover {
  background: var(--glass-hover);
  border-color: var(--white-20);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 16, 46, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.benefit-desc {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.8;
  font-weight: 300;
}

.video-section {
  padding: 100px 0;
  background: #0a0a0a;
}
.video-wrapper {
  max-width: 960px;
  margin: 40px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper video {
  width: 100%;
  display: block;
}

/* 
/* Detail Section: Image + Text alternating */
.service-detail {
  padding: 120px 0;
  background: var(--black);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.detail-grid.reverse {
  direction: rtl;
}

.detail-grid.reverse > * {
  direction: ltr;
}

.detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.detail-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: all 0.6s var(--ease);
}

.detail-img:hover img {
  filter: brightness(1);
  transform: scale(1.03);
}

.detail-text p {
  font-size: 16px;
  color: var(--white-60);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 20px;
}

.detail-list {
  margin-top: 24px;
}

.detail-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--white-04);
}

.detail-list-check {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--white);
}

.detail-list-text {
  font-size: 15px;
  color: var(--white-90);
  font-weight: 400;
}

/* ─── Carbon Card Accents ─── */
.product-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  position: relative;
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
  z-index: 2;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
  z-index: 2;
}

.product-card:hover {
  border-color: var(--white-20);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 1px 0 rgba(200,16,46,0.3) inset;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
}

.location-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
}

.trending-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
  z-index: 2;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.3), transparent);
}

/* ─── Product Modal ─── */
.product-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow-y: auto;
}

.product-modal-overlay.active {
  display: flex;
}
/* @media (max-width: 768px) {
  .nav-toggle {
    margin-right: 8px;
  }
} */


.product-modal {
  background-image: var(--carbon-weave);
  background-size: var(--carbon-size);
  background-position: var(--carbon-pos);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  max-width: 940px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: modalSlideUp 0.5s var(--ease) forwards;
  max-height: 95vh;
  overflow-y: auto;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Glossy overlay on modal */
.product-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 35%, rgba(255,255,255,0.01) 60%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* Red edge glow on modal */
.product-modal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
  z-index: 3;
}

.product-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 10;
}

.product-modal-close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 2;
}

.product-modal-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.product-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.product-modal-img .product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.product-modal-body {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow-y: auto;
}

.product-modal-gallery {
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0.3);
}

/* Nav arrows */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 5;
  pointer-events: auto;
}
.modal-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.modal-nav-prev { left: 12px; }
.modal-nav-next { right: 12px; }
.modal-nav.hidden { display: none; }

/* Image counter pill */
.modal-img-counter {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white-60);
  z-index: 5;
}
.modal-img-counter.hidden { display: none; }

/* Thumbnail strip */
.modal-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px 16px;
  overflow-x: auto;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.modal-thumbs.hidden { display: none; }
.modal-thumb {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: all 0.3s var(--ease);
}
.modal-thumb:hover { opacity: 0.8; }
.modal-thumb.active {
  border-color: var(--accent);
  opacity: 1;
}
.modal-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.modal-main-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;       /* Square container */
  overflow: hidden;
  background: var(--black);
}
.modal-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;         /* CONTAIN not cover = no stretch */
  background: var(--black);
  transition: opacity 0.3s ease;
  aspect-ratio: 4/3;
  pointer-events: none; 
}
.modal-main-img-wrap .product-badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
}

/* Top red glow on modal */
.product-modal-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.3), transparent);
}

.product-modal-category { font-size: 11px; color: var(--accent); letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-bottom: 10px; }
.product-modal-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.product-modal-price { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.product-modal-desc { font-size: 14px; color: var(--white-60); line-height: 1.9; font-weight: 300; margin-bottom: 20px; }
.product-modal-specs { margin-bottom: 28px; }
.product-modal-specs-title { font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--white-40); margin-bottom: 14px; }
.spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--white-04); font-size: 13px; }
.spec-row span:first-child { color: var(--white-40); font-weight: 300; }
.spec-row span:last-child { color: var(--white-90); font-weight: 500; }
.product-modal-actions { display: flex; gap: 12px; margin-top: auto; }
.product-modal-actions .btn { flex: 1; justify-content: center; padding: 16px 24px; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .service-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-grid.reverse { direction: ltr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .trending-grid { grid-template-columns: 1fr; }
  .product-modal-grid { grid-template-columns: 1fr; }
  .product-modal-img { min-height: 280px; max-height: 320px; }
  .product-modal-body { padding: 24px 20px; }
  .product-modal-title { font-size: 22px; }
  .product-modal-price { font-size: 20px; margin-bottom: 16px; }
  .product-modal-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 16px; }
  .product-modal-actions { flex-direction: column; }
  .product-modal { border-radius: var(--radius); }
  .product-view-hint { display: none; }
  .product-card { cursor: pointer; }
  .product-card::after { content: 'Tap to view'; position: absolute; bottom: 68px; right: 24px; font-size: 11px; color: var(--white-40); letter-spacing: 1px; z-index: 3; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  
  /* Force navbar padding */
  .navbar .container.nav-inner ,
  .navbar .container,
  .nav-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 999;
    overflow-y: auto;
    padding: 80px 20px;
  }
  .nav-links.open a { font-size: 18px; letter-spacing: 3px; }
  .nav-toggle { display: flex; }

  /* Mobile dropdown */
  .nav-dropdown { position: relative;
  display: inline-block;}
  .nav-dropdown-menu {
    position: absolute;
    top: 100%;    /* Appears directly below the link */
    left: 50%;    /* Move to the middle of the link */
    transform: translateX(-50%);
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background: rgba(--black);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    margin-top: 10px;
    padding: 8px;
    /* min-width: auto; */
    /* box-shadow: none; */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: none;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a {
    display: block;
    font-size: 14px !important;
    padding: 10px 16px;
    text-align: center;
    /* justify-content: center !important; */
    text-decoration: none;
  }
  .nav-dropdown-menu a .dd-icon { display: none; }

  .hero-stats { gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .services-grid,
  .products-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .quote-form { padding: 32px 24px; }
  .contact-info-card { padding: 32px 24px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .service-hero { padding: 140px 0 80px; }
  .service-hero-img img { height: 300px; }
  .detail-img img { height: 280px; }
  .trending-card { flex-direction: column; }
  .trending-card-img { width: 100%; min-height: 180px; height: 180px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .locations-grid { gap: 16px; }
}

/* ─── Page Transition / Preloader ─── */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--black);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-transition.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Exiting — triggered on link click before navigation */
.page-transition.exiting {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.loader-logo {
  height: 56px;
  margin-bottom: 36px;
  opacity: 0;
  animation: loaderFadeIn 0.5s ease 0.1s forwards;
}

.loader-bar-track {
  width: 180px;
  height: 2px;
  background: var(--white-08);
  border-radius: 100px;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeIn 0.4s ease 0.3s forwards;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 100px;
  animation: loaderProgress 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  box-shadow: 0 0 20px var(--accent-glow);
}

.loader-text {
  margin-top: 20px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-40);
  opacity: 0;
  animation: loaderFadeIn 0.4s ease 0.3s forwards;
}

/* Dot pulse beneath text */
.loader-dots {
  display: inline-flex;
  gap: 4px;
  margin-left: 4px;
}
.loader-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white-40);
  animation: dotPulse 1s ease infinite;
}
.loader-dots span:nth-child(2) { animation-delay: 0.15s; }
.loader-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loaderProgress {
  0% { width: 0%; }
  60% { width: 70%; }
  100% { width: 100%; }
}

@keyframes dotPulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.2); }
}

/* Page reveal wipe — optional dramatic effect */
.page-transition::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  animation: shimmer 1.2s ease 0.3s forwards;
}

@keyframes shimmer {
  0% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateX(100%); }
}

/* ─── File Upload Component ─── */
.file-upload-wrapper {
  position: relative;
  width: 100%;
}

.file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-display {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  background: rgba(255,255,255,0.04);
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.file-upload-wrapper:hover .file-upload-display {
  background: rgba(255,255,255,0.06);
  border-color: var(--accent);
}

.file-upload-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.file-upload-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.file-upload-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-90);
  letter-spacing: 0.5px;
}

.file-upload-hint {
  font-size: 12px;
  color: var(--white-40);
  font-weight: 300;
}

.file-upload-preview {
  position: relative;
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 8px;
  object-fit: contain;
}

.file-remove-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(200,16,46,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 3;
}

.file-remove-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
}

/* Drag and drop states */
.file-upload-wrapper.dragging .file-upload-display {
  background: rgba(200,16,46,0.08);
  border-color: var(--accent);
  transform: scale(1.02);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .file-upload-display {
    padding: 20px 16px;
  }
  
  .file-upload-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .preview-img {
    max-height: 150px;
  }
}

.nav-wrap-studio {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 7px 16px !important;
  background: rgba(200,16,46,0.1) !important;
  border: 1px solid rgba(200,16,46,0.22) !important;
  border-radius: 100px !important;
  color: var(--accent) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  transition: all 0.35s var(--ease) !important;
}
.nav-wrap-studio:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 28px var(--accent-glow) !important;
  transform: translateY(-1px) !important;
}
.nav-ws-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  animation: wsDotPulse 1.3s ease-in-out infinite;
}
@keyframes wsDotPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.3; transform:scale(.7); }
}