/* ============================================================
   N.K. SAU TOUR & TRAVELS — nksautours.com
   Master Stylesheet v3.0
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --gold:         #c8922a;
  --gold-light:   #e8b84b;
  --gold-pale:    #f5e5bc;
  --sand:         #f5ead8;
  --deep:         #110a00;
  --deep2:        #1a1000;
  --deep3:        #221500;
  --rust:         #8b3318;
  --ivory:        #fdf6ec;
  --border:       rgba(200,146,42,0.18);
  --border-h:     rgba(200,146,42,0.45);
  --nav-h:        70px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'Jost', Arial, sans-serif;
  background-color:#110a00;
  color:var(--sand);
  overflow-x:hidden;
  min-height:100vh;
  line-height:1.6;
}
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

/* Scrollbar */
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--deep); }
::-webkit-scrollbar-thumb { background:var(--gold); border-radius:2px; }

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
#navbar {
  position:fixed; top:0; left:0; right:0; z-index:600;
  height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 4rem;
  background-color:rgba(17,10,0,0.97);
  border-bottom:1px solid var(--border);
  transition:box-shadow 0.3s;
}
#navbar.scrolled { box-shadow:0 4px 32px rgba(0,0,0,0.65); }

/* Logo */
.nav-logo {
  display:flex; align-items:center; gap:0.7rem;
  flex-shrink:0;
}
.nav-logo-mark {
  width:38px; height:38px;
  border:1px solid var(--gold); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display', serif;
  font-size:1rem; font-weight:900;
  color:var(--gold-light); flex-shrink:0;
}
.nav-logo-text {
  font-family:'Playfair Display', serif;
  font-size:1.05rem; font-weight:700;
  color:var(--gold-light); line-height:1.1;
}
.nav-logo-text small {
  display:block; font-family:'Jost', sans-serif;
  font-size:0.56rem; font-weight:400;
  letter-spacing:0.22em; text-transform:uppercase;
  color:rgba(245,234,216,0.38);
}

/* Desktop links */
.nav-links {
  display:flex; gap:0.15rem; align-items:center;
}
.nav-links a {
  font-size:0.73rem; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase;
  color:rgba(245,234,216,0.7);
  padding:0.44rem 0.8rem; border-radius:3px;
  transition:color 0.22s, background-color 0.22s;
  white-space:nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color:var(--gold-light);
  background-color:rgba(200,146,42,0.1);
}
.nav-cta {
  background-color:var(--gold) !important;
  color:var(--deep) !important;
  font-weight:700 !important;
  padding:0.48rem 1.2rem !important;
  border-radius:2px !important;
}
.nav-cta:hover { background-color:var(--gold-light) !important; }

/* Hamburger */
.nav-hamburger {
  display:none;
  flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:38px;
  background:transparent;
  border:1px solid var(--border); border-radius:4px;
  cursor:pointer; padding:8px; flex-shrink:0; z-index:700;
}
.nav-hamburger span {
  display:block; width:100%; height:2px;
  background-color:var(--gold-light); border-radius:2px;
  transition:transform 0.32s, opacity 0.22s;
  transform-origin:center;
}
.nav-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position:fixed;
  top:var(--nav-h); left:0; right:0; z-index:590;
  background-color:rgba(12,6,0,0.99);
  border-bottom:1px solid var(--border);
  max-height:0; overflow:hidden;
  transition:max-height 0.38s ease;
}
.nav-drawer.open { max-height:480px; }
.nav-drawer ul { padding:0.5rem 1.5rem 1.5rem; }
.nav-drawer ul li { border-bottom:1px solid rgba(200,146,42,0.09); }
.nav-drawer ul li:last-child { border-bottom:none; }
.nav-drawer ul a {
  display:block; padding:0.85rem 0.4rem;
  font-size:0.86rem; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase;
  color:rgba(245,234,216,0.76);
  transition:color 0.2s;
}
.nav-drawer ul a:hover,
.nav-drawer ul a.active { color:var(--gold-light); }
.mob-book {
  display:block; margin:1rem 1.5rem 1.5rem;
  background-color:var(--gold);
  color:var(--deep) !important;
  text-align:center; padding:0.85rem !important;
  font-weight:700 !important; font-size:0.82rem;
  letter-spacing:0.18em; text-transform:uppercase;
  border-radius:2px; transition:background-color 0.25s;
}
.mob-book:hover { background-color:var(--gold-light) !important; }

/* ════════════════════════════════════════════
   MARQUEE TICKER
════════════════════════════════════════════ */
.marquee-strip {
  background-color:var(--rust);
  overflow:hidden; padding:0.6rem 0; white-space:nowrap;
}
.marquee-track {
  display:inline-block;
  animation:marquee 38s linear infinite;
  font-size:0.65rem; font-weight:600;
  letter-spacing:0.28em; text-transform:uppercase;
  color:var(--ivory);
}
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ════════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════════ */
.page-hero {
  height:52vh;
  min-height:340px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  width:100%;
  margin-top:var(--nav-h);
}
.page-hero img {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
  filter:brightness(0.36) saturate(0.82);
}
.page-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(17,10,0,0.15), rgba(17,10,0,0.68));
}
.page-hero-content {
  position:relative; z-index:2; text-align:center; padding:2rem 1.5rem;
}
.page-hero-badge {
  display:inline-block;
  font-size:0.6rem; font-weight:600; letter-spacing:0.35em; text-transform:uppercase;
  color:var(--gold); border:1px solid rgba(200,146,42,0.4);
  padding:0.34rem 1.1rem; margin-bottom:1.1rem;
}
.page-hero-title {
  font-family:'Playfair Display', serif;
  font-size:clamp(2.2rem, 5vw, 4.5rem);
  font-weight:900; color:var(--ivory); line-height:1.05;
}
.page-hero-title em { font-style:italic; color:var(--gold-light); }
.page-hero-sub {
  margin-top:0.7rem; font-size:0.84rem; font-weight:300;
  letter-spacing:0.15em; color:rgba(245,234,216,0.58);
}

/* ════════════════════════════════════════════
   SECTION LAYOUT
════════════════════════════════════════════ */
.section { padding:5rem 4rem; }
.section-inner { max-width:1240px; margin:0 auto; }
.section-label {
  display:block; font-size:0.6rem; font-weight:700;
  letter-spacing:0.38em; text-transform:uppercase;
  color:var(--gold); margin-bottom:0.72rem;
}
.section-title {
  font-family:'Playfair Display', serif;
  font-size:clamp(1.85rem, 3.5vw, 3rem);
  font-weight:800; color:var(--ivory); line-height:1.15; margin-bottom:1rem;
}
.section-title em { font-style:italic; color:var(--gold-light); }
.section-body {
  font-size:0.93rem; font-weight:300; line-height:1.95;
  color:rgba(245,234,216,0.66);
}
.gold-line {
  width:54px; height:2px;
  background:linear-gradient(to right, var(--gold), transparent);
  margin:1.3rem 0;
}

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-gold {
  display:inline-block;
  background-color:var(--gold); color:var(--deep);
  padding:0.8rem 2.1rem; font-size:0.74rem; font-weight:700;
  letter-spacing:0.2em; text-transform:uppercase;
  border:none; border-radius:2px; cursor:pointer;
  transition:background-color 0.3s, transform 0.2s;
}
.btn-gold:hover { background-color:var(--gold-light); transform:translateY(-2px); }
.btn-outline {
  display:inline-block;
  border:1px solid rgba(200,146,42,0.44); color:var(--gold-light);
  padding:0.8rem 2.1rem; font-size:0.74rem; font-weight:500;
  letter-spacing:0.2em; text-transform:uppercase;
  border-radius:2px; transition:all 0.3s;
}
.btn-outline:hover { border-color:var(--gold); background-color:rgba(200,146,42,0.08); transform:translateY(-2px); }
.btn-row { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  padding:4.5rem 4rem; text-align:center;
  background-image:linear-gradient(135deg, #6e2510 0%, #9b3a1a 45%, #110a00 100%);
  position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 90% at 50% 50%, rgba(200,146,42,0.11), transparent);
}
.cta-banner-content { position:relative; z-index:2; }
.cta-banner-title {
  font-family:'Playfair Display', serif;
  font-size:clamp(1.65rem, 3.5vw, 2.7rem);
  font-weight:800; color:var(--ivory); margin-bottom:0.7rem;
}
.cta-banner-sub {
  font-size:0.9rem; font-weight:300; color:rgba(255,255,255,0.7);
  max-width:490px; margin:0 auto 2rem;
}

/* ════════════════════════════════════════════
   NEWSLETTER BAR
════════════════════════════════════════════ */
.newsletter-bar {
  background-color:var(--deep3);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:2.8rem 4rem;
}
.newsletter-inner {
  max-width:1240px; margin:0 auto;
  display:flex; align-items:center; gap:3rem; flex-wrap:wrap;
}
.newsletter-text { flex:1; min-width:260px; }
.newsletter-label {
  display:block; font-size:0.6rem; font-weight:700;
  letter-spacing:0.35em; text-transform:uppercase;
  color:var(--gold); margin-bottom:0.4rem;
}
.newsletter-heading {
  font-family:'Playfair Display', serif;
  font-size:1.45rem; font-weight:800; color:var(--ivory); line-height:1.2;
}
.newsletter-heading em { font-style:italic; color:var(--gold-light); }
.newsletter-sub {
  font-size:0.82rem; font-weight:300; color:rgba(245,234,216,0.55);
  margin-top:0.35rem;
}
.newsletter-form {
  display:flex; gap:0; flex:1.2; min-width:280px; max-width:520px;
}
.newsletter-form input[type="email"] {
  flex:1; padding:0.82rem 1.1rem;
  background-color:rgba(255,255,255,0.05);
  border:1px solid rgba(200,146,42,0.25);
  border-right:none; border-radius:2px 0 0 2px;
  color:var(--ivory); font-family:'Jost', sans-serif;
  font-size:0.88rem; font-weight:300; outline:none;
  transition:border-color 0.3s;
}
.newsletter-form input[type="email"]::placeholder { color:rgba(245,234,216,0.28); }
.newsletter-form input[type="email"]:focus { border-color:var(--gold); }
.newsletter-form button {
  padding:0.82rem 1.5rem;
  background-color:var(--gold); color:var(--deep);
  font-family:'Jost', sans-serif; font-size:0.73rem; font-weight:700;
  letter-spacing:0.18em; text-transform:uppercase;
  border:none; border-radius:0 2px 2px 0; cursor:pointer;
  transition:background-color 0.25s; white-space:nowrap;
}
.newsletter-form button:hover { background-color:var(--gold-light); }

/* ════════════════════════════════════════════
   FOOTER — BEAUTIFUL
════════════════════════════════════════════ */
footer {
  background-color:#080400;
  border-top:1px solid var(--border);
}

/* Footer top: contact strip */
.footer-contact-strip {
  background-color:#0e0700;
  border-bottom:1px solid var(--border);
  padding:2rem 4rem;
}
.fcs-inner {
  max-width:1240px; margin:0 auto;
  display:grid; grid-template-columns:repeat(3, 1fr); gap:1.5rem;
}
.fcs-item {
  display:flex; align-items:center; gap:1rem;
  padding:1.2rem 1.5rem;
  border:1px solid var(--border); border-radius:4px;
  background-color:rgba(255,255,255,0.02);
  transition:border-color 0.3s;
}
.fcs-item:hover { border-color:var(--border-h); }
.fcs-icon-wrap {
  width:44px; height:44px; min-width:44px;
  background-color:rgba(200,146,42,0.12);
  border:1px solid rgba(200,146,42,0.28);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
}
.fcs-lbl {
  font-size:0.58rem; font-weight:700; letter-spacing:0.28em; text-transform:uppercase;
  color:var(--gold); margin-bottom:0.2rem;
}
.fcs-val {
  font-size:0.86rem; font-weight:400; color:var(--ivory); line-height:1.5;
}
.fcs-val a { color:var(--ivory); transition:color 0.22s; }
.fcs-val a:hover { color:var(--gold-light); }

/* Footer main grid */
.footer-main {
  max-width:1240px; margin:0 auto;
  padding:3rem 4rem 2.5rem;
  display:grid; grid-template-columns:2.2fr 1fr 1fr 1.2fr; gap:3rem;
}
.footer-brand-wrap {}
.footer-logo-row {
  display:flex; align-items:center; gap:0.7rem; margin-bottom:1rem;
}
.footer-logo-mark {
  width:42px; height:42px;
  border:1px solid var(--gold); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display', serif;
  font-size:1.1rem; font-weight:900; color:var(--gold-light); flex-shrink:0;
}
.footer-brand-name {
  font-family:'Playfair Display', serif;
  font-size:1.2rem; font-weight:900; color:var(--gold-light); line-height:1.1;
}
.footer-brand-name small {
  display:block; font-family:'Jost', sans-serif;
  font-size:0.56rem; font-weight:400; letter-spacing:0.22em; text-transform:uppercase;
  color:rgba(245,234,216,0.3);
}
.footer-tagline {
  font-size:0.83rem; font-weight:300; line-height:1.82;
  color:rgba(245,234,216,0.44); max-width:270px; margin-bottom:1.5rem;
}
.footer-social {
  display:flex; gap:0.6rem;
}
.soc-btn {
  width:34px; height:34px;
  border:1px solid var(--border); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:0.85rem; color:rgba(245,234,216,0.5);
  transition:border-color 0.25s, color 0.25s;
  cursor:default;
}
.soc-btn:hover { border-color:var(--gold); color:var(--gold-light); }

.footer-col-title {
  font-size:0.58rem; font-weight:700;
  letter-spacing:0.32em; text-transform:uppercase;
  color:var(--gold); margin-bottom:1.1rem; padding-bottom:0.6rem;
  border-bottom:1px solid rgba(200,146,42,0.15);
}
.footer-links-list li { margin-bottom:0.58rem; }
.footer-links-list a {
  font-size:0.82rem; font-weight:300;
  color:rgba(245,234,216,0.44);
  transition:color 0.22s; display:inline-flex; align-items:center; gap:0.4rem;
}
.footer-links-list a::before { content:'›'; color:var(--gold); font-size:0.9rem; }
.footer-links-list a:hover { color:var(--gold-light); }

/* Contact list in footer */
.footer-contact-list li {
  display:flex; align-items:flex-start; gap:0.7rem;
  margin-bottom:0.9rem;
}
.fc-icon {
  font-size:0.95rem; margin-top:0.05rem; flex-shrink:0;
  color:var(--gold);
}
.fc-text {
  font-size:0.82rem; font-weight:300; line-height:1.55;
  color:rgba(245,234,216,0.5);
}
.fc-text a { color:rgba(245,234,216,0.5); transition:color 0.22s; }
.fc-text a:hover { color:var(--gold-light); }

/* Footer bottom */
.footer-bottom {
  border-top:1px solid var(--border);
  padding:1.1rem 4rem 1.3rem;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:0.6rem;
  max-width:100%;
}
.footer-copy { font-size:0.7rem; font-weight:300; color:rgba(245,234,216,0.22); }
.footer-credit { font-size:0.7rem; font-weight:400; color:rgba(245,234,216,0.34); }
.footer-credit a { color:var(--gold); transition:color 0.22s; }
.footer-credit a:hover { color:var(--gold-light); }

/* ════════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════════ */
.wa-float {
  position:fixed; bottom:1.5rem; right:1.5rem; z-index:999;
  width:52px; height:52px;
  background-color:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
  box-shadow:0 4px 20px rgba(37,211,102,0.36);
  transition:transform 0.3s;
}
.wa-float:hover { transform:scale(1.1); }

/* ════════════════════════════════════════════
   FORM SHARED STYLES
════════════════════════════════════════════ */
.form-group { margin-bottom:1.3rem; }
.form-group label {
  display:block; font-size:0.6rem; font-weight:700;
  letter-spacing:0.22em; text-transform:uppercase;
  color:var(--gold); margin-bottom:0.42rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%;
  background-color:rgba(255,255,255,0.04);
  border:1px solid rgba(200,146,42,0.22);
  border-radius:2px; padding:0.85rem 1rem;
  color:var(--ivory); font-family:'Jost', sans-serif;
  font-size:0.88rem; font-weight:300; outline:none;
  transition:border-color 0.28s, background-color 0.28s;
  -webkit-appearance:none; appearance:none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(245,234,216,0.26); }
.form-group select option { background:#1a1000; color:var(--ivory); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--gold); background-color:rgba(200,146,42,0.05);
}
.form-group textarea { height:108px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }

/* ════════════════════════════════════════════
   FADE-IN ANIMATION
════════════════════════════════════════════ */
.fade-up {
  opacity:0; transform:translateY(22px);
  transition:opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════ */
@media (max-width:1100px) {
  #navbar { padding:0 2rem; }
  .section { padding:4rem 2rem; }
  .cta-banner { padding:3.5rem 2rem; }
  .footer-main { padding:2.5rem 2rem 2rem; gap:2rem; }
  .footer-contact-strip { padding:2rem; }
  .footer-bottom { padding:1rem 2rem 1.2rem; }
  .newsletter-bar { padding:2.5rem 2rem; }
  .footer-main { grid-template-columns:1fr 1fr; }
}
@media (max-width:900px) {
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }
  #navbar { padding:0 1.5rem; }
  .fcs-inner { grid-template-columns:1fr; gap:1rem; }
}
@media (max-width:768px) {
  .section { padding:3.5rem 1.25rem; }
  .cta-banner { padding:3rem 1.25rem; }
  .footer-contact-strip { padding:1.5rem 1.25rem; }
  .footer-main { padding:2rem 1.25rem 1.5rem; grid-template-columns:1fr 1fr; gap:1.8rem; }
  .footer-bottom { padding:0.9rem 1.25rem 1.1rem; }
  .newsletter-bar { padding:2rem 1.25rem; }
  .newsletter-inner { flex-direction:column; gap:1.5rem; }
  .newsletter-form { max-width:100%; width:100%; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .page-hero { height:42vh; min-height:280px; }
}
@media(max-width:600px) {
    .v-img { width:240px; height:152px; }
    .sarr {
    width:32px;
    height:32px;
    font-size:0.9rem;
    top:42%;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.sarr.left {
    left:4px;
}

.sarr.right {
    right:4px;
}
@media (max-width:520px) {
  .footer-main { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; align-items:flex-start; gap:0.4rem; }
}
