:root{
  --accent:#0077cc;
  --dark:#0f1724;
  --muted:#6b7280;
}

body{
  font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:#0b1220;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
}


.brand .logo{
  width:48px;height:48px;border-radius:8px;
  background:var(--accent);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;
}

.cta{
  background:var(--accent)!important;
  color:#fff!important;
  border-radius:8px;
  padding:10px 16px;
  font-weight:600;
  text-decoration:none;
}

.price{
  color:var(--accent);
  font-weight:700;
}

.muted{
  color:var(--muted);
}

.badge-custom{
  padding:6px 10px;
  border-radius:50px;
  border:1px solid #e6eef7;
  font-weight:600;
}

footer{
  background:#f8fafc;
  border-top:1px solid #eef2f7;
  padding:25px 0;
  margin-top:25px;
}
/* Desktop Default */
.nav-links {
  display: flex;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    font-size: 26px;
    cursor: pointer;
    user-select: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 99;
  }

  .nav-links a {
    margin: 8px 0;
  }

  .nav-links.show {
    display: flex;
  }
}
.logo-img {
  height: 60px;
  width: auto;
  border-radius: 8px; /* optional */
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

.whatsapp-icon {
  line-height: 0;
}
/* ================================
   SERVICES SECTION
================================ */

#services {
  padding: 60px 0;
  background: #f5f7fa;
}

/* Card */
.service-card {
  border-radius: 20px;
  padding: 28px 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  color: #fff;
}

/* Fade-in animation */
.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Icon wrapper */
.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  font-size: 32px;
}

/* Icon hover */
.service-card:hover .service-icon {
  transform: scale(1.1);
}

/* Title */
.service-card h6 {
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  color: inherit;
}

/* Popular badge */
.popular-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  font-size: 12px;
  padding: 6px 35px;
  transform: rotate(45deg);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Card backgrounds */
.service-slide:nth-child(1) .service-card { background: linear-gradient(135deg, #0077cc, #00aaff); }
.service-slide:nth-child(2) .service-card { background: linear-gradient(135deg, #ff6f61, #ff8c42); }
.service-slide:nth-child(3) .service-card { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.service-slide:nth-child(4) .service-card { background: linear-gradient(135deg, #7b42f6, #b01eff); }
.service-slide:nth-child(5) .service-card { background: linear-gradient(135deg, #ffca28, #ffc107); color: #0f1724; }
.service-slide:nth-child(6) .service-card { background: linear-gradient(135deg, #42f57b, #2ebf4f); }
.service-slide:nth-child(7) .service-card { background: linear-gradient(135deg, #ff4081, #f50057); }
.service-slide:nth-child(8) .service-card { background: linear-gradient(135deg, #00bcd4, #009688); }

/* Icon colors */
.service-icon i {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.35s ease;
}

.service-card:hover .service-icon i {
  color: #fff;
}

/* Mobile slider */
@media (max-width: 768px) {
  #services .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .service-slide {
    min-width: 75%;
    scroll-snap-align: center;
  }

  #services .row::-webkit-scrollbar {
    display: none;
  }
    .service-indicators .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
  }

  .service-indicators .dot.active {
    background-color: #0077cc;
  }
}


.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  bottom: 20px; /* distance from bottom of the slide */
  left: 50%;
  transform: translateX(-50%); /* center horizontally */
  text-align: center;
  background: rgba(0, 0, 0, 0.45); /* semi-transparent background */
  color: #fff;
  padding: clamp(1rem, 3%, 2rem); /* responsive padding */
  border-radius: 12px;
  width: clamp(80%, 90%, 600px);  /* responsive width */
}

/* Optional: responsive text */
.hero-overlay h1 {
  font-size: clamp(1.8rem, 6vw, 4rem);
}

.hero-overlay p {
  font-size: clamp(0.9rem, 3vw, 1.4rem);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-overlay {
    bottom: 10px;
    padding: 1rem;
    width: 90%;
  }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translate(-50%, -60%);}
  100% { opacity: 1; transform: translate(-50%, -50%);}
}

/* Heading */


/* Navigation Buttons */
.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: rgba(255,255,255,0.45);
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.hero-btn.prev { left: 25px; }
.hero-btn.next { right: 25px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dots .dot.active {
  background: #0077cc;
  transform: scale(1.3);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider { height: 60vh; }
  .hero-overlay { padding: 1rem; }
}

/* ===== FIX MULTI CARD CAROUSEL (DESKTOP) ===== */
/* ABOUT HERO SECTION */
.about-hero {
  position: relative;
  padding: 90px 0;
  border-radius: 24px;
  background:
    linear-gradient(120deg, #f8fafc 0%, #eef2f7 100%);
  overflow: hidden;
}

/* Soft decorative background shapes */
.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.about-hero::before {
  width: 300px;
  height: 300px;
  background: #93c5fd;
  top: -100px;
  left: -100px;
}

.about-hero::after {
  width: 350px;
  height: 350px;
  background: #a7f3d0;
  bottom: -120px;
  right: -120px;
}

/* Overlay removal (keep for compatibility) */
.about-overlay {
  display: none;
}

/* TEXT STYLING */
.about-hero h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.5px;
}

.about-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ICON LISTS */
.about-list,
.about-features {
  list-style: none;
  padding: 0;
}

.about-list li,
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  color: #0f172a;
}

.about-list i {
  font-size: 1.1rem;
  color: #0ea5e9;
}

/* RIGHT CARD */
.about-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 35px;
  border-radius: 24px;
  box-shadow:
    0 20px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 65px rgba(15, 23, 42, 0.18);
}

/* FEATURE ICON COLORS */
.about-features i {
  color: #2563eb;
  font-size: 1.1rem;
}

/* SIMPLE CSS FADE-IN (NO JS) */
.fade-in {
  animation: fadeUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.25s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 20px;
  }

  .about-card {
    margin-top: 20px;
  }
}
/* CONTACT HERO SECTION */
.contact-hero {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(to right, #eef2f7, #f8fafc);
  border-radius: 20px;
}

/* CARD STYLE */
.contact-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* FORM INPUTS */
.contact-card input,
.contact-card textarea {
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
  outline: none;
}

/* BUTTON */
.contact-card .btn-primary {
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* ICONS IN INFO CARD */
.contact-card i {
  color: #2563eb;
  margin-right: 8px;
  font-size: 1.1rem;
}

/* FADE-IN EFFECT */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .contact-hero {
    padding: 50px 20px;
  }

  .contact-card {
    padding: 25px;
  }
}
/* SLIDER WRAPPER */
.trip-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 15px;
}

.trip-slider::-webkit-scrollbar {
  display: none;
}

/* SLIDES */
.trip-slide {
  scroll-snap-align: start;
  flex: 0 0 33.333%;
}

/* MOBILE */
@media (max-width: 768px) {
  .trip-slide {
    flex: 0 0 100%;
  }
}

/* CARD */
.trip-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.35s ease;
}

.trip-card:hover {
  transform: translateY(-8px);
}

.trip-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CARD BODY */
.trip-body {
  padding: 16px;
}

.trip-body h5 {
  font-weight: 600;
}

.trip-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.trip-footer a {
  background: #0077cc;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
}

/* BEST SELLER */
.best-badge {
  position: absolute;
  top: 15px;
  left: -30px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  padding: 6px 40px;
  transform: rotate(-45deg);
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

/* DOTS */
.trip-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.trip-dots a {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  transition: 0.3s;
}

.trip-dots a:hover {
  background: #ff5722;
  transform: scale(1.3);
}
.luxury-testimonials {
  background: linear-gradient(180deg, #f8f5f1, #efe7dc);
}

.luxury-title {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  color: #3b2a1a;
}

.luxury-subtitle {
  color: #7a6a58;
  font-size: 15px;
}

.testimonial-card.wood {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  height: 100%;
  position: relative;
}

.testimonial-card .stars {
  color: #c29b63;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card .review {
  font-size: 15px;
  color: #4b3a2a;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .profile img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4b58c;
}

.testimonial-card .profile h6 {
  margin: 0;
  font-weight: 600;
  color: #2e1f14;
}

.testimonial-card .profile span {
  font-size: 13px;
  color: #8b7a66;
}

.stars {
  color: #f5b50a;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.review {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.profile h6 {
  margin: 0;
  font-weight: 700;
}

.profile span {
  font-size: 13px;
  color: #888;
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
  color: #c79a3d; /* luxury gold */
}

.swiper-pagination-bullet {
  background: #c79a3d;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}
