/* JJV Engineering - Plain HTML Styles */

/* CSS Variables */
:root {
  --color-navy: #060d1b;
  --color-navy-light: #0c1829;
  --color-navy-800: #091422;
  --color-navy-900: #040a14;
  --color-charcoal: #12121f;
  --color-charcoal-light: #1e1e32;
  --color-steel: #3d4f65;
  --color-steel-light: #8a9bb5;
  --color-steel-200: #c4d0e0;
  --color-electric: #0ea5e9;
  --color-electric-dark: #0284c7;
  --color-electric-light: #38bdf8;
  --color-electric-glow: #7dd3fc;
  --color-accent: #06b6d4;
  --color-metallic: #c0c8d4;
  --color-slate-bg: #f1f5f9;
  --color-white: #ffffff;
  --color-black: #000000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-navy);
  color: var(--color-white);
  font-family: system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: rgba(14, 165, 233, 0.3);
  color: #fff;
}

/* Premium scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-navy-900); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-electric), var(--color-accent));
  border-radius: 99px;
}

/* ─── PREMIUM BACKGROUNDS ─── */
.steel-gradient {
  background: radial-gradient(ellipse 120% 80% at 10% 20%, #0c1e3a 0%, #060d1b 50%, #040a14 100%);
}

.grid-pattern {
  background-image:
    linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.grid-pattern-dense {
  background-image:
    linear-gradient(rgba(14,165,233,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.025) 1px, transparent 1px);
  background-size: 30px 30px;
}

.diagonal-lines {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 14px,
    rgba(14,165,233,0.015) 14px,
    rgba(14,165,233,0.015) 28px
  );
}

.metal-texture {
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.02) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.02) 75%, transparent 75%);
  background-size: 4px 4px;
}

.noise-overlay {
  position: relative;
}
.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ─── TEXT GRADIENT ─── */
.text-gradient {
  background: linear-gradient(135deg, var(--color-electric-glow) 0%, var(--color-electric) 50%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #e2c97e 0%, #c9a84c 50%, #e2c97e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── GLASS MORPHISM ─── */
.glass {
  background: rgba(6, 13, 27, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.06);
}

.glass-card {
  background: linear-gradient(135deg, rgba(14,165,233,0.05) 0%, rgba(6,13,27,0.8) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(14,165,233,0.2);
  background: linear-gradient(135deg, rgba(14,165,233,0.08) 0%, rgba(6,13,27,0.9) 100%);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(14,165,233,0.08);
}

/* ─── GLOW EFFECTS ─── */
.glow-electric {
  box-shadow: 0 0 24px rgba(14,165,233,0.25), 0 0 80px rgba(14,165,233,0.08);
}

.glow-line {
  position: relative;
}
.glow-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-electric), transparent);
  opacity: 0.4;
}

/* ─── PREMIUM BUTTON STYLES ─── */
.btn-primary {
  background: linear-gradient(135deg, var(--color-electric) 0%, var(--color-accent) 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(14,165,233,0.35), 0 0 0 1px rgba(14,165,233,0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-outline:hover {
  border-color: var(--color-electric);
  background: rgba(14,165,233,0.06);
  box-shadow: 0 0 20px rgba(14,165,233,0.1);
}

.btn-danger {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}
.btn-danger:hover {
  box-shadow: 0 8px 32px rgba(220,38,38,0.35);
  transform: translateY(-1px);
}

/* ─── DIVIDER ─── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(14,165,233,0.15) 20%, rgba(14,165,233,0.3) 50%, rgba(14,165,233,0.15) 80%, transparent 100%);
}

/* ─── ANIMATIONS ─── */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(14,165,233,0.25); }
  50%      { box-shadow: 0 0 50px rgba(14,165,233,0.5), 0 0 100px rgba(14,165,233,0.15); }
}
.animate-pulse-glow { animation: pulse-glow 2.5s ease-in-out infinite; }

@keyframes pulse-glow-red {
  0%, 100% { box-shadow: 0 0 20px rgba(220,38,38,0.3); }
  50%      { box-shadow: 0 0 50px rgba(220,38,38,0.6), 0 0 100px rgba(220,38,38,0.15); }
}
.animate-pulse-glow-red { animation: pulse-glow-red 2s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.animate-shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(14,165,233,0.08) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.animate-rotate-slow { animation: rotate-slow 30s linear infinite; }

@keyframes dash {
  to { stroke-dashoffset: 0; }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.from-left {
  transform: translateX(-30px);
}

.animate-on-scroll.from-left.is-visible {
  transform: translateX(0);
}

.animate-on-scroll.from-right {
  transform: translateX(30px);
}

.animate-on-scroll.from-right.is-visible {
  transform: translateX(0);
}

.animate-on-scroll.scale-up {
  transform: scale(0.95);
}

.animate-on-scroll.scale-up.is-visible {
  transform: scale(1);
}

/* Staggered animation delays */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }
.animate-on-scroll.delay-7 { transition-delay: 0.7s; }
.animate-on-scroll.delay-8 { transition-delay: 0.8s; }

/* ─── BLUEPRINT ACCENT ─── */
.blueprint-corner {
  position: relative;
}
.blueprint-corner::before,
.blueprint-corner::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--color-electric);
  opacity: 0.25;
}
.blueprint-corner::before {
  top: -1px; left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.blueprint-corner::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

/* ─── CARD HOVER LIFT ─── */
.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(14,165,233,0.08);
}

/* ─── GRADIENT BORDER ─── */
.gradient-border {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(14,165,233,0.3), transparent 40%, transparent 60%, rgba(6,182,212,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Navigation Styles */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.5s ease-out;
}

nav.scrolled {
  background: rgba(6, 13, 27, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.9);
  transition: opacity 0.3s;
}

.logo img:hover {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--color-steel-light);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-electric-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-electric), var(--color-accent));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--color-steel-light);
  text-decoration: none;
  transition: color 0.3s;
}

.phone-btn:hover {
  color: var(--color-white);
}

.phone-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.phone-btn:hover .phone-icon {
  border-color: rgba(14,165,233,0.3);
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 40;
}

.mobile-menu.active {
  display: block;
}

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 20, 0.9);
  backdrop-filter: blur(20px);
}

.mobile-content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: rgba(12, 24, 41, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
}

.mobile-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.5rem;
}

.mobile-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
}

.mobile-nav-links {
  flex: 1;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  padding: 0.875rem 1rem;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-steel-light);
  transition: all 0.3s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.05);
}

.mobile-nav-link.active {
  color: var(--color-electric);
  background: rgba(14,165,233,0.08);
}

.mobile-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-electric-light);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.mobile-phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(14,165,233,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
}

/* Footer Styles */
footer {
  position: relative;
}

.footer-main {
  background: var(--color-navy-900);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }
}

.footer-col-4 {
  grid-column: span 12;
}

@media (min-width: 1024px) {
  .footer-col-4 {
    grid-column: span 4;
  }
}

.footer-col-2 {
  grid-column: span 12;
}

@media (min-width: 1024px) {
  .footer-col-2 {
    grid-column: span 2;
  }
}

.footer-logo img {
  height: 99px;
  width: auto;
  filter: brightness(0) invert(0.8);
  margin-bottom: 1.5rem;
}

.footer-description {
  color: var(--color-steel-light);
  opacity: 0.6;
  font-size: 13px;
  line-height: 1.8;
  max-width: 280px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-steel-light);
  opacity: 0.4;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: var(--color-steel-light);
  opacity: 0.6;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-electric);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-steel-light);
  opacity: 0.6;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item:hover {
  color: var(--color-electric);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  transition: border-color 0.3s;
}

.footer-contact-item:hover .footer-contact-icon {
  border-color: rgba(14,165,233,0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: var(--color-steel);
  opacity: 0.5;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-steel-light);
  opacity: 0.4;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}

.back-to-top:hover {
  color: var(--color-electric);
}

.back-to-top svg {
  transition: transform 0.3s;
}

.back-to-top:hover svg {
  transform: translateY(-4px);
}

/* Section Styles */
section {
  position: relative;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  max-width: 48rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-electric);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-electric);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 1.75rem;
}

.hero p {
  font-size: 17px;
  color: var(--color-steel-light);
  opacity: 0.8;
  max-width: 28rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 19px;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: rgba(12, 24, 41, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 4rem;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-electric);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 13px;
  color: var(--color-steel-light);
  opacity: 0.7;
}

/* Services Section */
.services-section {
  padding: 7rem 0;
  background: var(--color-navy);
}

.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-electric);
  margin-bottom: 1rem;
}

.section-badge::before,
.section-badge::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-electric);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 15px;
  color: var(--color-steel-light);
  opacity: 0.7;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

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

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-electric);
  margin-bottom: 1.25rem;
  transition: all 0.4s;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-electric), var(--color-accent));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(14,165,233,0.2);
}

.service-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--color-electric-light);
}

.service-card p {
  font-size: 13px;
  color: var(--color-steel-light);
  opacity: 0.7;
  line-height: 1.6;
}

.service-cta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-electric);
  font-size: 12px;
  font-weight: 600;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.service-card:hover .service-cta {
  opacity: 1;
  transform: translateY(0);
}

/* About Preview Section */
.about-preview {
  padding: 7rem 0;
  background: var(--color-navy-900);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem 6rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.about-content p {
  font-size: 15px;
  color: var(--color-steel-light);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 13px;
  color: var(--color-steel-light);
  opacity: 0.7;
}

.about-feature svg {
  flex-shrink: 0;
  color: rgba(14,165,233,0.7);
}

.about-video {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-electric), var(--color-accent), transparent);
  z-index: 10;
}

.about-video video {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

/* Why JJV Section */
.why-jjv {
  padding: 7rem 0;
  background: var(--color-navy);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  text-align: center;
  padding: 2rem;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(14,165,233,0.07);
  border: 1px solid rgba(14,165,233,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-electric);
  margin: 0 auto 1.5rem;
  transition: all 0.5s;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--color-electric), var(--color-accent));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(14,165,233,0.2);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 14px;
  color: var(--color-steel-light);
  opacity: 0.7;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background: var(--color-navy-900);
  overflow: hidden;
  text-align: center;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 17px;
  color: var(--color-steel-light);
  opacity: 0.7;
  max-width: 28rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Page Hero */
.page-hero {
  padding: 9rem 0;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.page-hero p {
  font-size: 17px;
  color: var(--color-steel-light);
  opacity: 0.8;
  max-width: 28rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .page-hero p {
    font-size: 19px;
  }
}

/* Values Section */
.values-section {
  padding: 7rem 0;
  background: var(--color-navy-900);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.value-card {
  text-align: center;
  padding: 1.75rem;
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(14,165,233,0.07);
  border: 1px solid rgba(14,165,233,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-electric);
  margin: 0 auto 1.25rem;
  transition: all 0.5s;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--color-electric), var(--color-accent));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(14,165,233,0.2);
}

.value-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
}

.value-card p {
  font-size: 13px;
  color: var(--color-steel-light);
  opacity: 0.65;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  padding: 7rem 0;
  background: var(--color-navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
  grid-auto-rows: 200px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,13,27,0.8), rgba(6,13,27,0.2), transparent);
  opacity: 0.6;
  transition: opacity 0.5s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 0.4;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption p {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .gallery-caption p {
    font-size: 12px;
  }
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-electric), var(--color-accent));
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  background: rgba(4, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: none;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.1);
}

.lightbox-content {
  position: relative;
  max-width: 80rem;
  max-height: 85vh;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mission Section */
.mission-section {
  padding: 8rem 0;
  background: var(--color-navy-900);
  overflow: hidden;
  text-align: center;
}

.mission-icon {
  width: 40px;
  height: 40px;
  color: rgba(14,165,233,0.3);
  margin: 0 auto 1.5rem;
}

.mission-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.mission-section p {
  font-size: 19px;
  color: var(--color-steel-light);
  opacity: 0.8;
  font-style: italic;
  max-width: 36rem;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Services Page */
.service-detail-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  margin-bottom: 1.25rem;
}

@media (max-width: 1024px) {
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.service-detail-icon {
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .service-detail-icon {
    border-right: 1px solid rgba(255,255,255,0.04);
  }
}

.service-detail-icon-inner {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(14,165,233,0.07);
  border: 1px solid rgba(14,165,233,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-electric);
  transition: all 0.5s;
}

.service-detail-card:hover .service-detail-icon-inner {
  background: linear-gradient(135deg, var(--color-electric), var(--color-accent));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(14,165,233,0.2);
}

.service-detail-content {
  padding: 1.75rem;
}

@media (max-width: 1024px) {
  .service-detail-content {
    padding: 0 1.75rem 1.75rem;
  }
}

.service-detail-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.service-detail-card:hover .service-detail-content h3 {
  color: var(--color-electric-light);
}

.service-detail-content p {
  font-size: 13px;
  color: var(--color-steel-light);
  opacity: 0.65;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .service-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  color: var(--color-steel-light);
  opacity: 0.55;
}

.service-feature svg {
  flex-shrink: 0;
  color: rgba(14,165,233,0.6);
}

.service-detail-cta {
  padding: 1.75rem;
}

@media (max-width: 1024px) {
  .service-detail-cta {
    padding: 0 1.75rem 1.75rem;
  }
}

@media (min-width: 1024px) {
  .service-detail-cta {
    border-left: 1px solid rgba(255,255,255,0.04);
  }
}

.service-detail-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-electric);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.service-detail-cta a:hover {
  color: var(--color-electric-light);
}

.service-detail-cta a svg {
  transition: transform 0.3s;
}

.service-detail-cta a:hover svg {
  transform: translateX(4px);
}

/* Process Section */
.process-section {
  padding: 7rem 0;
  background: var(--color-navy-900);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.process-item {
  text-align: center;
  position: relative;
}

.process-number {
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-electric-glow), var(--color-electric), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: monospace;
  margin-bottom: 0.25rem;
  line-height: 1;
  opacity: 0.2;
  transition: opacity 0.5s;
}

.process-item:hover .process-number {
  opacity: 0.4;
}

.process-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
}

.process-item p {
  font-size: 13px;
  color: var(--color-steel-light);
  opacity: 0.6;
  line-height: 1.6;
}

.process-connector {
  display: none;
  position: absolute;
  top: 2rem;
  right: -12px;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(14,165,233,0.3), transparent);
}

@media (min-width: 768px) {
  .process-connector {
    display: block;
  }
}

/* Contact Page */
.contact-cards {
  padding: 5rem 0;
  background: rgba(12, 24, 41, 0.5);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.contact-card {
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(14,165,233,0.07);
  border: 1px solid rgba(14,165,233,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-electric);
  margin-bottom: 1rem;
  transition: all 0.5s;
}

.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, var(--color-electric), var(--color-accent));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(14,165,233,0.2);
}

.contact-card h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-steel-light);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.contact-card .info {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
}

.contact-card .sub {
  font-size: 12px;
  color: var(--color-steel-light);
  opacity: 0.5;
  margin-top: 0.25rem;
}

/* Contact Form Section */
.contact-form-section {
  padding: 7rem 0;
  background: var(--color-navy);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 4rem;
}

@media (min-width: 1024px) {
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-steel-light);
  opacity: 0.5;
  margin-bottom: 0.625rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 14px;
  color: var(--color-white);
  transition: all 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-steel-light);
  opacity: 0.3;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(14,165,233,0.4);
  background: rgba(255,255,255,0.05);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238a9bb5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: none;
  min-height: 150px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 15px;
}

.form-note {
  font-size: 11px;
  color: var(--color-steel-light);
  opacity: 0.3;
  text-align: center;
  letter-spacing: 0.02em;
  margin-top: 1rem;
}

/* Map Section */
.map-section {
  margin-bottom: 1.5rem;
}

.map-section h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-steel-light);
  opacity: 0.4;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-section h3 svg {
  color: rgba(14,165,233,0.6);
}

.map-container {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) opacity(70%);
  transition: filter 0.7s;
}

.map-container iframe:hover {
  filter: grayscale(0%) opacity(100%);
}

/* Quick Contact */
.quick-contact {
  padding: 1.75rem;
}

.quick-contact h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-steel-light);
  opacity: 0.4;
  margin-bottom: 1.25rem;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: inherit;
}

.quick-contact-item:last-child {
  margin-bottom: 0;
}

.quick-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(14,165,233,0.07);
  border: 1px solid rgba(14,165,233,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-electric);
  transition: all 0.4s;
}

.quick-contact-item:hover .quick-contact-icon {
  background: linear-gradient(135deg, var(--color-electric), var(--color-accent));
  color: var(--color-white);
  border-color: transparent;
}

.quick-contact-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
}

.quick-contact-value {
  font-size: 13px;
  color: var(--color-electric);
  opacity: 0.8;
}

/* Bottom CTA Banner */
.bottom-cta {
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-electric), var(--color-accent), var(--color-electric));
}

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

.bottom-cta-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .bottom-cta-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.bottom-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .bottom-cta h3 {
    font-size: 28px;
  }
}

.bottom-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-top: 0.375rem;
}

.bottom-cta-btn {
  background: var(--color-white);
  color: var(--color-navy);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 15px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  transition: all 0.3s;
  flex-shrink: 0;
}

.bottom-cta-btn:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 3rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(14,165,233,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.success-icon svg {
  color: var(--color-electric);
}

.success-message h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.success-message p {
  font-size: 15px;
  color: var(--color-steel-light);
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.success-message button {
  color: var(--color-electric);
  font-weight: 500;
  font-size: 13px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.success-message button:hover {
  color: var(--color-electric-light);
}

/* Utility */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.py-36 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.bg-navy {
  background: var(--color-navy);
}

.bg-navy-900 {
  background: var(--color-navy-900);
}

.bg-navy-light-50 {
  background: rgba(12, 24, 41, 0.5);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.rounded-lg {
  border-radius: 8px;
}

.overflow-hidden {
  overflow: hidden;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-24 {
  gap: 6rem;
}

.grid {
  display: grid;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-1400px {
  max-width: 1400px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lg-px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1024px) {
  .lg-px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* SVG Icons */
svg {
  display: block;
}
