/* ─── CAR360 Footer ───────────────────────────────────────────────────────── */

.c360-footer {
  background-color: var(--bg-dark, #181412);
  font-family: var(--font-body, 'Manrope', sans-serif);
}

/* ══════════════════════════════════════════════════════════════════════════
   TOP ACCENT BAR
══════════════════════════════════════════════════════════════════════════ */


.c360-footer__accent-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.c360-footer__accent-logo {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.c360-footer__accent-socials {
  display: flex;
  gap: 6px;
}

.c360-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition: background 0.18s;
}

.c360-footer__social:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ══════════════════════════════════════════════════════════════════════════
   MAIN
══════════════════════════════════════════════════════════════════════════ */

.c360-footer__main {
  border-bottom: 1px solid var(--border-dark, #2E2624);
}

.c360-footer__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 64px 24px 56px;
}

/* ── 4-column grid ───────────────────────────────────────────────────────── */

.c360-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1024px) {
  .c360-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 48px; }
}

@media (max-width: 560px) {
  .c360-footer__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Column title ────────────────────────────────────────────────────────── */

.c360-footer__col-title {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: 1rem !important;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-dark, #2E2624);
  position: relative;
}

/* Red underline accent */
.c360-footer__col-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--brand-500, #EC3D23);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════════════════
   COL 1 — Brand
══════════════════════════════════════════════════════════════════════════ */

.c360-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

.c360-footer__logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.c360-footer__logo-img--light {
  filter: none;
}

.c360-footer__logo-text {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.c360-footer__desc {
  font-size: .86rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.50);
  margin: 0 0 28px;
}

.c360-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding-inline: 20px;
  border-radius: 8px;
  background: var(--brand-500, #EC3D23);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, gap 0.18s;
  white-space: nowrap;
}

.c360-footer__cta:hover {
  background: var(--brand-600, #C92F1A);
  gap: 10px;
  color: #fff;
}

.c360-footer__cta svg { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   COL 2 — Contact
══════════════════════════════════════════════════════════════════════════ */

.c360-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c360-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark, #2E2624);
}

.c360-footer__contact-item:last-child {
  border-bottom: none;
}

.c360-footer__contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(236, 61, 35, 0.12);
  color: var(--brand-400, #F16548);
  margin-top: 1px;
}

.c360-footer__contact-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.c360-footer__contact-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.30);
}

.c360-footer__contact-copy a,
.c360-footer__contact-copy span:last-child {
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.18s;
  line-height: 1.4;
}

.c360-footer__contact-copy a:hover {
  color: var(--brand-400, #F16548);
}

/* ══════════════════════════════════════════════════════════════════════════
   COL 3 — Nav links
══════════════════════════════════════════════════════════════════════════ */

.c360-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.c360-footer__nav-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: .86rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s, gap 0.18s;
  border-bottom: 1px solid transparent;
}

.c360-footer__nav-list li a::before {
  display: none;
}

.c360-footer__nav-list li a:hover {
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════════════════
   COL 4 — Maps
══════════════════════════════════════════════════════════════════════════ */

.c360-footer__map-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c360-footer__map {
  display: block;
  width: 100%;
  height: 180px;
  border-radius: 12px;
  border: 1px solid var(--border-dark, #2E2624);
  transition: filter 0.22s;
}

.c360-footer__map-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: color 0.18s;
}

.c360-footer__map-cta:hover {
  color: var(--brand-400, #F16548);
}

.c360-footer__map-cta svg { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   LEGAL BAR
══════════════════════════════════════════════════════════════════════════ */

.c360-footer__legal {
  background: var(--bg-dark-alt, #221B19);
}

.c360-footer__legal-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c360-footer__copyright {
  font-size: .76rem;
  color: rgba(255, 255, 255, 0.28);
}

.c360-footer__legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.c360-footer__legal-list li a {
  font-size: .76rem;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.18s;
}

.c360-footer__legal-list li a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.c360-footer__madeby {
  font-size: .74rem;
  color: rgba(255, 255, 255, 0.20);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .c360-footer__accent-logo { display: none; }
}

@media (max-width: 600px) {
  .c360-footer__inner { padding: 48px 16px 40px; }
  .c360-footer__legal-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .c360-footer__accent-inner { padding: 12px 16px; }
}
