/* Footer styles — dark base with light "Tutustu" CTA cards */
footer.foot {
  background: var(--navy-deeper);
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
footer.foot .container {
  max-width: 1280px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.foot-brand .nav-logo { color: #fff; margin-bottom: 16px; }
.foot-brand p {
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  transition: background 0.18s, color 0.18s, transform 0.18s, border-color 0.18s;
}
.foot-social a:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.foot-social svg { width: 16px; height: 16px; }
.foot-brand { display: flex; flex-direction: column; align-items: flex-start; }
.foot-google-source { display: inline-block; margin-top: auto; padding-top: 18px; }
.foot-google-source img { display: block; width: 200px; max-width: 100%; height: auto; }
.foot-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.18s;
}
.foot-col a:hover { color: var(--pink-soft); }
.foot-contact-line {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-contact-line a { color: inherit; transition: color 0.18s; }
.foot-contact-line a:hover { color: var(--pink-soft); }
.foot-contact-ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-soft);
  flex-shrink: 0;
}
.foot-contact-ic svg { width: 14px; height: 14px; }

/* Tutustu-CTA cards stay light against the dark footer */
.foot-cta-stack { display: flex; flex-direction: column; gap: 20px; }
.foot-cta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.5);
}
.foot-cta-card h5 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.foot-cta-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.foot-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.005em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 22px -8px rgba(230, 70, 68, 0.55);
}
.foot-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(230, 70, 68, 0.7);
}

.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.foot-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-legal a { color: rgba(255, 255, 255, 0.55); transition: color 0.18s; }
.foot-legal a:hover { color: var(--pink-soft); }

@media (max-width: 1000px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-cta-col { grid-column: 1 / -1; }
  .foot-cta-stack { flex-direction: row; }
  .foot-cta-card { flex: 1; }
}
@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-cta-stack { flex-direction: column; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
