/* ═══════════════════════════════════════════════
   ANKAKSHAR — STYLESHEET
   Palette: Deep Navy #0B0F2E | Gold #C8A96E | Off-White #F7F5F0
   ═══════════════════════════════════════════════ */

:root {
  --navy:      #0B0F2E;
  --navy-mid:  #141838;
  --gold:      #C8A96E;
  --gold-light:#e0c898;
  --white:     #ffffff;
  --off-white: #F7F5F0;
  --text:      #2c2c3e;
  --muted:     #6b6b80;
  --border:    #e2ddd5;
  --shadow:    0 4px 24px rgba(11,15,46,.10);
  --radius:    12px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', sans-serif;
  --transition: .28s ease;
  --max-w: 1180px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.full-width { width: 100%; text-align: center; }

/* ── Section common ── */
.section-tag {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.centered { text-align: center; }
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-intro {
  max-width: 640px;
  margin-inline: auto;
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,15,46,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,.15);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.35); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}
.logo-link { flex-shrink: 0; }
.logo { height: 44px; width: auto; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

/* Nav list */
.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .45rem .9rem;
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-list > li > a:hover { color: var(--gold); background: rgba(200,169,110,.08); }
.chevron { font-size: .7rem; transition: transform var(--transition); }
.has-dropdown { position: relative; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  border-top: 3px solid var(--gold);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: .65rem 1.25rem;
  color: var(--text);
  font-size: .9rem;
  transition: all var(--transition);
}
.dropdown li a:hover { background: var(--off-white); color: var(--gold); padding-left: 1.6rem; }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,15,46,.9) 0%,
    rgba(11,15,46,.7) 60%,
    rgba(11,15,46,.5) 100%
  );
}
/* fallback pattern if no hero image */
.hero-bg:not(:has(.hero-img[src])) {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1f4a 60%, #0f132e 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 8rem 5rem;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp .7s .2s forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .7s .35s forwards;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp .7s .5s forwards;
}
.hero-content .btn { opacity: 0; animation: fadeUp .7s .65s forwards; }
.br-lg { display: none; }
@media (min-width: 900px) { .br-lg { display: inline; } }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.6); opacity: .5; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════
   VALUE PROPS
════════════════════════════════════════════════ */
.value-props {
  padding: 5rem 0;
  background: var(--off-white);
}
.vp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.vp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}
.vp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(11,15,46,.14);
  border-bottom-color: var(--gold);
}
.vp-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.vp-icon img { width: 28px; height: 28px; filter: invert(1); }
.vp-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: .7rem;
}
.vp-card p { color: var(--muted); font-size: .95rem; }

/* ════════════════════════════════════════════════
   ABOUT BANNER
════════════════════════════════════════════════ */
.about-banner {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--white);
}
.ab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ab-text h2 { color: var(--white); }
.ab-text p {
  color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.ab-text .section-tag { margin-bottom: 1rem; }
.ab-text .btn { margin-top: 1.5rem; }
.ab-visual { display: flex; flex-direction: column; gap: 1.25rem; }
.ab-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.ab-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.ab-card p { color: rgba(255,255,255,.8); font-size: .95rem; margin: 0; }

/* ════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════ */
.services-section {
  padding: 6rem 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}
.svc-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  opacity: 0;
  transition: opacity var(--transition);
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover .svc-num,
.svc-card:hover h4,
.svc-card:hover p,
.svc-card:hover .svc-link { color: var(--white); }
.svc-card:hover .svc-link { color: var(--gold); }
.svc-card:hover { box-shadow: 0 12px 40px rgba(11,15,46,.2); transform: translateY(-4px); }

.svc-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color var(--transition);
}
.svc-card h4 {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .7rem;
  transition: color var(--transition);
}
.svc-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: .93rem;
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}
.svc-link {
  position: relative;
  z-index: 1;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
  transition: color var(--transition);
}

/* ════════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════════ */
.about-section {
  padding: 6rem 0;
  background: var(--off-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.about-text .btn { margin-top: 1.5rem; }
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/10;
  background: var(--navy-mid);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(200,169,110,.35);
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
  margin-top: .25rem;
}

/* ════════════════════════════════════════════════
   STATS
════════════════════════════════════════════════ */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy), #1a1f4a);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  color: var(--white);
  font-size: 2.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1;
}
.stat-num { color: var(--gold); }
.stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  margin-top: .5rem;
  letter-spacing: .04em;
}

/* ════════════════════════════════════════════════
   TEAM
════════════════════════════════════════════════ */
.team-section {
  padding: 6rem 0;
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.team-card {
  text-align: center;
}
.team-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  background: var(--off-white);
  border: 4px solid var(--gold);
}
.team-img-wrap.img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .25rem;
}
.team-card p { color: var(--gold); font-size: .88rem; font-weight: 500; }

.milestones {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.milestone { text-align: center; }
.milestone span {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
}
.milestone p { color: var(--muted); font-size: .88rem; margin-top: .25rem; }

/* ════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--off-white);
}
.testi-slider {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  min-height: 260px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: all .5s ease;
  pointer-events: none;
}
.testi-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}
.testi-quote {
  font-size: 1.02rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-meta strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
}
.testi-meta span { color: var(--gold); font-size: .85rem; font-weight: 500; }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 2rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}
.dot.active { background: var(--gold); }

/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.contact-section {
  padding: 6rem 0;
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-text h2 { margin-bottom: 1rem; }
.contact-text > p { color: var(--muted); margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-info img { width: 20px; height: 20px; margin-top: .2rem; flex-shrink: 0; }
.contact-info a { color: var(--navy); font-weight: 500; }
.contact-info a:hover { color: var(--gold); }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-links a:hover { border-color: var(--gold); background: var(--gold); }
.social-links img { width: 18px; height: 18px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .9rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-success {
  display: none;
  text-align: center;
  color: #2d7a4f;
  font-weight: 600;
  font-size: .95rem;
  padding: .75rem;
  border-radius: 8px;
  background: #e8f5ee;
}
.form-success.visible { display: block; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 2rem 0;
  border-top: 1px solid rgba(200,169,110,.15);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logo img { height: 36px; width: auto; }
.footer-copy { color: rgba(255,255,255,.5); font-size: .85rem; }
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════
   SCROLL TOP
════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(200,169,110,.4);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all var(--transition);
  z-index: 99;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(200,169,110,.15);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: .25rem; }
  .nav-list > li > a { color: rgba(255,255,255,.85); padding: .6rem 0; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255,255,255,.05);
    border-radius: 8px;
    border-top: none;
    padding: .5rem;
    margin-top: .25rem;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { color: rgba(255,255,255,.7); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  /* Layouts */
  .ab-inner,
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ab-visual { order: -1; }
  .about-badge { bottom: -1rem; left: -0.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  h2 { font-size: 1.7rem; }
  .hero-content { padding-block: 7rem 4rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .milestones { gap: 2rem; }
  .testi-card { padding: 2rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}
