/* ============================================================
   SAI MOTORS — INDUSTRIAL PRECISION DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --black:    #0A1628;    /* Deep navy */
  --red:      #2563EB;    /* Royal blue — primary accent */
  --red-dark: #1D4ED8;    /* Deep blue — hover state */
  --white:    #F0F6FF;    /* Cool off-white */
  --gray:     #112040;    /* Dark navy card bg */
  --gray-mid: #1A3055;    /* Mid navy border/divider */
  --muted:    #7B9EC4;    /* Muted blue-gray */
  --chrome:   #B8D0E8;    /* Light silver-blue */

  --font-head: 'Syncopate', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Inter', sans-serif;

  --nav-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.text-red    { color: var(--red); }
.text-chrome { color: var(--chrome); }
.text-muted  { color: var(--muted); }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 4px 12px;
  margin-bottom: 16px;
}

/* ── Scroll-Reveal Animation ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform 0.15s;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-ghost:hover {
  background: var(--red);
  color: var(--white);
}

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-mid);
  transition: border-color 0.3s;
}
.navbar.scrolled { border-bottom-color: var(--red); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.2em;
  display: block;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--black);
  border-top: 2px solid var(--red);
  padding: 32px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome);
  transition: color var(--transition);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray);
}
.mobile-menu a:hover { color: var(--red); }

/* ── Page Header (inner pages) ─────────────────────────────── */
.page-header {
  padding: 160px 0 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(227,6,19,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-header-line {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin-bottom: 24px;
}
.page-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}
.page-title span { color: var(--red); }
.page-subtitle {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.1em;
}

/* ── Diagonal Divider ──────────────────────────────────────── */
.diagonal-divider {
  height: 60px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
  margin: 0;
}
.diagonal-divider-dark {
  height: 60px;
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('../images/hero-bg.jpg');
  filter: brightness(0.3);
  transform: scale(1.02);
  animation: subtle-zoom 20s infinite alternate ease-in-out;
}
@keyframes subtle-zoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.98) 0%,
    rgba(13,13,13,0.6) 50%,
    rgba(13,13,13,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: auto auto 0;
  padding: 0 24px;
  width: 100%;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 10vw, 110px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.92;
  margin-bottom: 32px;
}
.hero-title .line-outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero-title .line-red { color: var(--red); }

.hero-desc {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--chrome);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-mid);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Trust Ticker ──────────────────────────────────────────── */
.trust-bar {
  background: var(--red);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 48px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.ticker-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.5);
  display: block;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-mid);
}

.service-card {
  background: var(--gray);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.4s ease;
}
.service-card:hover { background: var(--gray-mid); }
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  color: var(--red);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.service-card p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.service-num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  user-select: none;
}

/* ── Why Choose Us ─────────────────────────────────────────── */
.why-section {
  background: var(--black);
  position: relative;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.why-left {
  padding: 100px 60px 100px 0;
  border-right: 1px solid var(--gray-mid);
}
.why-right {
  padding: 100px 0 100px 60px;
}
.why-right h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.why-right p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 420px;
}

.why-stat {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.why-stat:first-child { border-top: 1px solid var(--gray-mid); }
.why-stat-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  min-width: 100px;
}
.why-stat-text h4 {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.why-stat-text p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { background: var(--gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-mid);
  margin-top: 60px;
}
.testimonial-card {
  background: var(--gray);
  padding: 40px 32px;
}
.stars { color: var(--red); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chrome);
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.author-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
  margin: -24px 0;
  padding: 100px 0;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.cta-banner p {
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 40px;
  opacity: 0.85;
}
.cta-banner .btn-outline { border-color: var(--white); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--red); }

/* ── Section Headings ──────────────────────────────────────── */
.section-heading {
  margin-bottom: 60px;
}
.section-heading h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.section-heading p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 540px;
  line-height: 1.8;
}

/* ── Services Page Full ────────────────────────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--gray-mid);
}
.service-full-card {
  background: var(--gray);
  padding: 56px 48px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-full-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--red);
  transition: width 0.3s ease;
}
.service-full-card:hover { background: #1f1f1f; }
.service-full-card:hover::after { width: 4px; }

.service-full-icon {
  width: 64px; height: 64px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 4px;
}
.service-full-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.service-full-body p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before {
  content: '>';
  color: var(--red);
  font-weight: 700;
}

/* ── About Page ────────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-journey-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.values-card {
  background: var(--black);
  padding: 40px 36px;
  margin-bottom: 2px;
}
.about-intro-img {
  position: relative;
}
.about-intro-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: contrast(1.1);
}
.about-intro-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--red);
  z-index: -1;
}
.about-intro-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-intro-text p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-mid);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 12px; height: 12px;
  background: var(--red);
  border: 2px solid var(--black);
}
.timeline-year {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.timeline-item p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-mid);
  margin-top: 60px;
}
.team-card {
  background: var(--gray);
  padding: 40px 32px;
  text-align: center;
}
.team-card-avatar {
  width: 80px; height: 80px;
  background: var(--gray-mid);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-avatar svg { color: var(--muted); width: 40px; height: 40px; }
.team-card h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.team-card p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Booking Page ──────────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.booking-form-wrap {
  background: var(--gray);
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--gray-mid);
  border: 1px solid var(--gray-mid);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 14px 16px;
  transition: border-color var(--transition);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group select option { background: var(--gray); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  background: rgba(227, 6, 19, 0.1);
  border: 1px solid var(--red);
  padding: 24px;
  text-align: center;
  margin-top: 24px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 18px;
  margin-bottom: 8px;
}
.form-success p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome);
}

.booking-info-card {
  background: var(--gray);
  padding: 40px 32px;
  margin-bottom: 2px;
}
.booking-info-card h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-mid);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-family: var(--font-mono);
  font-size: 12px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--chrome); }
.hours-time { color: var(--white); }
.hours-closed { color: var(--muted); font-style: italic; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.contact-item:last-child { border-bottom: none; }
.contact-item svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.contact-item-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome);
}
.contact-item-text a { color: var(--white); transition: color var(--transition); }
.contact-item-text a:hover { color: var(--red); }

/* ── Gallery Page ──────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
  background: var(--gray-mid);
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 24px;
  background: var(--gray);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-mid);
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: contrast(1.05) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: contrast(1.1) saturate(0.7) brightness(0.8);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(227,6,19,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  flex-direction: column;
  gap: 8px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { color: var(--white); font-size: 32px; }
.gallery-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--red); }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-mid);
}
.contact-info-panel {
  background: var(--gray);
  padding: 60px 48px;
}
.contact-map-panel {
  background: var(--gray);
  overflow: hidden;
  min-height: 500px;
}
.contact-map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(0.7);
}
.contact-info-panel h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.contact-info-panel > p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-details { margin-bottom: 48px; }
.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.contact-detail-item:first-child { border-top: 1px solid var(--gray-mid); }
.detail-icon {
  width: 44px; height: 44px;
  background: rgba(227,6,19,0.1);
  border: 1px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-icon svg { width: 20px; height: 20px; color: var(--red); }
.detail-text h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 4px;
}
.detail-text p, .detail-text a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
  line-height: 1.6;
}
.detail-text a:hover { color: var(--red); }

.hours-table { width: 100%; }
.hours-table tr td {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { color: var(--muted); }
.hours-table td:last-child { color: var(--white); text-align: right; font-weight: 700; }

/* ── Floating Buttons ──────────────────────────────────────── */
.floating-btns {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.float-btn svg { width: 24px; height: 24px; }
.float-btn-wa { background: #25D366; }
.float-btn-call {
  background: var(--red);
  display: none;
}

/* Tooltip */
.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 68px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover::before { opacity: 1; }

/* Pulse ring */
.float-btn-wa::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: #070707;
  border-top: 2px solid var(--red);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-brand p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-mid);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before { content: '›'; color: var(--red); }
.footer-col ul li a:hover { color: var(--white); }
.footer-hours-item {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  padding: 6px 0;
  display: flex;
  flex-direction: column;
}
.footer-hours-item span { color: var(--white); font-size: 11px; }

.footer-bottom {
  border-top: 1px solid var(--gray-mid);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--red); }

/* ── Map Image Click Wrapper ───────────────────────────────── */
.map-click-wrap {
  position: relative;
  cursor: pointer;
  display: block;
  overflow: hidden;
}
.map-click-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: filter 0.3s;
  filter: contrast(1.1) saturate(0.8);
}
.map-click-wrap:hover img { filter: contrast(1.2) saturate(1) brightness(0.9); }
.map-click-overlay {
  position: absolute;
  inset: 0;
  background: rgba(227,6,19,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}
.map-click-wrap:hover .map-click-overlay { opacity: 1; }
.map-click-overlay p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.1em;
  font-weight: 700;
}
.map-click-overlay svg { color: var(--white); width: 40px; height: 40px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-left { border-right: none; padding: 60px 0 0; }
  .why-right { padding: 0; }
  .booking-layout { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-journey-layout { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .float-btn-call { display: flex; }
  .cta-banner { clip-path: none; margin: 0; }
  .booking-form-wrap { padding: 28px 20px; }
  .contact-info-panel { padding: 40px 24px; }
  .why-left { padding: 40px 0 0; }
  .values-card { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 72px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
  .floating-btns { bottom: 20px; right: 16px; }
}
