/* ==========================================================================
   ZUSTYOO.COM  —  SVK Tours Pvt Ltd
   Shared stylesheet. Premium navy + gold palette from logo.
   ========================================================================== */

:root {
  /* Brand palette (from logo) */
  --navy:        #0E1626;
  --navy-2:      #15202E;
  --navy-3:      #1E2B3D;
  --navy-soft:   #24344B;

  --gold:        #C9A24B;
  --gold-dark:   #A8853A;
  --gold-light:  #E3C77B;
  --gold-deep:   #8C6E2E;

  --silver:      #C7D2DD;

  /* Neutrals */
  --ink:         #15202E;
  --body:        #4b5563;
  --muted:       #6b7280;
  --line:        #e7e3d8;
  --bg:          #ffffff;
  --cream:       #f6f3ec;
  --cream-2:     #fbfaf6;

  --radius:      14px;
  --radius-sm:   10px;
  --shadow:      0 14px 38px rgba(14,22,38,.12);
  --shadow-sm:   0 4px 16px rgba(14,22,38,.07);
  --maxw:        1180px;
  --header-h:    76px;

  --font: "Poppins", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-dark); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 76px 0; }
.section--soft { background: var(--cream); }
.section--tint { background: linear-gradient(135deg, var(--cream-2), var(--cream)); }

.center { text-align: center; }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 720px; }
.center .lead { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: .6rem;
  position: relative;
}

.section-head { max-width: 760px; margin: 0 auto 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: .95rem;
  padding: .72rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(201,162,75,.32);
}
.btn--primary:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); }
.btn--blue { background: var(--navy); color: #fff; box-shadow: 0 10px 22px rgba(14,22,38,.28); }
.btn--blue:hover { background: var(--navy-3); color: #fff; }
.btn--ghost { background: transparent; color: var(--gold-dark); border-color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--navy); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: #f1efe8; color: var(--navy); }
/* outline-on-dark variant for hero/footer */
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn--lg { padding: .92rem 1.9rem; font-size: 1.02rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar {
  background: #080d16;
  color: #aeb9c6;
  font-size: .82rem;
  border-bottom: 1px solid rgba(201,162,75,.18);
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 6px; padding-top: 7px; padding-bottom: 7px;
}
.topbar a { color: #d7dde5; }
.topbar a:hover { color: var(--gold-light); }
.topbar__contact { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__contact span { display: inline-flex; align-items: center; gap: 6px; }
.topbar__links span { color: var(--gold-light); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, #0d1422, #0b111d);
  border-bottom: 1px solid rgba(201,162,75,.22);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 18px;
}
.brand img { height: 50px; width: auto; border-radius: 8px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: #d8dee7; font-weight: 500; font-size: .95rem;
  padding: .55rem .85rem; border-radius: 8px;
}
.nav a:hover { color: var(--gold-light); background: rgba(255,255,255,.05); }
.nav a.active { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    linear-gradient(115deg, rgba(8,13,22,.94) 0%, rgba(20,32,48,.88) 55%, rgba(30,43,61,.82) 100%),
    url("images/hero.svg");
  background-size: cover; background-position: center;
}
.hero .container { padding-top: 92px; padding-bottom: 96px; position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { color: #c9d3df; font-size: 1.18rem; max-width: 58ch; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,75,.12); border: 1px solid rgba(201,162,75,.45);
  padding: .35rem .95rem; border-radius: 999px;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 1.2rem; font-weight: 600; color: var(--gold-light);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero__strip {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(201,162,75,.22);
}
.hero__strip .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  padding-top: 24px; padding-bottom: 24px;
}
.hero__stat { text-align: center; color: #fff; }
.hero__stat b { display: block; font-size: 1.7rem; font-weight: 700; color: var(--gold-light); }
.hero__stat span { font-size: .85rem; color: #c1cbd7; }

/* ==========================================================================
   CARDS / GRID
   ========================================================================== */
.grid { display: grid; gap: 26px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%; position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #e3d9bf; }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }

.card__icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(150deg, var(--navy-3), var(--navy));
  border: 1px solid rgba(201,162,75,.45);
}
.card__icon svg { width: 30px; height: 30px; stroke: var(--gold-light); fill: none; stroke-width: 2; }
/* legacy colour classes mapped to the gold-on-navy treatment */
.ico-blue, .ico-orange, .ico-green, .ico-gold { /* kept for markup compatibility */ }
.ico-gold  { background: linear-gradient(150deg, #2a3a52, #16212f); }

.card--link::after {
  content: "Learn more →"; display: inline-block; margin-top: 16px;
  font-weight: 600; font-size: .9rem; color: var(--gold-dark);
}

/* ==========================================================================
   STATS / FEATURES
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat {
  text-align: center; padding: 30px 18px; background: #fff;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.stat b { display: block; font-size: 2.3rem; font-weight: 700; color: var(--gold-dark); line-height: 1; }
.stat span { color: var(--muted); font-size: .92rem; }

.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy); display: grid; place-items: center;
  font-size: .82rem; font-weight: 700; margin-top: 3px;
}
.feature-list strong { color: var(--ink); display: block; }
.feature-list p { margin: 0; font-size: .94rem; color: var(--muted); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }

/* ==========================================================================
   NEWS
   ========================================================================== */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-card {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 22px 24px; box-shadow: var(--shadow-sm);
}
.news-card .date { font-size: .76rem; color: var(--gold-dark); font-weight: 700; letter-spacing: .08em; }
.news-card h4 { margin: 6px 0; color: var(--ink); font-size: 1.05rem; }
.news-card p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ==========================================================================
   DIRECTOR / CTA
   ========================================================================== */
.director { display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: center; }
.director__photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}
.director blockquote { margin: 0; font-size: 1.12rem; color: var(--ink); font-style: italic; }
.director .sign { margin-top: 18px; }
.director .sign b { color: var(--ink); display: block; }
.director .sign span { color: var(--gold-dark); font-size: .9rem; }

.cta {
  background: linear-gradient(120deg, #0b111d, var(--navy-3));
  color: #fff; border-radius: 20px; padding: 56px 40px; text-align: center;
  border: 1px solid rgba(201,162,75,.3); position: relative; overflow: hidden;
}
.cta::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,162,75,.18), transparent 55%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; }
.cta p { color: #c9d3df; max-width: 620px; margin: 0 auto 26px; }
.cta .hero__actions { justify-content: center; }

/* ==========================================================================
   PAGE HEADER (sub pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(115deg, #0b111d, var(--navy-3));
  color: #fff; padding: 60px 0; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(201,162,75,.16), transparent 55%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .3rem; }
.page-hero p { color: #c4cfdb; margin: 0; }
.crumbs { font-size: .85rem; color: var(--gold-light); margin-bottom: 14px; }
.crumbs a { color: #fff; }
.crumbs a:hover { color: var(--gold-light); }

/* ==========================================================================
   CONTENT BLOCKS
   ========================================================================== */
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; color: var(--navy-3); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4rem; }

.info-table {
  width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.info-table th, .info-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.info-table th { background: var(--cream); color: var(--ink); width: 38%; font-weight: 600; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; margin-bottom: 18px;
}
.contact-card .ci { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--navy); }
.contact-card .ci svg { width: 22px; height: 22px; stroke: var(--gold-light); fill: none; stroke-width: 2; }
.contact-card b { color: var(--ink); display: block; }
.contact-card span, .contact-card a { color: var(--muted); font-size: .95rem; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: .95rem;
  padding: .7rem .85rem; border: 1px solid var(--line); border-radius: 10px; background: #fbfaf6; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18);
}
.form-note { font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* FAQ */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--ink); padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-dark); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); padding-bottom: 16px; margin: 0; }

.logo-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.2rem; font-weight: 600; color: var(--navy); font-size: .9rem; box-shadow: var(--shadow-sm); }

.badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.badge { background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 10px 16px; font-size: .85rem; color: var(--ink); }
.badge b { color: var(--gold-dark); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #080d16; color: #9fabba; padding: 62px 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-wordmark { font-size: 1.7rem; font-weight: 800; letter-spacing: .5px; margin-bottom: 12px; display: inline-flex; align-items: center; gap: 4px; }
.footer-wordmark .a { color: var(--silver); }
.footer-wordmark .b { color: var(--gold); }
.footer-wordmark .inf { color: var(--gold); font-size: 1.5rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #9fabba; }
.site-footer a:hover { color: var(--gold-light); }
.footer-contact span { display: block; margin-bottom: 10px; color: #bcc6d3; }
.social { display: flex; gap: 12px; margin-top: 8px; }
.social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.07); display: grid; place-items: center; border: 1px solid rgba(201,162,75,.2); }
.social a:hover { background: var(--gold); border-color: var(--gold); }
.social a:hover svg { fill: var(--navy); }
.social svg { width: 17px; height: 17px; fill: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: .82rem;
  color: #7d8a9a; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: #9fabba; }

.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-muted { color: var(--muted); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split, .director, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .director { text-align: center; }
  .director__photo { max-width: 260px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: #0b111d; padding: 14px 18px; border-bottom: 1px solid rgba(201,162,75,.25);
    box-shadow: 0 14px 26px rgba(0,0,0,.4); transform: translateY(-130%); transition: transform .28s ease; gap: 2px;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .8rem .6rem; border-radius: 8px; }
  .nav-toggle { display: flex; }
  .header-actions .btn--ghost { display: none; }
  .topbar__contact { gap: 14px; font-size: .76rem; }
  .topbar__links { display: none; }
  .hero__strip .container { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .grid--4, .grid--3, .grid--2, .news-grid, .stats { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .cta { padding: 42px 24px; }
}
