.h4Style {
    color: black;
  }
  
  .h4Style:hover {
    color: white;
  }


  /* styles/globals.css */
.price-text {
  color: #029E9D;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 0;
}
/* Modern Top Contact Bar */
.top-contact-bar {
  background: var(--primary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop View */
.top-bar-desktop .top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
    width: 100%; /* ✅ THIS IS THE KEY */

}

/* Contact Info Styles */
.top-contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.contact-item i {
  font-size: 14px;
  color: var(--white);
  opacity: 0.9;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-item a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.3);
}

/* Right Side Info */
.top-right-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-badge-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.trust-badge-top:hover {
  background: rgba(255, 255, 255, 0.2);
}

.trust-badge-top i {
  font-size: 12px;
}

.social-icons-top {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 12px;
}

.social-icon:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ========== MOBILE VIEW ========== */
.top-bar-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  padding: 5px 0;
}

.mobile-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-contact-icon:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* WhatsApp specific */
.mobile-contact-icon.whatsapp:hover {
  background: #25D366;
  color: var(--white);
}

/* Social icons */
.mobile-contact-icon.social {
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

/* Badges */
.mobile-atol-badge,
.mobile-iata-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: var(--white);
  font-size: 12px;
  position: relative;
  cursor: pointer;
}

.mobile-atol-badge i,
.mobile-iata-badge i {
  font-size: 12px;
}

/* Tooltip on hover */
.mobile-contact-icon::after,
.mobile-atol-badge::after,
.mobile-iata-badge::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-contact-icon:hover::after,
.mobile-atol-badge:hover::after,
.mobile-iata-badge:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .top-contact-bar {
    padding: 6px 0;
  }
  
  .mobile-icons-row {
    gap: 12px;
  }
  
  .mobile-contact-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  
  .mobile-atol-badge,
  .mobile-iata-badge {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .mobile-icons-row {
    gap: 10px;
  }
  
  .mobile-contact-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .mobile-atol-badge,
  .mobile-iata-badge {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .mobile-icons-row {
    gap: 8px;
  }
  
  .mobile-contact-icon {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  
  .mobile-atol-badge,
  .mobile-iata-badge {
    width: 22px;
    height: 22px;
  }
}
