/* ============================================
   Hans Capital Ltd - Main Stylesheet
   Premium HR Services Website
   Colors: Black, Gold, White, Mustard Yellow
   ============================================ */

/* ─── CSS Variables / Design Tokens ─── */
:root {
  /* Colors */
  --deep-black: #000000;
  --warm-black: #0A0A0A;
  --charcoal: #111111;
  --light-gray: #F5F5F5;
  --gold: #C5A059;
  --mustard-yellow: #D4A843;
  --warm-yellow: #E8C76A;
  --off-white: #F0EDE8;
  --muted-white: #B8B3AB;
  --warm-white: #E8E4DD;

  /* Transparencies */
  --gold-muted: rgba(197, 160, 89, 0.15);
  --gold-medium: rgba(197, 160, 89, 0.35);
  --gold-border: rgba(197, 160, 89, 0.25);
  --black-overlay: rgba(0, 0, 0, 0.4);

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

  /* Spacing */
  --section-padding: 120px;
  --content-max-width: 1280px;
  --horizontal-padding: 48px;
  --grid-gap: 32px;
  --card-padding: 32px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  color: var(--off-white);
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hide scrollbar for all browsers */
body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ─── Typography ─── */
.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 96px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--off-white);
}

.display-l {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 72px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--off-white);
}

.display-m {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: var(--off-white);
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--off-white);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.20;
  color: var(--off-white);
}

h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.25;
  color: var(--off-white);
}

h4, .h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.30;
  color: var(--off-white);
}

.body-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: var(--muted-white);
}

.body-small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--muted-white);
}

.caption {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.50;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Gold Text Utility ─── */
.gold-text {
  color: var(--gold);
}

/* ─── Container ─── */
.container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--horizontal-padding);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--deep-black);
}

.btn-primary:hover {
  background-color: var(--mustard-yellow);
  transform: scale(1.02);
}

.btn-secondary {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-secondary:hover {
  background-color: var(--gold);
  color: var(--deep-black);
}

.btn-dark {
  background-color: var(--deep-black);
  color: var(--gold);
}

.btn-dark:hover {
  background-color: var(--charcoal);
}

/* ─── Section Label ─── */
.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 16px;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  transition: border-color 0.4s ease, background 0.4s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  border-bottom-color: var(--gold-border);
}

.header.scrolled-deep {
  background: rgba(0, 0, 0, 0.95);
}

.header-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--horizontal-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-placeholder {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
}

/* Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-desktop a {
  color: var(--muted-white);
  transition: color 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold);
}

.nav-cta {
  padding: 12px 28px;
  background-color: var(--gold);
  color: var(--deep-black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background-color: var(--mustard-yellow);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--off-white);
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 70%;
  height: 60vh;
  background: var(--deep-black);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--gold);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--mustard-yellow);
}

/* ─── Footer ─── */
.footer {
  background-color: var(--deep-black);
  border-top: 1px solid var(--gold-border);
  padding-top: 40px;
  padding-bottom: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  gap: 24px;
}

.footer-column h4 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-column p,
.footer-column a {
  font-size: 14px;
  color: var(--muted-white);
  line-height: 1.8;
  display: block;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-contact-info {
  margin-top: 16px;
}

.footer-contact-info span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 2.0;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--mustard-yellow);
  border-color: var(--mustard-yellow);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--gold-border);
  margin: 48px 0;
}

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

.footer-bottom p {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-white);
}

/* ─── Section Entrance Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

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

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

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

/* Stagger delays */
.stagger-1 { transition-delay: 0ms; }
.stagger-2 { transition-delay: 100ms; }
.stagger-3 { transition-delay: 200ms; }
.stagger-4 { transition-delay: 300ms; }
.stagger-5 { transition-delay: 400ms; }
.stagger-6 { transition-delay: 500ms; }

/* ─── Hero Section ─── */
.hero {
  min-height: 60vh;
  background-color: var(--deep-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: var(--header-height);
}

.hero-inner {
  text-align: center;
  max-width: 900px;
  padding: 0 var(--horizontal-padding);
}

.hero-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 70px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--off-white);
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  max-width: 600px;
  margin: 32px auto 0;
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: -6px; }
  50% { top: 40px; }
  100% { top: -6px; }
}

/* ─── Services Grid ─── */
.services-section {
  background-color: var(--off-white);
  padding: var(--section-padding) 0;
}

.services-section h2 {
  color: #000000;
}

.services-section .body-text {
  color: #000000;
}


.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .display-m,
.section-header.centered .body-text {
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: #C5A059;
  border: 1px solid var(--gold-border);
  padding: var(--card-padding);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #000000;
  box-shadow: 0 8px 32px rgba(197, 160, 89, 0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: #000000;
}

.service-card h3 {
  margin-top: 24px;
}

.service-card p {
  margin-top: 12px;
  color: #000000;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #000000;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.service-link .arrow {
  transition: transform 0.3s ease;
}

.service-link:hover .arrow {
  transform: translateX(4px);
}

/* ─── About Preview ─── */
.about-preview {
  background-color: var(--deep-black);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: var(--section-padding) 0;
}

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

.about-content .body-text {
  margin-top: 20px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-card {
  background: var(--charcoal);
  border-left: 3px solid var(--gold);
  padding: 24px;
}

.value-card h4 {
  color: var(--gold);
  margin-bottom: 8px;
}

/* ─── Why Choose Us ─── */
.why-section {
  background-color: #F5F5F5;
  padding: var(--section-padding) 0;
}

.why-section h2{
  color: #000000;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.feature-item {
  display: flex;
  gap: 24px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 8px;
  color: #000000;
}

.feature-content .body-text {
  margin-bottom: 8px;
  color: #000000;
}

/* ─── Process Timeline ─── */
.process-section {
  background-color: var(--deep-black);
  border-top: 1px solid var(--gold-border);
  padding: var(--section-padding) 0;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 64px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-border);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--gold);
  background: var(--deep-black);
}

.step-title {
  margin-top: 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  color: var(--off-white);
}

.step-desc {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted-white);
  max-width: 180px;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background-color: #E8E4DD;
  padding: 80px 0;
}

.cta-banner-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner .display-m {
  color: var(--deep-black);
}

.cta-banner .body-small {
  color: var(--deep-black);
  opacity: 0.8;
  margin-top: 16px;
}

.cta-banner .btn-dark {
  margin-top: 32px;
}

/* ─── Image Placeholder ─── */
.img-placeholder {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  text-align: center;
  padding: 20px;
}

/* ─── About Page ─── */
.about-hero {
  min-height: 60vh;
  background: var(--deep-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height);
}

.story-section {
  background: #ffffff;
  padding: var(--section-padding) 0;
}

.story-section h2 {
 color: #000000;
}

.story-section .body-text{
 color: #000000;
}

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

.mission-vision {
  background: #000000;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: var(--section-padding) 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.mv-card {
  background: var(--charcoal);
  border-top: 3px solid var(--gold);
  padding: 48px;
}

.mv-card .decorative-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.values-detail {
  background: #ffffff;
  padding: var(--section-padding) 0;
}

.values-detail h2 {
  color: #000000;
} 

.values-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.value-detail-card {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  padding: 40px;
  transition: all 0.4s ease;
}

.value-detail-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.value-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.value-detail-card h3 {
  margin-top: 16px;
}

.value-detail-card p {
  margin-top: 12px;
}

.value-detail-card .v-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 24px;
}

.team-section {
  background:#030303;
  border-top: 1px solid var(--gold-border);
  padding: var(--section-padding) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--grid-gap);
}

.team-card {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  border-color: var(--gold);
}

.team-img-placeholder {
  aspect-ratio: 1;
  background: rgba(197, 160, 89, 0.08);
  display: flex;
  align-items: left;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;

}

.team-card h4 {
  padding: 20px 24px 0;
}

.team-card .role {
  padding: 2px 22px 22px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 200;
}

.cert-bar {
  margin-top: 80px;
  text-align: center;
}

.cert-bar .decorative-line {
  width: 60px;
  height: 2px;
  background: #000000;
  margin: 0 auto 24px;
}

/* ─── Services Page ─── */
.services-hero {
  min-height: 60vh;
  background: var(--deep-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height);
}

.services-detail {
  background: #ffffff;
  padding: var(--section-padding) 0;
}

.services-detail h1 {
  color: #000000;
}

.services-detail .body-text {
  color: #000000;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--gold-border);
}

.service-block:first-child {
  padding-top: 0;
}

.service-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-block.reverse .service-text {
  order: 2;
}

.service-block.reverse .service-img-side {
  order: 1;
}

.service-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 72px;
  color: var(--gold);
  line-height: 1;
}

.service-text h2 {
  margin-top: -10px;
  color: #000000;
}

.service-text .body-text {
  margin-top: 16px;
  color: #000000;
}

.service-features {
  margin-top: 20px;
}

.service-features li {
  font-size: 14px;
  color: var(--muted-white);
  line-height: 2.0;
  position: relative;
  padding-left: 20px;
  color: #000000;
}

.service-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.service-img-side .img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  opacity: 100%;
}

/* ─── Process Page ─── */
.process-hero {
  min-height: 60vh;
  background: var(--deep-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height);
}

.process-detail {
  background: #ffffff;
  padding: var(--section-padding) 0;
}

.process-detail h1 {
  color: #000000;
}

.process-detail .body-text {
  color: #000000;
}


.process-timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-border);
}

.process-step-card {
  position: relative;
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
}

.process-step-card:last-child {
  margin-bottom: 0;
}

.step-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--gold);
  background: var(--warm-black);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content-card {
  flex: 1;
  background: var(--charcoal);
  border-left: 4px solid var(--gold);
  padding: 40px;
}

.step-content-card .body-text {
 color: #ffffff;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.step-header .step-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.step-points {
  margin-top: 16px;
}

.step-points li {
  font-size: 14px;
  color: var(--muted-white);
  line-height: 2.0;
  position: relative;
  padding-left: 24px;
}

.step-points li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ─── Contact Page ─── */
.contact-hero {
  min-height: 50vh;
  background: var(--deep-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height);
}

.contact-info-section {
  background: var(--light-gray);
  padding: var(--section-padding) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.2);
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--gold);
}

.contact-card h4 {
  color: var(--deep-black);
  margin-top: 20px;
}

.contact-card p {
  color: #444444;
  font-size: 14px;
  margin-top: 8px;
}

.contact-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--mustard-yellow);
}

.consultation-section {
  background: var(--deep-black);
  border-top: 1px solid var(--gold-border);
  padding: var(--section-padding) 0;
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.consultation-info .body-text {
  margin-top: 16px;
}

.consultation-details {
  margin-top: 32px;
}

.consultation-details span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 2.2;
}

.consultation-form {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  padding: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-white);
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-border);
  padding: 12px 0;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--charcoal);
  color: var(--off-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--deep-black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.form-submit:hover {
  background: var(--mustard-yellow);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: #D4CFC6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--gold-border);
}

.map-placeholder span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888888;
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-line::after {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
    --horizontal-padding: 32px;
  }

  .display-xl { font-size: 72px; }
  .display-l { font-size: 56px; }
  .display-m { font-size: 44px; }
  h1, .h1 { font-size: 40px; }
  h2, .h2 { font-size: 32px; }
  h3, .h3 { font-size: 24px; }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }

  .timeline {
    flex-direction: column;
    gap: 40px;
  }

  .timeline-step {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 24px;
  }

  .step-circle {
    flex-shrink: 0;
  }

  .step-desc {
    max-width: none;
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --horizontal-padding: 20px;
    --header-height: 64px;
  }

  .display-xl { font-size: 52px; }
  .display-l { font-size: 40px; }
  .display-m { font-size: 36px; }
  h1, .h1 { font-size: 32px; }
  h2, .h2 { font-size: 26px; }
  h3, .h3 { font-size: 22px; }
  h4, .h4 { font-size: 18px; }

  .nav-desktop {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .story-grid,
  .mv-grid,
  .consultation-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-detail-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: row;
    gap: 10px;
  }

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

  .service-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-block.reverse .service-text,
  .service-block.reverse .service-img-side {
    order: unset;
  }

  .process-timeline-wrapper {
    padding-left: 0;
  }

  .process-timeline-line {
    left: 20px;
  }

  .process-step-card {
    gap: 24px;
  }

  .step-content-card {
    padding: 24px;
  }
}

/* ─── Print Styles ─── */
@media print {
  .header,
  .footer,
  .scroll-indicator,
  .mobile-menu {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  section {
    padding: 30px 0 !important;
    page-break-inside: avoid;
  }
}
html {
  scroll-behavior: smooth;
}
/* Logo Image Styling */
.logo-image {
  height: 30px;       /* Matches your previous placeholder height */
  width: auto;        /* Maintains aspect ratio */
  display: block;
  object-fit: contain;
}

/* Ensure the logo container stays aligned */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Optional: If your logo is very dark and you are on a black footer, 
   you might need a specific class to invert it, but for a white header, 
   standard colors will work best. */