/* ============================================
   Custom Creation Automotive
   Shared Stylesheet — Dark Navy + Black Theme
   ============================================ */

:root {
  --bg: #030712;
  --bg-2: #07101f;
  --bg-3: #0a1428;
  --surface: #111c33;
  --surface-2: #18253f;
  --surface-3: #1f2f4d;
  --text: #f1f5f9;
  --text-soft: #cbd5e1;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --accent: #3b82f6;
  --accent-2: #1d4ed8;
  --accent-light: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.35);
  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(148, 163, 184, 0.22);
  --gold: #fbbf24;
  --success: #10b981;
  --danger: #ef4444;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 8px 28px rgba(59, 130, 246, 0.28);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
.display { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1200px, 92%); margin: 0 auto; }
.text-accent { color: var(--accent); }
.text-accent-light { color: var(--accent-light); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-glow);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}
.btn:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text) !important;
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  color: var(--text) !important;
  box-shadow: none;
}
.btn-ghost:hover { background: var(--surface); box-shadow: none; }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }

/* ============ Header ============ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(3, 7, 18, 0.78);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
header.scrolled { background: rgba(3, 7, 18, 0.95); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 10px;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4);
}
.brand-text small {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-link.active {
  color: var(--accent-light);
  background: rgba(59, 130, 246, 0.1);
}
.nav-cta { margin-left: 12px; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text);
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero.hero-lg { min-height: 100vh; display: flex; align-items: center; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(59, 130, 246, 0.22), transparent 60%),
    radial-gradient(700px 400px at 0% 90%, rgba(29, 78, 216, 0.15), transparent 60%),
    linear-gradient(180deg, #030712 0%, #0a1428 100%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: -1;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-inner.single { grid-template-columns: 1fr; text-align: center; max-width: 820px; margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero p.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-inner.single p.lead { margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-inner.single .hero-cta { justify-content: center; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--text);
  line-height: 1;
}
.stat .num .accent { color: var(--accent-light); }
.stat .label { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }

.hero-card {
  position: relative;
  background: linear-gradient(160deg, var(--surface), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.hero-card-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-light);
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.hero-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.hero-card p { color: var(--muted); margin-bottom: 22px; font-size: 0.96rem; }
.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}
.info-row:first-of-type { border-top: none; padding-top: 4px; }
.info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-light);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-row .label {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.info-row .value { color: var(--text); font-weight: 500; }

/* ============ Section Base ============ */
section { padding: 110px 0; position: relative; }
section.tight { padding: 70px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-head.left { text-align: left; margin: 0 0 50px; }
.section-tag {
  display: inline-block;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 1.06rem; }

.bg-alt { background: var(--bg-2); }
.bg-darker { background: var(--bg); }

/* ============ Cards (Generic) ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.08));
  color: var(--accent-light);
  display: grid; place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s var(--ease);
}
.service-link:hover { gap: 10px; color: var(--accent); }

/* ============ About ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.85), rgba(3, 7, 18, 0.7)),
    url('https://images.unsplash.com/photo-1486496572940-2bb2341fdbdf?auto=format&fit=crop&w=900&q=80') center/cover;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 7, 18, 0.85) 100%);
}
.about-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-badge .big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--accent-light);
  line-height: 1;
}
.about-badge .small { color: var(--text); font-size: 0.9rem; line-height: 1.3; }
.about-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 22px;
}
.about-content p { color: var(--muted); margin-bottom: 16px; font-size: 1rem; }
.feature-list { margin-top: 28px; display: grid; gap: 16px; }
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-light);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.feature h4 { font-size: 1rem; margin-bottom: 2px; color: var(--text); }
.feature p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ============ Why Choose ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.why-item:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.3);
}
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6rem;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.why-item h4 { font-size: 1.1rem; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: 0.92rem; }

/* ============ Reviews ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.3);
}
.stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.review-text {
  color: var(--text-soft);
  font-size: 1.02rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}
.review-author { color: var(--muted); font-size: 0.88rem; font-weight: 600; }

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
}
.contact-panel h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  margin-bottom: 22px;
}
.contact-list { display: grid; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .info-icon { width: 44px; height: 44px; }
.contact-item .label {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact-item .value { color: var(--text); font-weight: 500; font-size: 1rem; }
.contact-item a.value:hover { color: var(--accent-light); }
.hours-list { display: grid; gap: 6px; margin-top: 6px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 4px 0;
  gap: 14px;
}
.hours-row .day { color: var(--muted); }
.hours-row .time { color: var(--text); font-weight: 500; }
.hours-row.closed .time { color: var(--muted-2); }
.hours-row.today { background: rgba(59, 130, 246, 0.08); margin: 0 -8px; padding: 6px 8px; border-radius: 6px; }
.hours-row.today .day, .hours-row.today .time { color: var(--accent-light); font-weight: 600; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 480px;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 480px; filter: invert(0.9) hue-rotate(180deg) saturate(0.7); }

/* ============ Forms ============ */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 6px; }
.form-field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.form-field label .req { color: var(--accent-light); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-3);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.form-field .err-msg {
  color: var(--danger);
  font-size: 0.82rem;
  display: none;
}
.form-field.has-error .err-msg { display: block; }
.form-success {
  display: none;
  padding: 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  color: #6ee7b7;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.form-success.show { display: flex; gap: 12px; align-items: center; }
.form-success svg { flex-shrink: 0; }

/* ============ FAQ Accordion ============ */
.faq-list { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-item.open { border-color: rgba(59, 130, 246, 0.4); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.faq-q:hover { background: rgba(59, 130, 246, 0.04); }
.faq-q .chev {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--accent-light);
}
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 320px; }

/* ============ Gallery ============ */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--border-strong); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: var(--accent);
  color: white;
  box-shadow: var(--shadow-glow);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4); }
.gallery-item.hidden { display: none; }
.gallery-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 7, 18, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: white;
}
.gallery-overlay .tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.9);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  align-self: flex-start;
}
.gallery-overlay h4 { font-size: 1.1rem; margin-bottom: 4px; }
.gallery-overlay p { font-size: 0.88rem; color: var(--text-soft); margin: 0; }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-strong);
}
.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  display: block;
  width: auto;
  height: auto;
}
.lightbox-caption {
  padding: 22px 28px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.lightbox-caption h4 { font-size: 1.2rem; margin-bottom: 4px; }
.lightbox-caption p { color: var(--muted); margin: 0; }
.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(3, 7, 18, 0.7);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: white;
  display: grid; place-items: center;
  z-index: 2;
  transition: background 0.2s var(--ease);
}
.lightbox-close:hover { background: var(--danger); border-color: var(--danger); }

/* ============ CTA Banner ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: white;
  margin-bottom: 12px;
  position: relative;
}
.cta-banner p { color: rgba(255, 255, 255, 0.92); margin-bottom: 26px; font-size: 1.05rem; position: relative; }
.cta-banner .btn {
  background: white;
  color: var(--accent-2) !important;
  font-weight: 700;
  padding: 14px 28px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.cta-banner .btn:hover { background: #f3f4f6; }

/* ============ Process Steps ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 32px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: rgba(96, 165, 250, 0.18);
  line-height: 1;
}
.process-step .step-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.08));
  color: var(--accent-light);
  display: grid; place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.92rem; }

/* ============ Page Hero (smaller) ============ */
.page-hero {
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(59, 130, 246, 0.18), transparent 60%),
    linear-gradient(180deg, #030712 0%, #0a1428 100%);
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 30%, transparent 70%);
  z-index: -1;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 16px;
}
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumbs a { color: var(--accent-light); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span.sep { color: var(--muted-2); }

/* ============ Back to Top ============ */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  border-radius: 50%;
  color: white;
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s var(--ease);
  z-index: 90;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ============ Toast Notification ============ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 14px 20px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 500;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 999;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease);
  max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }

/* ============ Footer ============ */
footer {
  background: #02050d;
  padding: 70px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand p { color: var(--muted); font-size: 0.94rem; max-width: 320px; margin-top: 18px; }
.footer-col h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.94rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--accent-light); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  display: grid; place-items: center;
  transition: all 0.2s var(--ease);
}
.social-btn:hover {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ Pricing / Service Detail ============ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}
.service-detail:nth-child(even) .sd-visual { order: 2; }
.sd-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.sd-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.35), rgba(3, 7, 18, 0.3));
}
.sd-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.sd-content > p { color: var(--muted); font-size: 1rem; margin-bottom: 20px; }
.sd-list { display: grid; gap: 12px; margin-bottom: 26px; }
.sd-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 0.96rem;
}
.sd-list svg {
  flex-shrink: 0;
  color: var(--accent-light);
  margin-top: 4px;
}

/* ============ Team ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(59, 130, 246, 0.3); }
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin: 0 auto 16px;
  display: grid; place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: white;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}
.team-card h4 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .role { color: var(--accent-light); font-size: 0.88rem; font-weight: 600; margin-bottom: 12px; }
.team-card p { color: var(--muted); font-size: 0.92rem; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 6px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-link, .nav-cta { width: 100%; text-align: center; margin-left: 0; }
  .nav-toggle { display: inline-flex; }
  .hero-inner, .about-grid, .contact-grid, .footer-grid, .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail:nth-child(even) .sd-visual { order: 0; }
  .hero { padding: 110px 0 60px; }
  .hero.hero-lg { min-height: auto; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  section { padding: 70px 0; }
  .section-head { margin-bottom: 50px; }
  .cta-banner { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero-card, .contact-panel { padding: 26px 22px; }
  .brand-text { display: none; }
  .brand-mark { width: 38px; height: 38px; font-size: 1.2rem; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.6rem); }
  .back-to-top { width: 44px; height: 44px; bottom: 18px; right: 18px; }
}
