/* ===== MANAGEMENT ASSET — Global Stylesheet ===== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --navy-900: #0a0f1a;
  --navy-800: #111827;
  --navy-700: #1a2332;
  --navy-600: #243044;
  --navy-500: #2c3e50;
  --gold-400: #c9a84c;
  --gold-500: #b8942e;
  --gold-300: #d4b76a;
  --gold-200: #e0ca8e;
  --gold-100: #f0e6c8;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --light-gray: #e8e4dd;
  --medium-gray: #9ca3af;
  --dark-gray: #4b5563;
  --text-dark: #1f2937;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul { list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---------- Selection ---------- */
::selection {
  background: var(--gold-400);
  color: var(--navy-900);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   HEADER — SILVERCREST STYLE
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

/* --- Top Nav Bar (dark navy) --- */
.top-nav {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo img {
  height: 42px;
  width: auto;
  filter: brightness(1.1);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo-text span {
  color: var(--gold-400);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-400);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
  color: var(--gold-300);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 24px !important;
  border: 1.5px solid var(--gold-400) !important;
  color: var(--gold-400) !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  transition: var(--transition-smooth) !important;
}

.nav-cta:hover {
  background: var(--gold-400) !important;
  color: var(--navy-900) !important;
}

.nav-cta::after {
  display: none !important;
}

/* --- Gold Sub-Navigation Bar --- */
.sub-nav {
  background: var(--gold-400);
}

.sub-nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 42px;
}

.sub-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 20px;
  transition: var(--transition-fast);
}

.sub-nav a:hover {
  color: var(--white);
}

.sub-nav-divider {
  color: rgba(10, 15, 26, 0.3);
  font-size: 0.85rem;
  user-select: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-smooth);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--navy-900);
  z-index: 999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--gold-400);
}

/* =========================================================
   HERO — SILVERCREST STYLE (Large image, bottom-left text)
   ========================================================= */

.hero-sc {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  margin-top: 114px; /* top-nav 72px + sub-nav 42px */
  overflow: hidden;
}

.hero-sc-image {
  position: absolute;
  inset: 0;
}

.hero-sc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 26, 0.75) 0%,
    rgba(10, 15, 26, 0.25) 40%,
    rgba(10, 15, 26, 0.1) 100%
  );
  z-index: 2;
}

.hero-sc-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 10;
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 2s;
}

.hero-sc-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 25px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-sc-content h1 em {
  font-style: italic;
  color: var(--gold-300);
}

.hero-sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-300);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.hero-sc-cta:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  border-color: var(--gold-400);
  transform: translateX(5px);
}

.hero-sc-cta svg {
  transition: var(--transition-fast);
}

.hero-sc-cta:hover svg {
  fill: var(--navy-900);
}

/* =========================================================
   INTRO & STATS (Silvercrest style)
   ========================================================= */

.intro-stats {
  padding: 80px 0 60px;
  background: var(--white);
  text-align: center;
}

.intro-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--navy-700);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 60px;
}

.intro-text a {
  color: var(--gold-500);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
}

.intro-text a:hover {
  border-bottom-color: var(--gold-400);
}

.intro-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--light-gray);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--dark-gray);
  line-height: 1.5;
  max-width: 250px;
  margin: 0 auto;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-200));
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.3);
}

/* ---------- SECTION HEADINGS ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--dark-gray);
  line-height: 1.8;
  max-width: 680px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.65);
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold-400);
  margin-bottom: 25px;
}

.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- ABOUT SECTION ---------- */
.about {
  padding: var(--section-padding);
  background: var(--white);
}

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

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  filter: brightness(0.9);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold-400);
  z-index: -1;
}

.about-content .section-subtitle {
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-size: 1rem;
}

.about-feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.about-feature-text p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* ---------- SERVICES SECTION ---------- */
.services {
  padding: var(--section-padding);
  background: var(--off-white);
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 168, 76, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold-400);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon svg {
  fill: var(--navy-900);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.service-link:hover {
  gap: 14px;
}

.service-link svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-400);
}

/* ---------- PARALLAX DIVIDER ---------- */
.parallax-divider {
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  inset: -100px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 26, 0.85);
}

.parallax-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
}

.parallax-content blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.9);
}

.parallax-content cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-400);
  font-style: normal;
}

/* ---------- WHO WE SERVE ---------- */
.who-we-serve {
  padding: var(--section-padding);
  background: var(--navy-900);
}

.who-we-serve .services-header {
  margin-bottom: 60px;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.serve-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  cursor: pointer;
}

.serve-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.serve-card:hover .serve-card-bg {
  transform: scale(1.08);
}

.serve-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 26, 0.9) 0%, rgba(10, 15, 26, 0.3) 100%);
  transition: background 0.5s ease;
}

.serve-card:hover .serve-card-overlay {
  background: linear-gradient(to top, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.5) 100%);
}

.serve-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.serve-card:hover .serve-card-content {
  transform: translateY(0);
}

.serve-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.serve-card-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.serve-card:hover .serve-card-content p {
  opacity: 1;
  transform: translateY(0);
}

.serve-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-400);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.serve-card:hover .serve-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- APPROACH / VALUES ---------- */
.approach {
  padding: var(--section-padding);
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.approach-content {
  position: sticky;
  top: 140px;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.approach-step {
  display: flex;
  gap: 24px;
  padding: 30px;
  background: var(--off-white);
  border-left: 3px solid transparent;
  transition: var(--transition-smooth);
}

.approach-step:hover {
  border-left-color: var(--gold-400);
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-400);
  line-height: 1;
  min-width: 50px;
}

.step-content h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: var(--section-padding);
  background: var(--off-white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  text-align: center;
  padding: 0 20px;
  display: none;
}

.testimonial-item.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy-800);
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--gold-400);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gold-400);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.testimonial-dot.active {
  background: var(--gold-400);
  transform: scale(1.2);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 100px 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 40px;
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.cta-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.cta-card:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-5px);
}

.cta-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-400);
}

.cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.cta-card-link:hover {
  gap: 12px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-main {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  border-color: var(--gold-400);
  background: rgba(201, 168, 76, 0.1);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.footer-social a:hover svg {
  fill: var(--gold-400);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--gold-400);
  padding-left: 5px;
}

.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links a:hover {
  color: var(--gold-400);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold-400);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
  border: none;
  font-size: 1.2rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

/* ---------- Loading Screen ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFade 1.5s ease forwards;
}

.loader-logo span {
  color: var(--gold-400);
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--gold-400);
  width: 0;
  animation: loaderProgress 2s ease forwards;
}

@keyframes loaderFade {
  0% { opacity: 0; transform: translateY(20px); }
  50% { opacity: 1; transform: translateY(0); }
}

@keyframes loaderProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: none; }
  .mobile-nav.open { display: flex; }

  .sub-nav { display: none; }

  .hero-sc {
    margin-top: 72px;
    height: 70vh;
  }

  .hero-sc-content {
    left: 30px;
    bottom: 40px;
  }

  .about-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-grid,
  .serve-grid,
  .cta-cards {
    grid-template-columns: 1fr 1fr;
  }

  .intro-stats .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .approach-content {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
    --container-padding: 0 20px;
  }

  .hero-sc {
    height: 60vh;
    min-height: 400px;
  }

  .hero-sc-content h1 {
    font-size: 2.2rem;
  }

  .hero-sc-content {
    left: 20px;
    right: 20px;
    bottom: 30px;
  }

  .intro-stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-item::after {
    display: none;
  }

  .services-grid,
  .serve-grid,
  .cta-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .parallax-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero-sc-content h1 {
    font-size: 1.8rem;
  }

  .nav-logo-text {
    font-size: 1.1rem;
  }

  .hero-sc-cta {
    font-size: 0.65rem;
    padding: 12px 20px;
  }
}
