/* ============================================
   NEXUS ADVISORY GROUP - Premium Consulting CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy: #0B1F3A;
  --navy-light: #132d52;
  --navy-deep: #071528;
  --teal: #0E7C7B;
  --teal-light: #12a09f;
  --gold: #C9A84C;
  --gold-light: #e0c06a;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --grey-light: #E8ECF0;
  --grey-mid: #9BA5B4;
  --grey-dark: #3D4A5C;
  --text-primary: #0B1F3A;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --border: rgba(11,31,58,0.1);
  --shadow-sm: 0 2px 8px rgba(11,31,58,0.08);
  --shadow-md: 0 8px 24px rgba(11,31,58,0.12);
  --shadow-lg: 0 20px 60px rgba(11,31,58,0.18);
  --shadow-xl: 0 32px 80px rgba(11,31,58,0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'DM Sans', sans-serif; }

p { line-height: 1.75; color: var(--text-secondary); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

.bg-navy { background: var(--navy); }
.bg-navy-deep { background: var(--navy-deep); }
.bg-off-white { background: var(--off-white); }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(14,124,123,0.08);
  border: 1px solid rgba(14,124,123,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-tag.gold {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.2);
}

.section-tag.white {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { max-width: 600px; margin: 1rem auto 0; font-size: 1.05rem; }

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  margin: 1rem auto;
}
.divider-left { margin: 1rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14,124,123,0.3);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,124,123,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}

.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(14,124,123,0.4);
}

.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); line-height: 1.1;
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.62rem; font-weight: 500;
  color: var(--teal-light); letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  display: flex; align-items: center; gap: 12px;
}

.btn-nav {
  padding: 10px 22px;
  background: var(--teal);
  color: var(--white);
  border-radius: 7px;
  font-size: 0.88rem; font-weight: 600;
  transition: var(--transition);
  border: 1.5px solid var(--teal);
}
.btn-nav:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14,124,123,0.35);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.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 Section ---- */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(14,124,123,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    linear-gradient(135deg, #071528 0%, #0B1F3A 50%, #0d2644 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,124,123,0.15) 0%, transparent 70%);
  right: -100px; top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: 140px 2rem 80px;
  width: 100%;
}

.hero-text .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.5rem;
}

.hero-text .tag::before {
  content: '';
  display: block; width: 24px; height: 2px;
  background: var(--teal-light);
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-text h1 span {
  background: linear-gradient(90deg, var(--teal-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text .sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 40px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.hero-stat .label {
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em; margin-top: 4px;
}
.hero-stat .num span { color: var(--teal-light); }

/* Hero Visual */
.hero-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}

.hero-card-stack { position: relative; width: 100%; max-width: 420px; }

.h-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.h-card-main {
  z-index: 3;
  background: linear-gradient(135deg, rgba(14,124,123,0.2), rgba(11,31,58,0.6));
}

.h-card .card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}

.card-icon-lg {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(14,124,123,0.4);
}

.card-badge {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}

.h-card h4 { color: var(--white); margin-bottom: 8px; }
.h-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

.h-card-sm {
  position: absolute;
  width: 200px;
}

.h-card-sm-1 {
  top: -30px; right: -40px;
  z-index: 4;
  animation: float1 4s ease-in-out infinite;
}

.h-card-sm-2 {
  bottom: -30px; left: -40px;
  z-index: 4;
  animation: float2 5s ease-in-out infinite;
}

.h-card-sm .mini-stat {
  display: flex; align-items: center; gap: 12px;
}
.h-card-sm .mini-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.h-card-sm .mini-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--white);
  line-height: 1;
}
.h-card-sm .mini-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.progress-bars { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.prog-item .prog-label {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  margin-bottom: 5px;
}
.prog-track {
  height: 4px; background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
}
.prog-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  animation: fillAnim 2s ease forwards;
}

@keyframes fillAnim { from { width: 0; } }
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}

/* ---- Services Overview ---- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  group: true;
}

.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  border-color: rgba(14,124,123,0.3);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.icon-teal { background: rgba(14,124,123,0.1); color: var(--teal); }
.icon-navy { background: rgba(11,31,58,0.08); color: var(--navy); }
.icon-gold { background: rgba(201,168,76,0.1); color: var(--gold); }

.service-card:hover .service-icon { transform: scale(1.1); }

.service-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.88rem; margin-bottom: 1.25rem; }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--teal); transition: var(--transition);
}
.card-link:hover { gap: 10px; }

/* ---- Why Choose Us ---- */
.why-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(14,124,123,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 50%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.why-features { display: grid; gap: 24px; }

.why-feature {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-feature:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(14,124,123,0.3);
  transform: translateX(8px);
}

.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(14,124,123,0.15);
  border: 1px solid rgba(14,124,123,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}

.why-feature h4 { color: var(--white); margin-bottom: 4px; }
.why-feature p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

.why-visual { position: relative; }

.cert-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.cert-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.cert-seal {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.cert-header h3 { color: var(--white); margin-bottom: 4px; }
.cert-header p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

.cert-items { display: grid; gap: 14px; }
.cert-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border-left: 3px solid var(--teal);
}
.cert-item span { color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500; }

.trusted-bar {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trusted-bar p { color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }

.trust-logos { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-logo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ---- Stats Section ---- */
.stats-section {
  background: linear-gradient(135deg, var(--teal), #0a5f5e);
  padding: 60px 0;
  position: relative; overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-5h15v5h5V23H25v-2.5h-5zm0 0V0h-5v5H0v5h15v5H0v5h20v-5.5z'/%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; position: relative; z-index: 1;
}

.stat-item { text-align: center; }
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--white);
  line-height: 1;
}
.stat-item .num .plus { color: var(--gold); }
.stat-item .label {
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-top: 8px; letter-spacing: 0.03em;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(14,124,123,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 0.6;
  color: var(--teal); opacity: 0.2;
  margin-bottom: 1rem; display: block;
}

.testimonial-text {
  font-style: italic; font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem; line-height: 1.8;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--white); flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.author-company { font-size: 0.8rem; color: var(--text-muted); }

.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }

/* ---- Blog Preview ---- */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(14,124,123,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.blog-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  position: relative; overflow: hidden;
}

.blog-img.tax { background: linear-gradient(135deg, #e8f5f5, #c8e8e8); }
.blog-img.cyber { background: linear-gradient(135deg, #e8ecf2, #c8d0de); }
.blog-img.finance { background: linear-gradient(135deg, #f5f0e8, #e8d8b8); }

.blog-body { padding: 28px; }
.blog-cat {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}
.blog-card h4 { font-size: 1rem; margin-bottom: 10px; color: var(--navy); line-height: 1.4; }
.blog-card p { font-size: 0.85rem; }
.blog-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--grey-light);
  font-size: 0.78rem; color: var(--text-muted);
}
.read-more { color: var(--teal); font-weight: 600; font-size: 0.82rem; }
.read-more:hover { text-decoration: underline; }

/* ---- CTA Section ---- */
.cta-section {
  background: var(--navy-deep);
  position: relative; overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(14,124,123,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 700px; margin: 0 auto;
}

.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--navy);
  transition: var(--transition);
}
.faq-q:hover { background: var(--off-white); }
.faq-q.active { background: rgba(14,124,123,0.05); color: var(--teal); }

.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.faq-q.active .faq-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-a.open {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-a p { font-size: 0.9rem; color: var(--text-secondary); }

/* ---- Newsletter ---- */
.newsletter-section { background: var(--off-white); }

.newsletter-inner {
  max-width: 580px; margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex; gap: 12px; margin-top: 2rem;
}

.newsletter-form input {
  flex: 1; padding: 14px 20px;
  border: 1.5px solid var(--grey-light);
  border-radius: 8px; font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-primary);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,124,123,0.1);
}

/* ---- Client Logos ---- */
.logos-section { padding: 50px 0; border-top: 1px solid var(--grey-light); border-bottom: 1px solid var(--grey-light); }

.logos-label {
  text-align: center; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2rem;
}

.logos-track {
  display: flex; gap: 32px; flex-wrap: wrap;
  justify-content: center; align-items: center;
}

.logo-item {
  background: var(--off-white);
  border: 1.5px solid var(--grey-light);
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--transition);
}
.logo-item:hover {
  background: var(--white);
  border-color: rgba(14,124,123,0.2);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ---- About Page ---- */
.about-hero {
  background: var(--navy-deep);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(14,124,123,0.1) 0%, transparent 60%);
}

.page-hero-text { position: relative; z-index: 1; max-width: 700px; }
.page-hero-text h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-text p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 550px; }

.about-overview {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; }

.mission-vision-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}

.mv-card.mission {
  background: var(--navy);
  color: var(--white);
}

.mv-card.vision {
  background: linear-gradient(135deg, rgba(14,124,123,0.08), rgba(201,168,76,0.05));
  border: 1.5px solid rgba(14,124,123,0.2);
}

.mv-card h3 { margin-bottom: 0.75rem; }
.mv-card.mission h3 { color: var(--teal-light); }
.mv-card.mission p { color: rgba(255,255,255,0.7); }

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.value-card {
  text-align: center; padding: 32px 20px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: var(--white);
}
.value-card:hover {
  border-color: rgba(14,124,123,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2rem; margin-bottom: 12px;
  width: 60px; height: 60px;
  background: rgba(14,124,123,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.value-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.value-card p { font-size: 0.82rem; }

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  border-color: rgba(14,124,123,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.team-avatar {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
}

.team-avatar.av1 { background: linear-gradient(135deg, #1a4a7a, #0B1F3A); }
.team-avatar.av2 { background: linear-gradient(135deg, #0a5f5e, #0E7C7B); }
.team-avatar.av3 { background: linear-gradient(135deg, #7a5a0a, #C9A84C); }
.team-avatar.av4 { background: linear-gradient(135deg, #3D4A5C, #1a2a3a); }

.team-initials {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: rgba(255,255,255,0.9);
}

.team-info { padding: 24px; }
.team-info h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--teal); font-weight: 600; margin-bottom: 8px; }
.team-info p { font-size: 0.82rem; }

/* ---- Services Page ---- */
.services-hero {
  background: var(--navy-deep);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(14,124,123,0.12) 0%, transparent 60%);
}

.service-detail {
  padding: 80px 0;
  position: relative;
}

.service-detail:nth-child(even) { background: var(--off-white); }

.service-detail-inner {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}

.service-detail:nth-child(even) .service-detail-inner {
  direction: rtl;
}
.service-detail:nth-child(even) .service-detail-inner > * {
  direction: ltr;
}

.service-sidebar {
  position: sticky; top: 100px;
}

.service-sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative; overflow: hidden;
}

.service-sidebar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.service-sidebar-icon {
  font-size: 2.5rem; margin-bottom: 16px;
}

.service-sidebar-card h3 { color: var(--white); margin-bottom: 8px; }
.service-sidebar-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 24px; }

.service-sidebar-cta {
  width: 100%; text-align: center; justify-content: center;
}

.service-main h2 { margin-bottom: 1rem; }
.service-main .lead {
  font-size: 1.05rem; color: var(--text-secondary);
  margin-bottom: 2rem; line-height: 1.8;
}

.service-features-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 2.5rem;
}

.sf-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  font-size: 0.88rem; color: var(--text-secondary);
  transition: var(--transition);
}
.service-detail:nth-child(even) .sf-item { background: var(--white); }

.sf-item:hover {
  border-color: rgba(14,124,123,0.2);
  background: rgba(14,124,123,0.03);
}

.sf-check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(14,124,123,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 0.7rem; margin-top: 1px;
}

.industries-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ind-tag {
  background: var(--grey-light);
  color: var(--grey-dark);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  transition: var(--transition);
}
.ind-tag:hover { background: rgba(14,124,123,0.1); color: var(--teal); }

/* ---- Contact Page ---- */
.contact-hero {
  background: var(--navy-deep);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(14,124,123,0.12) 0%, transparent 60%);
}

.contact-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 8px; font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,124,123,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input.error, .form-group textarea.error { border-color: #e53e3e; }
.error-msg { color: #e53e3e; font-size: 0.78rem; margin-top: 4px; }

.submit-btn { width: 100%; justify-content: center; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  background: var(--off-white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; gap: 16px;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: rgba(14,124,123,0.25);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(14,124,123,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.ci-label { font-size: 0.75rem; font-weight: 700; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.ci-value { font-weight: 600; color: var(--navy); font-size: 0.92rem; }

.map-placeholder {
  background: var(--off-white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--text-muted); font-size: 0.88rem;
}

.map-placeholder span { font-size: 2rem; }

/* ---- Footer ---- */
.footer {
  background: var(--navy-deep);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-mark { margin-bottom: 1rem; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem; line-height: 1.7;
  margin-bottom: 1.5rem; max-width: 280px;
}

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem; transition: var(--transition);
}
.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem; transition: var(--transition);
}
.footer-links a:hover { color: var(--teal-light); padding-left: 6px; }

.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem; transition: var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator span { font-size: 1.2rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- Notification / Toast ---- */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--navy);
  color: var(--white); padding: 16px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--teal);
  font-size: 0.9rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px); opacity: 0;
  transition: var(--transition);
  z-index: 9999;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ---- Mobile Nav ---- */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  z-index: 999;
  display: flex; flex-direction: column;
  padding: 100px 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: var(--white); font-size: 1.4rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Playfair Display', serif;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--teal-light); padding-left: 10px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; padding-top: 120px; }
  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
  .service-sidebar { position: relative; top: 0; }
  .about-overview { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 70px 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-features-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .h-card-sm { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form-card { padding: 28px 20px; }
}