/* =============================================
   FOOTER STYLES
   ============================================= */

.site-footer { background: var(--navy); }

.footer-main { padding: 80px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 50px;
}

/* ── Brand ── */
.footer-brand .site-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand .logo-top { color: var(--white); }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* ── Columns ── */
.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196,154,60,0.25);
}

/* ── Links ── */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), padding-left var(--transition);
  position: relative;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -18px;
  opacity: 0;
  color: var(--gold);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-pale);
  padding-left: 16px;
}

.footer-links a:hover::before { opacity: 1; }

/* ── Contact List ── */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-contact li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Instagram Grid ── */
.footer-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.insta-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--navy-light);
}

.insta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-thumb:hover img { transform: scale(1.1); }

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(196,154,60,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.insta-thumb:hover .insta-overlay { opacity: 1; }

/* ── Bottom Bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

.footer-rera {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .flex-between { flex-direction: column; align-items: flex-start; }
}

/* ── Floating Actions ── */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  color: var(--white);
}

.float-wa {
  background: #25D366;
}

.float-wa:hover {
  background: #20BA56;
}

.float-phone {
  background: var(--navy);
  border: 1.5px solid var(--gold);
}

.float-phone:hover {
  background: var(--navy-light);
}

.float-btn svg {
  width: 24px;
  height: 24px;
}
