/* ================================================================
   TRAVHAWK PREMIUM FOOTER v7.0
================================================================ */

/* FOOTER MAIN */
.th-footer {
  font-family: 'Inter', sans-serif;
  background: #061020;
  color: rgba(255,255,255,0.7);
}
.th-footer-container {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}
.th-footer-main {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.th-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

/* BRAND COLUMN */
.th-footer-brand {}
.th-footer-logo {
  margin-bottom: 18px;
}
.th-footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.th-footer-logo-wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.th-footer-logo-wordmark strong { font-weight: 900; }
.th-footer-logo-wordmark span {
  display: block;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--th-accent, #00c9a7);
  margin-top: 3px;
}
.th-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 300px;
}
.th-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.th-footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.th-footer-contact-link svg { color: var(--th-accent, #00c9a7); flex-shrink: 0; }
.th-footer-contact-link:hover { color: #fff; text-decoration: none; }
.th-footer-trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.th-footer-trustpilot:hover { background: rgba(255,255,255,0.08); }
.th-tp-stars-footer { color: #00b67a; font-size: 14px; letter-spacing: 1px; }
.th-tp-label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
.th-tp-label strong { color: #fff; font-weight: 600; }

/* LINK COLUMNS */
.th-footer-col {}
.th-footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px;
}
.th-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.th-footer-links li a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  line-height: 1.3;
}
.th-footer-links li a:hover { color: #fff; text-decoration: none; }

/* FOOTER BOTTOM */
.th-footer-bottom {
  background: #04111f;
  padding: 18px 0;
}
.th-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.th-footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.th-footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.th-footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.th-footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .th-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
  .th-footer-brand { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
}
@media (max-width: 768px) {
  .th-footer-main { padding: 48px 0 40px; }
  .th-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .th-footer-brand { grid-column: 1 / -1; display: block; }
  .th-footer-container { padding: 0 20px; }
}
@media (max-width: 480px) {
  .th-footer-grid { grid-template-columns: 1fr; }
  .th-footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}