:root {
  --primary: #0ea5e9;
  --secondary: #64748b;
  --accent: #06b6d4;
  --dark: #0f172a;
  --light: #f8fafc;
}
* {
  font-family: "Poppins", sans-serif;
}
body {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  overflow-x: hidden;
}
#destinations,
#offers,
#reviews {
  scroll-margin-top: 80px;
}
/* Enhanced Navbar */
.navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
}
/*     NAVBAR TOGGLER STYLING */
.navbar-toggler {
  background: var(--accent) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.5rem 0.7rem !important;
  box-shadow: none !important;
  outline: none !important;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:hover {
  background: var(--accent) !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.navbar-toggler:focus-visible {
  box-shadow: none !important;
  outline: none !important;
}
/* Icon Color */
.navbar-toggler i {
  color: white !important;
  font-size: 1.2rem;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
  display: inline-block;
}

/* ===== ICON SWITCHING LOGIC ===== */
/* When menu is CLOSED */
.navbar-toggler .fa-times,
.navbar-toggler:not([aria-expanded]) .fa-times {
  display: none !important;
}
.navbar-toggler .fa-bars {
  display: inline-block !important;
}

/* When menu is OPEN */
.navbar-toggler[aria-expanded="true"] .fa-bars {
  display: none !important;
}
.navbar-toggler[aria-expanded="true"] .fa-times {
  display: inline-block !important;
  animation: rotateIn 0.4s ease forwards;
}

/* When menu CLOSES (bars icon appears with rotation) */
.navbar-toggler[aria-expanded="false"] .fa-bars {
  display: inline-block !important;
  animation: rotateIn 0.4s ease forwards;
}

/* Keyframes for 360° rotation */
@keyframes rotateIn {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: rotate(180deg) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 1;
  }
}

/* Optional: Add subtle pulse effect on hover */
.navbar-toggler:hover i {
  transform: scale(1.1);
}

/* NAV LINK STYLING - DESKTOP */
.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  margin: 0 0.3rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: all 0.3s;
  transform: translateX(-50%);
}
/* Desktop Hover/Active - Center Line 50% Width */
.nav-link:hover::after,
.nav-link.active::after {
  width: 50%;
}
/* MOBILE VIEW - NAV LINK STYLING */
@media (max-width: 991px) {
  .nav-link {
    padding: 0.8rem 1rem;
    margin: 0.2rem 0;
    display: block;
    text-align: left;
  }
  .nav-link::after {
    left: 10% !important;
    transform: translateX(-50%) !important;
    width: 0 !important;
  }
  /* Mobile Hover/Active - Left Aligned Line 30% Width */
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 30px !important;
  }
  /* Navbar Collapse Padding */
  .navbar-collapse {
    padding: 1rem 0;
  }
}
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: white;
  padding: 1.1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
  transition: all 0.3s;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.4);
  color: white;
}
/* Hero Section Enhanced */
.hero-section {
  min-height: 95vh;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(14, 165, 233, 0.6)),
    url("../img/heroimg.jfif") center/cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}
.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}
@media (max-width: 768px) {
  .hero-para {
    margin-bottom: 16px;
  }
}
/* Advanced Search Box */
.search-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
/* Input Group */
.search-input-group {
  position: relative;
  margin-bottom: 1rem;
}
/* Left Icons */
.search-input-group i:not(.dropdown-arrow) {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  z-index: 2;
}
/* Inputs and Select */
.search-input-group input,
.search-input-group select {
  width: 100%;
  padding: 1rem 3rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s;
  background: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
/* Focus effect */
.search-input-group input:focus,
.search-input-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
  outline: none;
}
/* Dropdown Arrow */
.dropdown-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #0ea5e9;
  font-size: 14px;
}
/* Search Button */
.btn-search {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 15px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s;
}
.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}
@media (max-width: 768px) {
  .search-container {
    padding: 1.5rem;
  }
  .search-input-group input,
  .search-input-group select {
    padding: 0.9rem 2.8rem 0.9rem 2.8rem;
    font-size: 0.95rem;
  }
  .dropdown-arrow {
    right: 16px;
  }
}
/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}
/* Destination Cards Enhanced */
.destination-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  height: 100%;
}
.destination-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(14, 165, 233, 0.25);
}
.card-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.destination-card:hover img {
  transform: scale(1.1);
}
.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 2;
}
.card-favorite {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
  border: none;
}
.card-favorite:hover {
  background: #fee2e2;
  color: #ef4444;
  transform: scale(1.1);
}
.card-body {
  padding: 1.8rem;
}
.card-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.card-location {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.card-rating {
  color: #fbbf24;
  margin-bottom: 1rem;
}
.card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.card-price small {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 400;
}
/* Features Section */
.feature-box {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border: 2px solid transparent;
  height: 300px;
}
.feature-box:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
}
.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e0f2fe, #cffafe);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.3s;
}
.feature-box:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: rotateY(360deg);
}

/*     NEW: Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--dark), #1e293b);
  padding: 5rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 1.1rem;
  color: #94a3b8;
  font-weight: 500;
}

/* NEW: Offers Section */
.offers-section {
  background: #f1f5f9;
  padding: 5rem 0;
}

/* Offer Card - Main Styling */
.offer-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
  border-color: var(--primary);
}

/* Image Wrapper - Only for image containment */
.offer-card .card-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

/* Image Styling */
.offer-card .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offer-card:hover .card-image-wrapper img {
  transform: scale(1.1);
}

/* Offer Badge */
.offer-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ef4444;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Card Body */
.offer-card .card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.offer-card .card-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

/* Price Styling */
.offer-price {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 1.1rem;
  margin-right: 10px;
}

.offer-final-price {
  color: #ef4444;
  font-weight: 800;
  font-size: 1.4rem;
}

/* Claim Deal Button */
.offer-card .btn-primary-custom {
  margin-top: auto;
}

/* NEW: Testimonials Section */
/* ============================= */
/* Premium Testimonials */
/* ============================= */

.testimonials-section {
  padding: 6rem 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-weight: 800;
  font-size: 2.2rem;
}

.testimonialSwiper {
  padding: 40px 0 60px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2.2rem;
  transition: 0.4s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  height: 100%;
}

.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2rem;
  color: #e5e7eb;
}

/* Active Slide Effect */

.swiper-slide-active .testimonial-card {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.swiper-slide {
  opacity: 0.5;
  transition: 0.4s;
}

.swiper-slide-active {
  opacity: 1;
}

/* User */

.testimonial-user {
  display: flex;
  align-items: center;
  margin-top: 1.8rem;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--primary);
}

.testimonial-info h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Text */

.testimonial-text {
  font-style: italic;
  color: #6b7280;
  line-height: 1.7;
}

/* Stars */

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 10px;
}

/* Pagination */

.swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 20px;
  border-radius: 10px;
}


/* Modal Enhanced */
.modal-content {
  border-radius: 30px;
  border: none;
  overflow: hidden;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.3);
}
.modal-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 2rem;
}
.modal-body {
  padding: 2.5rem;
}
.detail-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 2rem;
}
.detail-item {
  display: flex;
  align-items: flex-start;
  align-items: center;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 15px;
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.detail-item:hover {
  background: #e0f2fe;
  transform: translateX(5px);
}
.detail-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  flex-shrink: 0; 
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
}
/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark), #1e293b);
  border-radius: 40px;
  padding: 4rem 3rem;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 90px;
}
.newsletter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: white !important;
  box-shadow: none !important;
}

.search-input-group input::placeholder {
  font-size: 14px;
  color: #0f172a;
}

/* ================= FOOTER ENHANCED + MOBILE OPTIMIZED ================= */
footer {
  background: var(--dark);
  color: white;
  padding: 8rem 0 5rem;
  margin-top: 6rem;
}
.footer-brand {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links h5 {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.footer-links a::before {
  content: "→";
  margin-right: 0.5rem;
  opacity: 0;
  transition: all 0.3s;
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.footer-links a:hover::before {
  opacity: 1;
}
.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 0.8rem;
  transition: all 0.3s;
  font-size: 1.3rem;
}
/* Footer Contact */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #e5e7eb;
}
.contact-info i {
  color: var(--accent);
  font-size: 1.2rem;
  min-width: 20px;
}
.contact-info span {
  line-height: 1.5;
}
.social-links a:hover {
  background: var(--primary);
  transform: translateY(-5px);
  color: white;
}
.payment-icons i {
  color: #9ca3af;
  transition: 0.3s;
  cursor: pointer;
  font-size: 2.5rem;
}
.payment-icons i:hover {
  color: var(--accent);
}

/* ========== FOOTER MOBILE RESPONSIVE FIXES ========== */
@media (max-width: 991px) {
  footer {
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    text-align: center;
  }

  .footer-brand {
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
  }

  footer .text-secondary {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .footer-links h5,
  .footer-links .h5 {
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
    margin-top: 1.5rem !important;
  }

  .footer-links ul li {
    margin-bottom: 0.6rem !important;
  }

  .footer-links a {
    font-size: 0.95rem !important;
    color: #cbd5e1 !important;
    justify-content: center !important;
  }

  .footer-links a::before {
    display: none !important;
  }

  .footer-links a:hover {
    padding-left: 0 !important;
    color: var(--primary) !important;
  }

  .contact-info {
    text-align: center;
    padding: 0 1rem;
  }

  .contact-info li {
    font-size: 0.9rem !important;
    justify-content: center !important;
    margin-bottom: 0.8rem !important;
    flex-wrap: wrap;
  }

  .contact-info i {
    font-size: 1rem !important;
    min-width: 18px;
  }

  .contact-info span {
    font-size: 0.9rem !important;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .social-links a {
    width: 40px !important;
    height: 40px !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
  }

  .payment-icons {
    text-align: center !important;
  }

  .payment-icons i {
    font-size: 1.3rem !important;
    margin: 0 0.3rem !important;
  }

  footer .text-secondary.mb-0 {
    font-size: 0.85rem !important;
    padding: 0 1rem;
  }

  footer hr {
    margin: 2rem 1rem !important;
    opacity: 0.15;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 2.5rem 0 1rem;
  }

  .footer-brand {
    font-size: 1.5rem !important;
  }

  .footer-links h5 {
    font-size: 1rem !important;
  }

  .footer-links a,
  .contact-info li,
  .contact-info span {
    font-size: 0.9rem !important;
  }

  .social-links a {
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
  }

  .payment-icons i {
    font-size: 1.5rem !important;
  }

  .newsletter-section {
    padding: 2.5rem 1.5rem !important;
    margin-top: 60px !important;
    border-radius: 25px !important;
  }

  .newsletter-section h3 {
    font-size: 1.3rem !important;
    text-align: center !important;
  }

  .newsletter-section p {
    font-size: 0.9rem !important;
    text-align: center !important;
  }

  .newsletter-input {
    font-size: 0.9rem !important;
    padding: 0.8rem 1.2rem !important;
  }

  .newsletter-section .btn-primary-custom {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
}

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  display: none;
}
.no-results i {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}
/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
    margin-top: 140px;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .search-container {
    padding: 1.5rem;
  }
}
/*     MOBILE VIEW BUTTON STACKING */
@media (max-width: 991px) {
  .navbar-actions {
    flex-direction: column !important;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
  .navbar-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/*     SCROLL TO TOP BUTTON STYLES */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTopBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.6);
  background: linear-gradient(135deg, #0284c7, #0891b2);
}
#scrollTopBtn:active {
  transform: scale(0.95);
}
@media (max-width: 768px) {
  #scrollTopBtn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.1rem;
  }
}
/* Login Button - Light Cyan Background */
.btn-login-custom {
  background: linear-gradient(135deg, #e0f2fe, #cffafe) !important;
  border: 2px solid transparent !important;
  color: var(--primary) !important;
  padding: 1.1rem 2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2) !important;
}
.btn-login-custom:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4) !important;
}
@media (max-width: 991px) {
  .btn-outline-primary {
    background: linear-gradient(135deg, #e0f2fe, #cffafe) !important;
    border: 2px solid transparent !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2) !important;
    transition: all 0.3s ease !important;
  }
  .btn-outline-primary:hover {
    background: linear-gradient(
      135deg,
      var(--primary),
      var(--accent)
    ) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4) !important;
    border-color: transparent !important;
  }
  .d-flex.gap-2 {
    flex-direction: column !important;
    width: 100%;
    margin-top: 1rem;
    padding: 0 0.5rem;
  }
  /* Dono buttons full width */
  .d-flex.gap-2 .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
  /* Sign Up button full width */
  .btn-primary-custom {
    width: 100%;
  }
}
