/* ===== PREMIUM BANNER 2025 - AIRBNB/BOOKING STYLE ===== */

/* Banner section spacing */
.banner-section {
  padding-top: 80px !important;
}

@media (max-width: 991px) {
  .banner-section {
    padding-top: 30px !important;
  }
}

/* Beautiful light gradient background - premium feel */
.banner-blue-gradient {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%) !important;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  border-radius: 24px !important;
}

/* Animated gradient overlay */
.banner-blue-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Modern typography for subtitle */
.banner-section .banner-subtitle {
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px !important;
  color: #64748b !important;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

/* Animated dot before subtitle */
.banner-section .banner-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.5);
    opacity: 0.6;
  }
}

/* Modern typography for title */
.banner-section .banner-title {
  font-weight: 700 !important;
  font-size: 48px !important;
  line-height: 1.1 !important;
  margin: 20px 0 40px !important;
  color: #1e293b !important;
  text-shadow: none;
}

@media (max-width: 991px) {
  .banner-section .banner-title {
    font-size: 28px !important;
    margin: 16px 0 24px !important;
  }
}

/* Premium link buttons - Airbnb/Booking style */
.banner-section .banner-link {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.2) !important;
  border-radius: 100px !important;
  color: #0f172a !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.08) !important;
  padding: 10px 20px !important;
}

.banner-section .banner-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.banner-section .banner-link:hover {
  background: rgba(255, 255, 255, 1) !important;
  border-color: rgba(6, 182, 212, 0.4) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.15) !important;
  color: #0c4a6e !important;
}

.banner-section .banner-link:hover::before {
  width: 300px;
  height: 300px;
}

/* Font Awesome icon styling */
.banner-section .banner-link i {
  color: #0891b2 !important;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-right: 4px;
}

.banner-section .banner-link:hover i {
  color: #0c4a6e !important;
  transform: scale(1.1) rotate(5deg);
}

/* Stagger animation for each link */
.banner-section .banner-links {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-section .banner-link:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.banner-section .banner-link:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.banner-section .banner-link:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.banner-section .banner-link:nth-child(4) {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Subtle particle effect */
.banner-blue-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Ensure content stays above effects */
.banner-section .banner-content {
  position: relative;
  z-index: 2;
}

/* Optimized image with new photo */
.banner-section .absolute-bg {
  z-index: 1;
  opacity: 0.7;
  filter: saturate(1.1) brightness(1.05);
  transition: all 0.3s ease;
  max-width: 50%;
  height: auto;
  right: 5%;
  bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .banner-section .banner-subtitle {
    font-size: 13px !important;
  }

  .banner-section .banner-link {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }

  .banner-section .banner-link i {
    font-size: 16px;
  }

  .banner-section .absolute-bg {
    max-width: 70%;
  }
}

/* Hide old icon images */
.banner-link__icon {
  display: none !important;
}
