/* ==========================================================================
   SHREE BALAJI TRAVELS - FULLSCREEN IMAGE & FLOATING CALL BUTTON
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #090e18;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, sans-serif;
}

.fullscreen-body {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #539ee6 0%, #182e4d 45%, #090e18 100%);
  position: relative;
}

.fullscreen-image {
  width: 100%;
  max-width: 100vw;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  display: block;
}

/* Floating Call Button Styles */
.floating-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.4rem;
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.5), 0 0 0 0 rgba(225, 29, 72, 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse-call 2s infinite;
}

.floating-call-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  box-shadow: 0 15px 35px rgba(225, 29, 72, 0.7);
}

.call-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.call-text {
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.5), 0 0 0 0 rgba(225, 29, 72, 0.6);
  }

  70% {
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.5), 0 0 0 18px rgba(225, 29, 72, 0);
  }

  100% {
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.5), 0 0 0 0 rgba(225, 29, 72, 0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  .floating-call-btn {
    bottom: 20px;
    right: 20px;
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
  }

  .call-icon-box {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
}