@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --sea: #003366; /* Deep Navy Blue - Professional & Trustworthy */
  --sand: #f1f5f9; /* Light Slate - Clean & Neutral */
  --coral: #0ea5e9; /* Sky Blue - Vibrant Accent */
  --ink: #0f172a; /* Dark Slate - Sharp Text */
  --muted: #64748b;
  --footer-bg: #020617; /* Very Dark Navy */
  --footer-gradient: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  --accent: #38bdf8; /* Vivid Sky Blue */
  --muted-light: rgba(255, 255, 255, 0.7);
}
body {
  font-family: "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
}

/* Navbar Glass Effect - Light Premium */
.navbar-wrapper {
  background: rgba(255, 255, 255, 0.174); /* Light Glass */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05); /* Subtle dark border */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
}
.navbar-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.98); /* Solid White */
  padding: 8px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(15, 23, 42, 0.1);
}

/* Brand */
.navbar-brand img {
  filter: drop-shadow(0 0 5px rgba(0, 51, 102, 0.2));
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.navbar-brand:hover img {
  transform: scale(1.1) rotate(0deg);
  filter: drop-shadow(0 0 10px rgba(0, 51, 102, 0.4));
}
.brand-text {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #003366 !important; /* Navy Blue */
  letter-spacing: -0.02em;
}
.brand-tagline {
  color: #38bdf8 !important; /* Sky Blue */
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 1;
}

/* Links */
.navbar-nav .nav-link {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #003366 !important; /* Navy Blue */
  padding: 0.6rem 1.4rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
  text-shadow: none;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 50px;
}
.navbar-nav .nav-link.active {
    color: #003366 !important;
    font-weight: 800;
}
.navbar-nav .nav-link::after {
  display: none; /* Remove underline for pill style */
}
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  width: 20px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--sea);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
/* Active Link */
.nav-link.active {
  color: var(--sea);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%; /* عكس hover اللي بيبدأ من 0% */
  height: 2px;
  background: var(--sea);
}

/* CTA Button */
.btn-cta {
  background: linear-gradient(135deg, var(--sea), #0284c7);
  color: #fff !important;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.5);
  background: linear-gradient(135deg, #0284c7, var(--sea));
}
@media (max-width: 991px) {
  .navbar-wrapper {
    background: rgba(255, 255, 255, 1) !important; /* solid white on mobile */
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  .navbar-collapse {
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 10px;
    padding-bottom: 2rem;
    max-height: 80vh;
    overflow-y: auto;
  }
  .navbar-nav {
    padding: 1rem 1.5rem;
    gap: 0;
  }
  .navbar-nav .nav-link {
    font-size: 1.1rem;
    padding: 1rem 0 !important;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #003366 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(56, 189, 248, 0.05);
    padding-left: 1rem !important;
    color: var(--sea) !important;
    border-radius: 8px;
  }
  .btn-cta {
    margin: 1.5rem auto;
    display: block;
    width: 100%;
    text-align: center;
  }
  .dropdown-menu {
    border: none !important;
    background: rgba(241, 245, 249, 0.5) !important; /* Light Slate bg for mobile dropdowns */
    box-shadow: none !important;
    padding-left: 1rem;
    margin-top: 0;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

/* Header Scrolled State Utilities */
.scrolled .navbar-nav .nav-link {
  color: var(--ink);
}
.scrolled .navbar-brand .brand-text {
  color: var(--sea);
}

/* Dropdowns - Light Premium */
.dropdown-menu {
  padding: 0.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.dropdown-item {
  border-radius: 10px;
  transition: 0.2s;
  color: #0f172a !important;
  font-weight: 600;
  margin-bottom: 2px;
  padding: 8px 16px;
}
.dropdown-item:hover {
  background: rgba(56, 189, 248, 0.1) !important;
  color: #003366 !important;
  transform: translateX(5px);
  border-left: 2px solid var(--accent);
}
.dropdown-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Header Utilities (Moved from inline) */
.bg-white-5 {
  background: rgba(255, 255, 255, 0.05);
}
.bg-dark-pro {
  background: #020617; /* Matches --footer-bg */
}
.hover-glow:hover {
  background: rgba(56, 189, 248, 0.1);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.25);
}

/* Hamburger Icon - Light */
.hamburger-icon-pro {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger-icon-pro span {
  display: block;
  height: 3px; /* Thicker for visibility */
  width: 100%;
  background: #003366 !important; /* Force Navy */
  border-radius: 10px;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hamburger-icon-pro span:nth-child(2) {
  width: 70%;
  margin-left: auto;
}

/*ُEnd navbar*/
/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  height: 100vh; /* يخليها فل سكرين */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* صورة الخلفية */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* طبقة شفافه Gradient فوق الصورة */
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: -1;
}

/* النص */
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #f1f1f1;
}

/* الأزرار */
.hero-content .btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
/* زر Book Now */
.hero-content .btn-primary {
  background: linear-gradient(135deg, var(--sea), var(--coral));
  border: none;
}
.hero-content .btn-primary:hover {
  background: linear-gradient(135deg, var(--coral), var(--sea));
  box-shadow: 0 8px 20px rgba(14, 116, 144, 0.12);
}

/* زر Explore */
.hero-content .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}
.hero-content .btn-outline-light:hover {
  background: #fff;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-content .btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
/*ُEnd Hero Section*/

/* Destinations */
/* Wrapper للصورة */
.destination-card .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 250px; /* ارتفاع ثابت */
}

/* الصورة */
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* يحافظ على نسبة الصورة */
  transition: transform 0.4s ease;
}

/* تكبير بسيط عند hover */
.destination-card:hover img {
  transform: scale(1.05);
}

/* Overlay فوق الصورة */
.overlay {
  position: absolute;
  bottom: 0; /* النص تحت */
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  padding: 20px;
  text-align: center;
}

/* نص overlay */
.overlay-text {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* الكارد */
.destination-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* النص تحت الصورة */
.card-body {
  background: #fff;
  border-radius: 0 0 15px 15px;
  padding: 20px;
}

.card-title {
  font-size: 1.2rem;
  color: #0ea5e9; /* أزرق هادي */
}

.text-muted {
  font-size: 0.95rem;
}

/*ُ End Destinations */

/* Popular Trips (Swiper)  */
.trip-card-link {
  text-decoration: none;
  color: inherit;
}

.trip-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.trip-img-wrapper {
  position: relative;
}
.fixed-img {
  height: 220px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}
.trip-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #0e7490, #14b8a6);
  color: #fff;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}
.card-body {
  padding: 1.2rem;
}
.card-title {
  font-size: 1.2rem;
  color: #1e293b; /* أزرق رمادي مريح */
}
.card-text {
  font-size: 0.95rem;
}
.price {
  font-size: 1.2rem;
  color: #0e7490;
}

/*ُ End Popular Trips (Swiper)  */

/* Testimonials */
#testimonials {
  position: relative;
  overflow: hidden;
}
#testimonials h2 {
  color: var(--ink);
}

/* soft background */
#testimonials .t-bg {
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 60%;
  z-index: -1;
  background: radial-gradient(
    70% 60% at 50% 0%,
    rgba(14, 116, 144, 0.08),
    rgba(255, 255, 255, 0)
  );
  filter: blur(30px);
}

/* Summary card */
.t-summary {
  border: 1px solid #eef2f7;
}
.t-stars i {
  color: #f59e0b;
} /* star color */
.t-bar {
  width: 65%;
  height: 8px;
  background: #eef2f7;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.t-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--sea), #22c1b4);
}

/* Common card */
.t-card {
  padding: 18px;
  border: 1px solid #eef2f7;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.t-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.t-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(14, 116, 144, 0.25);
}

.chip-verified {
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(14, 116, 144, 0.08);
  color: var(--sea);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.t-text {
  color: #334155;
  line-height: 1.6;
}

/* trip tag */
.t-trip-tag {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 6px 10px;
}

/* Swiper sizing */
.t-swiper .swiper-slide {
  height: auto;
}
.t-swiper .swiper-pagination-bullet-active {
  background: var(--sea);
}
.t-swiper .swiper-button-prev,
.t-swiper .swiper-button-next {
  color: var(--sea);
}

/* Responsive refinements */
@media (max-width: 991px) {
  .t-summary {
    margin-bottom: 1rem;
  }
}

/* End Testimonials */
/* ===== Contact Section (Upgraded) ===== */
#contact {
  position: relative;
  overflow: hidden;
}
#contact .contact-bg {
  position: absolute;
  inset: auto -15% -40% -15%;
  height: 60%;
  z-index: -1;
  background: radial-gradient(
    50% 60% at 50% 10%,
    rgba(14, 116, 144, 0.06),
    rgba(255, 255, 255, 0)
  );
  filter: blur(28px);
}

/* Cards */
.contact-card,
.booking-card {
  border: 1px solid #eef4f7;
  background: linear-gradient(180deg, #fff, #fbfeff);
}

/* Phone/email blocks */
.contact-card i {
  color: var(--sea);
  opacity: 0.95;
}

/* Badges */
.hour-badge {
  background: #eef7fb;
  color: #0e7490;
  border: 1px solid rgba(14, 116, 144, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* Buttons consistent with CTA */
.btn-cta {
  background: linear-gradient(135deg, var(--sea), var(--coral));
  color: #fff;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  border: none;
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 116, 144, 0.12);
}

/* Contact form controls */
.booking-card .form-control,
.booking-card .form-select,
.booking-card textarea {
  border-radius: 10px;
  box-shadow: none;
  border: 1px solid #e6eef2;
}
.booking-card .form-control:focus,
.booking-card .form-select:focus,
.booking-card textarea:focus {
  border-color: rgba(14, 116, 144, 0.6);
  box-shadow: 0 6px 20px rgba(14, 116, 144, 0.06);
  outline: none;
}

/* responsive tweaks */
@media (max-width: 991px) {
  .contact-card {
    margin-bottom: 0;
  }
  #contact .contact-bg {
    display: none;
  }
}

/* map placeholder */
.map-placeholder img {
  display: block;
}

/* nice subtle overall text */
#contact .text-muted {
  color: #6b7280;
}

/* End Contact*/
/*Footer*/
/* =========================
   Premium Responsive Footer
   ========================= */



.site-footer {
  color: #fff;
  background: var(--footer-gradient);
  position: relative;
  font-family: "Outfit", sans-serif;
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Top Grid */
.footer-top {
  padding: 48px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 1.4rem;
  align-items: start;
}

/* Brand */
.footer-brand .brand-inline {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1.5rem;
}
.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.brand-sub {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.brand-desc {
  color: var(--muted-light);
  line-height: 1.8;
  font-size: 0.9rem;
  max-width: 320px;
}

/* Trust badges */
.trust-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-badge {
  height: 36px;
  opacity: 0.98;
}

/* Sections Headings */
.footer-section h4 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

/* Links */
.footer-links ul,
.footer-trips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a,
.footer-trips a {
  color: var(--muted-light);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
}
.footer-links a:hover,
.footer-trips a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Trips */
.trip-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.trip-list img {
  width: 64px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}

/* Contact */
.contact-lines .c-row {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
}
.contact-lines a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.contact-lines i {
  color: var(--accent);
}

/* Newsletter */
.newsletter-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.newsletter-row input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}
.newsletter-row input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.btn-news {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-news:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(14, 116, 144, 0.15);
}

/* Socials */
.socials a {
  color: rgba(255, 255, 255, 0.95);
  margin-right: 8px;
  font-size: 1.05rem;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.18s ease, transform 0.12s ease;
}
.socials a:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-3px);
  color: var(--accent);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.2);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom .copyright {
    font-size: 0.85rem;
    color: var(--muted-light);
}
.footer-bottom .legal a {
  color: var(--muted-light);
  margin-left: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}
.footer-bottom .legal a:hover {
  color: #fff;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .newsletter-row {
    flex-direction: column;
  }
  .newsletter-row input,
  .btn-news {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .trip-list img {
    width: 56px;
    height: 40px;
  }
  .socials a {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }
}
@media (max-width: 420px) {
  .brand-desc {
    display: none;
  }
}

/* End Footer*/

/* Developer Card Premium - Horizontal */
.developer-card-premium {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
}

.developer-card-premium:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
    transform: translateX(5px);
}

.developer-card-premium .dev-img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.developer-card-premium .dev-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.developer-card-premium h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.developer-card-premium .dev-loc {
    font-size: 10px;
    color: var(--muted-light);
    margin: 2px 0;
}

.developer-card-premium .dev-tel {
    font-size: 11px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 480px) {
    .developer-card-premium {
        gap: 10px;
        padding: 8px 12px;
    }
    .developer-card-premium h6 {
        font-size: 12px;
    }
}

/* Buttons */
.btn-primary {
  background: var(--sea);
  border: none;
}
.btn-primary:hover {
  background: #0c5c70;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--sea);
}
/* Hover Cards */
.hover-lift {
  transition: all 0.3s ease;
}

/* Utility Classes */
.text-accent {
  color: var(--accent) !important;
}
.fw-600 {
  font-weight: 600;
}

/* WhatsApp Button */
.whatsappe {
  width: 60px;
  height: 60px;
  padding: 8px;
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
}
.whatsappe img {
  width: 30px;
  height: auto;
  transition: 0.5s ease;
}
.whatsappe:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20b355;
}
.whatsappe:hover img {
  transform: rotate(360deg);
}

@media (max-width: 768px) {
  .whatsappe {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsappe img {
    width: 24px;
  }
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/*sidebar filter*/
.sidebar-card.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.filter-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--sea);
}
.filter-form .form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

/* Stars with numbers */
.star-rating-group label {
  cursor: pointer;
  font-weight: 600;
  color: #555;
  transition: color 0.3s;
}
.star-rating-group input:checked + span,
.star-rating-group label:hover {
  color: var(--sea);
}

/* Dual Range */
.range-slider {
  position: relative;
  height: 40px;
}
.range-slider input[type=range] {
  position: absolute;
  left: 0;
  top: 14px;
  width: 100%;
  pointer-events: none;
  -webkit-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.range-slider input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sea);
  cursor: pointer;
  -webkit-appearance: none;
}
.range-slider input[type=range]::-moz-range-thumb {
  pointer-events: all;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sea);
  cursor: pointer;
}
.range-slider input[type=range]::-webkit-slider-runnable-track {
  height: 5px;
  background: linear-gradient(to right, #ddd, var(--sea), #ddd);
  border-radius: 5px;
}
.range-slider input[type=range]::-moz-range-track {
  height: 5px;
  background: linear-gradient(to right, #ddd, var(--sea), #ddd);
  border-radius: 5px;
}

/* Apply Button */
.apply-btn {
  background: var(--sea);
  color: #fff;
  font-weight: 600;
  padding: 10px;
  transition: background 0.3s, transform 0.3s;
}
.apply-btn:hover {
  background: #0c5e72;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .sidebar-card.glass-card {
    position: relative;
    top: auto;
  }
}
/*end sidebar filter*/

/*sidebar*/
.trip-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.trip-img-wrapper {
  height: 200px;
  overflow: hidden;
}
.trip-img-wrapper img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease;
}
.trip-card:hover img {
  transform: scale(1.1);
}
.trip-badge {
  position: absolute;
  top: 15px;
  right: 15px; /* Moved to right for better balance */
  background: var(--sea);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 2;
}
.trip-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.25rem;
}
.trip-card .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.5em;
}
.trip-card .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
  margin-bottom: 1.25rem !important;
}
.trip-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap; /* Prevent wrapping */
}
.price-container {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px; /* Space between price and unit */
}
.price {
  font-size: 1.25rem;
  line-height: 1;
  white-space: nowrap;
}
.price-unit {
  font-size: 0.65rem;
  color: var(--muted);
  white-space: nowrap;
  opacity: 0.8;
}
@media (max-width: 576px) {
  .trip-footer {
    flex-direction: row; /* Keep them together if possible */
    flex-wrap: nowrap;
  }
  .price {
    font-size: 1.1rem;
  }
  .price-unit {
    font-size: 0.6rem;
  }
  .btn-book-sm {
    padding: 6px 10px;
    font-size: 0.75rem;
    white-space: nowrap;
  }
}
@media (max-width: 400px) {
  .price {
    font-size: 1rem;
  }
  .btn-book-sm {
    padding: 4px 8px;
    font-size: 0.7rem;
  }
}

/* =========================
   Professional Toast Notification
   ========================= */
.premium-toast-container {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 10000;
    pointer-events: none;
}

.premium-toast {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 320px;
    max-width: 450px;
    box-shadow: 0 12px 32px rgba(14, 116, 144, 0.12);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
}

.premium-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.premium-toast__icon {
    width: 48px;
    height: 48px;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    animation: toast-icon-pulse 2s infinite;
}


@keyframes toast-icon-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


.premium-toast__content {
    flex-grow: 1;
}

.premium-toast__title {
    font-weight: 800;
    color: #064e3b;
    margin: 0;
    line-height: 1.2;
    font-size: 1.05rem;
}

.premium-toast__message {
    color: var(--muted);
    font-size: 0.875rem;
    margin: 4px 0 0;
    line-height: 1.4;
}

.premium-toast__close {
    background: none;
    border: none;
    color: var(--muted);
    padding: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
}

.premium-toast__close:hover {
    opacity: 1;
    color: var(--ink);
}

@media (max-width: 576px) {
    .premium-toast-container {
        top: 16px;
        left: 16px;
        right: 16px;
    }
    .premium-toast {
        min-width: 0;
        width: 100%;
        transform: translateY(-50px);
    }
    .premium-toast.show {
        transform: translateY(0);
    }
}

/* Destinations Grid & Cards (New Responsive) */
.destination-card {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transform: translateZ(0); /* Hardware accelerate */
    background: #000; /* fall back */
}

/* Image zoom effect */
.destination-card .image-wrapper {
    overflow: hidden;
    height: 100%;
}
.destination-card img {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 100%;
    /* Height is set inline or by wrapper, but ensure cover */
    object-fit: cover;
}
.destination-card:hover img {
    transform: scale(1.08); /* Subtle zoom */
}

/* Professional Overlay */
.destination-card .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 40%; /* Create gradient from bit higher */
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0, 51, 102, 0.9) 0%, rgba(0, 51, 102, 0.4) 50%, rgba(0,0,0,0) 100%) !important;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.destination-card .overlay-text {
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    letter-spacing: 0.03em;
    font-weight: 700 !important;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

/* Lift text on hover */
.destination-card:hover .overlay-text {
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 575px) {
    .destination-card img {
        height: 240px !important; /* Slightly smaller on mobile */
    }
    .overlay-text {
        font-size: 1.25rem;
    }
}
