/* Consolidated CSS stylesheet (Reset, Variables, Animations, Main) */

/* css/reset.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100vh;
}

html {
  font-size: 16px;
  /* Disable smooth scrolling so Locomotive Scroll can handle it */
  scroll-behavior: auto;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}


:root {
  /* Color System */
  --bg-primary: #000000;
  --bg-secondary: #0A0A0A;
  --bg-card: #111111;
  --accent: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-muted: #A0A0A0;
  --border: #333333;
  --overlay: rgba(0, 0, 0, 0.92);
  --accent-blue: #EFC383;

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-hover: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Light Mode Overrides (if ever needed) */
html.light-mode {
  --bg-primary: #F1EFEC;
  --bg-secondary: #D4C9BE;
  --bg-card: #D4C9BE;
  --accent: #123458;
  --text-primary: #030303;
  --text-muted: #123458;
  --border: #123458;
  --overlay: rgba(241, 239, 236, 0.92);
  --accent-blue: #123458;
}



/* css/animations.css */

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }

  /* 3 identical blocks, scroll 1 full block width */
}

/* Utility to hide elements before GSAP reveals them */
.reveal-up {
  opacity: 0;
  visibility: hidden;
}

/* Splitting text hiding */
[data-splitting] .char {
  opacity: 0;
  visibility: hidden;
}

.hero-title .word {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}


html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  box-sizing: border-box;
}

/* Typography Scale */
h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
}

.muted {
  color: var(--text-muted);
}

.section-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 4rem;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 9999;
  pointer-events: none;
}

/* Custom Cursor Disabled */
.cursor-dot,
.cursor-ring {
  display: none !important;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
  transform: translateZ(0);
}

.navbar.scrolled {
  transform: translateY(-5px);
}

.nav-container {
  width: 92%;
  max-width: 1200px;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 100px;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #130f0c;
  border: 1px solid rgba(239, 195, 131, 0.25);
  border-radius: 100px;
  padding: 4px 18px;
  box-shadow: 0 0 15px rgba(239, 195, 131, 0.45);
  box-sizing: border-box;
  height: 46px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.navbar .nav-brand:hover {
  background-color: #130f0c;
  transform: none;
}

.nav-brand-img {
  height: 32px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

.nav-back-btn {
  position: absolute;
  left: 4vw;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  background: transparent;
  border: none;
  width: auto;
  height: auto;
  padding: 0;
  cursor: pointer;
  box-sizing: border-box;
  z-index: 1001;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.nav-back-btn:hover {
  transform: translateY(-50%) translateX(-4px);
  opacity: 0.8;
}

/* Adjust nav-container when back button is present to prevent overlap */
@media (min-width: 1025px) {
  .navbar.has-back-btn .nav-container {
    max-width: 1060px;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .navbar.has-back-btn .nav-container {
    width: 82%;
  }
}

@media (max-width: 768px) {
  .navbar.has-back-btn .nav-container {
    width: calc(100% - 100px);
    margin-left: auto;
    margin-right: 4vw;
  }
  .nav-back-btn {
    left: 4vw;
  }
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.3s var(--ease-out);
}

.nav-link:hover {
  opacity: 0.6;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-btn {
  background-color: #FFFFFF;
  color: #000000;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), background-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.nav-btn:hover {
  transform: scale(1.05);
  background-color: var(--accent-blue);
  color: #FFFFFF;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.menu-toggle.active .hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.menu-toggle.active .hamburger span:nth-child(2) {
  top: 8px;
  transform: rotate(-135deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 4rem);
  text-transform: uppercase;
  font-weight: 700;
  transform: translateY(40px);
  opacity: 0;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-btn {
    display: none;
  }

  .nav-container {
    width: 90%;
    padding: 10px 20px;
  }

  .navbar {
    top: 15px;
  }
}

/* SECTION 03: Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 4vw 80px;
  background-color: var(--bg-primary);
  background-image: radial-gradient(circle at 50% 50%, rgba(239, 195, 131, 0.08) 0%, transparent 70%);
  overflow: hidden;
}


.hero-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #FFFFFF;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.char {
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.text-blue {
  color: var(--accent-blue);
}

.text-white {
  color: #FFFFFF !important;
}

.hero-desc {
  max-width: 600px;
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 auto 3rem;
  opacity: 0.8;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.btn-hero {
  display: inline-block;
  background-color: #FFFFFF;
  color: #000000;
  padding: 1.2rem 3rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
}

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

.scroll-dot {
  position: absolute;
  top: 0;
  left: -2px;
  width: 5px;
  height: 5px;
  background-color: var(--text-primary);
  border-radius: 50%;
}

.scroll-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-desc {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }

  .hero-scroll {
    display: none;
  }
}

/* SECTION 04: Marquee */
.marquee {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  display: flex;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-right: 0.5rem;
}

/* SECTION 04: Mission */
.mission {
  padding: 150px 0 100px;
  background-color: var(--bg-primary);
  text-align: center;
}

.mission .section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-top: 1.5rem;
  margin-bottom: 4rem;
  line-height: 1.1;
}

.mission-label {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  text-transform: none;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.mission-label .text-blue {
  color: #EFC383 !important;
}

.mission-illustration {
  margin-top: 4rem;
  width: 100%;
}

.mission-illustration img {
  filter: drop-shadow(0 0 30px rgba(239, 195, 131, 0.1));
}

/* SECTION 04.5: Philosophy */
.philosophy {
  padding: 100px 0 150px;
  background-color: var(--bg-primary);
  text-align: center;
}

.philosophy .section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-top: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-primary);
}

.philosophy-label {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  text-transform: none;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.philosophy-label .text-blue {
  color: #EFC383 !important;
}

/* SECTION 05: Services */
.services {
  padding: 120px 0;
  background-color: var(--bg-primary);
}

.services-label {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  text-transform: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.services-label .text-blue {
  color: #EFC383 !important;
}

/* Services Slider */
.services-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-left {
  margin-bottom: 2rem;
  width: 100%;
}

.services-right {
  width: 100%;
}

.services-slider {
  position: relative;
  width: 100%;
  padding: 0 60px;
  box-sizing: border-box;
}

.services-slider-wrapper {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0 2rem;
}

.services-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.services-slider-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding-right: 1rem;
}

.service-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background-color: #0F0F0F;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 24px;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.service-card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 0 25px var(--accent-blue);
}

.service-image-placeholder {
  width: 100%;
  height: 320px;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.service-pill {
  background-color: #F05A28;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.services-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--accent);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s var(--ease-out);
}

.services-slider-btn:hover {
  opacity: 0.6;
}

.services-slider-prev {
  left: 10px;
}

.services-slider-next {
  right: 10px;
}

@media (max-width: 768px) {
  .services-left {
    margin-bottom: 2rem;
  }

  .service-card {
    flex: 0 0 280px;
    padding: 16px;
    border-radius: 24px;
  }

  .service-image-placeholder {
    height: 260px;
    border-radius: 16px;
  }

  .services-slider {
    padding: 0;
  }

  .services-slider-btn {
    display: none;
  }
}

/* SECTION 06: Success */
.success {
  padding: 120px 0;
  background-color: var(--bg-primary);
}

.text-center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-top: -3rem;
  margin-bottom: 5rem;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.success-card {
  background-color: #0F0F0F;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 4rem 3rem;
  text-align: center;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.success-card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 0 25px var(--accent-blue);
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem;
  color: var(--accent-blue);
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.success-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.success-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .success-grid {
    grid-template-columns: 1fr;
  }

  .success-card {
    padding: 3rem 2rem;
  }
}

/* SECTION 07: Journey */
.journey {
  padding: 150px 0;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.journey-container {
  position: relative;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 40px 0;
}

.journey-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.journey-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  /* Animated in JS */
  background-color: var(--accent-blue);
  box-shadow: 0 0 15px var(--accent-blue);
}

.journey-item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 100px;
  z-index: 2;
}

.journey-item.right {
  justify-content: flex-end;
}

.journey-dot {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--bg-primary);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 3;
  transition: border-color 0.4s ease, background-color 0.4s ease;
}

.journey-item.active .journey-dot {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-blue);
}

.journey-card {
  width: 45%;
  background-color: #0F0F0F;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  transition: transform 0.4s var(--ease-out), background-color 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease;
}

.journey-item.active .journey-card {
  background: linear-gradient(135deg, #EFC383 0%, #C9975A 100%);
  border-color: transparent;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(239, 195, 131, 0.2);
}

.journey-item.active .phase-label,
.journey-item.active .phase-title,
.journey-item.active .phase-desc {
  color: #FFFFFF;
}

.phase-label {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.phase-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.phase-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .journey-line {
    left: 30px;
    transform: none;
  }

  .journey-dot {
    left: 30px;
    transform: translateX(-50%);
  }

  .journey-item,
  .journey-item.right {
    justify-content: flex-start;
    padding-left: 70px;
  }

  .journey-card {
    width: 100%;
    padding: 2rem;
  }
}

/* SECTION 07.5: Process Horizontal */
.process-horizontal {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.timeline-wrapper {
  position: relative;
  margin-top: 4rem;
}

.timeline-line-svg {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 1;
}

.timeline-progress-blue {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.step-node {
  width: 25%;
  padding-right: 2rem;
  transition: opacity 0.4s ease;
}

.node-circle {
  width: 48px;
  height: 48px;
  background-color: #0F0F0F;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.step-node.active .node-circle {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #FFFFFF;
}

.node-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.node-desc {
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.95rem;
  opacity: 0.4;
  transition: opacity 0.4s var(--ease-out);
}

.step-node.active .node-desc {
  opacity: 1;
}

@media (max-width: 768px) {
  .timeline-line-svg {
    width: 2px;
    height: 100%;
    top: 0;
    left: 24px;
  }

  .timeline-steps {
    flex-direction: column;
    gap: 3rem;
  }

  .step-node {
    width: 100%;
    padding-left: 5rem;
    padding-right: 0;
    position: relative;
  }

  .node-circle {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }
}

/* SECTION 08: Stats Strip */
.stats {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.stat-col {
  padding: 4rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-col:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-col:nth-child(2) {
    border-right: none;
  }

  .stat-col:nth-child(1),
  .stat-col:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}

/* SECTION 09: About */
.about {
  padding: 150px 0;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.about-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 30vw;
  font-weight: 700;
  color: #FFFFFF;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  position: relative;
  z-index: 1;
}

.about-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
}

.about-right p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.btn-primary {
  display: inline-flex;
  background-color: var(--accent);
  color: #000000;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 0;
  /* Consistent with brand */
  transition: transform var(--transition-hover), background-color var(--transition-hover);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: white;
}

.mt-6 {
  margin-top: 2rem;
}

.mt-8 {
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* SECTION 10: Testimonials */
.testimonials {
  padding: 120px 0;
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.slider-wrapper {
  margin-top: 4rem;
  padding: 2rem 4vw 4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
}

.slider-wrapper::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.slider-track {
  display: flex;
  gap: 2rem;
  width: max-content;
}

.testimonial-card {
  width: clamp(300px, 80vw, 400px);
  scroll-snap-align: center;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
  user-select: none;
  transition: background-color 0.4s ease, transform 0.4s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  background: linear-gradient(135deg, #EFC383 0%, #C9975A 100%);
  border-color: transparent;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(239, 195, 131, 0.2);
}

.testimonial-card:hover .quote,
.testimonial-card:hover .client-info strong,
.testimonial-card:hover .client-info span,
.testimonial-card:hover .stars {
  color: #FFFFFF;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
  width: 100px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  flex-grow: 1;
}

.client-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.client-info .muted {
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 85vw;
  }
}

/* SECTION 11: Contact */
.contact {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.contact-watermark {
  position: absolute;
  bottom: 1vw;
  right: -5vw;
  width: 75vw;
  height: auto;
  opacity: 0.15;
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 0;
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 3rem;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.text-link {
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 4px;
}

.text-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.text-link:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  color: var(--text-muted);
  transition: color var(--transition-hover), transform var(--transition-hover);
}

.social-icon:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* SECTION 12: Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background-color: var(--bg-primary);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  transition: color var(--transition-hover);
}

.back-to-top .arrow {
  transition: transform var(--transition-hover);
}

.back-to-top:hover {
  color: var(--text-primary);
}

.back-to-top:hover .arrow {
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Fallback Logo Floating Animation if GSAP is disabled */
@keyframes floatBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.logo-float-fallback {
  animation: floatBob 2.4s ease-in-out infinite !important;
}