/* ══════════════════════════════════════
   FOOTER WRAPPER
══════════════════════════════════════ */
.footer-wrap {
  background: #2e3092;
  width: 100%;
}
 
/* ── Main Content Area ── */
.ft-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 40px 42px;
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 0 36px;
  align-items: start;
}
 
/* ════════════════════════════
   COL 1 — Logo + Info
════════════════════════════ */
.ft-col1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
 
.ft-logo-wrap {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #c8a84b;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
 
.ft-tagline {
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
 
.ft-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}
.ft-email svg {
  width: 17px; height: 17px;
  fill: none; stroke: #fff;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
 
/* Social Icons */
.ft-socials {
  display: flex;
  gap: 9px;
  margin-bottom: 20px;
}
.ft-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.ft-socials a:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
}
.ft-socials svg { width: 17px; height: 17px; fill: #fff; }
 
/* Book Now */
.ft-book-btn {
  display: inline-block;
  background: #e8182c;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  padding: 13px 46px;
  border-radius: 5px;
  transition: background .2s;
  letter-spacing: .2px;
}
.ft-book-btn:hover { background: #c41225; }
 
 
/* ════════════════════════════
   COL 2 — Middle (desc + links)
════════════════════════════ */
.ft-col-mid {}
 
.ft-desc {
  font-size: 14.5px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}
 
/* Two sub-columns inside middle */
.ft-links-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
 
.ft-link-col h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .2px;
}
 
.ft-link-col ul li {
  margin-bottom: 9px;
}
.ft-link-col ul li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  transition: color .2s;
}
.ft-link-col ul li a:hover { color: #fff; }
.ft-link-col ul li a::before {
  content: '▶';
  font-size: 8px;
  color: #f0c040;
  flex-shrink: 0;
  margin-top: 1px;
}
 
 
/* ════════════════════════════
   COL 3 — Locations
════════════════════════════ */
.ft-col-loc {}
 
.ft-loc-block { margin-bottom: 22px; }
.ft-loc-block:last-child { margin-bottom: 0; }
 
.ft-loc-block h3 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 7px;
  letter-spacing: .2px;
}
 
.loc-divider {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.45);
  border: none;
  margin-bottom: 10px;
}
 
.ft-loc-block p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  line-height: 1.65;
  margin-bottom: 2px;
}
 
.loc-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-top: 6px;
}
.loc-phone svg {
  width: 15px; height: 15px;
  fill: none; stroke: #fff;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
 
 
/* ════════════════════════════
   SEO BOTTOM BAR
════════════════════════════ */
.ft-seo {
  background: #2e3092;
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 18px 40px;
  text-align: center;
}
.ft-seo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 5px;
}
.ft-seo-links a {
  font-size: 13px;
  color: rgba(255,255,255,.82);
  padding: 0 13px;
  border-right: 1px solid rgba(255,255,255,.28);
  line-height: 1.5;
  transition: color .2s;
}
.ft-seo-links a:last-child { border-right: none; }
.ft-seo-links a:hover { color: #fff; }
 
 
/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media(max-width: 900px) {
  .ft-inner {
    grid-template-columns: 200px 1fr;
    gap: 30px;
  }
  .ft-col-loc {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .ft-loc-block { margin-bottom: 0; }
}
@media(max-width: 640px) {
  .ft-inner {
    grid-template-columns: 1fr;
    padding: 28px 20px 32px;
  }
  .ft-col-loc { grid-template-columns: 1fr; }
  .ft-links-row { grid-template-columns: 1fr; gap: 20px; }
  .ft-seo { padding: 14px 16px; }
  .ft-seo-links a { font-size: 12px; padding: 0 8px; }
}