/* ============================================================
   MANAVI ASSOCIATES – GLOBAL STYLESHEET
   Used across all pages: index, about, services, contact, etc.
============================================================ */

/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
  --navy:       #233870;
  --navy-light: #122848;
  --gold:       #f15528;
  --gold-light: #E2C47A;
  --gold-pale:  #F5EDD7;
  --cream:      #FAF7F2;
  --white:      #FFFFFF;
  --slate:      #6B7A8F;
  --slate-light:#8C9BAD;
  --text-dark:  #1A2B42;
  --text-body:  #3D4F62;
  --border:     rgba(201,168,76,0.20);
  --shadow-sm:  0 2px 12px rgba(11,31,58,0.08);
  --shadow-md:  0 8px 32px rgba(11,31,58,0.12);
  --shadow-lg:  0 20px 60px rgba(11,31,58,0.18);
  --radius:     6px;
  --radius-lg:  14px;
  --transition: 0.32s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

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

/* ============================================================
   UTILITY
============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #ff7a45 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(241,85,40,0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(241,85,40,0.28);
  filter: brightness(1.02);
}
.btn-outline {
  background: rgba(255,255,255,0.86);
  border: 1.5px solid rgba(35,56,112,0.14);
  color: var(--navy);
}
.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn svg { width: 16px; height: 16px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.section-title span { color: var(--gold); font-style: italic; }

/* ============================================================
   TOP BAR (GLOBAL)
============================================================ */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.topbar a:hover { color: var(--gold); }
.topbar svg { width: 13px; height: 13px; flex-shrink: 0; }
.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   HEADER / NAV (GLOBAL)
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(11,31,58,0.12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo .logo-placeholder,
.footer-logo .logo-placeholder,
.mobile-menu .logo-placeholder {
  width: 150px;
  height: 52px;
  border: 1.5px dashed rgba(35,56,112,0.28);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  padding: 6px 10px;
}
.footer-logo .logo-placeholder,
.mobile-menu .logo-placeholder {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.logo-placeholder img,
.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.nav-logo-text span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); background: var(--gold-pale); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a svg { width: 12px; height: 12px; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: var(--transition);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown a {
  display: block !important;
  padding: 9px 14px !important;
  font-size: 13px !important;
  border-radius: 6px !important;
}
.dropdown a:hover { background: var(--gold-pale) !important; color: var(--navy) !important; }

.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO (HOME PAGE)
============================================================ */
.hero {
  --hero-content-max-width: 760px;
  --hero-content-offset-left: 150px;

  position: relative;
  background: var(--hero-bg-image, url('../images/bg-main.png'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(241,85,40,0.03) 0%, transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(35,56,112,0.03) 0%, transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.05));
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  /* grid removed */
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.88) 0%,
    rgba(255,255,255,0.74) 18%,
    rgba(255,255,255,0.52) 34%,
    rgba(255,255,255,0.24) 50%,
    rgba(255,255,255,0.00) 70%
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.hero.hero-left .hero-content {
  max-width: var(--hero-content-max-width);
  margin-left: var(--hero-content-offset-left);
  margin-right: auto;
  text-align: left;
}

.hero.hero-center .hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero.hero-center .hero-sub,
.hero.hero-center .hero-actions,
.hero.hero-center .hero-stats {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(35,56,112,0.06);
  border: 1px solid rgba(35,56,112,0.12);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease both;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(241,85,40,0.14);
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: inherit;
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline;
  box-shadow: none;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(35,56,112,0.10);
  animation: fadeInUp 0.7s 0.4s ease both;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-body);
}

/* ============================================================
   PAGE BANNER (Inner pages: About, Services, Contact, etc.)
============================================================ */
.page-banner {
  position: relative;
  padding: 110px 0 90px;
  background: linear-gradient(135deg, var(--navy) 0%, #163258 60%, var(--navy-light) 100%);
  color: var(--white);
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  /* grid removed */
  pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(241,85,40,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner .tag { color: var(--gold); }
.page-banner .tag::before { background: var(--gold); }
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 18px;
}
.page-banner h1 em { font-style: italic; color: var(--gold); }
.page-banner p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.breadcrumbs a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: rgba(255,255,255,0.3); }

/* ============================================================
   MARQUEE
============================================================ */
.marquee-section {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  flex-shrink: 0;
}
.marquee-dot {
  width: 5px; height: 5px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about {
  padding: 110px 0;
  background: var(--white);
  position: relative;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-main-img {
  width: 200%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  text-align: center;
}

.about-badge .num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,31,58,0.7);
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-content .lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 32px;
}

.mvk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.mvk-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.mvk-item:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateX(4px);
}

.mvk-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mvk-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.mvk-text h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.mvk-text p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.6;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.services-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}
.services-header .section-title { margin-bottom: 16px; }
.services-header p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gold);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::after { opacity: 1; }
.service-card:hover .svc-icon { background: var(--navy); }
.service-card:hover .svc-icon svg { color: var(--gold); }
.service-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: rgba(11,31,58,0.04);
  line-height: 1;
  pointer-events: none;
}
.svc-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.svc-icon svg { width: 24px; height: 24px; color: var(--navy); transition: var(--transition); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.service-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.72;
  margin-bottom: 22px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.svc-link svg { width: 14px; height: 14px; transition: var(--transition); }
.service-card:hover .svc-link { color: var(--gold); }
.service-card:hover .svc-link svg { transform: translateX(3px); }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  /* grid removed */
}
.why .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-content .tag { color: var(--gold); }
.why-content .tag::before { background: var(--gold); }
.why-content .section-title { color: var(--white); margin-bottom: 18px; }
.why-content > p {
  font-size: 16px;
  color: rgba(255,255,255,0.60);
  line-height: 1.78;
  margin-bottom: 40px;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-feat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-feat:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-3px);
}
.why-feat .icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.why-feat .icon svg { width: 19px; height: 19px; color: var(--gold); }
.why-feat h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}
.why-feat p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.why-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
}
.trust-card blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin-bottom: 22px;
}
.trust-card blockquote::before {
  content: '"';
  color: var(--gold);
  font-size: 48px;
  line-height: 0;
  vertical-align: -14px;
  margin-right: 6px;
}
.trust-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-avatar {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.trust-meta-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.trust-meta-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
}
.stat-box .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-box .lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   PROCESS STRIP
============================================================ */
.process {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-header {
  text-align: center;
  margin-bottom: 52px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2), var(--gold));
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.15);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.65;
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding: 110px 0;
  background: var(--cream);
}
.faq .container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar .section-title { margin-bottom: 16px; }
.faq-sidebar p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 28px;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}
.faq-q span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}
.faq-q .chevron {
  width: 28px; height: 28px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .chevron {
  background: var(--gold);
  transform: rotate(180deg);
}
.faq-q .chevron svg { width: 14px; height: 14px; color: var(--navy); }
.faq-item.open .chevron svg { color: var(--white); }
.faq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CTA SECTION (GLOBAL – use on every page)
============================================================ */
.cta-section {
  padding: 80px 0;
  background: var(--white);
}
.cta-inner {
  background: linear-gradient(135deg, var(--navy) 0%, #163258 60%, var(--navy-light) 100%);
  border-radius: 24px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  /* grid removed */
  border-radius: 24px;
}
.cta-text { position: relative; z-index: 1; }
.cta-text .tag { color: var(--gold); }
.cta-text .tag::before { background: var(--gold); }
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.cta-text h2 em { font-style: italic; color: var(--gold); }
.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 480px;
}
.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  align-items: flex-end;
}
.cta-contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  white-space: nowrap;
}
.cta-contact-info a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.cta-contact-info a:hover { color: var(--gold); }
.cta-contact-info svg { width: 14px; height: 14px; }

/* ============================================================
   FOOTER (GLOBAL)
============================================================ */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-text strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.footer-logo-text span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item a:hover, .footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '→';
  font-size: 11px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); padding-left: 6px; }
.footer-col ul li a:hover::before { opacity: 1; transform: translateX(0); }
.footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.footer-hours strong { color: rgba(255,255,255,0.7); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   SERVICE DETAIL PAGE (inner pages: corporate-law, gst, etc.)
============================================================ */
.service-detail {
  padding: 100px 0;
  background: var(--white);
}
.sd-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.sd-main {}
.sd-hero-img {
  width: 100%;
  aspect-ratio: 16/8;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, #163258 60%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sd-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  /* grid removed */
}
.sd-hero-img::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(241,85,40,0.16) 0%, transparent 70%);
  border-radius: 50%;
}
.sd-hero-img .sd-hero-icon {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
}
.sd-hero-img .sd-hero-icon svg {
  width: 52px; height: 52px;
  color: var(--gold);
}
.sd-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.sd-title span { color: var(--gold); font-style: italic; }
.sd-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}
.sd-intro + .sd-intro { margin-bottom: 40px; }
.sd-section {
  margin-top: 40px;
  padding: 28px 30px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.sd-section:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.sd-section h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sd-section h3::before {
  content: '';
  display: block;
  width: 6px;
  height: 22px;
  background: var(--gold);
  border-radius: 3px;
}
.sd-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}
.sd-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.55;
  padding: 4px 0;
}
.sd-list li::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 50%;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f15528' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

/* SIDEBAR */
.sd-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sd-side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sd-side-card h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.sd-side-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 24px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.sd-side-list li:last-child a { border-bottom: none; }
.sd-side-list li a::after {
  content: '→';
  font-size: 14px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}
.sd-side-list li a:hover {
  background: var(--gold-pale);
  color: var(--navy);
  padding-left: 28px;
}
.sd-side-list li a:hover::after { opacity: 1; transform: translateX(0); }
.sd-side-list li a.current {
  background: var(--navy);
  color: var(--white);
}
.sd-side-list li a.current::after { opacity: 1; transform: translateX(0); color: var(--gold); }

.sd-help-card {
  background: linear-gradient(135deg, var(--navy) 0%, #163258 60%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.sd-help-card::before {
  content: '';
  position: absolute;
  inset: 0;
  /* grid removed */
}
.sd-help-card > * { position: relative; z-index: 1; }
.sd-help-card .icon-circle {
  width: 54px; height: 54px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.sd-help-card .icon-circle svg { width: 22px; height: 22px; color: var(--white); }
.sd-help-card h5 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}
.sd-help-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  line-height: 1.65;
}
.sd-help-card a.phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.sd-help-card a.phone:hover { color: var(--white); }
.sd-help-card small {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
}

/* ============================================================
   ABOUT EXTENDED (about.html)
============================================================ */
.about-ext {
  padding: 110px 0;
  background: var(--cream);
}
.about-ext-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.about-ext-header .section-title { margin-bottom: 16px; }
.about-ext-header p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
}
.mvk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mvk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.mvk-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.mvk-card:hover::before { transform: scaleX(1); }
.mvk-card .big-icon {
  width: 60px; height: 60px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.mvk-card:hover .big-icon { background: var(--navy); }
.mvk-card .big-icon svg { width: 26px; height: 26px; color: var(--navy); transition: var(--transition); }
.mvk-card:hover .big-icon svg { color: var(--gold); }
.mvk-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.mvk-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS (about.html)
============================================================ */
.testimonials {
  padding: 110px 0;
  background: var(--white);
}
.testi-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.testi-card .quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--gold);
  opacity: 0.2;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.6;
}
.testi-card blockquote {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 22px;
  padding-top: 8px;
}
.testi-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-info strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.testi-info span {
  font-size: 12px;
  color: var(--slate);
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-info-cards {
  padding: 100px 0 60px;
  background: var(--white);
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.contact-info-card:hover::before { transform: scaleX(1); }
.contact-info-card .cic-icon {
  width: 60px; height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.contact-info-card .cic-icon svg { width: 22px; height: 22px; color: var(--gold); }
.contact-info-card:hover .cic-icon {
  background: var(--gold);
  transform: scale(1.08);
}
.contact-info-card:hover .cic-icon svg { color: var(--white); }
.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.contact-info-card p, .contact-info-card a {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  transition: color 0.2s;
}
.contact-info-card a:hover { color: var(--gold); }

/* Form + map */
.contact-form-section {
  padding: 60px 0 100px;
  background: var(--white);
}
.cfs-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.cfs-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.cfs-form-wrap .tag { margin-bottom: 14px; }
.cfs-form-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.cfs-form-wrap h2 span { color: var(--gold); font-style: italic; }
.cfs-form-wrap > p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cfs-form {
  display: grid;
  gap: 16px;
}
.cfs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cfs-field input,
.cfs-field select,
.cfs-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}
.cfs-field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--font-body);
}
.cfs-field input:focus,
.cfs-field select:focus,
.cfs-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(241,85,40,0.08);
}
.cfs-field input::placeholder,
.cfs-field textarea::placeholder { color: var(--slate-light); }

.cfs-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--gold) 0%, #ff7a45 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 24px rgba(241,85,40,0.22);
  justify-self: start;
}
.cfs-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(241,85,40,0.28);
  filter: brightness(1.02);
}
.cfs-submit svg { width: 16px; height: 16px; }

.cfs-map-wrap {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.cfs-map-wrap iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE NAV
============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  flex-direction: column;
  padding: 28px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mobile-close {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  color: var(--white);
}
.mobile-close svg { width: 18px; height: 18px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-sub { padding-left: 16px; }
.mobile-sub a { font-size: 15px !important; }
.mobile-cta {
  margin-top: auto;
  padding-top: 32px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why .container { grid-template-columns: 1fr; gap: 50px; }
  .hero { min-height: auto; padding: 80px 0; }
  .hero.hero-left .hero-content {
    margin-left: auto;
    margin-right: auto;
    padding: 0 28px;
  }
  .hero .container { padding-left: 28px; padding-right: 28px; }
  .faq .container { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; padding: 52px 36px; }
  .cta-actions { align-items: center; }
  .about .container { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .page-banner { padding: 80px 0 60px; }
  /* Service detail */
  .sd-layout { grid-template-columns: 1fr; gap: 40px; }
  .sd-sidebar { position: static; }
  /* About extended */
  .mvk-cards { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  /* Contact */
  .contact-cards-grid { grid-template-columns: 1fr; }
  .cfs-grid { grid-template-columns: 1fr; gap: 36px; }
  .cfs-map-wrap { position: static; }
  .cfs-map-wrap iframe { height: 380px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .topbar { display: none; }
  .stats-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-inner { padding: 40px 24px; }
  /* Service detail */
  .sd-list { grid-template-columns: 1fr; }
  .sd-section { padding: 22px 20px; }
  .sd-hero-img { aspect-ratio: 16/9; }
  .sd-hero-img .sd-hero-icon { width: 80px; height: 80px; border-radius: 18px; }
  .sd-hero-img .sd-hero-icon svg { width: 36px; height: 36px; }
  .sd-title { font-size: 26px; }
  /* About extended */
  .testi-grid { grid-template-columns: 1fr; }
  /* Contact */
  .cfs-form-wrap { padding: 32px 22px; }
  .cfs-row { grid-template-columns: 1fr; }
}
