/* ==========================================================================
   Footer Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   Site Footer Main Wrapper
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background-color: #0a0a0a;
  color: #ffffff;
  padding-top: 60px;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

/* Background Video & Dark Gradient Overlay */
.footer-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.footer-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(19, 12, 44, 0.94) 0%,
    rgba(10, 10, 10, 0.98) 100%
  );
}

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

/* --------------------------------------------------------------------------
   Footer Call To Action (CTA) Banner
   -------------------------------------------------------------------------- */
.footer-cta-banner {
  background: linear-gradient(
    135deg,
    rgba(45, 27, 105, 0.85) 0%,
    rgba(201, 168, 76, 0.25) 100%
  );
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-card);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-cta-text h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-cta-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  max-width: 600px;
}

.footer-cta-action {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Footer 4-Column Grid
   -------------------------------------------------------------------------- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-about .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo-img {
  height: 62px;
  width: 62px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  border: 2.5px solid var(--accent-gold);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.footer-logo-img:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.65);
}

.footer-col-about .logo-title {
  color: #ffffff;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-tagline strong {
  color: var(--accent-gold);
}

/* Social Icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--dark-text);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
}

/* Column Titles */
.footer-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--accent-gold);
  border-radius: 2px;
}

/* Footer Links & Contact Lists */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-contact-list a:hover {
  color: var(--accent-gold);
}

.contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Footer Bottom Bar
   -------------------------------------------------------------------------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-location {
  color: var(--accent-gold);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Floating WhatsApp Button & Interactive Modal
   -------------------------------------------------------------------------- */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-circle);
  background-color: #25D366;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.3s ease, background-color 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  color: #ffffff;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* WhatsApp Modal Container */
.wa-modal-wrapper {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.wa-modal-wrapper.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-modal-card {
  background: #111722;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  font-family: var(--font-sans);
}

.wa-modal-header {
  background: #19271e;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-badge-icon {
  width: 42px;
  height: 42px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
}

.wa-header-text {
  display: flex;
  flex-direction: column;
}

.wa-modal-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.wa-modal-subtitle {
  color: #55ca7b;
  font-size: 0.76rem;
  margin-top: 3px;
  font-weight: 500;
}

.wa-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.wa-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.wa-modal-body {
  padding: 20px;
}

.wa-section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.wa-optional-tag {
  font-weight: 400;
  text-transform: none;
  color: rgba(255, 255, 255, 0.3);
}

.wa-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-option-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 12px 18px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.wa-option-item:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.4);
  color: #55ca7b;
  transform: translateX(3px);
}

.wa-option-icon {
  font-size: 1.1rem;
}

.wa-selected-pill-box {
  margin-bottom: 16px;
}

.wa-selected-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.5);
  color: #55ca7b;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

.wa-pill-remove {
  background: transparent;
  border: none;
  color: #55ca7b;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  display: flex;
  align-items: center;
}

.wa-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  resize: none;
  outline: none;
  transition: border-color 0.2s ease;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.wa-textarea:focus {
  border-color: #25D366;
}

.wa-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.wa-btn-submit {
  width: 100%;
  background: #25D366;
  border: none;
  border-radius: 25px;
  padding: 14px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.wa-btn-submit:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.wa-back-link {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.wa-back-link:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Responsive Layout Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .footer-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .whatsapp-float-btn {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
}

/* ==========================================================================
   Google Calendar Appointment Scheduling - Mobile & Responsive Styling
   ========================================================================== */
.qxCTlb {
  display: none !important;
}

/* Tablet Styling (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .hur54b {
    padding: 32px !important;
  }
  .Xfsokf {
    top: 14px !important;
    right: 32px !important;
  }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  /* 1. Full-screen Mobile Overlay with Deep Violet Blur */
  .hur54b {
    padding: 0 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(10, 5, 22, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    z-index: 999999 !important;
    box-sizing: border-box !important;
  }

  /* 2. Sleek Floating Close Button */
  .Xfsokf {
    position: fixed !important;
    top: 12px !important;
    right: 14px !important;
    z-index: 1000000 !important;
    background: linear-gradient(135deg, #251343, #15092a) !important;
    border: 1.5px solid #C9A84C !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 8px 18px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6), 0 0 10px rgba(201, 168, 76, 0.3) !important;
    font-family: inherit !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  .Xfsokf:active, .Xfsokf:hover {
    background: #C9A84C !important;
    color: #110724 !important;
  }

  .Xfsokf .L0Dvsd {
    color: inherit !important;
    font-size: 18px !important;
    margin-right: 4px !important;
  }

  .Xfsokf .uE25ec {
    color: inherit !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
  }

  /* 3. Full-width Touch-scrollable Iframe Sheet */
  .mmGMM {
    width: 100vw !important;
    height: calc(100vh - 58px) !important;
    margin: 58px 0 0 0 !important;
    border-radius: 20px 20px 0 0 !important;
    border: none !important;
    background: #ffffff !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.7) !important;
    -webkit-overflow-scrolling: touch !important;
    overflow-y: auto !important;
  }
}
