/* Section 1 - Carousel Styles */
#section-1 {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: block;
}

.sec1-img-con {
  display: block;
  height: 100%;
}

.sec1-img-con img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.sec1-download-brchr-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
}

.brchr-btn {
  width: auto;
  height: auto;
  padding: 6px 12px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.1px;
  font-family: var(--font3);
  color: var(--secondary-col);
  border-radius: 8px;
  border: none;
  background: var(--primary-col);
}
.sec1-btn-con {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.sec1-btn {
  width: 150px;
  height: 50px;
  font-size: large;
  border-radius: 8px;
  background-color: var(--secondary-col);
  color: var(--tertiary-col);
  border: 2px solid var(--primary-col);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  animation: attentionNudge 2.2s ease-in-out infinite;
}

.sec1-btn:hover {
  transform: scale(1.08);
  border-color: var(--primary-col);
  box-shadow:
    0 0 30px rgba(191, 75, 38, 0.6),
    inset 0 0 15px rgba(191, 75, 38, 0.2);
}

@keyframes attentionNudge {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  20% {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  }

  40% {
    transform: translateY(0);
  }

  60% {
    transform: translateY(-3px);
  }

  80% {
    transform: translateY(0);
  }
}

.whatsapp-fab {
  position: fixed;
  background: transparent !important;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.whatsapp-fab__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, #06b257, #059e4a);
  box-shadow: 0 10px 28px rgba(2, 10, 30, 0.28);
  text-decoration: none;
  color: white;
  position: relative;
  overflow: visible;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

/* slightly lift on hover/focus */
.whatsapp-fab__link:hover,
.whatsapp-fab__link:focus {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(2, 10, 30, 0.32);
}

/* tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  /* place to left of the FAB */
  bottom: 50%;
  transform: translateY(50%) translateX(6px);
  background: #25d366 !important;
  color: #ffffff !important;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

/* show tooltip on hover or focus */
.whatsapp-fab__link:hover .whatsapp-tooltip,
.whatsapp-fab__link:focus .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}

/* ---------- CALL FAB & TOOLTIP (final) ---------- */
.call-fab {
  position: fixed;
  bottom: 80px; /* adjust to sit above WhatsApp */
  right: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  pointer-events: auto;
  /* allow children to handle pointer */
}

.call-fab__link {
  pointer-events: auto;
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0066cc, #0052a3);
  box-shadow: 0 8px 22px rgba(11, 36, 64, 0.18);
  text-decoration: none;
  position: relative;
  visibility: visible;
}

/* phone icon */
.call-icon {
  width: 20px;
  height: 20px;
  fill: white; /* white icon */
}

/* tooltip bubble (hidden by default) */
.call-tooltip {
  position: absolute;
  right: 70px;
  bottom: 50%;
  transform: translateY(50%) translateY(6px);
  background: #0b69ff; /* same blue */
  color: #ffffff !important; /* FORCE white text */
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(11, 36, 64, 0.12);
  opacity: 0;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  z-index: 1200;
  pointer-events: none;
}

/* little hover for icon circle */
.call-fab__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 36, 64, 0.18);
}

.call-fab__link:hover .call-tooltip,
.call-fab__link:focus .call-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

/* ===== TABLET & DESKTOP BREAKPOINT (1200px) ===== */
@media (max-width: 1200px) {
  #section-1 {
    min-height: 35vh;
    min-height: 35dvh;
    height: auto;
  }

  .sec1-btn-con {
    bottom: 65vh;
  }
}

/* ===== TABLET BREAKPOINT (900px) ===== */
@media (max-width: 900px) {
  #section-1 {
    min-height: 35vh;
    height: auto;
  }

  .hero-img img {
    height: 35vh;
    height: 35 dvh;
  }
}

/* ===== MOBILE BREAKPOINT (520px) ===== */
@media (max-width: 520px) {
  #section-1 {
    height: 20vh;
    height: 20dvh;
  }

  .sec1-img-con img {
    object-fit: fill;
  }
  .sec1-btn-con {
    bottom: 65vh;
    bottom: 65dvh;
  }
  .sec1-btn {
    width: 80px;
    font-size: 10px;
    padding: 5px;
    height: 35px;
  }
}

/* ===== SMALL MOBILE BREAKPOINT (375px) ===== */
@media (max-width: 375px) {
  #section-1 {
    min-height: 20vh;
    min-height: 20dvh;
    height: auto;
  }

  .hero-img img {
    height: 32vh;
    height: 32dvh;
  }
  .sec1-btn-con {
    bottom: 75vh;
  }
}
