/* ────────────────────────────────────────────────────────────────────────── */
/* FOOTER - PRIMEPATH LUXURY DARK/GOLD */
/* ── DESIGN TOKENS are centralized in design-tokens.css ─────── */
/* ────────────────────────────────────────────────────────────────────────── */

.footer {
  position: relative;
  background: var(--ink);
  overflow: visible;
  color: var(--white);
  border-top: none;
}

@media (max-width: 980px) {
  .footer {
    overflow: hidden;
  }
}

/* ─── TOP GOLD WAVE BANNER ─── */
.footer-top-banner {
  position: relative;
  width: 100%;
  height: 90px;
  background: transparent;
}

.footer-top-banner svg {
  width: 100%;
  height: 100%;
}

/* Crown badge in centre */
.crown-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%);
  text-align: center;
  z-index: 10;
}

.crown-badge svg {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.crown-badge p {
  font-family: var(--font-accent);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-wider);
  color: var(--gold);
  line-height: 1.5;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ─── MAIN CONTENT AREA ─── */
.footer-main {
  display: grid;
  grid-template-columns: 280px repeat(5, 1fr);
  gap: 16px;
  padding: 20px 40px 40px;
  position: relative;
}

/* ─── CAR + BRAND ─── */
.brand-col {
  position: relative;
  padding-right: 20px;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.logo-pp {
  font-family: var(--font-accent);
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 500;
}

.brand-name {
  font-family: var(--font-accent);
  font-size: 22px;
  letter-spacing: 0.28em;
  color: var(--white);
  font-weight: 400;
}

.brand-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 18px;
}

.brand-sub span {
  font-family: var(--font-accent);
  font-size: var(--fs-label-md);
  letter-spacing: 0.38em;
  color: var(--gold);
}

.brand-sub::before,
.brand-sub::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.brand-sub::before { max-width: 30px; }
.brand-sub::after  { max-width: 30px; }

.brand-tagline {
  font-size: var(--fs-body-xxs);
  font-weight: 300;
  color: var(--white-40);
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.gold-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  margin-bottom: 0;
}

.footer-car-image {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 420px;
  max-width: 50%;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}

/* ─── NAV COLUMNS ─── */
.nav-col {
  padding: 0 20px;
  position: relative;
}

.col-icon {
  position: absolute;
  top: 0;
  right: 10px;
  width: 48px;
  height: 48px;
  color: var(--gold);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.nav-col .col-title,
.nav-col ul,
.touch-col .col-title,
.touch-col .contact-item,
.touch-col .stay-updated-title,
.touch-col .stay-desc,
.touch-col .email-form,
.touch-col .social-icons {
  position: relative;
  z-index: 1;
}

.col-title {
  font-family: var(--font-accent);
  font-size: var(--fs-label-md);
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.nav-col ul {
  list-style: none;
}

.nav-col ul li {
  margin-bottom: 11px;
}

.nav-col ul li a {
  font-size: var(--fs-body-xxs);
  font-weight: 300;
  color: var(--white-72);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.25s;
  display: inline-block;
}

.nav-col ul li a:hover {
  color: var(--gold-light);
}

/* ─── GET IN TOUCH ─── */
.touch-col {
  padding: 0 0 0 20px;
  position: relative;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:first-of-type {
  border-top: 1px solid var(--line);
}

.contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-item span {
  font-size: var(--fs-body-xxs);
  font-weight: 300;
  color: var(--white-72);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.stay-updated-title {
  font-family: var(--font-accent);
  font-size: var(--fs-label-md);
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin: 22px 0 8px;
}

.stay-desc {
  font-size: var(--fs-body-xxs);
  font-weight: 300;
  color: var(--white-72);
  line-height: 1.6;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

/* Email input */
.email-form {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink-4);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--ink);
}

.email-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: var(--fs-body-xxs);
  font-family: var(--font-accent);
  font-weight: 300;
  color: var(--white-50);
  letter-spacing: 0.03em;
}

.email-form input::placeholder {
  color: var(--white-18);
}

.email-form button {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.email-form button:hover {
  background: var(--gold-light);
}

.email-form button svg {
  width: 16px;
  height: 16px;
  color: var(--ink);
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--ink-4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.social-icon:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.social-icon svg {
  width: 15px;
  height: 15px;
  color: var(--white-50);
}

/* ─── BOTTOM BAR ─── */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px 24px;
  border-top: 1px solid var(--ink-3);
  position: relative;
}

.bottom-left {
  flex: 1;
  min-width: 0;
}

.bottom-center {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.bottom-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.footer-bottom-bar .copy {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-label-lg);
  font-weight: 300;
  color: var(--white-50);
  letter-spacing: 0.04em;
}

.footer-bottom-bar .copy-text {
  white-space: nowrap;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-legal-links a {
  color: var(--white-50);
  text-decoration: none;
  font-size: var(--fs-label-lg);
  font-weight: 300;
  letter-spacing: 0.04em;
  transition: color 0.25s;
  padding: 0 10px;
  position: relative;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

.footer-legal-links a + a::before {
  content: '|';
  position: absolute;
  left: 0;
  color: var(--ink-3);
  font-weight: 300;
}

.footer-bottom-bar .tagline-center {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tagline-center span {
  font-family: var(--font-accent);
  font-size: var(--fs-label-md);
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
}

.tagline-line {
  width: 55px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* Location pin above tagline */
.bottom-pin {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--ink-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-pin svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.eco-note {
  display: flex;
  align-items: center;
  gap: 8px;
}

.eco-note svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  opacity: 0.7;
}

.eco-note p {
  font-size: var(--fs-label-lg);
  font-weight: 300;
  color: var(--white-50);
  line-height: 1.5;
  letter-spacing: 0.02em;
  max-width: 160px;
}

/* ─── BACKGROUND GLOW ─── */
.bg-glow {
  position: absolute;
  bottom: -60px;
  left: 200px;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────────────────────── */
/* FOOTER — RESPONSIVE */
/* ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 240px repeat(3, 1fr);
    padding: 20px 30px 40px;
  }
  .nav-col:nth-child(5),
  .nav-col:nth-child(6) {
    grid-column: span 1;
  }
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 20px 30px 40px;
  }
  .brand-col {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .footer-bottom-bar {
    padding: 18px 30px 24px;
  }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 20px 20px 40px;
  }
  .brand-col {
    grid-column: 1 / -1;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 18px 20px 24px;
  }
  .bottom-left,
  .bottom-center,
  .bottom-right {
    flex: none;
    width: 100%;
    justify-content: center;
  }
  .footer-bottom-bar .copy {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .bottom-pin {
    display: none;
  }
  .footer-top-banner {
    height: 60px;
  }
}
