/* ═══════════════════════════════════════════════════════
   ALPINA GARAGE — style.css
   Palette: Navy #0A1628 | Red #CC0000 | Blue #0066CC | White #FFFFFF
   Type: Barlow Condensed (display) + Inter (body)
═══════════════════════════════════════════════════════ */

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

:root {
  --navy:   #0A1628;
  --navy2:  #12233E;
  --red:    #CC0000;
  --red2:   #AA0000;
  --blue:   #0066CC;
  --white:  #FFFFFF;
  --grey:   #F5F6F8;
  --steel:  #8A9BB0;
  --text:   #1C2B40;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:  6px;
  --shadow:  0 4px 24px rgba(0,0,0,0.12);
  --trans:   0.25s ease;
}

html { scroll-behavior: smooth; }

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

img, svg { display: block; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography helpers ────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
  text-transform: uppercase;
}

h2 em {
  font-style: normal;
  color: var(--red);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 { margin-bottom: 8px; }
.section-head--light h2 { color: var(--white); }
.section-head--light .eyebrow { color: #ff6666; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red2);
  border-color: var(--red2);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--lg { padding: 15px 36px; font-size: 1rem; }

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--trans);
}

.nav.scrolled {
  background: rgba(10,22,40,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-alp {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.12em;
}

.logo-gar {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.3em;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--trans);
}

.nav__links a:hover { color: var(--white); }

.nav__cta { margin-left: 8px; padding: 9px 22px; font-size: 0.85rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav__mobile a {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__mobile .btn { margin-top: 12px; text-align: center; justify-content: center; }
.nav__mobile.open { display: flex; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

/* Signature element: diagonal red slash across the hero */
.hero__diagonal::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 48px;
  background: var(--red);
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 100px), -50%) rotate(118deg);
  opacity: 0.9;
}

/* Subtle grid overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 900px;
  margin-left: clamp(24px, 5vw, 80px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,0.15);
  border: 1px solid rgba(204,0,0,0.4);
  color: #ff8888;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red) 0%, var(--blue) 50%, var(--red) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s linear infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat { text-align: left; }

.stat__n {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat__l {
  display: block;
  font-size: 0.75rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.stat__div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Decorative roundel — positioned right side */
.hero__roundel {
  position: absolute;
  top: 50%;
  right: +5%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.hero__roundel img {
  width: 500px;
  max-width: 120%;
  opacity: 1;
  filter: blur(0px);
  user-select: none;
}

@keyframes spin-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--grey);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 36px 28px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans), background var(--trans);
  overflow: hidden;
}

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.1);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08), 0 0 20px rgba(0, 102, 204, 0.12);
  border-color: rgba(0, 102, 204, 0.3);
}

.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 52px;
  height: 52px;
  color: var(--red);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.service-card p {
  font-size: 0.88rem;
  color: #556;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__visual { position: relative; }

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
}

.about__img-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
}

.about__img-placeholder svg {
  width: 100%;
  height: 100%;
}

.about__img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--red);
  border-radius: 4px;
  z-index: -1;
}

.about__content h2 { margin-bottom: 20px; }

.about__lead {
  font-size: 1.05rem;
  color: #445;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(204,0,0,0.1);
  color: var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 1px;
}

.about__brands {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: var(--grey);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about__brands span {
  font-size: 0.82rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--navy);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════ */
.reviews {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.reviews > .container { position: relative; }

.reviews__overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; }
.stars--lg { font-size: 1.4rem; }

.reviews__score {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.reviews__count {
  font-size: 0.82rem;
  color: var(--steel);
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background var(--trans), border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(204, 0, 0, 0.15);
  transform: translateY(-2px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.review-card__google { margin-left: auto; opacity: 0.7; }

.review-card__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 16px;
}

.review-card__date {
  font-size: 0.75rem;
  color: var(--steel);
  letter-spacing: 0.05em;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.05);
}

.carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════
   CONTACT & MAP
═══════════════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--grey);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__info h2 { margin-bottom: 36px; }

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__icon {
  width: 44px;
  height: 44px;
  background: rgba(204,0,0,0.1);
  border-radius: var(--radius);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__icon svg { width: 22px; height: 22px; }

.contact__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
  margin-bottom: 4px;
}

.contact__value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

a.contact__value:hover { color: var(--red); }

/* Social buttons */
.contact__socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white);
  transition: filter var(--trans), transform var(--trans);
}

.social-btn:hover { filter: brightness(1.15); transform: translateY(-2px); }

.social-btn svg { width: 16px; height: 16px; }

.social-btn--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn--fb { background: #1877F2; }
.social-btn--tt { background: #010101; border: 1px solid rgba(255,255,255,0.15); }

/* Map */
.contact__map {
  border-radius: 10px;
  overflow: hidden;
  height: 480px;
  position: relative;
  box-shadow: var(--shadow);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map__cta {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding-top: 72px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand .footer__logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer__stripe {
  display: flex;
  gap: 4px;
}

.stripe {
  display: block;
  height: 3px;
  width: 40px;
  border-radius: 2px;
}
.stripe--blue { background: var(--blue); }
.stripe--red  { background: var(--red); }

.footer__links, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links h4, .footer__contact h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer__links a, .footer__contact a, .footer__contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}

.footer__links a:hover, .footer__contact a:hover { color: var(--white); }

.footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.footer__socials a {
  color: rgba(255,255,255,0.5);
  transition: color var(--trans);
}
.footer__socials a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom-stripe {
  display: flex;
  gap: 3px;
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.service-card, .review-card { transition-delay: calc(var(--i, 0) * 80ms); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .hero__roundel { opacity: 0.12; right: -80px; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { order: -1; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__map { height: 360px; }
  .review-card { flex: 0 0 calc(100% - 0px); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* Center logo on mobile — burger is absolute so it doesn't push logo */
  .nav__inner { position: relative; }
  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .nav__burger { position: relative; z-index: 1; }

  .services__grid { grid-template-columns: 1fr; }

  /* Hide diagonal slash on mobile */
  .hero__diagonal::after { display: none; }

  /* Center the logo in the hero and increase opacity */
  .hero__roundel {
    right: auto;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    opacity: 0.35;
  }
  .hero__roundel img {
    width: 320px;
    opacity: 1;
  }

  .hero__title { font-size: clamp(2.8rem, 10vw, 4rem); }

  .hero__stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat__div { display: none; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .contact__socials { flex-direction: column; }
  .social-btn { justify-content: center; }
}

/* Shimmer effect for buttons */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
  z-index: 1;
}
.btn:hover::before {
  animation: shimmerEffect 0.85s ease-out;
}
@keyframes shimmerEffect {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Ambient Glow Elements */
.ambient-glow {
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.08;
  pointer-events: none;
  z-index: -10;
  animation: floatGlow 25s infinite alternate ease-in-out;
}
.glow-1 {
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -10vw;
  right: -10vw;
  animation-delay: 0s;
}
.glow-2 {
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  bottom: -10vw;
  left: -10vw;
  animation-delay: -5s;
}
@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, 4%) scale(1.05); }
  100% { transform: translate(-4%, -2%) scale(0.95); }
}

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero__roundel { animation: none; }
  .fade-up { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
  .btn::before { animation: none !important; display: none; }
  .ambient-glow { animation: none !important; display: none; }
}