/* =====================================================
   ZENIUS ADVISORS — style.css
   Theme: Dark Navy (#0a1628) + Gold (#f0b429)
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0a1628;
  --navy2:   #0f2040;
  --navy3:   #1a3255;
  --gold:    #f0b429;
  --gold2:   #e09e10;
  --white:   #ffffff;
  --offwhite:#f5f7fa;
  --text:    #2d3748;
  --muted:   #718096;
  --light:   #aabbcc;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  /* Fast load */
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 4px;
  letter-spacing: .5px;
  transition: background .25s, transform .2s, box-shadow .25s;
  border: none; cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,180,41,.35);
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 28px;
  border-radius: 4px;
  letter-spacing: .5px;
  transition: all .25s;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.full-width { width: 100%; }

/* ─── SECTION COMMON ─── */
.section-pad { padding: 90px 0; }
.dark-bg { background: var(--navy); }

.section-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }
.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-sub { margin: 0 auto; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--navy);
  padding: 0 20px;
  transition: box-shadow .3s, padding .3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.nav-container {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center;
  height: 72px; gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px;
}
.logo-text strong {
  display: block; font-size: 14px; font-weight: 800;
  color: var(--white); letter-spacing: 1.5px; line-height: 1;
}
.logo-text small {
  font-size: 9px; color: var(--gold); letter-spacing: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 6px; margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 13px; font-weight: 600;
  padding: 6px 10px; border-radius: 3px;
  letter-spacing: .3px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { margin-left: 10px; font-size: 13px; padding: 10px 22px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: .3s;
}

/* ─── HERO SLIDER ─── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  overflow: hidden; margin-top: 72px;
}
.slider-track { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; z-index: 2; }
.slide.prev   { opacity: 0; z-index: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,22,40,.88) 45%, rgba(10,22,40,.45));
}
.slide-content {
  position: relative; z-index: 3;
  max-width: 620px;
  top: 50%; left: 8%;
  transform: translateY(-50%);
  animation: slideIn .7s ease both;
}
@keyframes slideIn {
  from { opacity:0; transform: translateY(calc(-50% + 30px)); }
  to   { opacity:1; transform: translateY(-50%); }
}
.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px; margin-bottom: 20px;
}
.slide h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 20px;
}
.slide h1 .gold { color: var(--gold); }
.slide-sub {
  color: rgba(255,255,255,.8); font-size: 16px;
  line-height: 1.7; margin-bottom: 34px; max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slider Controls */
.sl-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white); font-size: 18px;
  width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; transition: background .2s;
}
.sl-arrow:hover { background: var(--gold); color: var(--navy); }
.sl-prev { left: 24px; }
.sl-next { right: 24px; }
.slider-controls {
  position: absolute; bottom: 140px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px;
}
.sl-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.sl-dot.active { background: var(--gold); transform: scale(1.3); }

/* Hero Badges */
.hero-badges {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; justify-content: center; gap: 0;
}
.badge {
  flex: 1; max-width: 220px;
  background: rgba(10,22,40,.92);
  border-top: 3px solid var(--gold);
  padding: 20px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
}
.badge:hover { background: var(--navy3); }
.badge-icon { font-size: 26px; display: block; margin-bottom: 8px; }
.badge p { color: var(--white); font-size: 13px; font-weight: 600; line-height: 1.4; }

/* ─── ABOUT ─── */
.about { background: var(--offwhite); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: 6px;
  box-shadow: 20px 20px 0 var(--gold);
}
.about-badge-box {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy);
  color: var(--white); padding: 22px 28px;
  border-radius: 4px; text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.about-badge-box strong {
  font-family: 'Playfair Display', serif;
  font-size: 42px; color: var(--gold); display: block; line-height: 1;
}
.about-badge-box span { font-size: 13px; color: var(--light); }
.about-content { padding-left: 20px; }
.about-content p { color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.about-list { list-style: none; margin-bottom: 32px; }
.about-list li {
  padding: 8px 0; color: var(--text);
  font-weight: 600; font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 36px 28px;
  text-align: center;
  transition: background .3s, transform .3s, border-color .3s;
}
.service-card:hover {
  background: rgba(240,180,41,.08);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.svc-icon { font-size: 40px; margin-bottom: 18px; }
.service-card h3 {
  color: var(--white);
  font-size: 18px; font-weight: 700; margin-bottom: 12px;
}
.service-card p { color: var(--light); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.learn-more {
  color: var(--gold); font-size: 14px; font-weight: 700;
  transition: letter-spacing .2s;
}
.learn-more:hover { letter-spacing: 1px; }

/* ─── STATS ─── */
.stats-bar { background: var(--gold); padding: 48px 20px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 52px; color: var(--navy); font-weight: 800; line-height: 1;
}
.stat span { font-size: 28px; font-weight: 800; color: var(--navy); }
.stat p { font-size: 14px; font-weight: 700; color: var(--navy2); margin-top: 6px; letter-spacing: .5px; }

/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 36px 30px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.testi-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 72px; color: var(--gold);
  line-height: .8; margin-bottom: 16px;
}
.testi-card p {
  color: var(--light); font-size: 15px;
  line-height: 1.8; margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.testi-author strong { display: block; color: var(--white); font-size: 14px; }
.testi-author span  { color: var(--gold); font-size: 12px; }

/* ─── BLOG ─── */
.blog { background: var(--offwhite); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.blog-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative;
}
.blog-cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 2px;
}
.blog-body { padding: 24px; }
.blog-meta { color: var(--muted); font-size: 12px; margin-bottom: 10px; }
.blog-body h4 {
  font-size: 17px; font-weight: 700; color: var(--navy);
  line-height: 1.4; margin-bottom: 16px;
}

/* ─── CONTACT ─── */
.contact { }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { padding-top: 8px; }
.contact-list { list-style: none; margin: 28px 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--light); font-size: 15px; margin-bottom: 18px;
}
.contact-list li span { font-size: 20px; flex-shrink: 0; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  color: var(--white); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.social-links a:hover { border-color: var(--gold); background: var(--gold); color: var(--navy); }
.form-input {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white); padding: 14px 18px;
  border-radius: 4px; font-family: 'Raleway', sans-serif;
  font-size: 14px; margin-bottom: 16px;
  outline: none; transition: border-color .25s;
}
.form-input::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus { border-color: var(--gold); }
textarea.form-input { resize: vertical; }

/* ─── FOOTER ─── */
.footer { background: #060f1e; padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-heading {
  color: var(--white); font-size: 14px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--light); font-size: 14px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.news-form { display: flex; gap: 8px; }
.news-input {
  flex: 1; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white); padding: 10px 14px;
  border-radius: 4px; font-size: 13px;
  font-family: 'Raleway', sans-serif; outline: none;
}
.news-input::placeholder { color: rgba(255,255,255,.35); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center; padding: 22px;
  color: var(--light); font-size: 13px;
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  border: none; font-size: 18px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(240,180,41,.4);
  transition: transform .25s, opacity .3s;
  opacity: 0; pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; }
  .nav-cta  { display: none; }
  .hamburger { display: flex; }
  .hero { height: calc(100vh - 72px); }
  .slide-content { left: 5%; right: 5%; }
  .hero-badges { flex-wrap: wrap; }
  .badge { max-width: 50%; min-width: 50%; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .about-badge-box { right: 0; bottom: -16px; }
  .sl-arrow { display: none; }
  .slider-controls { bottom: 120px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .badge { max-width: 50%; }
  .hero-badges { display: grid; grid-template-columns: 1fr 1fr; }
}
