:root {
  /* LYNX Brand Colors - Official Palette */
  --primary-dark-green: #1E4437;
  --primary-green: #0F6B41;
  --accent-orange: #FA4515;
  --white: #FFFFFF;
  --black: #0A0A0A;

  /* Color Variations for UI */
  --light-green: #2A644F;
  --lighter-green: #3A7A5F;
  --dark-bg: #0D1A14;
  --mid-bg: #1A2B23;

  /* Neutral Colors */
  --off-white: #F8F9FA;
  --light-gray: #E0E0E0;
  --mid-gray: #9E9E9E;
  --dark-gray: #424242;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark-green) 100%);
  --gradient-hero: linear-gradient(135deg, var(--black) 0%, var(--primary-dark-green) 100%);
  --gradient-card: linear-gradient(135deg, rgba(30, 68, 55, 0.1) 0%, rgba(15, 107, 65, 0.1) 100%);
  --gradient-orange: linear-gradient(135deg, var(--accent-orange) 0%, #FF8A65 100%);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(30, 68, 55, 0.4);
  --shadow-glow-orange: 0 0 30px rgba(250, 69, 21, 0.4);

  /* Border Radius - More organic */
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--dark-bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: var(--space-sm);
  color: var(--off-white);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  max-width: 1900px;
  z-index: 1000;
  /* Glassmorphism */
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Optional: keep or remove, border-radius handles shape */
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Full border looks better on floating */
  border-radius: 24px;
  transition: var(--transition-base);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

header.scrolled {
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(15, 107, 65, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  top: 10px;
  width: 99%;
  max-width: 1900px;
}

nav {
  width: 100%;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-lg);
  display: flex;
  justify-content: space-between;
  /* Default for desktop */
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.logo-link:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
  transition: var(--transition-fast);
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.nav-links a {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition-fast);
  padding: var(--space-xs) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-base);
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(15, 107, 65, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: var(--transition-base);
  border-radius: 50%;
  z-index: -1;
}

.nav-links a:hover {
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.nav-links a:hover::before {
  width: 150px;
  height: 150px;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) var(--space-lg);
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(15, 107, 65, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 69, 21, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
  position: relative;
}

.hero h1 .highlight::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(20px) brightness(1.5);
  opacity: 0.7;
}

@keyframes glow {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.3);
  }
}

.hero p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  color: var(--off-white);
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--white);
  box-shadow: var(--shadow-glow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(250, 69, 21, 0.6);
  background: #FF5722;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background: rgba(15, 107, 65, 0.15);
  transform: translateY(-2px);
  border-color: var(--accent-orange);
}

/* Section Styles */
section {
  padding: var(--space-3xl) var(--space-lg);
  width: 100%;
  position: relative;
}

section>* {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Wave Dividers */
.wave-divider {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 80px;
  max-height: 150px;
  margin-top: -150px;
  /* Overlap previous section */
  z-index: 2;
  pointer-events: none;
}

.waves {
  position: relative;
  width: 100%;
  height: 100px;
  min-height: 80px;
  max-height: 150px;
  display: block;
}

/* Wave Variants */
/* Dark Wave (for #0D1A14 sections - Services, Contact) */
.wave-divider.dark .parallax>use:nth-child(1) {
  fill: rgba(13, 26, 20, 0.7);
}

.wave-divider.dark .parallax>use:nth-child(2) {
  fill: rgba(13, 26, 20, 0.5);
}

.wave-divider.dark .parallax>use:nth-child(3) {
  fill: rgba(13, 26, 20, 0.3);
}

.wave-divider.dark .parallax>use:nth-child(4) {
  fill: var(--dark-bg);
}

/* Black Wave (for #0A0A0A sections - About) */
.wave-divider.black .parallax>use:nth-child(1) {
  fill: rgba(10, 10, 10, 0.7);
}

.wave-divider.black .parallax>use:nth-child(2) {
  fill: rgba(10, 10, 10, 0.5);
}

.wave-divider.black .parallax>use:nth-child(3) {
  fill: rgba(10, 10, 10, 0.3);
}

.wave-divider.black .parallax>use:nth-child(4) {
  fill: var(--black);
}

/* Animation */
.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .wave-divider {
    display: none;
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-orange);
  border-radius: 2px;
  animation: slideIn 0.6s ease-out 0.3s backwards;
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 60px;
    opacity: 1;
  }
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--mid-gray);
}

/* Services Section */
.services {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.services::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 107, 65, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(250, 69, 21, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  justify-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 68, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(15, 107, 65, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: var(--transition-slow);
}

.service-card:hover::after {
  transform: scale(1.5);
  opacity: 0.5;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
  background: rgba(30, 68, 55, 0.08);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  color: var(--accent-orange);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--mid-gray);
  line-height: 1.7;
}

/* About Section */
.about {
  background: var(--black);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 69, 21, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-2xl);
  align-items: center;
}

.about-text h2 {
  text-align: left;
  display: inline-block;
}

.about-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lynx-text-inline {
  height: 1em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.2rem;
  position: relative;
  top: -0.05em;
}

.about-values {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-item {
  display: flex;
  align-items: start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(30, 68, 55, 0.1);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent-orange);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(250, 69, 21, 0.1), transparent);
  transition: var(--transition-slow);
}

.value-item:hover::before {
  left: 100%;
}

.value-item:hover {
  background: rgba(30, 68, 55, 0.15);
  transform: translateX(8px);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.5rem;
  color: var(--accent-orange);
  min-width: 50px;
}

.value-text h4 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.value-text p {
  color: var(--mid-gray);
  margin: 0;
}

/* Brand Identity Showcase */
.brand-identity {
  margin-top: var(--space-2xl);
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  max-width: 500px;
}

.brand-identity:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(250, 69, 21, 0.3);
}

.identity-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}

.brand-identity:hover .identity-image {
  transform: scale(1.05);
}

.identity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.95) 100%);
  padding: var(--space-lg);
  transform: translateY(100%);
  transition: var(--transition-base);
}

.brand-identity:hover .identity-overlay {
  transform: translateY(0);
}

.identity-overlay p {
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0;
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: var(--transition-base);
}

.about-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contact Section */
.contact {
  background: var(--dark-bg);
  text-align: center;
  width: 100%;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 68, 55, 0.3);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.contact-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(15, 107, 65, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Force 2 columns for symmetry (2x2) */
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* On very small screens, stack them */
@media (max-width: 480px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* On large screens, maybe 4 in a row or keep 2x2 */
@media (min-width: 1024px) {
  .contact-info {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-orange);
  transition: var(--transition-base);
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 20px rgba(15, 107, 65, 0.4);
}

.contact-item a {
  color: var(--off-white);
  text-decoration: none;
  transition: var(--transition-fast);
  white-space: nowrap;
  /* Prevent phone number wrapping */
  font-weight: 500;
}

.contact-item p {
  color: var(--off-white);
  margin: 0;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--accent-orange);
  transform: scale(1.05);
}

/* Footer */
footer {
  background: rgba(10, 10, 10, 0.1);
  /* Reduced opacity for less contrast */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  width: 98%;
  max-width: 1900px;
  /* Matched to Header */
  margin: var(--space-xl) auto var(--space-md) auto;
  border-radius: 24px;

  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Footer ambient glow */
footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15, 107, 65, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

footer p {
  color: var(--mid-gray);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer-logo {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  /* Make logo white */
  opacity: 0.8;
  vertical-align: middle;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Carousel Dots - Hidden on Desktop */
.carousel-dots {
  display: none;
}

/* ========================================
   MOBILE BOTTOM NAVIGATION
   ======================================== */

.mobile-bottom-nav {
  display: none;
  /* Hidden on desktop */
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 0 20px 20px;
  }

  .mobile-bottom-nav ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
      0 0 1px rgba(15, 107, 65, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(30, 68, 55, 0.4);
  }

  .mobile-bottom-nav ul li {
    list-style: none;
  }

  .mobile-bottom-nav ul li a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    padding: 20px 30px;
    z-index: 10;
  }

  .mobile-bottom-nav ul li a ion-icon {
    font-size: 1.75em;
    pointer-events: none;
    opacity: 0.4;
    transition: var(--transition-base);
    color: var(--white);
  }

  .mobile-bottom-nav ul li.active a ion-icon {
    opacity: 1;
  }

  /* Marker - Behind the glass navbar */
  #marker {
    position: absolute;
    /* initial default variables */
    --marker-bg: var(--primary-green);
    --marker-shadow: 0 0 30px rgba(15, 107, 65, 1),
      0 0 60px rgba(15, 107, 65, 0.8),
      0 0 90px rgba(15, 107, 65, 0.6);

    transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
      top 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
      width 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
      height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 0;
    pointer-events: none;
  }

  #marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--marker-bg);
    box-shadow: var(--marker-shadow);
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  .mobile-bottom-nav ul {
    z-index: 1;
  }

  /* Mobile Carousel for Services */
  .services-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-md);
    padding: var(--space-md);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    max-width: 350px;
  }

  /* Carousel Dots */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    padding: var(--space-md) 0;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
  }

  .dot.active {
    background: var(--accent-orange);
    transform: scale(1.3);
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    width: 100%;
    padding: var(--space-lg);
    gap: var(--space-md);
    transition: var(--transition-base);
    border-bottom: 1px solid rgba(30, 68, 55, 0.3);
  }

  .nav-links.active {
    left: 0;
  }

  /* Hide hamburger menu on mobile since we have bottom nav */
  .mobile-menu-toggle {
    display: none;
  }

  /* Center logo on mobile */
  nav {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    display: none;
  }

  section {
    padding: var(--space-2xl) var(--space-md);
  }
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow {
  box-shadow: var(--shadow-glow);
}

/* ========================================
   ENHANCED ANIMATIONS
   ======================================== */

/* Floating Particles Animation */
@keyframes particle-float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }

  25% {
    transform: translate(20px, -20px) rotate(90deg);
    opacity: 0.5;
  }

  50% {
    transform: translate(-15px, -40px) rotate(180deg);
    opacity: 0.8;
  }

  75% {
    transform: translate(30px, -25px) rotate(270deg);
    opacity: 0.6;
  }
}

/* Animated Gradient Background */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Pulse Animation for CTAs */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: var(--shadow-glow-orange);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(250, 69, 21, 0.7);
  }
}

/* Icon Bounce */
@keyframes icon-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Slide in from left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide in from right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale In */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Particle Container */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: particle-float 15s infinite ease-in-out;
}

.particle-green {
  background: rgba(15, 107, 65, 0.4);
}

.particle-orange {
  background: rgba(250, 69, 21, 0.3);
}

/* Animated Hero Background */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--primary-dark-green) 50%, var(--black) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
}

/* Logo Pulse on Hover */
.logo-image {
  animation: none;
}

.logo-link:hover .logo-image {
  animation: pulse 1.5s ease-in-out;
}

/* CTA Button Pulse */
.btn-primary {
  animation: pulse 2s ease-in-out infinite;
}

.btn-primary:hover {
  animation: none;
}

/* Service Icon Bounce on Hover */
/* Service Icon Rotation on Hover */
.service-card:hover .service-icon {
  transform: rotateY(360deg);
}

/* Stagger Animations for Service Cards */
.service-card:nth-child(1) {
  animation: slideInLeft 0.6s ease-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.service-card:nth-child(2) {
  animation: slideInRight 0.6s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.service-card:nth-child(3) {
  animation: slideInLeft 0.6s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.service-card:nth-child(4) {
  animation: slideInRight 0.6s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.service-card:nth-child(5) {
  animation: slideInLeft 0.6s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.service-card:nth-child(6) {
  animation: slideInRight 0.6s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

/* Value Items Slide In */
.value-item {
  animation: scaleIn 0.5s ease-out forwards;
  opacity: 0;
}

.value-item:nth-child(1) {
  animation-delay: 0.1s;
}

.value-item:nth-child(2) {
  animation-delay: 0.2s;
}

.value-item:nth-child(3) {
  animation-delay: 0.3s;
}

.value-item:nth-child(4) {
  animation-delay: 0.4s;
}

/* Contact Items Animation */
.contact-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.contact-item:nth-child(1) {
  animation-delay: 0.2s;
}

.contact-item:nth-child(2) {
  animation-delay: 0.3s;
}

.contact-item:nth-child(3) {
  animation-delay: 0.4s;
}

.contact-item:nth-child(4) {
  animation-delay: 0.5s;
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .particles {
    display: none;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s;
}

.modal-content {
  background: rgba(30, 68, 55, 0.9);
  backdrop-filter: blur(20px);
  margin: 10% auto;
  padding: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  text-align: center;
  animation: scaleIn 0.3s;
}

.close-modal {
  color: var(--mid-gray);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--accent-orange);
}

.modal h2 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  gap: var(--space-md);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-orange);
}

.contact-form .submit-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact-form .submit-btn:hover {
  opacity: 0.9;
}

@media (max-width: 600px) {
  .form-group {
    flex-direction: column;
  }
}


/* --- UX Improvements (Text Contrast & Mobile Nav) --- */
.hero h1 .highlight {
  background: #FA4515;
  /* User requested color */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(250, 69, 21, 0.4);
}

@media (max-width: 768px) {
  .mobile-bottom-nav ul li a {
    padding: 15px 20px;
  }

  #marker::before {
    width: 60px;
    height: 60px;
  }
}

/* --- Mobile Nav Improvements --- */

/* Active Icon Styles */
.mobile-bottom-nav ul li.active a ion-icon {
  opacity: 1;
  transform: translateY(-6px);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
  animation: navBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--white);
  /* Ensure it stays white/bright */
}

/* Bounce Animation */
@keyframes navBounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-6px);
  }
}

/* Enhanced Marker Visibility */
#marker {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  /* Snappier movement */
}

#marker::before {
  /* Ensure the marker matches the updated smaller size */
  width: 55px;
  height: 55px;
  /* Add a border to make it pop against dark backgrounds */
  border: 1px solid rgba(255, 255, 255, 0.2);
}


/* ========================================
   MOBILE NAVIGATION (CREATIVE OVERLAY)
   Overrides previous bottom nav styles
   ======================================== */

.mobile-bottom-nav {
  display: none !important;
  /* Disabled as per user request */
}

@media (max-width: 768px) {

  /* Hamburger Button - Enabled */
  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 2005;
    /* Must be higher than overlay */
    font-size: 2rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  /* Rotate Hamburger to X when active */
  .mobile-menu-toggle.active {
    transform: rotate(90deg);
    color: var(--accent-orange);
  }

  /* Full Screen Overlay with Circular Reveal - Enhanced Glassmorphism */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    /* True Glassmorphism: Lighter alpha + Strong blur + Saturation */
    background: rgba(15, 25, 20, 0.75);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    /* Inner depth */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    padding: 0;

    /* Animation Core */
    /* Origin calculation: Header Top (20px) + Padding (~10px) + Half height (~20px) = ~50px */
    clip-path: circle(0px at 90% 50px);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
    border-bottom: none;
    z-index: 2000;
  }

  .nav-links.active {
    /* Reveal full screen */
    clip-path: circle(150% at 92% 45px);
    pointer-events: all;
    left: 0;
    /* Override previous left: -100% */
  }

  /* Large Typography for Links */
  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    list-style: none;
    /* Ensure no bullets */
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger Delays */
  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-links a {
    font-size: 2.5rem;
    /* Big impact font */
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -2px;
    padding: var(--space-sm);
    text-decoration: none;
    background: none;
    /* Reset any gradients */
    -webkit-text-fill-color: var(--white);
  }

  /* Reset pseudo-elements from desktop nav */
  .nav-links a::before,
  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-orange);
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
  }
}

/* --- Interactive Contact Icons --- */
a.contact-icon {
  text-decoration: none;
  /* Remove underline */
  cursor: pointer;
  display: flex;
  /* Ensure flex behavior matches div */
}

a.contact-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 20px rgba(15, 107, 65, 0.4);
  /* Ensure hover effect works on anchor */
}


/* --- Mobile Nav Spacing Override --- */
@media (max-width: 768px) {
  nav {
    justify-content: space-between !important;
    /* Force spacing between Logo and Burger */
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* --- Menu Background Blur Effect --- */
body.menu-open section,
body.menu-open footer,
body.menu-open .wave-divider {
  filter: blur(5px);
  transition: filter 0.4s ease;
  pointer-events: none;
  /* Prevent clicks on background */
}

body.menu-open .hero::before,
body.menu-open .hero::after {
  filter: blur(8px);
  /* Blur background blobs more */
}