*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

:root {
  --red: #D9001B;
  --red-dark: #a80015;
  --red-glow: rgba(217,0,27,0.15);
  --black: #0c0c0c;
  --dark: #111111;
  --card: #181818;
  --border: rgba(255,255,255,0.08);
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #cccccc;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* -------- NAV -------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--light-gray);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ,text-shadow 0.3s;
}
.nav-links a:hover { color: var(--white); text-shadow: 0 0 16px var(--white)}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-call {
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 22px;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  transition: background 0.2s, transform 0.15s;
}
.btn-call:hover { background: var(--red-dark); transform: translateX(2px); }

/* -------- HERO -------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  filter: brightness(0.22) saturate(0.5);
  transform: scale(1.04);
  animation: heroScale 12s ease-in-out infinite alternate;
}
@keyframes heroScale {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12,12,12,0.92) 22%, rgba(12,12,12,0.3) 50%, rgba(12,12,12,0.0) 100%);
}

.hero-red-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  z-index: 10;
}

/* ── HERO BANNER IMAGE ── */
.hero-banner {
  position: absolute;
  right: 15%;

  top: 54%;
  transform: translateY(-50%);
  width: 64%;
  z-index: 3;
  pointer-events: none;
  animation: bannerSlide 1s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes bannerSlide {
  from { opacity: 0; transform: translateY(-50%) translateX(80px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.hero-banner img {
  width: 100%;
  display: block;
  object-fit: contain;
}
/* ── HERO INFO PANEL ── */
.hero-info-panel {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: fadeUp 0.8s 0.5s ease both;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--red);
  padding: 14px 20px;
  min-width: 230px;
  cursor: default;
  transition: background 0.2s;
}
.hero-info-item:hover {
  background: rgba(217, 0, 27, 0.1);
}

.hero-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(217,0,27,0.5);
  background: rgba(217,0,27,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.hero-info-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-info-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--light-gray);
}

/* ── CONTENT LAYER ── */
.hero-content-layer {
  position: absolute;
  left: 0; right: 0;
  bottom: 15%;
  padding: 0 48px;
  z-index: 6;
  max-width: 560px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-glow);
  border: 1px solid rgba(217,0,27,0.35);
  color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.05s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--light-gray);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--red-dark); transform: translateX(3px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 30px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.hero-stats {
  display: flex;
  gap: 36px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------- INFO STRIP -------- */
.info-strip {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 18px 48px;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.info-item svg { flex-shrink: 0; }

/* -------- SECTION COMMONS -------- */
section { padding: 100px 48px; }
.container { max-width: 1280px; margin: 0 auto; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}
.section-title em {
  font-style: normal;
  color: var(--red);
}

/* -------- SERVICES -------- */
.services { background: var(--dark); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.services-header p {
  max-width: 340px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--card);
  padding: 40px 32px;
  border-top: 3px solid transparent;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--red-glow);
  transition: height 0.3s;
}
.service-card:hover { border-color: var(--red); background: #1f1f1f; transform: translateY(-4px); }
.service-card:hover::before { height: 100%; }

.service-number {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.25s;
}
.service-card:hover .service-number { color: rgba(217,0,27,0.12); }

.service-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(217,0,27,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: border-color 0.25s, background 0.25s;
}
.service-card:hover .service-icon { border-color: var(--red); background: var(--red-glow); }

.service-name {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.service-arrow {
  margin-top: 24px;
  width: 28px;
  height: 1px;
  background: var(--red);
  position: relative;
  z-index: 1;
  transition: width 0.3s;
}
.service-card:hover .service-arrow { width: 48px; }
.service-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--red);
  border-top: 1px solid var(--red);
  transform: rotate(45deg);
}

/* -------- GALLERY -------- */
.gallery { background: var(--black); padding-top: 100px; padding-bottom: 100px; }
.gallery-header { margin-bottom: 48px; }

.gallery-carousel {
  position: relative;
  user-select: none;
}

.gallery-track {
  display: flex;
  gap: 24px;
  align-items: center;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding: 40px 80px;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.is-dragging { cursor: grabbing; }

.gallery-item {
  flex: 0 0 38%;
  height: 460px;
  overflow: hidden;
  position: relative;
  transform: scale(0.88);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}
.gallery-item.active {
  transform: scale(1.0);
  z-index: 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s;
  filter: brightness(0.7) saturate(0.85);
  pointer-events: none;
}
.gallery-item.active img {
  filter: brightness(1) saturate(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item.active:hover .gallery-overlay { opacity: 1; }

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(12,12,12,0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.gallery-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}
.gallery-btn-prev { left: 14px; }
.gallery-btn-next { right: 14px; }

/* -------- WHY PRIME -------- */
.why {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: 'PRIME';
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 280px;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  line-height: 1;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  position: relative;
}
.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.why-image-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  padding: 28px 32px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-align: center;
}
.why-image-badge .big { font-size: 40px; line-height: 1; display: block; }
.why-image-badge .small { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; display: block; margin-top: 4px; }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}
.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-point-icon {
  width: 40px;
  height: 40px;
  background: var(--red-glow);
  border: 1px solid rgba(217,0,27,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-point-title {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}
.why-point-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
}

/* -------- CONTACT -------- */
.contact { background: var(--black); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { padding-top: 8px; }
.contact-info p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail-item:hover { color: var(--white); }
.contact-detail-icon {
  width: 38px; height: 38px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form { background: var(--card); padding: 40px; border-top: 3px solid var(--red); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  background: rgba(217,0,27,0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #1f1f1f; color: var(--white); }

.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--red-dark); }

/* -------- FAQ -------- */
.faq { background: var(--black); }
.faq-header { margin-bottom: 56px; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  transition: color .2s;
}
.faq-q:hover { color: var(--red); }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--red);
  transition: transform .25s;
  line-height: 1;
}
.faq-q[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-a {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding-bottom: 0;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 22px;
}

@media (max-width: 768px) {
  .faq-q { font-size: 15px; padding: 18px 36px 18px 0; }
}

/* -------- FOOTER -------- */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span { color: var(--red); }
.footer-copy {
  font-size: 13px;
  color: var(--gray);
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* -------- SCROLL REVEAL -------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  section { padding: 72px 24px; }
  .hero-content-layer { padding: 0 24px; }
  .hero-info-panel { display: none; }
  .hero-banner { width: 70%; right: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .gallery-item { flex: 0 0 60%; height: 360px; }
  .gallery-track { padding: 30px 56px; gap: 16px; }
  .gallery-btn-prev { left: 6px; }
  .gallery-btn-next { right: 6px; }
  footer { padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 640px) {
  /* Hero — vertical stack layout */
  .hero {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding-top: 68px;
  }
  .hero-overlay {
    background: rgba(12,12,12,0.55);
  }

  /* Banner at top */
  .hero-banner {
    display: block;
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 100%;
    order: 1;
    z-index: 3;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .hero-banner img { width: 100%; height: 100%; }

  /* Text + CTAs in middle */
  .hero-content-layer {
    position: relative;
    bottom: auto; top: auto;
    transform: none;
    padding: 28px 20px;
    max-width: 100%;
    order: 2;
    z-index: 6;
  }
  .hero-sub { font-size: 14px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 24px; }

  /* Info cards below content */
  .hero-info-panel {
    display: flex;
    position: relative;
    top: auto; right: auto;
    transform: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    z-index: 5;
    animation: none;
    gap: 2px;
  }
  .hero-info-item {
    min-width: 0;
    width: 100%;
  }

  /* Info strip */
  .info-strip { gap: 16px; padding: 16px 24px; flex-direction: column; align-items: flex-start; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-item { flex: 0 0 82%; height: 260px; }
  .gallery-track { padding: 24px 40px; gap: 12px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* Why */
  .why-points { gap: 24px; }
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-only CTA inside nav-links */
.nav-mobile-cta { display: none; }

@media (max-width: 1020px) {
  .nav-hamburger { display: flex; }

  /* Mobile dropdown */
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(12,12,12,0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    border-bottom: 3px solid var(--red);
    padding: 8px 0 16px;
    z-index: 99;
    animation: menuSlide 0.25s ease both;
  }
  @keyframes menuSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  nav.nav-open .nav-links { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }
  .nav-links a:hover {
    border-left-color: var(--red);
    background: rgba(217,0,27,0.06);
    color: var(--white);
    text-shadow: none;
  }

  /* Show call CTA in mobile menu */
  .nav-mobile-cta {
    display: block;
    padding: 8px 24px 0;
  }
  .nav-mobile-cta .btn-call {
    display: block;
    text-align: center;
    clip-path: none;
    padding: 12px 22px;
  }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  max-width: 56px;
  overflow: hidden;
  transition: max-width 0.35s ease, box-shadow 0.2s;
  white-space: nowrap;
}
.whatsapp-float:hover {
  max-width: 220px;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.whatsapp-label {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.2s 0.15s;
}
.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
}

/* Pulse ring on load */
@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0   rgba(37,211,102,0.5); }
  60%  { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0   rgba(37,211,102,0); }
}
.whatsapp-float {
  animation: wa-pulse 1.8s ease-out 3s 4;
}
.whatsapp-float:hover {
  animation: none;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    padding: 14px;
    border-radius: 50%;
    max-width: 52px;
  }
  .whatsapp-float:hover {
    max-width: 52px;
  }
  .whatsapp-label { display: none; }
}