/* =============================================
   מוסך מומחי המסלול — סגנון ראשי
   ============================================= */

:root {
  --gold: #E8A000;
  --gold-light: #F5C842;
  --gold-dim: rgba(232,160,0,0.12);
  --gold-border: rgba(232,160,0,0.3);
  --bg-dark: #0A0B0D;
  --bg-card: #111418;
  --bg-card2: #161B22;
  --text-primary: #F0EDE8;
  --text-secondary: #9A9490;
  --text-muted: #5A5550;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(232,160,0,0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 32px rgba(0,0,0,0.5);
  --glow: 0 0 60px rgba(232,160,0,0.15);
  --ff-display: 'Frank Ruhl Libre', serif;
  --ff-body: 'Heebo', sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* =============================================
   NAV
   ============================================= */
.nav-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.nav-header.scrolled {
  background: rgba(10,11,13,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-icon { width: 36px; height: 36px; }
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-right: auto;
}
.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #0A0B0D;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,11,13,0.97);
  backdrop-filter: blur(16px);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.mobile-link:hover, .mobile-link.highlight { color: var(--gold); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,160,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,0,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 60%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,160,0,0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  flex: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease both;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s 0.1s ease both;
}
.title-line { display: block; }
.title-line.accent { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeDown 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeDown 0.8s 0.3s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: #0A0B0D;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,160,0,0.35);
}
.btn-primary.full-width {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 1rem;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--text-primary);
  background: var(--gold-dim);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeDown 0.8s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-visual {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.engine-graphic {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.engine-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin linear infinite;
}
.engine-ring.r1 {
  width: 320px; height: 320px;
  border-color: rgba(232,160,0,0.12);
  animation-duration: 20s;
}
.engine-ring.r2 {
  width: 240px; height: 240px;
  border-color: rgba(232,160,0,0.18);
  border-style: dashed;
  animation-duration: 14s;
  animation-direction: reverse;
}
.engine-ring.r3 {
  width: 160px; height: 160px;
  border-color: rgba(232,160,0,0.25);
  animation-duration: 8s;
}
@keyframes spin { to { transform: rotate(360deg); } }
.engine-core {
  width: 100px;
  height: 100px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 0 40px rgba(232,160,0,0.2);
}
.engine-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: orbit var(--dur, 6s) linear infinite;
  opacity: 0.7;
}
.engine-particles span:nth-child(1) { --dur: 6s; top: 20px; left: 50%; transform-origin: 0 140px; }
.engine-particles span:nth-child(2) { --dur: 9s; top: 50%; left: 20px; transform-origin: 140px 0; }
.engine-particles span:nth-child(3) { --dur: 7s; bottom: 30px; right: 30px; transform-origin: -100px -80px; }
.engine-particles span:nth-child(4) { --dur: 11s; top: 40px; right: 40px; transform-origin: -90px 80px; }
.engine-particles span:nth-child(5) { --dur: 8s; bottom: 60px; left: 60px; transform-origin: 80px -80px; }
@keyframes orbit { to { transform: rotate(360deg); } }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: fadeDown 1s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   TICKER
   ============================================= */
.ticker-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 0.65rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0A0B0D;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ticker-track .sep { color: rgba(0,0,0,0.4); font-size: 0.6rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   SECTION SHARED
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}
.service-card:hover .card-glow { opacity: 1; }
.card-glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232,160,0,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.card-number {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(232,160,0,0.08);
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  user-select: none;
}
.card-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition), border-color var(--transition);
}
.service-card:hover .card-icon-wrap {
  background: rgba(232,160,0,0.2);
  border-color: var(--gold);
}
.card-icon {
  width: 30px;
  height: 30px;
  color: var(--gold);
  stroke: var(--gold);
}
.card-content h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.card-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.card-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-right: 1.2rem;
  position: relative;
}
.card-features li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.card-duration { font-size: 0.8rem; color: var(--text-muted); }
.card-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.card-cta:hover {
  background: var(--gold);
  color: #0A0B0D;
}
/* Featured card */
.service-card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232,160,0,0.05) 100%);
}
.featured-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  background: var(--gold);
  color: #0A0B0D;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text .section-title {
  text-align: right;
  margin-bottom: 1rem;
}
.why-text .section-title em {
  font-style: normal;
  color: var(--gold);
}
.why-text > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.why-items { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-dark);
  transition: border-color var(--transition), background var(--transition);
}
.why-item:hover {
  border-color: var(--gold-border);
  background: var(--gold-dim);
}
.why-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.why-item strong { display: block; font-weight: 700; margin-bottom: 0.15rem; font-size: 0.95rem; }
.why-item span { font-size: 0.82rem; color: var(--text-secondary); }
.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-card {
  background: var(--bg-dark);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--glow);
}
.cert-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cert-icon { width: 52px; height: 52px; flex-shrink: 0; }
.cert-top strong { display: block; font-size: 1.1rem; font-weight: 700; }
.cert-top span { font-size: 0.82rem; color: var(--text-secondary); }
.cert-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.cert-rating .stars { font-size: 1.3rem; color: var(--gold); letter-spacing: 3px; margin-bottom: 0.3rem; }
.cert-rating span { font-size: 0.82rem; color: var(--text-secondary); }
.experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--gold);
  color: #0A0B0D;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(232,160,0,0.4);
}
.exp-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.exp-text {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  display: block;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px; /* 🔥 גובה קבוע לכל שורה */
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}

.gallery-item:hover {
  border-color: var(--gold-border);
  transform: scale(1.02);
}


.gi-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gi-wide {
  grid-column: span 2;
  grid-row: span 1;
}

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


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


.gallery-ph-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.gallery-ph-inner svg {
  width: 44px;
  height: 44px;
  opacity: 0.4;
}

.gallery-ph-inner span {
  font-size: 0.8rem;
}

.gallery-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.gallery-note code {
  background: var(--bg-card);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.78rem;
  border: 1px solid var(--border);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 6rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-title { text-align: right; margin-bottom: 0.75rem; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.15rem; }
.contact-item span, .contact-item a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--gold); }
.contact-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
}
.map-btn:hover { transform: translateY(-2px); }
.waze-btn {
  background: #33CCFF;
  color: #0A0B0D;
}
.waze-btn:hover { box-shadow: 0 8px 24px rgba(51,204,255,0.3); }
.google-btn {
  background: #4285F4;
  color: #fff;
}
.google-btn:hover { box-shadow: 0 8px 24px rgba(66,133,244,0.35); }

/* Form */
.contact-form {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(232,160,0,0.1);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* =============================================
   MAP SECTION
   ============================================= */
.map-section {
  line-height: 0;
  filter: grayscale(40%) brightness(0.8);
  border-top: 1px solid var(--border);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand strong { display: block; font-weight: 700; font-size: 0.95rem; }
.footer-brand span { font-size: 0.78rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* =============================================
   TOAST
   ============================================= */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--bg-card2);
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 1000;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .why-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero { flex-direction: column; text-align: center; padding: 120px 2rem 3rem; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .experience-badge { right: -0.5rem; bottom: -1rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-right: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-large, .gi-wide { grid-column: span 2; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-large, .gi-wide { grid-column: span 1; aspect-ratio: 4/3; }
  .hero-title { font-size: 3rem; }
  .engine-graphic { width: 220px; height: 220px; }
  .engine-ring.r1 { width: 220px; height: 220px; }
  .engine-ring.r2 { width: 165px; height: 165px; }
  .engine-ring.r3 { width: 110px; height: 110px; }
}
