/* ============================================
   XTATIC DIGITAL — AUTOMOTIVE TEMPLATE
   ============================================
   HOW TO REBRAND FOR A NEW CLIENT:
   1. Swap the Google Fonts import below (fonts.google.com)
   2. Update --font-heading and --font-body
   3. Change --primary-accent (main color, e.g. gold, blue, orange)
   4. Change --secondary-accent (second brand color)
   5. Update --red if you want a different energy/highlight color
   Everything else updates automatically.
   ============================================ */

/* ── FONTS — change both the @import and the variables below ── */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  /* ── BACKGROUNDS — deep navy ── */
  --bg-primary:    #080C14;
  --bg-secondary:  #0B1220;
  --bg-card:       #0F192B;

  /* ── PRIMARY ACCENT — burnished bronze ── */
  --gold:          #B87333;
  --gold-light:    #D4914A;
  --gold-dark:     #8B5523;
  --border-gold:   rgba(184,115,51,0.25);
  --shadow-gold:   0 0 40px rgba(184,115,51,0.12);

  /* ── SECONDARY ACCENT — rich navy blue ── */
  --accent-blue:      #1A4A8A;
  --accent-blue-dark: #123570;
  --accent-blue-muted:rgba(26,74,138,0.12);
  --border-blue:      rgba(26,74,138,0.35);

  /* ── ENERGY COLOR — steel blue ── */
  --red:           #2D6AA0;
  --red-light:     #3A82C0;
  --red-muted:     rgba(45,106,160,0.12);
  --border-red:    rgba(45,106,160,0.3);

  /* ── TEXT ── */
  --text-primary:  #EEE8E0;
  --text-secondary:#8898B0;
  --text-muted:    #3D5070;

  /* ── FONTS ── */
  --font-heading:  'Exo 2', sans-serif;
  --font-body:     'Nunito', sans-serif;

  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:    all 0.4s var(--ease);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

h1,h2,h3,h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.35rem); }

p { font-size: clamp(0.92rem, 1.4vw, 1.05rem); color: var(--text-secondary); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 130px 0; position: relative; }

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.gold-line {
  width: 52px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.9rem 0 1.75rem;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

.text-gold { color: var(--gold); }
.text-blue { color: var(--accent-blue); }
.text-red  { color: var(--red); }
.italic    { font-style: italic; }

/* Blue-tinted section bg — used sparingly for depth */
.section-blue-tint {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #0d1520 100%);
}
/* Red-tinted — NSL / performance energy */
.section-red-tint {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #180808 100%);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 38px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #0D0D0D;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0D0D0D;
  border-color: var(--gold);
  transform: translateY(-3px);
}

.btn-blue {
  background: var(--accent-blue);
  color: #fff;
  border: 1px solid transparent;
}
.btn-blue:hover {
  background: var(--accent-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28,105,212,0.35);
}

.btn-red {
  background: var(--red);
  color: #fff;
  border: 1px solid transparent;
}
.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212,43,43,0.35);
}

.btn-outline-blue {
  background: transparent;
  color: var(--accent-blue);
  border: 1px solid var(--border-blue);
}
.btn-outline-blue:hover {
  background: var(--accent-blue);
  color: #fff;
  transform: translateY(-3px);
}

/* ── Page Loader ── */
#page-loader {
  position: fixed; inset: 0;
  background: #080808;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}
.loader-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 3px;
  opacity: 0;
}
.loader-track {
  width: 180px; height: 1px;
  background: rgba(201,168,76,0.15);
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

/* ── Page Transition ── */
#page-transition {
  position: fixed; inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* ── Cursor Glow ── */
.cursor-glow {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,168,76,0.035) 0%, transparent 70%);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 1;
  transition: opacity 0.3s;
}

/* ============================================
   HERO PANEL — dark card overlay on video
   ============================================ */
.hero-panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  width: 100%;
  background: rgba(6, 10, 18, 0.88);
  border-top: 2px solid var(--border-gold);
  padding: 1.25rem 3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: panelIn 0.9s 1.2s var(--ease) forwards;
}
.hero-panel-left {
  flex: 1;
  border-right: 1px solid var(--border-gold);
  padding-right: 3rem;
}
.hero-panel-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@keyframes panelIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .hero-panel { flex-direction: column; padding: 1.5rem 1rem; gap: 1rem; }
  .hero-panel-left { border-right: none; border-bottom: 1px solid var(--border-gold); padding-right: 0; padding-bottom: 1rem; }
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed; top: 34px; left: 0; right: 0;
  z-index: 1000;
  padding: 1.75rem 0;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}
.nav-logo-badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.2;
}
.nav-logo-name span { color: var(--gold); }
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 9px 22px !important;
  border: 1px solid var(--accent-blue) !important;
  color: #fff !important;
  background: var(--accent-blue) !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--accent-blue-dark) !important;
  border-color: var(--accent-blue-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,105,212,0.35) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
}

/* CSS animated background */
.hero-bg-anim {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(201,168,76,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(28,105,212,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 90%, rgba(212,43,43,0.05) 0%, transparent 45%);
  animation: heroPulse 9s ease-in-out infinite alternate;
}
@keyframes heroPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.08); }
}

/* Grid lines overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 1; opacity: 0.025;
  background-image:
    linear-gradient(rgba(201,168,76,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,1) 1px, transparent 1px);
  background-size: 70px 70px;
}

/* Placeholder for hero video */
/* To enable video: uncomment <video> in index.html and set opacity to 1 */
.hero-video {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(135deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.55) 50%, rgba(13,13,13,0.88) 100%);
}

.hero-content {
  position: relative; z-index: 4;
  text-align: center;
  max-width: 960px;
  padding: 0 2rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 8px 22px;
  margin-bottom: 2rem;
  opacity: 0;
}
.hero-title {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 3rem;
  opacity: 0;
}
.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-bar {
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { opacity: 0.25; transform: scaleY(0.8); }
  50%      { opacity: 1;    transform: scaleY(1); }
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--bg-secondary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border: 1px solid var(--border-gold);
  z-index: 0;
}
.about-img {
  position: relative; z-index: 1;
  width: 100%; height: auto;
  display: block;
  filter: grayscale(15%) contrast(1.08);
}

.about-text p { margin-bottom: 1.25rem; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.stat-box {
  padding: 1.5rem;
  border: 1px solid var(--border-gold);
  background: var(--bg-card);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-desc {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   SERVICES (HOME)
   ============================================ */
.services { background: var(--bg-primary); }
.services-header { text-align: center; margin-bottom: 5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-gold);
}
.svc-card {
  background: var(--bg-card);
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.svc-card:hover { background: #191919; transform: translateY(-5px); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.svc-card h3 { font-size: 1.1rem; margin-bottom: 0.85rem; }
.svc-card p  { font-size: 0.88rem; line-height: 1.7; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.svc-card:hover .svc-link { opacity: 1; transform: translateX(0); }
.svc-link svg { width: 14px; height: 14px; }

/* Service list (home page) */
.svc-list {
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  overflow: hidden;
}
.svc-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  text-decoration: none;
  color: var(--text-primary);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-gold);
  transition: background 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: #191919; padding-left: 2.25rem; }
.svc-row-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  color: var(--gold);
}
.svc-row-name {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.svc-row-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.svc-row:hover .svc-row-arrow { opacity: 1; transform: translateX(0); }

/* ============================================
   ENGINE ANIMATION SECTION
   ============================================ */
.engine-section {
  background: var(--bg-secondary);
  overflow: hidden;
}
.engine-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.engine-text h2 { margin-bottom: 1rem; }
.engine-text p  { margin-bottom: 1.5rem; }
.engine-spec-list {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.engine-spec {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  letter-spacing: 1px;
  color: var(--text-secondary);
}
.engine-spec::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.engine-canvas {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#engine-svg {
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 0 50px rgba(201,168,76,0.08));
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews { background: var(--bg-primary); overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 4rem; }

.reviews-scroller {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollLeft 38s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 2rem 1.75rem;
  min-width: 330px;
  max-width: 330px;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(201,168,76,0.5); }
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.review-stars span { color: var(--gold); font-size: 0.9rem; }
.review-body {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #0D0D0D;
  font-weight: 700;
  flex-shrink: 0;
}
.review-name  { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); }
.review-when  { font-size: 0.72rem; color: var(--text-muted); }

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 3rem;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.google-badge svg { width: 20px; height: 20px; }

/* ============================================
   LOCATION + HOURS
   ============================================ */
.location { background: var(--bg-secondary); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.map-frame {
  position: relative;
  overflow: hidden;
}
.map-frame::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--border-gold);
  pointer-events: none;
  z-index: 1;
}
.map-frame a {
  display: block;
}
.map-frame iframe {
  width: 100%; height: 380px;
  border: none;
  filter: grayscale(85%) contrast(1.1) brightness(0.65);
  transition: filter 0.5s var(--ease);
  display: block;
}
.map-frame:hover iframe {
  filter: grayscale(20%) contrast(1) brightness(0.9);
}
.map-caption {
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.map-caption strong { color: var(--gold); }

.loc-block { display: flex; flex-direction: column; gap: 2.5rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(201,168,76,0.08); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.7rem 0; font-size: 0.88rem; }
.hours-table td:first-child { color: var(--text-secondary); }
.hours-table td:last-child  { color: var(--gold); text-align: right; font-weight: 600; }
.hours-table tr.today td    { color: var(--text-primary); }
.hours-table tr.closed td:last-child { color: var(--text-muted); }

.contact-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-row  { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-icon svg { width: 16px; height: 16px; }
.contact-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-val   { font-size: 0.9rem; color: var(--text-primary); }

/* ============================================
   SOCIAL
   ============================================ */
.social-section {
  background: var(--bg-primary);
  padding: 90px 0;
  text-align: center;
}
.social-section h2 { margin-bottom: 0.5rem; }
.social-section > .container > p { margin-bottom: 3rem; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 32px;
  border: 1px solid var(--border-gold);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.social-link svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #080808;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-gold);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--gold); }
.footer-credit {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.footer-credit span { color: var(--gold); }

/* ============================================
   INNER PAGE HERO BANNER
   ============================================ */
.page-hero {
  padding: 160px 0 90px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p  { font-size: 1rem; max-width: 520px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid,
  .engine-inner,
  .location-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-img  { height: auto; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    z-index: 1000;
    overflow-y: auto;
    padding: 5rem 2rem 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; letter-spacing: 3px; }
  .nav-links .nav-cta { padding: 0.6rem 1.5rem; font-size: 0.78rem; }
  .hamburger { display: flex; }
  .hero-actions { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 90px 0; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
