/* ============================================
   FOOTER.CSS — Footer & Floating Elements
   Wedding Wow Creations | Luxury Wedding Planning
   ============================================ */

/* =================== FOOTER =================== */
footer {
  background: #3d010a;
  /* color: rgba(255,248,242,0.75); */
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}


#footer-ballpit {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
  display: block;
}

footer .container {
  position: relative;
  z-index: 1;
}

/* Curvy top edge */
footer::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--ivory);
  clip-path: ellipse(55% 100% at 50% 0%);
  pointer-events: none;
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

/* Brand */
.footer-brand-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-logo-mark {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--rose);
  line-height: 1;
}

.footer-logo-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
}

.footer-logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 248, 242, 0.4);
  margin-top: 4px;
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}

.footer-social:hover {
  background: var(--rose);
  transform: scale(1.1);
}

/* Columns */
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col li a {
  font-size: 0.82rem;
  color: rgba(253, 248, 242, 0.65);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col li a:hover {
  color: var(--gold-light);
}

/* Contact in footer */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: 0.8rem;
  line-height: 1.6;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.75rem;
  color: rgba(253, 248, 242, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom-links a {
  color: rgba(253, 248, 242, 0.4);
  transition: color 0.2s;
}

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


/* =================== FLOATING SIDEBAR (desktop) =================== */
.floating-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  color: var(--white);
  text-decoration: none;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-btn:active {
  transform: scale(0.95);
}

.floating-btn.wa {
  background: #25D366;
}

.floating-btn.ig {
  background: linear-gradient(135deg, #E1306C, #833AB4);
}

.floating-btn.fb {
  background: #1877F2;
}

.floating-btn.yt {
  background: #FF0000;
}

.floating-btn.call {
  background: var(--rose);
}

.floating-btn-label {
  position: absolute;
  right: 52px;
  background: var(--charcoal);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.68rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.floating-btn:hover .floating-btn-label {
  opacity: 1;
}

/* WhatsApp fixed bubble (bottom-left) */
.whatsapp-fixed {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-fixed:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-fixed:active {
  transform: scale(0.92);
}

/* Mobile sticky bottom CTA bar */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 890;
  gap: 10px;
}

.mobile-sticky-cta a,
.mobile-sticky-cta button {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}