/* ==================================================
   Floating Call Button – Gold + Aura + Nudge Motion
================================================== */

.floating-call-btn{
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 20px 28px;

  background: #EDCF8E;
  color: #020101;

  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;

  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
  cursor: pointer;

  isolation: isolate;

  /* Nudge animation */
  animation: nudgeRotate 3s ease-in-out infinite;
  transform-origin: center center;
}

/* Pause motion on hover */
.floating-call-btn:hover{
  animation-play-state: paused;
}

/* ==================================================
   Light Aura (behind the button)
================================================== */

.floating-call-btn::before{
  content: "";
  position: absolute;
  inset: -24px;

  background: radial-gradient(
    circle,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.85) 28%,
    rgba(255,255,255,0.45) 52%,
    rgba(255,255,255,0.18) 64%,
    rgba(255,255,255,0) 76%
  );

  border-radius: 999px;
  filter: blur(24px);

  z-index: -1;
  opacity: 0.8;

  animation: auraPulseIntense 3.4s ease-in-out infinite;
}

/* Pause aura on hover */
.floating-call-btn:hover::before{
  animation-play-state: paused;
  opacity: 0.95;
}

/* ==================================================
   Button Content
================================================== */

.fcb-line-1{
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.9;
}

.fcb-line-2{
  margin-top: 6px;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.fcb-icon{
  font-size: 16px;
  line-height: 1;
}

/* ==================================================
   Animations
================================================== */

/* Aura breathing */
@keyframes auraPulseIntense {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.65;
  }
}

/* Nudge: up → down → center → pause */
@keyframes nudgeRotate {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(4deg);
  }

  20% {
    transform: rotate(-4deg);
  }

  30% {
    transform: rotate(0deg);
  }

  /* Long pause */
  100% {
    transform: rotate(0deg);
  }
}

/* ==================================================
   Mobile Adjustments
================================================== */

@media (max-width: 479px){
  .floating-call-btn{
    right: 18px;
    bottom: 18px;
    padding: 18px 26px 20px;
  }

  .fcb-line-1{
    font-size: 15px;
  }

  .fcb-line-2{
    font-size: 19px;
  }

  .fcb-icon{
    font-size: 17px;
  }
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

/* isolate from theme typography */
#footer-3 .footer-info .footer-contact-list,
#footer-3 .footer-info .footer-contact-list *{
  font-size: initial;
  line-height: initial;
  box-sizing: border-box;
}

/* list reset */
#footer-3 .footer-contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

/* spacing */
#footer-3 .footer-contact-list li{
  margin-bottom: 12px;
}

/* link layout */
#footer-3 .footer-contact-link{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}

#footer-3 .footer-contact-link:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* ICON WRAPPER */
#footer-3 .footer-contact-ico{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* FORCE SVG SIZE */
#footer-3 .footer-contact-ico svg{
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  display: block;
}

/* text styling */
#footer-3 .footer-contact-text{
  font-size: 15px;
  line-height: 1.45;
}

/* =========================================================
   FULL WIDTH MAP – 
========================================================= */

#map-fullwidth{
  width: 100%;
  margin: 0;
  padding: 80px 0;        
  background: transparent;
  line-height: 0;         
}

#map-fullwidth iframe{
  display: block;
  width: 100% !important;
  height: 420px;          
  border: 0;
}

/* Tablet */
@media (max-width: 991px){
  #map-fullwidth{
    padding: 60px 0;
  }

  #map-fullwidth iframe{
    height: 360px;
  }
}

/* Mobile */
@media (max-width: 575px){
  #map-fullwidth{
    padding: 40px 0;
  }

  #map-fullwidth iframe{
    height: 280px;
  }
}
