/* ═══════════════════════════════════════════════════════
   SHEKHAR CONSTRUCTIONS — Design System
   Premium Real Estate • Mobile-First • Minimalistic
   ═══════════════════════════════════════════════════════ */

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

/* ── CSS Custom Properties ── */
:root {
  /* Colors — Warm luxury palette */
  --clr-bg-deep:       #0A0A0A;
  --clr-bg:            #111111;
  --clr-bg-card:       #1A1A1A;
  --clr-bg-elevated:   #222222;
  --clr-surface:       rgba(255, 255, 255, 0.04);
  --clr-surface-hover: rgba(255, 255, 255, 0.08);

  --clr-text:          #F5F0EB;
  --clr-text-muted:    #9A9590;
  --clr-text-subtle:   #6B6560;

  --clr-accent:        #C9A96E;
  --clr-accent-light:  #E0C992;
  --clr-accent-dark:   #A68B52;

  --clr-white:         #FFFFFF;
  --clr-black:         #000000;

  /* Glass */
  --glass-bg:          rgba(20, 20, 20, 0.65);
  --glass-border:      rgba(255, 255, 255, 0.08);
  --glass-blur:        20px;

  /* Typography */
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-body:     'Inter', -apple-system, sans-serif;
  --ff-heading:  'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(201, 169, 110, 0.15);

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    200ms;
  --dur-normal:  400ms;
  --dur-slow:    700ms;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-bg-deep);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ══════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--clr-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--clr-accent);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-lg);
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: var(--clr-bg-elevated);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--clr-accent);
  border-radius: var(--radius-full);
  animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

@keyframes preloaderSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.65rem var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(18, 18, 20, 0.78), rgba(31, 31, 34, 0.58));
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  transition: background var(--dur-normal) var(--ease-out), padding var(--dur-normal) var(--ease-out);
}

.nav.scrolled {
  background: linear-gradient(135deg, rgba(10, 10, 12, 0.9), rgba(26, 26, 28, 0.76));
  border-bottom-color: rgba(255, 255, 255, 0.28);
  padding: 0.5rem var(--space-lg);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-brand-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 11px;
  background: #050505;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.nav-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.48);
  letter-spacing: 0.04em;
}

.nav-brand-tagline {
  font-family: var(--ff-heading);
  font-size: 0.55rem;
  font-weight: 400;
  color: #f0d296;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.48);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* Desktop nav links - hidden on mobile */
.nav-links {
  display: none;
  list-style: none;
  gap: var(--space-xl);
  align-items: center;
}

.nav-links a {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: width var(--dur-normal) var(--ease-out);
}

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

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

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-white);
  transition: all var(--dur-normal) var(--ease-out);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-slow) var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  transform: translateY(30px);
  opacity: 0;
  transition: all var(--dur-slow) var(--ease-out),
              color var(--dur-fast);
}

.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.open a:nth-child(8) { transition-delay: 0.45s; }

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--clr-accent);
}

/* ══════════════════════════════════════════
   HERO SLIDESHOW
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: min(100dvh, 54rem);
  min-height: 42rem;
  background: #17130a;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: none;
}

.hero-slide.active img {
  transform: none;
}

/* Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.46));
  z-index: 2;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

.stat-number-text {
  font-size: clamp(1.35rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
}

/* Hero Content */
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: var(--space-3xl) var(--space-lg) var(--space-4xl);
  text-align: left;
}

.hero-label {
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--clr-accent);
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.hero-title em {
  font-style: italic;
  color: var(--clr-accent-light);
}

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--clr-text-muted);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

/* Slide indicators */
.hero-indicators {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.hero-indicator {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-out);
  overflow: hidden;
  position: relative;
}

.hero-indicator.active {
  width: 56px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-indicator.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-accent);
  border-radius: var(--radius-full);
  animation: indicatorFill 5s linear forwards;
}

@keyframes indicatorFill {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

/* Scroll down indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-text {
  font-family: var(--ff-heading);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-subtle);
}

.hero-scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--clr-accent), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 680px) {
  .hero {
    height: auto;
    min-height: 39rem;
  }

  .hero-slide img {
    object-position: 62% center;
  }

  .hero-content {
    padding-bottom: 5rem;
    background: linear-gradient(to top, rgba(0,0,0,.88), transparent 65%);
  }
}

/* ══════════════════════════════════════════
   SECTION COMMON
   ══════════════════════════════════════════ */
.section {
  padding: var(--space-4xl) var(--space-lg);
  position: relative;
}

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-label {
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--clr-accent);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--clr-white);
}

.section-title em {
  font-style: italic;
  color: var(--clr-accent-light);
}

.section-desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-top: var(--space-md);
}

/* ══════════════════════════════════════════
   ABOUT / STATS STRIP
   ══════════════════════════════════════════ */
.stats-strip {
  background: var(--clr-bg);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-intro {
  max-width: 680px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.stats-intro .section-label {
  justify-content: center;
}

.stats-intro .section-desc {
  margin-inline: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.stat-item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 600;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

/* ══════════════════════════════════════════
   ONGOING PROJECTS
   ══════════════════════════════════════════ */
.journey {
  background: linear-gradient(180deg, #0d0d0d, #15130f);
}

.timeline {
  position: relative;
  display: grid;
  gap: var(--space-lg);
}

.timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 59px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--clr-accent), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 24px 1fr;
  gap: var(--space-sm);
  align-items: start;
  position: relative;
}

.timeline-year {
  color: var(--clr-accent-light);
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-top: 2px;
}

.timeline-marker {
  width: 12px;
  height: 12px;
  margin: 4px auto 0;
  border: 2px solid var(--clr-accent);
  border-radius: 50%;
  background: var(--clr-bg-deep);
  z-index: 1;
}

.timeline-item:last-child .timeline-marker { background: var(--clr-accent); box-shadow: 0 0 0 5px rgba(201,169,110,0.12); }

.timeline-content {
  padding: 0 0 var(--space-lg) var(--space-md);
}

.timeline-content span {
  color: var(--clr-accent);
  font-family: var(--ff-heading);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin: 3px 0 var(--space-xs);
  color: var(--clr-white);
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.timeline-content p, .timeline-note, .partners-note {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.timeline-note {
  max-width: 600px;
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  border-left: 2px solid var(--clr-accent);
  background: rgba(201,169,110,0.06);
}

.projects {
  background: var(--clr-bg-deep);
}

.projects-scroll {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-lg);
  scrollbar-width: none;
}

.projects-scroll::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 85%;
  max-width: 380px;
  scroll-snap-align: start;
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: transform var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.project-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.project-card:hover .project-card-img img {
  transform: scale(1.05);
}

.project-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

.project-card-body {
  padding: var(--space-lg);
}

.project-card-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.project-card-location {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.project-card-location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.project-card-specs {
  display: flex;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--glass-border);
}

.project-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.project-spec-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-subtle);
}

.project-spec-value {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
}

.project-card-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  transition: gap var(--dur-normal) var(--ease-out);
}

.project-card-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-normal) var(--ease-out);
}

.project-card:hover .project-card-cta svg {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════ */
.services {
  background: var(--clr-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  padding: 0 0 var(--space-xl);
  background: linear-gradient(145deg, var(--clr-bg-card), #151515);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-normal) var(--ease-out);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), transparent);
  opacity: 0;
  transition: opacity var(--dur-normal) var(--ease-out);
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateY(-2px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-media {
  height: 190px;
  overflow: hidden;
  margin-bottom: var(--space-lg);
  background: var(--clr-bg-elevated);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 var(--space-xl) var(--space-sm);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin: 0 var(--space-xl);
}

/* ══════════════════════════════════════════
   ENQUIRY SECTION
   ══════════════════════════════════════════ */
.leadership {
  background: #111;
}

.leaders-grid {
  display: grid;
  gap: var(--space-md);
}

.leader-card {
  position: relative;
  min-height: 272px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #242019, #171717 60%);
}

.leader-card:nth-child(2) { background: linear-gradient(145deg, #251f1d, #171717 60%); }
.leader-card:nth-child(3) { background: linear-gradient(145deg, #172126, #171717 60%); }

.leader-card::before {
  content: '“';
  position: absolute;
  top: -38px;
  right: 14px;
  color: rgba(201,169,110,0.16);
  font-family: var(--ff-display);
  font-size: 11rem;
  line-height: 1;
}

.leader-index {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  color: var(--clr-accent);
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.leader-quote {
  position: relative;
  margin-bottom: var(--space-lg);
  color: var(--clr-text);
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.45;
}

.leader-name { color: var(--clr-white); font-family: var(--ff-heading); font-weight: 600; }
.leader-role { margin-top: 3px; color: var(--clr-accent-light); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }

.leadership-closing {
  max-width: 760px;
  margin: var(--space-2xl) auto 0;
  padding: var(--space-xl);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius-md);
  color: var(--clr-text);
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

.partners {
  background: var(--clr-bg-deep);
}

.partners-grid {
  display: grid;
  gap: var(--space-md);
}

.partner-card {
  min-height: 180px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: var(--clr-bg-card);
}

.partner-logo-placeholder {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(201,169,110,0.45);
  border-radius: 50%;
  color: var(--clr-accent-light);
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.partner-card h3 { color: var(--clr-white); font-family: var(--ff-display); font-size: 1.15rem; font-weight: 500; }
.partner-card p { margin-top: 3px; color: var(--clr-text-muted); font-size: 0.8rem; }
.partners-note { margin-top: var(--space-lg); text-align: center; }

.enquiry {
  background: var(--clr-bg-deep);
  position: relative;
  overflow: hidden;
}

.enquiry::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06), transparent 70%);
  pointer-events: none;
}

.enquiry-form-wrapper {
  background: var(--clr-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
}

.enquiry-type-toggle {
  display: flex;
  background: var(--clr-bg-deep);
  border-radius: var(--radius-full);
  padding: 3px;
  margin-bottom: var(--space-xl);
  position: relative;
}

.enquiry-type-btn {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  border-radius: var(--radius-full);
  transition: all var(--dur-normal) var(--ease-out);
  text-align: center;
  z-index: 1;
}

.enquiry-type-btn.active {
  color: var(--clr-bg-deep);
  background: var(--clr-accent);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--clr-bg-deep);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-text-subtle);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239A9590' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6 6.5-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: var(--space-2xl);
  cursor: pointer;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.btn-submit {
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  background: var(--clr-accent);
  color: var(--clr-bg-deep);
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--dur-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.btn-submit:hover {
  background: var(--clr-accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit:active {
  transform: translateY(0);
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--clr-accent);
}

.form-success h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.form-success p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

/* ══════════════════════════════════════════
   TESTIMONIAL / BRAND STRIP
   ══════════════════════════════════════════ */
.brand-strip {
  background: var(--clr-bg);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
}

.brand-strip-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--clr-text);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.5;
}

.brand-strip-author {
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--clr-black);
  padding: var(--space-3xl) var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: color var(--dur-fast);
}

.footer-col a:hover {
  color: var(--clr-accent);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--clr-text-subtle);
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--clr-text-muted);
  transition: all var(--dur-normal) var(--ease-out);
}

.footer-social-link:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

/* ══════════════════════════════════════════
   MOBILE STICKY ACTION BAR
   ══════════════════════════════════════════ */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-border);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  gap: var(--space-sm);
  transform: translateY(100%);
  transition: transform var(--dur-normal) var(--ease-out);
}

.mobile-action-bar.visible {
  transform: translateY(0);
}

.action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--dur-fast);
}

.action-btn svg {
  width: 16px;
  height: 16px;
}

.action-btn-call {
  background: var(--clr-accent);
  color: var(--clr-bg-deep);
}

.action-btn-whatsapp {
  background: #25D366;
  color: var(--clr-white);
}

.action-btn-enquire {
  background: var(--clr-white);
  color: var(--clr-bg-deep);
}

/* ══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Scale-in variant */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

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

/* ══════════════════════════════════════════
   DESKTOP BREAKPOINTS
   ══════════════════════════════════════════ */
@media (min-width: 768px) {
  .section {
    padding: var(--space-4xl) var(--space-2xl);
  }

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

  .timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
  }

  .timeline::before {
    top: 35px;
    bottom: auto;
    left: 9%;
    right: 9%;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--clr-accent), transparent);
  }

  .timeline-item {
    display: block;
    text-align: center;
  }

  .timeline-year { padding: 0; }
  .timeline-marker { margin: var(--space-sm) auto var(--space-lg); }
  .timeline-content { padding: 0; }
  .timeline-content h3 { font-size: 1.1rem; }
  .timeline-content p { font-size: 0.8rem; }

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

  .project-card {
    flex: 0 0 45%;
    max-width: 420px;
  }

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .mobile-action-bar {
    display: none;
  }
}

@media (min-width: 1024px) {
  .nav {
    padding: var(--space-md) var(--space-2xl);
  }

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

  .nav.scrolled {
    padding: var(--space-sm) var(--space-2xl);
  }

  .nav-links {
    display: flex;
    gap: 0.9rem;
  }

  .nav-hamburger {
    display: none;
  }

  .section {
    padding: var(--space-4xl) var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
  }

  .stats-strip .section {
    max-width: 1200px;
    margin: 0 auto;
  }

  .project-card {
    flex: 0 0 30%;
  }

  .enquiry-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    padding: var(--space-2xl);
  }

  .hero-content {
    padding: var(--space-4xl) var(--space-3xl);
    max-width: 700px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (min-width: 1200px) {
  .nav-links a { font-size: 0.72rem; letter-spacing: 0.06em; }
}

@media (min-width: 1280px) {
  .section {
    max-width: 1300px;
  }
}

/* ══════════════════════════════════════════
   SMOOTH SCROLL-DOWN EXPERIENCE
   ══════════════════════════════════════════ */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* Section divider */
.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-accent), transparent);
  margin: var(--space-2xl) auto;
}
