/* ==============================================
   AK KVANTA AUTO — PREMIUM DARK AUTOMOTIVE CSS
   ============================================== */

/* ──────── DESIGN TOKENS ──────── */
:root {
  --red:        #D40000;
  --red-bright: #FF1A1A;
  --red-dark:   #980000;
  --red-glow:   rgba(212,0,0,.35);
  --silver:     #C0C0C0;
  --silver-2:   #888;
  --silver-3:   #555;

  --bg:         #0a0a0a;
  --bg-2:       #111111;
  --bg-3:       #181818;
  --bg-card:    #141414;

  --border:     rgba(255,255,255,.08);
  --border-2:   rgba(255,255,255,.04);

  --text:       #f5f5f5;
  --text-2:     #aaaaaa;
  --text-3:     #666;

  --nav-h:      72px;
  --r:          12px;
  --r-lg:       18px;
  --ease:       cubic-bezier(.16,1,.3,1);
}

/* ──────── LOGIN OVERLAY ──────── */
.login-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.login-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl, 20px);
  padding: 42px 36px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 80px rgba(0,0,0,.8), 0 0 0 1px rgba(212,0,0,.1);
}
.login-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.login-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.login-sub {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
}
.login-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.login-field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-3);
}
.login-field input {
  background: rgba(255,255,255,.04);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 16px; /* 16px minimum prevents iOS auto-zoom on focus */
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.login-field input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212,0,0,.15);
}
.l-pw-wrap { position: relative; }
.l-pw-wrap input { padding-right: 42px; }
.l-eye {
  position: absolute;
  right: 11px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 2px;
}
.l-eye:hover { color: var(--text); }
.login-err {
  background: rgba(212,0,0,.1);
  border: 1px solid rgba(212,0,0,.25);
  color: #ff6b6b;
  font-size: 13px;
  padding: 9px 12px;
  border-radius: 7px;
  margin-bottom: 14px;
}

/* ──────── RESET ──────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}
.hidden { display: none !important; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ──────── LAYOUT ──────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section-dark { background: var(--bg-2); }

/* ──────── TYPOGRAPHY ──────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--red);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--text);
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  margin-top: 10px;
}
.text-red { color: var(--red-bright); }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-eyebrow {
  justify-content: center;
}
.section-header .section-eyebrow::before { display: none; }
.section-header .section-subtitle { margin: 10px auto 0; }
.br-desktop { display: block; }

/* ──────── BUTTONS ──────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn:active { transform: scale(.97); }
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 20px rgba(212,0,0,.25);
}
.btn-red:hover {
  background: var(--red-bright);
  box-shadow: 0 4px 30px rgba(255,26,26,.4);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--silver);
  border: 1.5px solid rgba(255,255,255,.15);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }
.btn-social { gap: 8px; padding: 10px 20px; font-size: 13.5px; }

/* ──────── NAV ──────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: linear-gradient(to bottom, rgba(5,5,5,.75) 0%, transparent 100%);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid rgba(212,0,0,.3);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.nav-logo-icon.small { width: 34px; height: 34px; border-radius: 8px; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-ak {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--red-bright);
  line-height: 1;
}
.logo-kvanta {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-2);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  transition: color .2s;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: 8px; padding: 10px 20px; font-size: 13.5px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────── HERO ──────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.62);
}
.hero-gradient-top {
  position: absolute; top: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(to bottom, rgba(10,10,10,.9), transparent);
}
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-bright);
  background: rgba(212,0,0,.12);
  border: 1px solid rgba(212,0,0,.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  animation: fadeUp .6s var(--ease) .1s both;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--red-bright);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 rgba(255,26,26,.4); }
  50% { opacity:.7; transform:scale(.85); box-shadow: 0 0 0 6px rgba(255,26,26,0); }
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeUp .6s var(--ease) .2s both;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero-title-red {
  color: var(--red-bright);
  -webkit-text-stroke: 1px rgba(255,255,255,.1);
}
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 36px;
  animation: fadeUp .6s var(--ease) .3s both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp .6s var(--ease) .4s both;
  margin-bottom: 72px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeUp .6s var(--ease) .5s both;
}
.stat { text-align: left; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 500; margin-top: 3px; }
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12);
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 999px;
  animation: scrollAnim 1.8s ease infinite;
}
@keyframes scrollAnim {
  0%   { transform: translateY(0); opacity:1; }
  100% { transform: translateY(14px); opacity:0; }
}

/* ──────── ABOUT ──────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.about-desc {
  color: var(--text-2);
  margin-bottom: 16px;
  font-size: 15.5px;
  line-height: 1.7;
}
.about-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}
.about-badge svg { color: var(--red-bright); flex-shrink: 0; }
.about-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
}
.info-card-icon {
  width: 40px; height: 40px;
  background: rgba(212,0,0,.12);
  border: 1px solid rgba(212,0,0,.2);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--red-bright);
  flex-shrink: 0;
}
.info-rows { display: flex; flex-direction: column; gap: 14px; }
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
}
.info-label { color: var(--text-3); font-weight: 500; flex-shrink: 0; }
.info-value { color: var(--text); text-align: right; }
.info-link { color: var(--red-bright); transition: color .2s; }
.info-link:hover { color: #fff; }
.mono { font-family: 'Courier New', monospace; letter-spacing: .5px; }

/* ──────── SERVICES ──────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,0,0,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px rgba(212,0,0,.08);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  color: var(--silver);
  margin-bottom: 20px;
  transition: background .2s, border-color .2s;
}
.service-card:hover .service-icon { background: rgba(212,0,0,.1); border-color: rgba(212,0,0,.2); color: var(--red-bright); }
.service-icon-red {
  background: rgba(212,0,0,.12) !important;
  border-color: rgba(212,0,0,.25) !important;
  color: var(--red-bright) !important;
}
.service-card-featured {
  border-color: rgba(212,0,0,.35);
  background: linear-gradient(135deg, rgba(212,0,0,.06), var(--bg-card));
  box-shadow: 0 8px 40px rgba(212,0,0,.12);
}
.service-featured-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(212,0,0,.15);
  border: 1px solid rgba(212,0,0,.3);
  color: var(--red-bright);
  padding: 3px 9px;
  border-radius: 999px;
}
.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--text-3);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.service-card-cta {
  border-color: rgba(212,0,0,.2);
  background: linear-gradient(135deg, rgba(212,0,0,.08), rgba(10,10,10,.8));
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-cta-content { text-align: center; }
.service-cta-icon {
  width: 60px; height: 60px;
  background: rgba(212,0,0,.12);
  border: 1px solid rgba(212,0,0,.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--red-bright);
}
.service-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-cta-desc { font-size: 13px; color: var(--text-2); margin-bottom: 20px; }

/* ──────── GALLERY ──────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.gallery-card { display: flex; flex-direction: column; gap: 10px; }
.gallery-card-large { grid-row: 1 / 3; }

/* Before / After Slider */
.ba-wrapper {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--border);
  height: 380px;
}
.ba-wrapper img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
}
.ba-before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0ms;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: ew-resize;
}
.ba-handle-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
}
.ba-handle-circle {
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
  z-index: 1;
  color: #111;
  flex-shrink: 0;
}
.ba-label {
  position: absolute;
  bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 5;
}
.ba-label-before { left: 16px; background: rgba(0,0,0,.6); color: var(--text-2); }
.ba-label-after  { right: 16px; background: rgba(212,0,0,.8); color: #fff; }

.gallery-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 180px;
}
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-card:hover .gallery-img-wrap img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.gallery-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: #fff;
  background: rgba(212,0,0,.75);
  padding: 3px 9px;
  border-radius: 4px;
}
.gallery-caption {
  font-size: 13px;
  color: var(--text-3);
}
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-2);
}

/* ──────── SOCIAL ──────── */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.social-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  text-align: center;
  transition: transform .25s var(--ease), border-color .25s;
}
.social-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.15); }
.social-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.social-card-instagram .social-icon {
  background: linear-gradient(135deg, rgba(225,48,108,.15), rgba(193,53,132,.1));
  border: 1px solid rgba(225,48,108,.25);
  color: #E1306C;
}
.social-card-facebook .social-icon {
  background: rgba(24,119,242,.1);
  border: 1px solid rgba(24,119,242,.2);
  color: #1877F2;
}
.social-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.social-desc { font-size: 13.5px; color: var(--text-2); margin-bottom: 20px; }

/* ──────── GIFT CARD ──────── */
.giftcard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.giftcard-desc {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 16px 0 24px;
}
.giftcard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.giftcard-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-2);
}
.giftcard-list li svg { color: var(--red-bright); flex-shrink: 0; }
.giftcard-img-wrap {
  position: relative;
}
.giftcard-img {
  border-radius: var(--r-lg);
  box-shadow: 0 24px 80px rgba(212,0,0,.2), 0 8px 30px rgba(0,0,0,.6);
  transform: perspective(800px) rotateY(-8deg) rotateX(3deg);
  transition: transform .5s var(--ease);
}
.giftcard-img-wrap:hover .giftcard-img {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}
.giftcard-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(212,0,0,.2) 0%, transparent 70%);
  pointer-events: none;
}

/* ──────── CONTACT ──────── */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  transition: border-color .2s;
}
.contact-card:hover { border-color: rgba(212,0,0,.25); }
.contact-card-icon {
  width: 42px; height: 42px;
  background: rgba(212,0,0,.1);
  border: 1px solid rgba(212,0,0,.2);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--red-bright);
  flex-shrink: 0;
}
.contact-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color .2s;
}
.contact-card-value[href]:hover { color: var(--red-bright); }
.contact-social-row { display: flex; gap: 10px; margin-top: 4px; }
.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  transition: all .2s;
}
.social-btn:hover { background: var(--bg-3); border-color: rgba(255,255,255,.2); color: #fff; }
.map-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}
.map-iframe {
  width: 100%; height: 100%;
  border: none;
}
.map-directions-btn {
  position: absolute;
  bottom: 16px; right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  transition: background .2s;
}
.map-directions-btn:hover { background: var(--red-bright); }

/* CTA Banner */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(212,0,0,.12), rgba(10,10,10,.8));
  border: 1px solid rgba(212,0,0,.3);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  flex-wrap: wrap;
}
.cta-banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.cta-banner-sub { font-size: 14px; color: var(--text-2); }
.cta-banner-right { display: flex; gap: 12px; flex-wrap: wrap; }

/* ──────── FOOTER ──────── */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-center { text-align: center; }
.footer-address { font-size: 12.5px; color: var(--text-3); margin-bottom: 4px; }
.footer-copyright { font-size: 12px; color: var(--text-3); }
.footer-credit { font-size: 11.5px; color: var(--text-3); margin-top: 3px; }
.footer-credit a { color: var(--red-bright); transition: color .2s; }
.footer-credit a:hover { color: #fff; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}
.footer-links a { font-size: 12.5px; color: var(--text-3); transition: color .2s; }
.footer-links a:hover { color: var(--red-bright); }

/* ──────── SCROLLBAR ──────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--silver-3); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ──────── ANIMATIONS ──────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────── RESPONSIVE ──────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 280px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .footer-logo { justify-content: center; }
  .footer-links { align-items: center; flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card-large { grid-row: auto; }
  .gallery-img-wrap { height: 220px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }

  /* Login overlay — full screen friendly */
  .login-overlay { padding: 16px; align-items: flex-start; padding-top: 60px; }
  .login-box { padding: 32px 20px; max-width: 100%; }
  .login-title { font-size: 22px; }

  /* Nav */
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); padding: 8px 0;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 20px; font-size: 15px; border-bottom: 1px solid var(--border-2); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-title { font-size: clamp(36px, 11vw, 64px); }
  .hero-subtitle { font-size: 15px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 11px; }
  .hero-content { padding-bottom: 60px; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(28px, 8vw, 44px); }
  .section-subtitle { font-size: 14px; }

  /* Gallery slider */
  .ba-wrapper { height: 220px; }
  .gallery-img-wrap { height: 180px; }

  /* About card */
  .about-info-card { padding: 20px; }
  .info-row { flex-direction: column; gap: 2px; }
  .info-value { text-align: left; }

  /* CTA banner */
  .cta-banner { flex-direction: column; text-align: center; padding: 24px 18px; gap: 16px; }
  .cta-banner-right { justify-content: center; flex-direction: column; align-items: center; }
  .cta-banner-right .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 28px 0; }
  .footer-logo { justify-content: center; }

  .br-desktop { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 14px; }

  /* Hero */
  .hero-title { font-size: clamp(32px, 10vw, 52px); line-height: 1.0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; }

  /* Contact cards */
  .contact-card { padding: 12px; }
  .map-wrap { height: 240px; }

  /* Services */
  .service-card { padding: 22px 18px; }

  /* Gallery */
  .ba-wrapper { height: 190px; }
  .gallery-cta { flex-direction: column; gap: 10px; text-align: center; }

  /* Social cards */
  .social-card { padding: 24px 16px; }

  /* Section headers */
  .section-title { font-size: 28px; }
  .section-header { margin-bottom: 36px; }
}

/* Very small phones (< 360px) */
@media (max-width: 360px) {
  .login-box { padding: 24px 14px; }
  .hero-title { font-size: 30px; }
  .btn-lg { padding: 12px 20px; font-size: 14px; }
}
