@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* =========================================
   DESIGN TOKENS & CSS VARIABLES
========================================= */
:root {
  --bg-primary: #060913;
  --bg-secondary: #0d1222;
  --bg-tertiary: #13192c;
  --bg-card: rgba(19, 25, 44, 0.75);

  --accent-gold: #d4af37;
  --accent-gold-rgb: 212, 175, 55;
  --accent-gold-hover: #e5c158;
  --accent-blue: #1e295d;
  --accent-blue-light: #2d3b7d;

  --text-primary: #f9fafb;
  --text-secondary: #a1a8b9;
  --text-muted: #6b7280;

  --border-gold: rgba(212, 175, 55, 0.15);
  --border-gold-focus: rgba(212, 175, 55, 0.4);
  --border-muted: rgba(255, 255, 255, 0.06);

  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;

  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold-glow: 0 0 25px rgba(212, 175, 55, 0.15), 0 0 60px rgba(212, 175, 55, 0.05);

  --header-height: 80px;
}

/* =========================================
   BASE RESET
========================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) var(--bg-primary);
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p { color: var(--text-secondary); font-size: 1rem; }
a { text-decoration: none; }

/* =========================================
   TYPOGRAPHY UTILITIES
========================================= */
.text-gold {
  color: var(--accent-gold);
  background: linear-gradient(135deg, #f3c63f 0%, var(--accent-gold) 50%, #b8901e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  font-weight: 900;
  background: linear-gradient(180deg, #ffffff 30%, #a1a8b9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
}
.learn-more-link:hover { gap: 1rem; }

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b8901e 100%);
  color: var(--bg-primary);
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-gold-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-gold);
}
.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* =========================================
   THREE.JS CANVAS
========================================= */
.three-bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* =========================================
   GLOW BACKGROUND
========================================= */
.glow-bg {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 41, 93, 0.12) 0%, rgba(212, 175, 55, 0.04) 50%, transparent 70%);
  top: -15%;
  right: -10%;
  pointer-events: none;
  z-index: 1;
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(6, 9, 19, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-muted);
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  background: rgba(6, 9, 19, 0.95);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--accent-blue);
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  position: relative;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-gold);
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

nav a:hover, nav a.active { color: var(--text-primary); }
nav a:hover::after, nav a.active::after { width: 100%; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
}

/* =========================================
   SECTIONS GENERAL
========================================= */
section {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(30, 41, 93, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 45%);
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 950px;
  z-index: 10;
  position: relative;
}

.hero-tagline {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(40px);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 3rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.6s infinite ease-out;
}

@keyframes scroll-wheel {
  0% { top: 8px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
  100% { top: 8px; opacity: 1; }
}

/* =========================================
   INTRO SECTION
========================================= */
.intro-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.intro-text p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.services-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 1.8rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.pillar-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold-glow);
}

.pillar-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
  transition: var(--transition-fast);
}

.pillar-card:hover .pillar-icon {
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.pillar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pillar-card p {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* =========================================
   STATS
========================================= */
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-muted);
}

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

.stat-number {
  font-family: var(--font-headings);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

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

/* =========================================
   HORIZONTAL SCROLL SERVICES (INDEX PAGE)
========================================= */
.horizontal-scroll-container {
  position: relative;
  overflow: visible;
  background-color: var(--bg-primary);
  padding: 0;
}

.scroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 500vw;
  height: 100vh;
  will-change: transform;
}

.slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 6vw;
  position: relative;
  border-right: 1px solid var(--border-muted);
  background-color: var(--bg-primary);
}

.slide:nth-child(even) { background-color: var(--bg-secondary); }

.slide-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-muted);
  padding-bottom: 1.5rem;
}

.slide-title-area {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slide-number {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}

.slide-title {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  text-transform: uppercase;
  font-weight: 900;
}

.slide-desc {
  max-width: 450px;
  color: var(--text-secondary);
  font-size: 1rem;
  text-align: right;
  line-height: 1.6;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  flex-grow: 1;
  max-height: 55vh;
}

.project-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.project-bg-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
  z-index: 1;
}

.project-bg-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 9, 19, 0.95) 10%, rgba(6, 9, 19, 0.4) 60%, rgba(6, 9, 19, 0.1) 100%);
  z-index: 2;
}

.project-bg-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
  background-size: 25px 25px;
  z-index: 2;
  transition: var(--transition-smooth);
}

.project-card:hover .project-bg-placeholder { transform: scale(1.08); }
.project-card:hover .project-bg-placeholder::after { opacity: 0.3; }
.project-card:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-gold-glow); }

.project-info { position: relative; z-index: 3; }

.project-tag {
  font-family: var(--font-headings);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.project-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.3;
}

/* Service gradient backgrounds */
.steel-bg-1 { background: radial-gradient(circle at center, #1b263b 0%, #0d1b2a 100%); }
.steel-bg-2 { background: radial-gradient(circle at center, #2c3e50 0%, #1a252f 100%); }
.steel-bg-3 { background: radial-gradient(circle at center, #34495e 0%, #2c3e50 100%); }
.glass-bg-1 { background: radial-gradient(circle at center, #118ab2 0%, #073b4c 100%); }
.glass-bg-2 { background: radial-gradient(circle at center, #00b4d8 0%, #0077b6 100%); }
.glass-bg-3 { background: radial-gradient(circle at center, #90e0ef 0%, #0096c7 100%); }
.interior-bg-1 { background: radial-gradient(circle at center, #4a3b32 0%, #2c1e15 100%); }
.interior-bg-2 { background: radial-gradient(circle at center, #5c4d3c 0%, #3e3225 100%); }
.interior-bg-3 { background: radial-gradient(circle at center, #8d7b68 0%, #5c4d3c 100%); }
.branding-bg-1 { background: radial-gradient(circle at center, #8338ec 0%, #3a0ca3 100%); }
.branding-bg-2 { background: radial-gradient(circle at center, #ff006e 0%, #c70039 100%); }
.branding-bg-3 { background: radial-gradient(circle at center, #3a86c8 0%, #1d3557 100%); }
.event-bg-1 { background: radial-gradient(circle at center, #ffb703 0%, #fb8500 100%); }
.event-bg-2 { background: radial-gradient(circle at center, #ff4d6d 0%, #a4133c 100%); }
.event-bg-3 { background: radial-gradient(circle at center, #7209b7 0%, #3f0713 100%); }

/* =========================================
   WHY CHOOSE US
========================================= */
.why-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.why-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.why-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.why-num {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  padding-top: 0.2rem;
}

.why-item-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-item-content p { font-size: 0.95rem; }

/* =========================================
   VALUES GRID (About / Why Us pages)
========================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: rgba(13, 18, 34, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.value-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold-glow);
}

/* =========================================
   CREW CARD
========================================= */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.crew-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  padding: 1.5rem;
  background: rgba(13, 18, 34, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.crew-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold-glow);
}

.crew-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-muted);
  background: linear-gradient(135deg, #0f1626 0%, #1e295d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.crew-card::before, .crew-card::after,
.crew-frame::before, .crew-frame::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid var(--accent-gold);
  z-index: 5;
}
.crew-card::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.crew-card::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.crew-placeholder-content { text-align: center; padding: 2rem; z-index: 3; }
.crew-placeholder-icon { font-size: 3rem; color: var(--accent-gold); margin-bottom: 1rem; }
.crew-placeholder-title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.crew-placeholder-desc { font-size: 0.85rem; color: var(--text-secondary); }
.crew-details { margin-top: 2rem; text-align: center; }
.crew-title { font-size: 1.15rem; text-transform: uppercase; margin-bottom: 0.3rem; }
.crew-sub { font-size: 0.85rem; color: var(--accent-gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* =========================================
   MISSION / VISION
========================================= */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  background: rgba(212, 175, 55, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.mv-card:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold-glow);
}

/* =========================================
   CONTACT
========================================= */
.contact-section {
  background-color: var(--bg-primary);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.contact-info-panel p { margin-bottom: 3rem; }

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.contact-detail-text h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.contact-detail-text p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-detail-text a { color: var(--text-primary); text-decoration: none; transition: var(--transition-fast); }
.contact-detail-text a:hover { color: var(--accent-gold); }

.contact-form-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.contact-form-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold-glow);
}

.form-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-muted);
  padding-bottom: 1rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  background: rgba(6, 9, 19, 0.6);
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  padding: 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(6, 9, 19, 0.9);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.08);
}

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

/* =========================================
   CTA STRIP
========================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(30, 41, 93, 0.25) 50%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.cta-strip p {
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* =========================================
   FOOTER
========================================= */
footer {
  background: linear-gradient(180deg, #03050a 0%, #060913 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2.5rem 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-muted);
}

.footer-brand .logo { margin-bottom: 1.5rem; display: inline-flex; }

.footer-brand-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 0.75rem; }

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-muted);
  color: var(--text-secondary);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-headings);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.footer-col h5 {
  font-family: var(--font-headings);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-gold);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  margin-right: 0;
  transition: width 0.25s ease, margin-right 0.25s ease;
  flex-shrink: 0;
}

.footer-col ul li a:hover { color: var(--accent-gold); padding-left: 4px; }
.footer-col ul li a:hover::before { width: 12px; margin-right: 6px; }

.footer-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.footer-contact-icon { font-size: 1rem; color: var(--accent-gold); margin-top: 2px; flex-shrink: 0; }

.footer-contact-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.footer-contact-text a { color: var(--text-secondary); text-decoration: none; transition: var(--transition-fast); }
.footer-contact-text a:hover { color: var(--accent-gold); }

.footer-bottom {
  padding: 1.8rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom-copy span { color: var(--accent-gold); font-weight: 600; }

.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.82rem; text-decoration: none; transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--accent-gold); }

.footer-badge {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* =========================================
   SCROLL TO TOP
========================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: rgba(13, 18, 34, 0.85);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: var(--accent-gold);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
  font-size: 1.1rem;
}

.scroll-top-btn.visible { opacity: 1; visibility: visible; }

.scroll-top-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* =========================================
   INNER PAGE BANNER
========================================= */
.page-banner {
  padding: 160px 5% 80px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-muted);
  position: relative;
  overflow: hidden;
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-banner h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.page-banner p { font-size: 1.1rem; color: var(--text-secondary); }

.page-banner-breadcrumb {
  display: inline-block;
  color: var(--accent-gold);
  font-family: var(--font-body);
  letter-spacing: 2px;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* =========================================
   CURSOR OVERRIDES
========================================= */
* { cursor: default; }
a, button, .btn, .mobile-menu-btn, .scroll-top-btn { cursor: pointer; }
.cursor, .custom-cursor, .cursor-dot, .mouse-cursor {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* =========================================
   GSAP HORIZONTAL SCROLL — DESKTOP ONLY
========================================= */
@media (min-width: 1025px) {
  .horizontal-scroll-container {
    height: 100vh;
    overflow: hidden;
  }
}

/* =====================================================
   RESPONSIVE — TABLET  (max-width: 1024px)
===================================================== */
@media (max-width: 1024px) {

  /* ── Mobile Navigation Overlay ── */
  nav {
    position: fixed;
    top: var(--header-height);
    left: 100%;              /* hidden off-screen to the right */
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(6, 9, 19, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-muted);
    z-index: 999;             /* ← KEY FIX: above page sections (z-index: 2) but below header (z-index: 1000) */
  }

  nav.active { left: 0; }   /* slide in */

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  nav a { font-size: 1.3rem; }

  .mobile-menu-btn { display: block; }
  .header-cta-btn  { display: none;  }

  section { padding: 6rem 1.5rem; }

  .intro-grid, .why-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .scroll-wrapper {
    flex-direction: column;
    width: 100% !important;
    height: auto;
    transform: none !important;
  }

  .slide {
    width: 100%;
    height: auto;
    padding: 6rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--border-muted);
  }

  .slide-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .slide-desc { text-align: left; max-width: 100%; }

  .project-grid {
    grid-template-columns: 1fr;
    max-height: none;
    gap: 1.5rem;
  }

  .project-card { height: 250px; padding: 1.5rem; }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
  }

  .stat-number { font-size: 3rem; }

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

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

/* =====================================================
   RESPONSIVE — MOBILE  (max-width: 768px)
===================================================== */
@media (max-width: 768px) {

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

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

  .contact-form-card { padding: 1.8rem; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand { grid-column: 1 / -1; }

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

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

  /* Force ALL inline-styled grids to single column */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* =====================================================
   RESPONSIVE — SMALL MOBILE  (max-width: 480px)
===================================================== */
@media (max-width: 480px) {

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

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

  .footer-bottom-links { flex-direction: column; align-items: center; gap: 1rem; }
}
