@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"); 
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;600;700&display=swap"); 
:root {
  --gold: #C9933A;
  --gold-light: #E8B96A;
  --sand: #F5E6C8;
  --sand-light: #FDF8EE;
  --dark: #1A1108;
  --text: #3D2E0E;
  --text-light: #7A6240;
  --white: #FFFFFF;
  --shadow: 0 8px 32px rgba(201,147,58,0.15);
  --radius: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* TOP BAR */
.top-bar {
  background: linear-gradient(135deg, #1A1108 0%, #B45232 100%);
  color: #E8B96A;
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 600;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: #E8B96A; transition: color 0.3s; }
.top-bar a:hover { color: #fff; }
.top-left, .top-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-bar i { margin-right: 5px; }
.top-social a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(201,147,58,0.18); color: #E8B96A; font-size: 0.8rem; transition: all 0.3s; }
.top-social a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

/* NAVBAR */
nav {
  background: #F8F8F8;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(201,147,58,0.12);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow 0.3s;
}
ul li {
  text-transform: uppercase;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 2px 0; }
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-wrap img{ width: 87%; }
.logo-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; box-shadow: 0 4px 14px rgba(201,147,58,0.35);
}
.logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--dark); line-height: 1.2; }
.logo-text .tagline { font-size: 0.7rem; color: var(--gold); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-weight: 600; font-size: 0.88rem; color: var(--text); transition: all 0.3s; position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:4px; left:50%; transform:translateX(-50%) scaleX(0); width:20px; height:2px; background:var(--gold); border-radius:2px; transition:transform 0.3s; }
.nav-links a:hover::after { transform:translateX(-50%) scaleX(1); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-wa { background: #25D366; color: #fff; padding: 9px 18px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; gap: 7px; box-shadow: 0 4px 14px rgba(37,211,102,0.3); transition: all 0.3s; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 25px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HERO SLIDER */
.hero { position: relative; height: 92vh; min-height: 560px; overflow: hidden; }
.slides { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.77,0,0.175,1); will-change: transform; }
.slide { min-width: 100%; height: 100%; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; }
.slide::before { content:''; position:absolute; inset:0; background: linear-gradient(120deg, rgba(26,17,8,0.75) 0%, rgba(26,17,8,0.3) 60%, rgba(26,17,8,0.1) 100%); }
.slide-1 { background-image: url('../image/dinner-dunes-jaisalmer.webp'); }
.slide-2 { background-image: url('../image/candle-light.webp'); }
.slide-3 { background-image: url('../image/Dinner-dunes.webp'); }
.slide-4 { background-image: url('../image/Dinner-dunes1.webp'); }
.slide-content { position: relative; z-index: 2; color: #fff; padding: 0 20px; max-width: 680px; margin-left: 8%; }
.slide-badge { display: inline-block; background: rgba(201,147,58,0.9); color: #fff; padding: 5px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.slide-content h1 { font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.15; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.slide-content h1 em { font-style: italic; color: var(--gold-light); }
.slide-content p { font-size: 1.05rem; margin-bottom: 28px; color: rgba(255,255,255,0.88); max-width: 480px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #fff; padding: 13px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; box-shadow: 0 6px 22px rgba(201,147,58,0.45); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,147,58,0.55); color: #fff; }
.btn-outline { background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); color: #fff; border: 2px solid rgba(255,255,255,0.6); padding: 13px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: rgba(255,255,255,0.22); color: #fff; }
.slider-nav { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: all 0.3s; }
.slider-dot.active { background: var(--gold); transform: scale(1.4); }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 2px solid rgba(255,255,255,0.4); color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* SECTIONS */
section { padding: 80px 0; }
.section-label { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.6rem); color: var(--dark); line-height: 1.2; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { color: var(--text-light); font-size: 1rem; line-height: 1.7; margin-top: 12px; max-width: 600px; text-align: justify; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .section-sub { margin: 12px auto 0; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 3px; margin: 16px auto 0; }

/* WELCOME */
.welcome { background: var(--sand-light); }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.welcome-images { position: relative; padding-bottom: 28px; padding-right: 28px; }
.img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 50px rgba(201,147,58,0.2); }
.img-main img { width: 100%; height: 420px; object-fit: cover; display: block; }
.img-float { position: absolute; bottom: 0; right: 0; width: 200px; border-radius: 16px; overflow: hidden; border: 5px solid #fff; box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.img-float img { width: 100%; height: 160px; object-fit: cover; display: block; }
.rating-badge { position: absolute; top: 20px; left: -10px; background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: 0 8px 28px rgba(201,147,58,0.2); display: flex; align-items: center; gap: 12px; z-index: 2; }
.rating-badge .stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.rating-num { font-size: 1.6rem; font-weight: 700; color: var(--dark); font-family: 'Playfair Display', serif; line-height: 1; }
.rating-label { font-size: 0.72rem; color: var(--text-light); font-weight: 600; margin-top: 2px; }
.welcome-text .section-sub { max-width: 100%; }
.features-list { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feat-item { display: flex; align-items: flex-start; gap: 10px; }
.feat-icon { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }
.feat-item h5 { font-size: 0.88rem; color: var(--dark); margin-bottom: 2px; }
.feat-item p { font-size: 0.77rem; color: var(--text-light); line-height: 1.4; }
.welcome-btn { margin-top: 32px; }

/* PACKAGES */
.packages { background: var(--white); }
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pkg-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.35s; background: #fff; }
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(201,147,58,0.2); }
.pkg-img { position: relative; overflow: hidden; height: 220px; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.pkg-card:hover .pkg-img img { transform: scale(1.08); }
.pkg-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; letter-spacing: 1px; }
.pkg-body { padding: 18px; }
.pkg-body h5 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.pkg-body p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.55; }
.pkg-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 700; font-size: 0.82rem; border: 1.5px solid var(--gold); padding: 7px 16px; border-radius: 50px; transition: all 0.3s; }
.pkg-link:hover { background: var(--gold); color: #fff; }

/* BANNER */
.banner-strip { background: linear-gradient(135deg, #1A1108 0%, #2D1F0A 60%, #1A1108 100%); padding: 60px 0; position: relative; overflow: hidden; }
.banner-strip::before { content:''; position:absolute; inset:0; background: url('https://www.dinnerondunes.com/image/dinnerdunes.webp') center/cover; opacity: 0.15; }
.banner-strip .container { position: relative; z-index:1; text-align: center; }
.banner-strip h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); color: #fff; margin-bottom: 10px; }
.banner-strip p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto 28px; line-height: 1.7; }
.banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-light { background: rgba(255,255,255,0.1); color: #fff; border: 2px solid rgba(255,255,255,0.5); padding: 13px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
.btn-light:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* ACTIVITIES */
.activities { background: var(--sand-light); }
.act-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.act-card { border-radius: var(--radius); overflow: hidden; position: relative; height: 260px; cursor: pointer; box-shadow: 0 6px 24px rgba(0,0,0,0.1); transition: all 0.35s; }
.act-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(201,147,58,0.25); }
.act-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.act-card:hover img { transform: scale(1.1); }
.act-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(26,17,8,0.88) 0%, rgba(26,17,8,0.2) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; }
.act-loc { font-size: 0.72rem; color: var(--gold-light); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.act-overlay h4 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.act-btns { display: flex; gap: 8px; }
.act-wa { background: #25D366; color: #fff; border: none; padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: all 0.3s; text-decoration: none; }
.act-wa:hover { transform: scale(1.05); color: #fff; }
.act-more { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; cursor: pointer; transition: all 0.3s; }
.act-more:hover { background: var(--gold); border-color: var(--gold); }
.act-footer { text-align: center; margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* WHY CHOOSE US */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 36px 20px; border-radius: var(--radius); background: var(--sand-light); border: 2px solid transparent; transition: all 0.35s; }
.why-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 12px 36px rgba(201,147,58,0.15); }
.why-icon { width: 70px; height: 70px; border-radius: 20px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; margin: 0 auto 18px; box-shadow: 0 6px 20px rgba(201,147,58,0.35); }
.why-card h4 { font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* FOOTER */
footer { background: linear-gradient(135deg, #0E0905 0%, #1A1108 100%); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .brand { color: #fff !important; }
.footer-brand .tagline { color: var(--gold-light) !important; }
.footer-brand p { margin-top: 16px; font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-call { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.footer-call i { color: var(--gold); font-size: 1.3rem; }
.footer-call a { color: #fff; font-weight: 700; font-size: 1.05rem; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(201,147,58,0.15); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.3s; }
.footer-social a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
footer h5 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
footer h5::after { content:''; position:absolute; bottom:0; left:0; width:30px; height:2px; background:var(--gold); border-radius:2px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
footer ul li a i { color: var(--gold); font-size: 0.7rem; }
footer ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer-contact li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }

/* FIXED BOTTOM BAR */
.fixed-bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; box-shadow: 0 -4px 20px rgba(0,0,0,0.12); display: none; z-index: 2000; padding: 10px 16px; gap: 10px; }
.fbb-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 10px; border-radius: 12px; font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer; text-decoration: none; transition: all 0.3s; font-family: 'Nunito', sans-serif; }
.fbb-wa { background: #25D366; color: #fff; }
.fbb-call { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #fff; }
.fbb-wa:hover { background: #1da851; }

/* FLOAT WHATSAPP */
.float-wa { position: fixed; bottom: 28px; right: 28px; z-index: 1500; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.5); animation: pulse-wa 2.5s infinite; transition: transform 0.3s; }
.float-wa:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse-wa { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); } 50% { box-shadow: 0 6px 40px rgba(37,211,102,0.75); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .act-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .welcome-grid { gap: 36px; }
  .slider-arrow { position: absolute; top: 70%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 2px solid rgba(255,255,255,0.4); color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }

}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 16px 20px; gap: 4px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 10px; }
  nav { position: relative; }
  .welcome-grid { grid-template-columns: 1fr; }
  .img-float { display: none; }
  .welcome-images { padding-right: 0; padding-bottom: 0; }
  .rating-badge { left: 0; }
  .features-list { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .act-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fixed-bottom-bar { display: flex; }
  .float-wa { bottom: 80px; right: 16px; }
  body { padding-bottom: 68px; }
  .top-left {  }
  .top-right { display: none !important; }
  .btn-wa span { display: none; }
  .slider-arrow { position: absolute; top: 70%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 2px solid rgba(255,255,255,0.4); color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }

}
@media (max-width: 500px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .act-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero { height: 85vh; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }
  section { padding: 56px 0; }
  .slider-arrow { position: absolute; top: 70%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 2px solid rgba(255,255,255,0.4); color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }

}
