
.page-header.destination-wedding-page-header .container h2{
    font-weight: 600 !important;
    font-size: 40px;
    font-family: '';
    letter-spacing: 3px;
}
.destination-wedding-page-header .destination-wedding-content-sec p{
    color: #fff;
    letter-spacing: 3px;
    font-family: '';
    font-size: 15px;
}
.destination-wedding-page-header .banner-btn-section{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.destination-wedding-page-header .banner-btn-section a:nth-child(1){
    background-color: rgb(255, 136, 0);
    color: whitesmoke;
    padding: 5px 20px;
    border-radius: 5px;
    letter-spacing: 1px;
}
.destination-wedding-page-header .banner-btn-section a:nth-child(2){
    background-color: rgb(253, 208, 181);
    color: #7e4300;
    padding: 5px 20px;
    border-radius: 5px;
    letter-spacing: 1px;
}

/* css for destination wedding page  */

/* css for destination wedding page ends here */

.blog-card__image {
    position: relative;
    width: 100%;
    height: 250px; /* fixed height to make image shorter */
    overflow: hidden;
}

.blog-card__image__inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.blog-card__image__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps image proportionally cropped */
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .blog-card__image {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .blog-card__image {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .blog-card__image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .blog-card__image {
        height: 150px;
    }
}

@media (max-width: 767px) {
    .blog-card__image {
        aspect-ratio: 4 / 3;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128c7e, #075e54);
}

.whatsapp-btn i {
  color: white;
  font-size: 32px;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: -135px;
  background: #2c2461;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(44, 36, 97, 0.2);
  z-index: 2; /* Ensure tooltip is above typing indicator */
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #2c2461;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse Animation */
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: -1;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Notification Badge (Optional) */
.whatsapp-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff3b30;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-btn {
    width: 55px;
    height: 55px;
  }

  .whatsapp-btn i {
    font-size: 28px;
  }

  .whatsapp-tooltip {
    display: none; /* Hide tooltip on mobile */
  }

  /* Show tooltip on click for mobile */
  .whatsapp-btn.active .whatsapp-tooltip {
    display: block;
    opacity: 1;
    transform: translateX(0);
    right: 60px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    left: 15px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn i {
    font-size: 26px;
  }
}

/* Optional: Add typing indicator for extra effect */
.typing-indicator {
  position: absolute;
  right: -155px; /* Moved further left to not overlap */
  top: -40px; /* Positioned above the tooltip */
  background: white;
  border-radius: 20px;
  padding: 8px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  align-items: center;
  gap: 4px;
  z-index: 1; /* Below tooltip */
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
}

/* Show typing indicator on hover (optional) */
.whatsapp-btn:hover .typing-indicator {
  display: flex;
}

/* Alternative: Position typing indicator BELOW the tooltip */
.typing-indicator.below {
  right: -155px;
  top: auto;
  bottom: -40px; /* Position below the tooltip */
}

/* Alternative: Make typing indicator appear BEFORE tooltip with delay */
.whatsapp-btn:hover .typing-indicator {
  display: flex;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Call Floating Button */
.call-float {
  position: fixed;
  bottom: 110px; /* Positioned above the WhatsApp button */
  left: 30px;
  z-index: 1000;
}

.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4a6fff, #2c4fdb);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(74, 111, 255, 0.4);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.5s; /* Slight delay for alternating effect */
}

.call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(74, 111, 255, 0.6);
  background: linear-gradient(135deg, #2c4fdb, #1a36a8);
}

.call-btn i {
  color: white;
  font-size: 30px;
}

/* Tooltip */
.call-tooltip {
  position: absolute;
  right: -135px;
  background: #2c2461;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(44, 36, 97, 0.2);
  z-index: 2;
}

.call-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #2c2461;
}

.call-btn:hover .call-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse Animation */
.call-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(74, 111, 255, 0.4);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: -1;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Notification Badge (Optional) */
.call-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff3b30;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .call-float {
    bottom: 90px; /* Adjusted for mobile */
    left: 20px;
  }

  .call-btn {
    width: 55px;
    height: 55px;
  }

  .call-btn i {
    font-size: 28px;
  }

  .call-tooltip {
    display: none; /* Hide tooltip on mobile */
  }

  /* Show tooltip on click for mobile */
  .call-btn.active .call-tooltip {
    display: block;
    opacity: 1;
    transform: translateX(0);
    right: 60px;
  }
}

@media (max-width: 480px) {
  .call-float {
    bottom: 80px; /* Adjusted for small mobile */
    left: 15px;
  }

  .call-btn {
    width: 50px;
    height: 50px;
  }

  .call-btn i {
    font-size: 26px;
  }
}