/* ============================================
   RAWAN HOMES - CONSTRUCTION THEME
   Animated Blueprint & Building Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* Premium Color Palette */
  --gold: #d4af37;
  --gold-light: #f4e4bc;
  --gold-glow: rgba(212, 175, 55, 0.6);
  --black: #0a0a0a;
  --charcoal: #111111;
  --charcoal-light: #1a1a1a;
  --blueprint: #0a1628;
  --blueprint-line: rgba(100, 180, 255, 0.15);
  --white: #ffffff;
  --text-light: rgba(255,255,255,0.95);
  --text-muted: rgba(255,255,255,0.75);
  --text-dark: #333333;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

/* ============================================
   ANIMATED CONSTRUCTION BACKGROUND
   Blueprint Grid + Floating Buildings
   ============================================ */

/* Main animated background container */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: var(--blueprint);
}

/* Blueprint grid pattern */
.animated-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(rgba(100, 180, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 180, 255, 0.05) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

/* Floating building silhouettes */
.building {
  position: absolute;
  bottom: -200px;
  opacity: 0.08;
  animation: floatUp 25s linear infinite;
}

.building-1 {
  left: 5%;
  width: 80px;
  height: 200px;
  background: linear-gradient(to top, var(--gold), transparent);
  clip-path: polygon(10% 100%, 10% 20%, 30% 20%, 30% 0%, 70% 0%, 70% 20%, 90% 20%, 90% 100%);
  animation-delay: 0s;
  animation-duration: 30s;
}

.building-2 {
  left: 20%;
  width: 60px;
  height: 280px;
  background: linear-gradient(to top, var(--gold), transparent);
  clip-path: polygon(0% 100%, 0% 10%, 50% 0%, 100% 10%, 100% 100%);
  animation-delay: 5s;
  animation-duration: 35s;
}

.building-3 {
  left: 40%;
  width: 100px;
  height: 350px;
  background: linear-gradient(to top, var(--gold), transparent);
  clip-path: polygon(20% 100%, 20% 30%, 0% 30%, 50% 0%, 100% 30%, 80% 30%, 80% 100%);
  animation-delay: 2s;
  animation-duration: 40s;
}

.building-4 {
  left: 60%;
  width: 70px;
  height: 220px;
  background: linear-gradient(to top, var(--gold), transparent);
  clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 100% 100%, 80% 100%, 80% 20%, 20% 20%, 20% 100%);
  animation-delay: 8s;
  animation-duration: 28s;
}

.building-5 {
  left: 80%;
  width: 90px;
  height: 300px;
  background: linear-gradient(to top, var(--gold), transparent);
  clip-path: polygon(15% 100%, 15% 40%, 0% 40%, 0% 20%, 100% 20%, 100% 40%, 85% 40%, 85% 100%);
  animation-delay: 12s;
  animation-duration: 32s;
}

.building-6 {
  left: 35%;
  width: 50px;
  height: 180px;
  background: linear-gradient(to top, rgba(255,255,255,0.3), transparent);
  clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 100% 100%);
  animation-delay: 15s;
  animation-duration: 25s;
}

.building-7 {
  left: 70%;
  width: 120px;
  height: 400px;
  background: linear-gradient(to top, var(--gold), transparent);
  clip-path: polygon(30% 100%, 30% 20%, 0% 20%, 50% 0%, 100% 20%, 70% 20%, 70% 100%);
  animation-delay: 3s;
  animation-duration: 45s;
}

.building-8 {
  left: 15%;
  width: 65px;
  height: 250px;
  background: linear-gradient(to top, rgba(255,255,255,0.2), transparent);
  clip-path: polygon(0% 100%, 0% 15%, 40% 15%, 40% 0%, 60% 0%, 60% 15%, 100% 15%, 100% 100%);
  animation-delay: 20s;
  animation-duration: 38s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.08;
  }
  90% {
    opacity: 0.08;
  }
  100% {
    transform: translateY(-120vh) rotate(2deg);
    opacity: 0;
  }
}

/* Floating construction elements */
.crane {
  position: absolute;
  width: 3px;
  height: 150px;
  background: var(--gold);
  opacity: 0.1;
  animation: craneSway 8s ease-in-out infinite;
}

.crane::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50px;
  width: 100px;
  height: 3px;
  background: var(--gold);
}

.crane::after {
  content: '';
  position: absolute;
  top: 0;
  right: -2px;
  width: 2px;
  height: 80px;
  background: var(--gold);
  transform-origin: top;
  animation: cableSwing 4s ease-in-out infinite;
}

.crane-1 {
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.crane-2 {
  top: 30%;
  left: 10%;
  transform: scaleX(-1);
  animation-delay: 2s;
}

@keyframes craneSway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

@keyframes cableSwing {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* Geometric shapes floating */
.geo-shape {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.2);
  animation: floatRotate 20s linear infinite;
}

.geo-1 {
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  animation-duration: 25s;
}

.geo-2 {
  top: 60%;
  right: 20%;
  width: 60px;
  height: 60px;
  transform: rotate(45deg);
  animation-duration: 30s;
  animation-delay: 5s;
}

.geo-3 {
  top: 40%;
  left: 60%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation-duration: 35s;
  animation-delay: 10s;
}

.geo-4 {
  bottom: 30%;
  left: 30%;
  width: 120px;
  height: 120px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  background: rgba(212, 175, 55, 0.03);
  border: none;
  animation-duration: 40s;
}

@keyframes floatRotate {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(20px, -30px) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translate(-10px, -20px) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    transform: translate(30px, 10px) rotate(270deg);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
    opacity: 0.3;
  }
}

/* Blueprint measurement lines */
.measure-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  animation: measurePulse 3s ease-in-out infinite;
}

.measure-line::before,
.measure-line::after {
  content: '';
  position: absolute;
  top: -5px;
  width: 1px;
  height: 11px;
  background: rgba(212,175,55,0.3);
}

.measure-line::before { left: 20%; }
.measure-line::after { right: 20%; }

.measure-1 {
  top: 25%;
  left: 5%;
  width: 200px;
  animation-delay: 0s;
}

.measure-2 {
  top: 55%;
  right: 10%;
  width: 150px;
  animation-delay: 1s;
}

.measure-3 {
  bottom: 35%;
  left: 20%;
  width: 180px;
  animation-delay: 2s;
}

@keyframes measurePulse {
  0%, 100% { opacity: 0.3; transform: scaleX(1); }
  50% { opacity: 0.6; transform: scaleX(1.1); }
}

/* ============================================
   ANIMATED LOADER
   ============================================ */
.loader {
  background: var(--blueprint) !important;
  position: fixed;
  z-index: 999999;
}

.spinner {
  position: relative;
}

.spinner::before {
  content: 'RAWAN HOMES';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 8px;
  color: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}

.spinner .double-bounce1,
.spinner .double-bounce2 {
  background: var(--gold) !important;
  box-shadow: 0 0 30px var(--gold-glow);
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-container {
  position: fixed !important;
  width: 100%;
  z-index: 9999;
}

nav.top-bar {
  background: rgba(10, 22, 40, 0.9) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 15px 0 !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.top-bar.nav-sticky {
  background: rgba(10, 22, 40, 0.98) !important;
  padding: 10px 0 !important;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

nav.top-bar.nav-sticky .logo {
  max-height: 140px !important;
}

.logo {
  max-height: 250px !important;
  height: auto;
  width: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 15px rgba(212,175,55,0.4));
}

nav .logo {
  max-height: 220px !important;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 25px rgba(212,175,55,0.6));
}

footer .logo {
  max-height: 100px !important;
}

.menu {
  display: flex;
  align-items: center;
}

.menu li {
  position: relative;
  margin: 0 5px;
}

.menu li a {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
  padding: 15px 25px !important;
  position: relative;
  transition: all 0.4s ease;
}

.menu li a::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.menu li a:hover {
  color: var(--gold) !important;
}

.menu li a:hover::before {
  transform: scaleX(1);
}

.mobile-toggle i {
  color: var(--gold) !important;
  font-size: 28px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-slider {
  height: 100vh !important;
  min-height: 700px;
  position: relative;
}

.hero-slider .slides li {
  height: 100vh !important;
}

.hero-slider .slides li.overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 22, 40, 0.9) 0%,
    rgba(10, 22, 40, 0.7) 50%,
    rgba(212, 175, 55, 0.1) 100%);
  z-index: 1;
}

.hero-slider .align-vertical {
  z-index: 10;
  position: relative;
}

.hero-slider h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(3rem, 6vw, 5.5rem) !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  color: var(--white) !important;
  opacity: 0;
  animation: slideUp 1s ease 0.3s forwards;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-slider h1::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.hero-slider p {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  opacity: 0;
  animation: slideUp 1s ease 0.5s forwards;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.hero-slider .btn {
  opacity: 0;
  animation: slideUp 1s ease 0.7s forwards;
}

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

/* Scroll indicator */
.hero-slider::after {
  content: 'SCROLL';
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  z-index: 10;
  animation: bounce 2s ease-in-out infinite;
}

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

/* FlexSlider Controls */
.flex-direction-nav a {
  width: 60px !important;
  height: 60px !important;
  background: rgba(212, 175, 55, 0.1) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 0 !important;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.flex-direction-nav a:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.flex-control-nav li a {
  background: rgba(255,255,255,0.3) !important;
  width: 50px !important;
  height: 3px !important;
  border-radius: 0 !important;
}

.flex-control-nav li a.flex-active {
  background: var(--gold) !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  padding: 18px 40px !important;
  border-radius: 0 !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gold) !important;
  border: 2px solid var(--gold) !important;
  color: var(--black) !important;
}

.btn-primary:hover {
  background: transparent !important;
  color: var(--gold) !important;
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.btn-white {
  background: transparent !important;
  border: 2px solid var(--white) !important;
  color: var(--white) !important;
}

.btn-white:hover {
  background: var(--white) !important;
  color: var(--black) !important;
}

.btn-outline-gold {
  background: transparent !important;
  border: 2px solid var(--gold) !important;
  color: var(--gold) !important;
}

.btn-outline-gold:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 40s linear infinite;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.marquee-content span {
  margin: 0 40px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: #111111 !important;
  padding: 100px 0;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  clear: both;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.3), transparent);
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(212,175,55,0.3);
  display: block;
}

.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff !important;
  display: block;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header .overline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 25px;
  display: block;
  font-weight: 600;
}

.section-header h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
  font-weight: 400 !important;
  color: var(--white) !important;
  line-height: 1.2;
  margin-bottom: 30px;
}

.section-header p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.9;
  color: #ffffff !important;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.85;
}

/* ============================================
   FEATURE SELECTOR
   ============================================ */
.feature-selector {
  background: #1a1a1a !important;
  padding: 120px 0 !important;
}

.feature-selector .section-header h2,
.feature-selector .section-header p {
  color: #ffffff !important;
}

.feature-selector .section-header .overline {
  color: #d4af37 !important;
}

.selector-tabs {
  background: transparent !important;
  border: none !important;
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 80px;
}

.selector-tabs li {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  padding: 40px 30px !important;
  transition: all 0.4s ease;
  cursor: pointer;
  flex: 1;
  max-width: 260px;
  position: relative;
}

.selector-tabs li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.selector-tabs li:hover,
.selector-tabs li.active {
  background: rgba(212,175,55,0.05) !important;
  border-color: rgba(212,175,55,0.2) !important;
}

.selector-tabs li:hover::before,
.selector-tabs li.active::before {
  transform: scaleX(1);
}

.selector-tabs li i {
  color: var(--gold) !important;
  font-size: 36px !important;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.4));
}

.selector-tabs li span {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  color: var(--text-light) !important;
  text-transform: uppercase;
}

.selector-content h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 40px !important;
}

.selector-content p.lead {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 2 !important;
  color: #ffffff !important;
  opacity: 0.85;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
  background: #111111 !important;
  padding: 150px 0;
  position: relative;
}

.why-choose-section .section-header h2,
.why-choose-section .section-header p {
  color: #ffffff !important;
}

.why-choose-section .section-header .overline {
  color: #d4af37 !important;
}

.why-card {
  background: rgba(20,20,20,0.9) !important;
  border: 1px solid rgba(212,175,55,0.2) !important;
  padding: 50px 35px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.why-card:hover {
  transform: translateY(-10px);
  background: rgba(212,175,55,0.03);
  border-color: rgba(212,175,55,0.2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.why-card:hover::before {
  transform: translateX(0);
}

.why-card .number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 400;
  color: rgba(212,175,55,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.why-card h4 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.8rem !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 25px !important;
}

.why-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  line-height: 1.9;
  color: #ffffff !important;
  opacity: 0.85;
}

.why-card .number {
  color: rgba(212,175,55,0.3) !important;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  background: #0a1628 !important;
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 180, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 180, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.process-section .section-header h2,
.process-section .section-header p {
  color: #ffffff !important;
}

.process-section .section-header .overline {
  color: #d4af37 !important;
}

.process-step {
  text-align: center;
  padding: 40px 25px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 80px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.3;
}

.process-step:last-child::after {
  display: none;
}

.process-icon {
  width: 100px;
  height: 100px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  transition: all 0.4s ease;
}

.process-icon i {
  font-size: 36px;
  color: var(--gold);
}

.process-icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50%;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0; }
}

.process-step:hover .process-icon {
  background: var(--gold);
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
}

.process-step:hover .process-icon i {
  color: var(--black);
}

.process-step h5 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
}

.process-step p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #ffffff !important;
  opacity: 0.85;
}

/* ============================================
   GLOBAL SOURCING SECTION
   ============================================ */
.global-sourcing-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%) !important;
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.global-sourcing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='rgba(212,175,55,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.global-sourcing-section .section-header h2,
.global-sourcing-section .section-header p {
  color: #ffffff !important;
}

.global-sourcing-section .section-header .overline {
  color: #d4af37 !important;
}

.sourcing-card {
  background: rgba(20,20,20,0.9) !important;
  border: 1px solid rgba(212,175,55,0.2) !important;
  padding: 50px 35px;
  text-align: center;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

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

.sourcing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.sourcing-card:hover::before {
  transform: translateX(0);
}

.sourcing-icon {
  width: 90px;
  height: 90px;
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.4s ease;
}

.sourcing-icon i {
  font-size: 36px;
  color: var(--gold);
}

.sourcing-card:hover .sourcing-icon {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
}

.sourcing-card:hover .sourcing-icon i {
  color: var(--black);
}

.sourcing-card h4 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
}

.sourcing-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #ffffff !important;
  opacity: 0.85;
}

.sourcing-tagline {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(212,175,55,0.15);
}

.sourcing-tagline p {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold) !important;
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #0a1628 0%, #111111 100%) !important;
  padding: 150px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.cta-section h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 25px !important;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ffffff !important;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

/* ============================================
   PROJECTS GALLERY
   ============================================ */
.projects-gallery {
  background: #0a0a0a !important;
  padding: 0 !important;
}

.projects-wrapper,
.projects-container {
  background: #111111 !important;
}

.projects-gallery .section-header h2,
.projects-gallery .section-header p {
  color: #ffffff !important;
}

.projects-gallery .section-header .overline {
  color: #d4af37 !important;
}

.projects-gallery .project {
  height: 400px !important;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
}

.projects-gallery .project::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.95) 100%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.projects-gallery .project:hover {
  transform: scale(1.02);
  z-index: 10;
}

.projects-gallery .project:hover::before {
  opacity: 1;
}

.projects-gallery .project .background-image-holder {
  transition: transform 0.8s ease;
}

.projects-gallery .project:hover .background-image-holder {
  transform: scale(1.1);
}

.projects-gallery .project .hover-state {
  background: transparent !important;
  z-index: 3;
  opacity: 0;
  transition: all 0.4s ease;
}

.projects-gallery .project:hover .hover-state {
  opacity: 1;
}

.projects-gallery .project h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.8rem !important;
  color: var(--white) !important;
}

.projects-gallery .project p {
  font-family: 'Space Grotesk', sans-serif !important;
  color: var(--gold) !important;
  font-size: 12px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase;
}

/* Gallery Page */
.column-projects .project {
  height: 350px !important;
  border: 1px solid rgba(255,255,255,0.03);
}

.column-projects .project::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  color: var(--gold);
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.column-projects .project:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Gallery Page Header */
.projects-gallery > .container:first-child {
  padding-top: 180px !important;
  padding-bottom: 80px !important;
  background: var(--charcoal) !important;
}

.projects-gallery > .container:first-child h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
  font-weight: 400 !important;
  color: var(--white) !important;
}

.projects-gallery > .container:first-child p.lead {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.1rem !important;
  color: var(--text-muted) !important;
  line-height: 1.9 !important;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-1 {
  padding: 180px 0 100px !important;
  background: var(--charcoal) !important;
}

.team-1 h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 400 !important;
  color: var(--white) !important;
  margin-bottom: 20px !important;
}

.team-1 p.lead {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.1rem !important;
  line-height: 2 !important;
  color: var(--text-muted) !important;
}

/* Timeline Section */
.timeline-section {
  background: #1a1a1a !important;
  padding: 120px 0;
}

.timeline-section .section-label {
  color: #d4af37 !important;
}

.timeline-section h2 {
  color: #ffffff !important;
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 50px;
  border-left: 2px solid rgba(212,175,55,0.2);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.timeline-year {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #d4af37 !important;
  margin-bottom: 10px;
  display: block;
}

.timeline-item h4 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 15px !important;
}

.timeline-item p {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #ffffff !important;
  opacity: 0.85;
}

/* Values Section */
.values-section {
  background: #0a1628 !important;
  padding: 120px 0;
}

.values-section .section-label {
  color: #d4af37 !important;
}

.values-section h2 {
  color: #ffffff !important;
}

.value-card {
  text-align: center;
  padding: 50px 30px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  height: 100%;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-10px);
}

.value-card i {
  font-size: 50px;
  color: #d4af37 !important;
  margin-bottom: 25px;
  display: block;
  filter: drop-shadow(0 0 15px rgba(212,175,55,0.4));
}

.value-card h5 {
  font-family: 'Playfair Display', serif !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
}

.value-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #ffffff !important;
  opacity: 0.85;
}

/* Primary Features */
.primary-features {
  background: #0a0a0a !important;
  padding: 120px 0 !important;
}

.primary-features .section-label {
  color: #d4af37 !important;
}

.primary-features h2 {
  color: #ffffff !important;
}

.feature-icon-small {
  padding: 45px !important;
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-icon-small::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d4af37;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.feature-icon-small:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.3) !important;
}

.feature-icon-small:hover::before {
  transform: translateX(0);
}

.feature-icon-small i {
  color: #d4af37 !important;
  font-size: 45px !important;
  margin-bottom: 25px !important;
  display: block;
}

.feature-icon-small h6 {
  font-family: 'Playfair Display', serif !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
}

.feature-icon-small p {
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px !important;
  line-height: 1.9 !important;
  color: #ffffff !important;
  opacity: 0.85;
}

/* ============================================
   GLOBE ZOOM ANIMATION
   ============================================ */
.globe-hero-section {
  min-height: 100vh;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Stars background */
.stars, .stars2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.stars {
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 230px 80px, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 350px 200px, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 420px 50px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 500px 180px, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 580px 90px, rgba(255,255,255,0.7), transparent);
  background-size: 600px 300px;
  animation: twinkle 8s ease-in-out infinite;
}

.stars2 {
  background-image:
    radial-gradient(1px 1px at 100px 200px, rgba(212,175,55,0.8), transparent),
    radial-gradient(2px 2px at 200px 100px, rgba(212,175,55,0.5), transparent),
    radial-gradient(1px 1px at 300px 250px, rgba(212,175,55,0.7), transparent),
    radial-gradient(2px 2px at 450px 150px, rgba(212,175,55,0.6), transparent);
  background-size: 500px 300px;
  animation: twinkle 12s ease-in-out infinite reverse;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.globe-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.globe-zoom-wrapper {
  position: relative;
  animation: globeZoomIn 4s ease-out forwards;
}

@keyframes globeZoomIn {
  0% {
    transform: scale(0.5) translateY(0);
    opacity: 0.3;
  }
  30% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(2.5) translateY(10%);
    opacity: 1;
  }
}

.globe {
  width: 400px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
  animation: globeRotateSlow 20s linear infinite;
}

@keyframes globeRotateSlow {
  0% { transform: rotateY(-30deg) rotateX(15deg); }
  100% { transform: rotateY(330deg) rotateX(15deg); }
}

.globe-sphere {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(100, 180, 255, 0.3), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(50, 120, 200, 0.2), transparent 40%),
    linear-gradient(135deg, #1e3a5f 0%, #0d1f33 50%, #071018 100%);
  box-shadow:
    inset -30px -30px 60px rgba(0,0,0,0.6),
    inset 20px 20px 40px rgba(100,180,255,0.1),
    0 0 80px rgba(100,180,255,0.3),
    0 0 120px rgba(212,175,55,0.2);
  overflow: hidden;
}

.globe-sphere::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 18px,
      rgba(100,180,255,0.1) 18px,
      rgba(100,180,255,0.1) 19px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 18px,
      rgba(100,180,255,0.1) 18px,
      rgba(100,180,255,0.1) 19px
    );
  animation: gridRotate 60s linear infinite;
}

@keyframes gridRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.globe-sphere::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 15%;
  width: 25%;
  height: 20%;
  background: rgba(100, 200, 150, 0.3);
  border-radius: 40% 60% 50% 50%;
  filter: blur(8px);
}

.globe-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2), transparent 50%);
  pointer-events: none;
}

/* Location Pin - DFW */
.globe-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.pin-dfw {
  top: 45%;
  left: 38%;
  animation: pinAppear 0.8s ease 2.5s forwards, pinBob 2s ease-in-out 3.3s infinite;
  opacity: 0;
}

@keyframes pinAppear {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes pinBob {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -60%) scale(1.1); }
}

.pin-pulse {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.pin-pulse.pulse-gold {
  background: rgba(212, 175, 55, 1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.9), 0 0 60px rgba(212, 175, 55, 0.5);
  animation: pulseGlow 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(212, 175, 55, 0.9), 0 0 60px rgba(212, 175, 55, 0.5); }
  50% { transform: scale(1.3); box-shadow: 0 0 50px rgba(212, 175, 55, 1), 0 0 100px rgba(212, 175, 55, 0.7); }
}

.pin-label {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.7);
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.pin-label-main {
  background: rgba(212, 175, 55, 0.95);
  color: #000;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Text Overlay */
.globe-text-overlay {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 20;
}

.globe-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 8vw, 4.5rem) !important;
  font-weight: 400 !important;
  color: #fff !important;
  margin-bottom: 15px !important;
  opacity: 0;
  animation: fadeUp 1s ease 3s forwards;
  text-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.globe-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  color: rgba(212, 175, 55, 0.95);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 1s ease 3.4s forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Scroll Indicator */
.globe-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: fadeUp 1s ease 3.8s forwards;
}

.globe-scroll-indicator span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.7);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  margin: 10px auto 0;
  border-right: 2px solid rgba(212, 175, 55, 0.7);
  border-bottom: 2px solid rgba(212, 175, 55, 0.7);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(5px, 5px); }
}

/* Responsive */
@media (max-width: 768px) {
  .globe {
    width: 280px;
    height: 280px;
  }

  .globe-title {
    font-size: 2.5rem !important;
  }

  .globe-tagline {
    font-size: 16px;
    padding: 0 20px;
  }

  .pin-label {
    font-size: 10px;
    padding: 4px 8px;
  }

  .globe-text-overlay {
    bottom: 10%;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.map-holder {
  height: 500px !important;
  filter: grayscale(100%) brightness(0.7);
  transition: all 0.5s ease;
}

.map-holder:hover {
  filter: grayscale(50%) brightness(0.9);
}

.map-holder iframe {
  height: 100% !important;
  width: 100% !important;
  border: none !important;
}

.contact-thirds {
  padding: 120px 0 !important;
  background: #111111 !important;
}

.contact-thirds h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
}

.contact-thirds h5 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  letter-spacing: 4px !important;
  text-transform: uppercase;
  color: #d4af37 !important;
}

.contact-thirds p {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.9 !important;
  color: #ffffff !important;
  opacity: 0.85;
}

.contact-card {
  text-align: center;
  padding: 50px 30px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.15);
  transition: all 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contact-card i {
  font-size: 45px;
  color: #d4af37 !important;
  margin-bottom: 25px;
  display: block;
}

.contact-card h5 {
  color: #ffffff !important;
}

.contact-card p {
  color: #ffffff !important;
  opacity: 0.85;
}

/* FAQ Section */
.faq-section {
  background: #1a1a1a !important;
  padding: 120px 0;
}

.faq-section .section-label {
  color: #d4af37 !important;
}

.faq-section h2 {
  color: #ffffff !important;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 30px 0;
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.faq-question::before {
  content: 'Q';
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  padding: 5px 10px;
  flex-shrink: 0;
}

.faq-answer {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  padding-left: 45px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-container {
  background: var(--black) !important;
}

footer.details {
  background: var(--black) !important;
  padding: 100px 0 50px !important;
  border-top: 1px solid rgba(212,175,55,0.1);
}

footer .logo {
  margin-bottom: 30px !important;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.2));
}

footer h5 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 3px !important;
  color: var(--gold) !important;
  margin-bottom: 25px !important;
}

footer p {
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.9 !important;
  color: var(--text-muted) !important;
}

footer a {
  color: var(--text-muted) !important;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--gold) !important;
}

footer .sub {
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.4) !important;
}

/* ============================================
   TYPOGRAPHY GLOBAL
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 400 !important;
  color: var(--white) !important;
}

h5, h6 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 500 !important;
  color: var(--gold) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-primary {
  color: var(--gold) !important;
}

/* ============================================
   MAIN CONTAINER ANIMATION
   ============================================ */
.main-container {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease forwards;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .hero-slider h1 {
    font-size: 2.5rem !important;
  }

  .selector-tabs {
    flex-wrap: wrap;
  }

  .selector-tabs li {
    flex: 1 1 50%;
    max-width: none;
  }

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

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

  .process-step::after {
    display: none;
  }

  .why-card,
  .testimonial-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    min-height: 600px;
  }

  .hero-slider h1 {
    font-size: 2rem !important;
  }

  .selector-tabs li {
    flex: 1 1 100%;
  }

  .building {
    opacity: 0.04;
  }

  .geo-shape {
    display: none;
  }

  .crane {
    display: none;
  }

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

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

  nav.top-bar {
    background: rgba(10, 22, 40, 0.98) !important;
  }

  .column-projects .project {
    height: 280px !important;
  }
}

/* ============================================
   PAGE HERO SECTIONS
   ============================================ */
.about-hero,
.gallery-hero,
.contact-hero {
  padding: 180px 0 80px;
  background: #111111 !important;
  text-align: center;
}

.about-hero h1,
.gallery-hero h1,
.contact-hero h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 15px !important;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #d4af37 !important;
  margin-bottom: 20px;
  display: block;
}

.hero-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37 !important;
  margin-top: 10px;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
  padding: 80px 0;
  background: #111111 !important;
}

.story-content {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid #d4af37;
  padding: 70px;
}

.story-content p {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  line-height: 1.9;
  color: #ffffff !important;
  opacity: 0.9;
  margin-bottom: 35px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-content p.lead {
  font-size: 28px;
  color: #ffffff !important;
  opacity: 1;
  font-weight: 500;
}

/* ============================================
   TEAM ADVANTAGE SECTION
   ============================================ */
.team-advantage-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a1628 0%, #111111 100%) !important;
  position: relative;
}

.team-advantage-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 180, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 180, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.team-advantage-section .section-label {
  color: #d4af37 !important;
}

.team-advantage-section h2 {
  color: #ffffff !important;
}

.team-role-card {
  text-align: center;
  padding: 40px 25px;
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(212,175,55,0.2);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
}

.team-role-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.team-role-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

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

.role-icon {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.role-icon i {
  font-size: 32px;
  color: var(--gold);
}

.team-role-card:hover .role-icon {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}

.team-role-card:hover .role-icon i {
  color: var(--black);
}

.team-role-card h5 {
  font-family: 'Playfair Display', serif !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
}

.team-role-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff !important;
  opacity: 0.85;
  margin: 0;
}

@media (max-width: 991px) {
  .team-role-card {
    margin-bottom: 30px;
  }
}

/* ============================================
   GALLERY STATS
   ============================================ */
.gallery-stats {
  background: #1a1a1a !important;
  padding: 80px 0;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.gallery-stats .stat-item {
  text-align: center;
  padding: 30px;
}

.gallery-stats .stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #d4af37 !important;
  margin-bottom: 10px;
}

.gallery-stats .stat-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff !important;
  opacity: 0.85;
}

/* ============================================
   TIMELINE SECTION (Enhanced)
   ============================================ */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline-content {
  padding-left: 30px;
}

.timeline-marker {
  position: absolute;
  left: -7px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(212,175,55,0.5);
}

/* ============================================
   VALUES SECTION (Enhanced)
   ============================================ */
.value-icon {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.value-icon i {
  font-size: 32px !important;
  color: var(--gold) !important;
  margin-bottom: 0 !important;
  filter: none !important;
}

.value-card:hover .value-icon {
  background: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}

.value-card:hover .value-icon i {
  color: var(--black) !important;
}

.value-card h4 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  color: var(--white) !important;
  margin-bottom: 15px !important;
}

/* ============================================
   CONTACT PAGE (Enhanced)
   ============================================ */
.contact-info {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem !important;
  color: var(--white) !important;
  margin: 0 !important;
}

.contact-note {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  display: block;
}

.why-contact-section {
  padding: 100px 0;
  background: #1a1a1a !important;
}

.why-contact-section .section-label {
  color: #d4af37 !important;
}

.why-contact-section h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  margin-bottom: 30px !important;
  color: #ffffff !important;
}

.why-contact-section p.lead {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  line-height: 2;
  color: #ffffff !important;
  opacity: 0.85;
}

/* ============================================
   FAQ SECTION (Accordion Style)
   ============================================ */
.faq-container {
  margin-top: 50px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(212,175,55,0.3);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question::before {
  display: none;
}

.faq-question h4 {
  font-family: 'Playfair Display', serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin: 0 !important;
  flex: 1;
}

.faq-toggle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  color: var(--gold);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.3);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle,
.faq-question:hover .faq-toggle {
  background: var(--gold);
  color: var(--black);
}

.faq-answer {
  display: none;
  padding: 0 30px 25px;
}

.faq-answer p {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: #ffffff !important;
  opacity: 0.85;
  padding-left: 0;
  margin: 0;
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: transparent !important;
  border: 2px solid var(--gold) !important;
  color: var(--gold) !important;
}

.btn-outline:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.btn-lg {
  padding: 20px 45px !important;
  font-size: 13px !important;
}

/* ============================================
   ADDITIONAL RESPONSIVE FIXES
   ============================================ */
@media (max-width: 991px) {
  .timeline-item {
    padding-left: 30px;
  }

  .value-card,
  .contact-card {
    margin-bottom: 30px;
  }

  .story-content {
    padding: 35px;
  }
}

@media (max-width: 767px) {
  .about-hero,
  .gallery-hero,
  .contact-hero {
    padding: 150px 0 60px;
  }

  .story-content {
    padding: 25px;
  }

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h4 {
    font-size: 1rem !important;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .gallery-stats .stat-number {
    font-size: 2.5rem;
  }
}

/* ============================================
   ANIMATED TOP BAR
   ============================================ */
.animated-top-bar {
  background: #0a0a0a;
  height: 6px;
  overflow: hidden;
  position: relative;
}

.shimmer-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.3) 25%,
    rgba(212, 175, 55, 0.8) 50%,
    rgba(212, 175, 55, 0.3) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ============================================
   VIDEO SHOWCASE SECTION
   ============================================ */
section.video-showcase {
  background: #0a0a0a !important;
  padding: 80px 0 100px !important;
  margin: 0 !important;
  display: block !important;
  position: relative !important;
  z-index: 2 !important;
  overflow: visible !important;
}

section.video-showcase .container {
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  overflow: visible !important;
}

section.video-showcase .video-container {
  width: 100% !important;
  margin: 0 auto !important;
  overflow: visible !important;
}

section.video-showcase .video-wrapper {
  width: 100% !important;
  background: #000 !important;
  position: relative !important;
  overflow: visible !important;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

section.video-showcase .video-wrapper video {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  position: relative !important;
  max-width: 100% !important;
}

section.video-showcase .video-caption {
  text-align: center;
  margin-top: 40px;
  position: relative;
}

.video-caption h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 2.5rem !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
}

.video-caption p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  color: #ffffff !important;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   SERVICES SHOWCASE SECTION
   ============================================ */
.services-section {
  background: #0d0d0d !important;
  padding: 150px 0;
  position: relative;
}

.service-card {
  background: rgba(20,20,20,0.9) !important;
  border: 1px solid rgba(212,175,55,0.2) !important;
  padding: 60px 40px;
  text-align: center;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-15px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-icon {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
  transition: all 0.4s ease;
}

.service-icon i {
  font-size: 42px;
  color: var(--gold);
}

.service-card:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
}

.service-card:hover .service-icon i {
  color: var(--black);
}

.service-card h4 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.8rem !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
}

.service-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #ffffff !important;
  opacity: 0.85;
}

.services-section .section-header h2,
.services-section .section-header p {
  color: #ffffff !important;
}

.services-section .section-header .overline {
  color: #d4af37 !important;
}

/* ============================================
   AREAS WE SERVE SECTION
   ============================================ */
.areas-section {
  background: #0a1628 !important;
  padding: 150px 0;
  position: relative;
}

.areas-section .section-header h2,
.areas-section .section-header p {
  color: #ffffff !important;
}

.areas-section .section-header .overline {
  color: #d4af37 !important;
}

.areas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 180, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 180, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.area-item {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 20px 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff !important;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.area-item:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212,175,55,0.3);
}

/* ============================================
   FEATURES GRID SECTION
   ============================================ */
.features-grid-section {
  background: #1a1a1a !important;
  padding: 150px 0;
}

.features-grid-section .section-header h2,
.features-grid-section .section-header p {
  color: #ffffff !important;
}

.features-grid-section .section-header .overline {
  color: #d4af37 !important;
}

.feature-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 40px;
  background: rgba(20,20,20,0.9) !important;
  border: 1px solid rgba(212,175,55,0.2) !important;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.feature-grid-item:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateX(10px);
}

.feature-grid-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-grid-icon i {
  font-size: 28px;
  color: var(--gold);
}

.feature-grid-content h5 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 15px !important;
}

.feature-grid-content p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff !important;
  opacity: 0.85;
  margin: 0;
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */
.commitment-section {
  background: #0a0a0a !important;
  padding: 150px 0;
  position: relative;
}

.commitment-section .section-header h2,
.commitment-section .section-header p {
  color: #ffffff !important;
}

.commitment-section .section-header .overline {
  color: #d4af37 !important;
}

.commitment-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.commitment-text {
  flex: 1;
}

.commitment-text h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 3rem !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-bottom: 30px !important;
  line-height: 1.3;
}

.commitment-text p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  line-height: 2;
  color: #ffffff !important;
  opacity: 0.85;
  margin-bottom: 25px;
}

.commitment-stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.commitment-stat {
  text-align: center;
  padding: 40px;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.2);
}

.commitment-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 15px;
}

.commitment-stat .label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff !important;
}

/* ============================================
   UPDATE PADDING FOR MORE SCROLL
   ============================================ */
.stats-section {
  padding: 120px 0;
}

.why-choose-section {
  padding: 150px 0;
}

.process-section {
  padding: 150px 0;
}

.testimonials-section {
  padding: 150px 0;
}

.feature-selector {
  padding: 150px 0 !important;
}

.projects-gallery .section-header {
  padding-top: 120px !important;
}

/* ============================================
   3D LIGHTBOX
   ============================================ */
.lightbox-3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-3d.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-3d-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-3d-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
}

.lightbox-3d-image-container {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-30deg) rotateX(10deg) scale(0.7);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.3),
    0 0 80px rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.lightbox-3d.active .lightbox-3d-image-container {
  transform: rotateY(0deg) rotateX(0deg) scale(1);
}

.lightbox-3d-image {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-3d-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: 2px solid rgba(212, 175, 55, 0.5);
  color: #d4af37;
  font-size: 40px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-3d-close:hover {
  background: #d4af37;
  color: #000;
  transform: rotate(90deg);
}

.lightbox-3d-nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.lightbox-3d-prev,
.lightbox-3d-next {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.5);
  color: #d4af37;
  font-size: 30px;
  width: 70px;
  height: 70px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.lightbox-3d-prev:hover,
.lightbox-3d-next:hover {
  background: #d4af37;
  color: #000;
  transform: scale(1.1);
}

.lightbox-3d-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: #d4af37;
}

/* Make gallery items clickable */
.projects-gallery .project {
  cursor: pointer;
}

.projects-gallery .project::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
}

.projects-gallery .project:hover::after {
  opacity: 1;
}

/* Click indicator on gallery items */
.column-projects .project::after {
  content: '⊕';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 60px;
  color: #d4af37;
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 0 30px rgba(212,175,55,0.8);
}

.column-projects .project:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* 3D Lightbox responsive */
@media (max-width: 991px) {
  .lightbox-3d-content {
    width: 95%;
  }

  .lightbox-3d-prev,
  .lightbox-3d-next {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .lightbox-3d-close {
    width: 50px;
    height: 50px;
    font-size: 30px;
    top: -50px;
  }
}

@media (max-width: 767px) {
  .lightbox-3d-nav {
    bottom: -70px;
    top: auto;
    justify-content: center;
    gap: 30px;
  }

  .lightbox-3d-counter {
    bottom: -110px;
  }

  .lightbox-3d-image-container {
    transform: rotateY(-15deg) rotateX(5deg) scale(0.8);
  }
}

/* ============================================
   MASCOT CHARACTER
   ============================================ */
.mascot-character {
  position: fixed;
  z-index: 9998;
  width: 120px;
  height: auto;
  bottom: 20px;
  right: 20px;
  pointer-events: none;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}

.mascot-character.visible {
  opacity: 1;
}

.mascot-character img {
  width: 100%;
  height: auto;
  animation: mascotBob 3s ease-in-out infinite;
}

@keyframes mascotBob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.mascot-character:hover img {
  animation: mascotWave 0.5s ease-in-out;
}

@keyframes mascotWave {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

/* Responsive mascot sizing */
@media (max-width: 991px) {
  .mascot-character {
    width: 100px;
  }
}

@media (max-width: 767px) {
  .mascot-character {
    width: 80px;
    bottom: 15px;
  }
}

@media (max-width: 480px) {
  .mascot-character {
    width: 60px;
    bottom: 10px;
  }
}

/* ============================================
   RESPONSIVE FOR NEW SECTIONS
   ============================================ */
@media (max-width: 991px) {
  .commitment-content {
    flex-direction: column;
    gap: 60px;
  }

  .commitment-stats {
    width: 100%;
  }

  .service-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .video-showcase {
    padding: 100px 0;
  }

  .video-wrapper {
    padding: 15px;
  }

  .video-caption h3 {
    font-size: 1.8rem !important;
  }

  .services-section,
  .areas-section,
  .features-grid-section,
  .commitment-section {
    padding: 100px 0;
  }

  .area-item {
    padding: 15px 25px;
    font-size: 14px;
  }

  .commitment-stats {
    grid-template-columns: 1fr;
  }

  .commitment-text h2 {
    font-size: 2.2rem !important;
  }

  .feature-grid-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-grid-icon {
    margin: 0 auto;
  }

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