@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:wght@400;700;900&family=Inter:wght@300;400;500;600&family=Cinzel:wght@400;700&display=swap"); 
:root {
  --gold:    #C9882A;
  --gold-lt: #F0C45A;
  --sand:    #FDF6E3;
  --dusk:    #3B2A1A;
  --rust:    #B85C2A;
  --cream:   #FEFAF2;
  --text:    #2C1A0E;
  --muted:   #7A6652;
  --white:   #FFFFFF;
  --shadow:  0 8px 40px rgba(59,42,26,.13);
  --rad:     14px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TOP BAR ── */
.topbar {
  background: var(--dusk);
  color: var(--gold-lt);
  font-size: .8rem;
  padding: .5rem 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.topbar a { color: var(--gold-lt); margin-left: .8rem; }
.topbar a:hover { color: #fff; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,253,242,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(59,42,26,.10);
  border-bottom: 2px solid var(--gold-lt);
}
.header-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: .8rem; }
.logo-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rust));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(201,136,42,.4);
}
.logo-text { line-height: 1.1; }
.logo-text img { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--dusk); display: block; }
.logo-text span { font-size: .72rem; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: .3rem; }
nav a {
  font-size: .88rem; font-weight: 500; color: var(--text);
  padding: .45rem .9rem; border-radius: 30px;
  transition: all .25s; position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: all .25s;
}
nav a:hover::after { left: .9rem; right: .9rem; }
nav a:hover { color: var(--gold); }
nav a.active { color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.3rem; border-radius: 30px; font-weight: 600;
  font-size: .85rem; transition: all .25s; cursor: pointer; border: none;
  letter-spacing: .02em;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--rust)); color: #fff; box-shadow: 0 4px 14px rgba(201,136,42,.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,136,42,.45); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-wa { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: .4rem; border-radius: 8px; background: var(--sand); border: 1.5px solid var(--gold-lt);
}
.hamburger span { width: 24px; height: 2px; background: var(--dusk); border-radius: 2px; transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: rgba(59,42,26,.98); flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--gold-lt); letter-spacing: .1em; transition: color .2s; }
.mobile-menu a:hover { color: #fff; }
.mobile-menu .close-menu { position: absolute; top: 1.2rem; right: 1.5rem; font-size: 1.8rem; color: var(--gold-lt); cursor: pointer; }

/* ── SLIDER ── */
.slider { position: relative; height: 92vh; min-height: 560px; overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 8s ease; }
.slide.active img { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom, rgba(30,15,5,.32) 0%, rgba(30,15,5,.65) 100%);
  display: flex; align-items: center; justify-content: center;
}
.slide-content { text-align: center; color: #fff; padding: 2rem; }
.slide-badge {
  display: inline-block; background: var(--gold); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: .3rem 1rem; border-radius: 30px; margin-bottom: 1.2rem;
}
.slide-content h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 1rem;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.slide-content h1 em { font-style: italic; color: var(--gold-lt); }
.slide-content p { font-size: 1.1rem; max-width: 560px; margin: 0 auto 1.8rem; opacity: .9; line-height: 1.7; }
.slide-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.slider-arrows { position: absolute; bottom: 50%; z-index: 10; width: 100%; display: flex; justify-content: space-between; padding: 0 1.2rem; pointer-events: none; }
.slider-arrow {
  pointer-events: all; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.4); color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s;
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); }

.slider-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: .5rem; }
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: all .3s;
}
.dot.active { background: var(--gold-lt); width: 28px; border-radius: 4px; }

/* ── SECTIONS ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-label {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  color: var(--gold); margin-bottom: .5rem;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--dusk); line-height: 1.2;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 640px; line-height: 1.75; margin-top: .6rem;text-align: justify; }
.divider {
  width: 60px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt)); margin: 1rem 0;
}
p {font-size:.85rem;color:var(--muted);line-height:1.8;margin-top:.9rem; text-align: justify;}
/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; object-fit: cover; border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform .5s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); }
.about-img-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--rust));
  color: #fff; border-radius: 16px; padding: 1.2rem 1.6rem;
  box-shadow: 0 8px 28px rgba(201,136,42,.35);
  font-family: 'Cinzel', serif; text-align: center;
}
.about-img-badge strong { font-size: 2rem; display: block; line-height: 1; }
.about-img-badge span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.8rem 0; }
.feat-item {
  display: flex; gap: .7rem; align-items: flex-start;
  background: var(--sand); border-radius: 12px; padding: 1rem;
  border: 1px solid rgba(201,136,42,.15);
  transition: all .25s;
}
.feat-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,136,42,.12); transform: translateY(-2px); }
.feat-icon { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .85rem; flex-shrink: 0; }
.feat-text strong { font-size: .85rem; color: var(--dusk); display: block; }
.feat-text span { font-size: .75rem; color: var(--muted); }

/* ── PACKAGES GRID ── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.8rem; margin-top: 3rem; }
.pkg-card {
  background: var(--white); border-radius: var(--rad); overflow: hidden;
  box-shadow: var(--shadow); transition: all .35s;
  border: 1px solid rgba(201,136,42,.1);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(59,42,26,.18); }
.pkg-img { position: relative; overflow: hidden; height: 220px; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pkg-card:hover .pkg-img img { transform: scale(1.1); }
.pkg-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 30px;
}
.pkg-discount {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--rust); color: #fff;
  font-size: .7rem; font-weight: 700; padding: .25rem .75rem; border-radius: 30px;
}
.pkg-body { padding: 1.4rem; }
.pkg-meta { display: flex; gap: 1rem; font-size: .75rem; color: var(--muted); margin-bottom: .6rem; }
.pkg-meta span { display: flex; align-items: center; gap: .3rem; }
.pkg-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--dusk); margin-bottom: .5rem; }
.pkg-body p { font-size: .82rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.pkg-includes { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.pkg-includes span {
  font-size: .7rem; padding: .25rem .65rem; border-radius: 30px;
  background: var(--sand); color: var(--muted); border: 1px solid rgba(201,136,42,.15);
}
.pkg-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--sand); padding-top: 1rem; }
.pkg-price del { font-size: .8rem; color: #bbb; display: block; line-height: 1; }
.pkg-price strong { font-family: 'Cinzel', serif; font-size: 1.25rem; color: var(--gold); }
.pkg-price small { font-size: .7rem; color: var(--muted); }
.pkg-actions { display: flex; gap: .5rem; }

/* ── ATTRACTIONS ── */
#attractions { background: var(--sand); }
.attractions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; margin-top: 3rem; }
.attr-card {
  position: relative; border-radius: 14px; overflow: hidden;
  height: 200px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(59,42,26,.12);
  transition: all .35s;
}
.attr-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 12px 40px rgba(59,42,26,.22); }
.attr-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.attr-card:hover img { transform: scale(1.12); }
.attr-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,10,0,.82) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem;
  transition: background .3s;
}
.attr-card:hover .attr-overlay { background: linear-gradient(to top, rgba(30,10,0,.9) 0%, rgba(201,136,42,.3) 100%); }
.attr-overlay h4 { font-family: 'Playfair Display', serif; color: #fff; font-size: .95rem; font-weight: 700; }
.attr-overlay span { font-size: .7rem; color: var(--gold-lt); }
.attr-icon {
  position: absolute; top: .8rem; right: .8rem;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: .75rem;
}

/* ── CAR RENTAL ── */
.car-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.8rem; margin-top: 3rem; }
.car-card {
  background: var(--white); border-radius: var(--rad); overflow: hidden;
  box-shadow: var(--shadow); transition: all .35s; border: 1px solid rgba(201,136,42,.08);
}
.car-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(59,42,26,.16); }
.car-img { height: 190px; overflow: hidden; position: relative; }
.car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.car-card:hover .car-img img { transform: scale(1.08); }
.car-tag {
  position: absolute; bottom: .8rem; left: .8rem;
  background: rgba(59,42,26,.85); backdrop-filter: blur(4px);
  color: var(--gold-lt); font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  padding: .25rem .7rem; border-radius: 30px; text-transform: uppercase;
}
.car-body { padding: 1.3rem; }
.car-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--dusk); margin-bottom: .5rem; }
.car-specs { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin: .8rem 0 1rem; }
.car-spec { display: flex; gap: .4rem; align-items: center; font-size: .75rem; color: var(--muted); }
.car-spec i { color: var(--gold); width: 14px; }
.car-rate { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.car-rate small { font-family: 'Inter', sans-serif; font-size: .7rem; color: var(--muted); font-weight: 400; }

/* ── DUNE BASHING ── */
.dune-section {
  position: relative; height: 70vh; min-height: 480px; overflow: hidden;
  display: flex; align-items: center;
}
.dune-bg { position: absolute; inset: 0; }
.dune-bg img { width: 100%; height: 100%; object-fit: cover; }
.dune-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,8,0,.82) 0%, rgba(184,92,42,.35) 60%, rgba(20,8,0,.6) 100%);
}
.dune-content {
  position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; padding: 2rem;
  color: #fff;
}
.dune-content .section-label { color: var(--gold-lt); }
.dune-content .section-title { color: #fff; max-width: 640px; }
.dune-content p { font-size: 1rem; max-width: 560px; opacity: .88; line-height: 1.75; margin: 1rem 0 2rem; }
.dune-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.dune-stat strong { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--gold-lt); display: block; line-height: 1; }
.dune-stat span { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; opacity: .75; }

/* ── ACTIVITIES ── */
#activities { background: #fff; }
#activities .section-title { color: var(--dusk); }
#activities .section-label { color: var(--dusk); }
#activities .section-sub { color: rgba(255,253,242,.65); }
#activities .divider { background: linear-gradient(90deg, var(--gold-lt), var(--gold)); }
.act-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; margin-top: 3rem; }
.act-card {
  border-radius: 14px; overflow: hidden; position: relative;
  height: 240px; cursor: pointer; transition: all .35s;
}
.act-card:hover { transform: translateY(-6px) scale(1.02); }
.act-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.act-card:hover img { transform: scale(1.12); }
.act-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,5,0,.88) 0%, rgba(201,136,42,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.1rem;
}
.act-overlay h4 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.act-overlay p { font-size: .72rem; color: rgba(255,255,255,.75); line-height: 1.5; }
.act-num {
  position: absolute; top: .8rem; left: .8rem;
  font-family: 'Cinzel', serif; font-size: .7rem; color: var(--gold-lt);
  background: rgba(0,0,0,.4); backdrop-filter: blur(4px);
  padding: .2rem .6rem; border-radius: 20px;
}

/* ── FOOTER ── */
footer { background: #1A0F06; color: rgba(255,253,242,.8); }
.footer-top {
  max-width: 1300px; margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem;
}
.footer-brand .logo-text strong { color: var(--gold-lt); }
.footer-brand .logo-text span { color: rgba(255,253,242,.5); }
.footer-brand p { font-size: .82rem; line-height: 1.75; color: rgba(255,253,242,.6); margin: 1rem 0 1.5rem; }
.footer-socials { display: flex; gap: .6rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(201,136,42,.4);
  display: flex; align-items: center; justify-content: center; color: var(--gold-lt);
  font-size: .85rem; transition: all .25s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-col h4 { font-family: 'Cinzel', serif; font-size: .85rem; color: var(--gold-lt); letter-spacing: .1em; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,253,242,.6); transition: color .2s; display: flex; align-items: center; gap: .5rem; }
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-col ul li a:hover { color: var(--gold-lt); }
.contact-item { display: flex; gap: .8rem; margin-bottom: .9rem; font-size: .82rem; color: rgba(255,253,242,.6); }
.contact-item i { color: var(--gold); width: 16px; margin-top: .1rem; }
.footer-bottom {
  border-top: 1px solid rgba(201,136,42,.15); max-width: 1300px; margin: 0 auto;
  padding: 1.2rem 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,253,242,.4); }
.footer-bottom a { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all .3s; animation: pulse-wa 2.5s infinite;
}
.wa-float:hover { transform: scale(1.15); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.8); }
}

/* ── SECTION CTA ROW ── */
.section-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-wrap img { height: 340px; }
  .about-img-badge { bottom: -.8rem; left: .5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  nav, .header-right { display: none; }
  .hamburger { display: flex; }
  .topbar { display: none; }
  .slider { height: 75vh; }
  .slide-content h1 { font-size: 2rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .car-grid { grid-template-columns: 1fr; }
  .act-grid { grid-template-columns: repeat(2, 1fr); }
  .dune-stats { gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .btn-gold { background: linear-gradient(135deg, var(--gold), var(--rust)); color: #fff; box-shadow: 0 4px 14px rgba(201,136,42,.35); }
}
@media (max-width: 480px) {
  .attractions-grid { grid-template-columns: 1fr 1fr; }
  .act-grid { grid-template-columns: 1fr 1fr; }
  .slider { height: 65vh; }
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-center .divider { margin: 1rem auto; }
.text-center .section-sub { margin: 0 auto; }
.bg-cream { background: var(--cream); }
.view-all { display: flex; justify-content: center; margin-top: 2.5rem; }
