/* ==========================================================================
   ApexMind Global — Kinetic Growth Design System
   Modern Corporate & High-Energy Performance Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Core Color Palette */
  --primary: #032517;
  --primary-container: #1b3b2b;
  --primary-light: #244d38;
  --on-primary: #ffffff;
  --on-primary-container: #83a590;
  --primary-fixed: #c7ebd4;
  --primary-fixed-dim: #abcfb8;

  /* Kinetic Lime Accents */
  --secondary: #516600;
  --secondary-fixed: #c7f322;
  --secondary-fixed-dim: #add500;
  --secondary-container: #c7f322;
  --on-secondary-fixed: #171e00;
  --on-secondary: #ffffff;
  --on-secondary-container: #576c00;

  /* Surfaces & Neutrals */
  --background: #fcf9f8;
  --surface: #fcf9f8;
  --surface-dim: #dcd9d9;
  --surface-bright: #fcf9f8;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f6f3f2;
  --surface-container: #f0eded;
  --surface-container-high: #eae7e7;
  --surface-container-highest: #e5e2e1;
  --surface-variant: #e5e2e1;

  --on-surface: #1b1c1c;
  --on-surface-variant: #424843;
  --on-background: #1b1c1c;
  --outline: #727973;
  --outline-variant: #c1c8c2;
  --surface-tint: #456553;

  --tertiary: #1d211d;
  --tertiary-container: #333631;
  --on-tertiary-container: #9c9e98;

  /* Typography (per DESIGN.md: Manrope for Headings/Body, Hanken Grotesk for Labels/Nav/Badges/Buttons) */
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-label: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing & Layout */
  --container-max: 1280px;
  --gutter: 24px;
  --section-padding: 90px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(3, 37, 23, 0.06);
  --shadow-md: 0 8px 24px rgba(3, 37, 23, 0.08);
  --shadow-lg: 0 16px 36px rgba(3, 37, 23, 0.12);
  --shadow-lime: 0 8px 24px rgba(199, 243, 34, 0.3);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--on-surface);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* Material Symbols Outlined Global Ligature Protection */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none !important;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-xl {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.headline-lg {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.headline-md {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
}

.headline-sm {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--on-surface-variant);
}

.body-md {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--on-surface-variant);
}

.label-lg {
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.label-md {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
}

.section-sm {
  padding-top: calc(var(--section-padding) * 0.6);
  padding-bottom: calc(var(--section-padding) * 0.6);
}

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

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

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

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  :root {
    --section-padding: 60px;
  }
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(3, 37, 23, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-normal);
}

.nav-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 38px;
  width: auto;
  border-radius: var(--radius-sm);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--secondary-fixed);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-fixed);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-fixed);
  border-radius: var(--radius-full);
}

.nav-link .dropdown-arrow {
  font-size: 18px;
  transition: transform var(--transition-fast);
}

/* Dropdown Menu (Desktop) */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 320px;
  background: rgba(3, 37, 23, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  padding: 0.75rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-fast);
  z-index: 1001;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-item {
  margin-bottom: 2px;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background: rgba(199, 243, 34, 0.15);
  color: var(--secondary-fixed);
  transform: translateX(4px);
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-fixed);
  font-size: 18px;
  flex-shrink: 0;
}

.dropdown-link:hover .dropdown-icon {
  background: var(--secondary-fixed);
  color: var(--on-secondary-fixed);
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--gutter);
    gap: 1.25rem;
    transition: left var(--transition-normal);
    overflow-y: auto;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    font-size: 1.15rem;
    color: #ffffff;
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-item.mobile-open .nav-dropdown {
    display: block;
  }

  .nav-item.mobile-open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .mobile-toggle {
    display: block;
  }

  .nav-actions .btn-quote {
    display: none;
  }
}

/* Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-label);
  font-size: 0.925rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--on-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-container);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-kinetic {
  background-color: var(--secondary-fixed);
  color: var(--on-secondary-fixed);
  font-weight: 800;
  box-shadow: var(--shadow-lime);
}

.btn-kinetic:hover {
  background-color: var(--secondary-fixed-dim);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(199, 243, 34, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--surface-container);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  background-color: var(--surface-container-high);
  border: 1px solid rgba(27, 28, 28, 0.08);
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pill-badge.kinetic {
  background: rgba(199, 243, 34, 0.22);
  border: 1px solid rgba(199, 243, 34, 0.5);
  color: var(--primary);
}

.pill-badge .material-symbols-outlined {
  font-size: 18px;
  color: var(--secondary);
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.live-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: var(--secondary-fixed);
  opacity: 0.6;
  animation: pulseRing 2s infinite ease-out;
}

/* ==========================================================================
   Hero Section — World-Class Kinetic Enterprise Design
   ========================================================================== */

.hero-wrapper {
  padding-top: 145px;
  padding-bottom: 85px;
  background: 
    radial-gradient(circle at 85% 20%, rgba(199, 243, 34, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 12% 75%, rgba(3, 37, 23, 0.05) 0%, transparent 50%),
    #fcf9f8;
  position: relative;
  overflow: hidden;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(3, 37, 23, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 10;
}

.hero-title {
  font-size: clamp(2.35rem, 4.2vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.hero-title span.highlight {
  position: relative;
  display: inline;
  color: var(--primary);
  background: linear-gradient(120deg, rgba(199, 243, 34, 0.38) 0%, rgba(199, 243, 34, 0.18) 100%);
  padding: 0.06em 0.3em;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-title span.highlight::after {
  display: none;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

/* Trust / Rating Strip */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 0.65rem 1.15rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-full);
  width: fit-content;
  box-shadow: 0 4px 16px rgba(3, 37, 23, 0.04);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid #ffffff;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.avatar-stack img:not(:first-child) {
  margin-left: -12px;
}

/* Hero Media Showcase Container */
.hero-media-container {
  position: relative;
  padding: 24px 20px;
}

.hero-card-composite {
  position: relative;
  border-radius: 28px;
  background: transparent;
  /* Crucial: overflow visible so badges float freely without any clipping! */
  overflow: visible;
  transition: transform 0.4s ease;
}

.hero-card-composite img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 28px 65px -12px rgba(3, 37, 23, 0.22), 0 0 0 1px rgba(3, 37, 23, 0.06);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card-composite:hover img {
  transform: scale(1.02);
}

/* ==========================================================================
   Global Floating Animation Suite
   ========================================================================== */

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

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1.2deg);
  }
}

@keyframes floatReverse {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(10px) rotate(-1.2deg);
  }
}

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

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(25px, -20px) scale(1.1);
  }
  100% {
    transform: translate(-15px, 15px) scale(0.95);
  }
}

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Top-Right Floating Pill Badge */
.floating-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: rgba(3, 37, 23, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #ffffff;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: left;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(199, 243, 34, 0.45);
  animation: floatSlow 5s ease-in-out infinite;
  z-index: 25;
  white-space: nowrap;
  width: auto;
  height: auto;
}

.floating-badge .material-symbols-outlined {
  color: var(--secondary-fixed);
  font-size: 22px;
}

.floating-badge span:not(.material-symbols-outlined) {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-top: 0;
}

/* Bottom-Left Floating Stat Card */
.floating-stat-card {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.15rem 1.6rem;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(3, 37, 23, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 4px solid var(--secondary-fixed);
  animation: floatReverse 6s ease-in-out infinite;
  z-index: 25;
  max-width: 320px;
}

.project-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(3, 37, 23, 0.9);
  backdrop-filter: blur(8px);
  color: var(--secondary-fixed);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  animation: floatGentle 5s ease-in-out infinite;
  z-index: 10;
}

.office-flag-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--surface-container);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  animation: floatGentle 4s ease-in-out infinite;
}

.stat-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--primary-fixed);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-wrap .material-symbols-outlined {
  font-size: 24px;
}

/* Stats Counter Bar */
.stats-banner {
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  margin-top: -40px;
  position: relative;
  z-index: 20;
  box-shadow: var(--shadow-lg);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--secondary-fixed);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .stats-banner {
    padding: 2.5rem 1.5rem;
  }
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
  align-items: flex-start;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid rgba(27, 28, 28, 0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--surface-container-high);
  transition: background var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(3, 37, 23, 0.12);
  border-color: rgba(3, 37, 23, 0.15);
}

.service-card:hover::before {
  background: var(--secondary-fixed);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--surface-container-low);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: var(--secondary-fixed);
  transform: translateY(-4px) scale(1.08);
}

.service-icon-box .material-symbols-outlined {
  font-size: 32px;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--on-surface-variant);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--on-surface);
}

.service-feature-item .material-symbols-outlined {
  font-size: 18px;
  color: var(--secondary);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap var(--transition-fast);
}

.service-card:hover .service-link {
  color: var(--secondary);
  gap: 0.75rem;
}

/* Interactive Filter Tabs */
.filter-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-tab-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 700;
  border: 1.5px solid var(--outline-variant);
  background: #ffffff;
  color: var(--on-surface-variant);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab-btn:hover, .filter-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Case Study / Project Card */
.project-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.project-thumbnail-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.project-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(3, 37, 23, 0.9);
  backdrop-filter: blur(8px);
  color: var(--secondary-fixed);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
}

.project-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.project-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface-container);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 1.25rem;
  align-self: flex-start;
}

/* Feature Showcase Split */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--surface-container-low);
}

.feature-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-media:hover img {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .feature-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature-media img {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .feature-media img {
    height: 260px;
    border-radius: var(--radius-lg);
  }
}

.values-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.value-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.value-box:hover {
  border-color: var(--secondary-fixed);
  transform: translateY(-4px) translateX(4px);
  box-shadow: 0 12px 28px rgba(3, 37, 23, 0.08);
}

.value-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--surface-container-high);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.value-box:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--secondary-fixed);
  color: var(--on-secondary-fixed);
}

/* Testimonial Cards */
.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(3, 37, 23, 0.1);
  border-color: rgba(199, 243, 34, 0.3);
}

.quote-stars {
  color: #f59e0b;
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.quote-text {
  font-style: italic;
  color: var(--on-surface);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--secondary-fixed);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .client-avatar {
  transform: scale(1.08);
}

.client-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

.client-info p {
  font-size: 0.825rem;
  color: var(--on-surface-variant);
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(199, 243, 34, 0.22) 0%, rgba(0,0,0,0) 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
  animation: floatOrb 12s infinite alternate ease-in-out;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2rem auto;
}

/* Interactive Forms & Inputs */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--outline-variant);
  background: #ffffff;
  color: var(--on-surface);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(3, 37, 23, 0.12);
}

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

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* FAQ Accordion Component */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
}

.faq-question .material-symbols-outlined {
  transition: transform var(--transition-normal);
  color: var(--secondary);
}

.faq-item.active .faq-question .material-symbols-outlined {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.75rem;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  color: var(--on-surface-variant);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* Global Office Cards */
.office-card {
  background: #ffffff;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.office-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.office-flag-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--surface-container-high);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.office-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.925rem;
}

.office-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--on-surface-variant);
}

.office-detail-row .material-symbols-outlined {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   Level Animation & Premium Button Enhancements
   ========================================================================== */

@keyframes kineticPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(199, 243, 34, 0.35), 0 0 0 0 rgba(199, 243, 34, 0.4);
  }
  50% {
    box-shadow: 0 8px 28px rgba(199, 243, 34, 0.55), 0 0 0 8px rgba(199, 243, 34, 0);
  }
}

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

@keyframes borderGlowSweep {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header & Primary "Get A Quote" Button */
.btn-quote {
  position: relative;
  overflow: hidden;
  animation: kineticPulse 3.5s infinite ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #d2f835 0%, #c7f322 50%, #b2dc16 100%);
  color: #111a00 !important;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-25deg);
  transition: none;
}

.btn-quote:hover::before {
  left: 200%;
  transition: left 0.75s ease-in-out;
}

.btn-quote:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(199, 243, 34, 0.6), 0 0 0 3px rgba(199, 243, 34, 0.3);
}

.btn-quote .material-symbols-outlined,
.btn-kinetic .btn-arrow-animated {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-quote:hover .material-symbols-outlined,
.btn-kinetic:hover .btn-arrow-animated {
  transform: translateX(4px);
}

/* ==========================================================================
   Ultra-Luxury 2-Panel Quote Modal System
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(3, 37, 23, 0.88) 0%, rgba(1, 15, 9, 0.95) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 960px;
  border-radius: var(--radius-xl);
  position: relative;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transform: perspective(1000px) rotateX(4deg) translateY(30px) scale(0.95);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease-out;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-card {
  transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(3, 37, 23, 0.08);
  border: 1px solid rgba(3, 37, 23, 0.1);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  z-index: 30;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close-btn:hover {
  background: var(--primary);
  color: var(--secondary-fixed);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(3, 37, 23, 0.2);
}

/* 2-Panel Split Layout */
.modal-split {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  min-height: 520px;
}

/* Left Sidebar */
.modal-sidebar {
  background: linear-gradient(145deg, #032517 0%, #0f3d27 60%, #1b4b32 100%);
  color: #ffffff;
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.modal-sidebar::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(199, 243, 34, 0.2) 0%, rgba(0,0,0,0) 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.modal-sidebar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(199, 243, 34, 0.18);
  border: 1px solid var(--secondary-fixed);
  color: var(--secondary-fixed);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.modal-sidebar-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.modal-sidebar-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-perks-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.modal-perk-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.modal-perk-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(199, 243, 34, 0.15);
  color: var(--secondary-fixed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-perk-item strong {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 700;
}

.modal-perk-item p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
  line-height: 1.4;
}

.modal-direct-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.modal-direct-contact span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.modal-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-fixed);
  font-weight: 800;
  font-size: 1.05rem;
  transition: transform var(--transition-fast);
}

.modal-phone-link:hover {
  transform: translateX(4px);
  color: #ffffff;
}

/* Right Form Area */
.modal-form-area {
  padding: 2.75rem 2.5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.modal-form-header {
  margin-bottom: 1.5rem;
}

.modal-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 0.5rem;
  line-height: 1.2;
}

.modal-form-subtitle {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  margin-top: 0.25rem;
}

.modal-grid {
  gap: 1rem;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 14px;
  color: var(--outline);
  font-size: 19px;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.input-with-icon .form-control {
  padding-left: 2.75rem;
  height: 46px;
  font-size: 0.92rem;
  border-radius: var(--radius-md);
  border: 1.5px solid #e0e0df;
  background: #fdfdfd;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-with-icon .form-control:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px rgba(3, 37, 23, 0.12);
}

.input-with-icon .form-control:focus + .input-icon,
.input-with-icon:focus-within .input-icon {
  color: var(--primary);
}

textarea.form-control {
  border-radius: var(--radius-md);
  border: 1.5px solid #e0e0df;
  background: #fdfdfd;
  padding: 0.85rem 1.15rem;
  font-size: 0.92rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

textarea.form-control:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px rgba(3, 37, 23, 0.12);
}

.btn-modal-submit {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(199, 243, 34, 0.45);
}

.btn-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(199, 243, 34, 0.6);
}

@media (max-width: 860px) {
  .modal-split {
    grid-template-columns: 1fr;
  }
  .modal-sidebar {
    padding: 2rem 1.5rem;
  }
  .modal-form-area {
    padding: 2rem 1.5rem;
  }
  .modal-card {
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-perks-list {
    display: none;
  }
}

/* Toast Alert System */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: #ffffff;
  padding: 1.15rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
  border-left: 5px solid var(--secondary-fixed);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  transform: translateY(100px) scale(0.9);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Site Footer */
.site-footer {
  background: var(--primary);
  color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.925rem;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--secondary-fixed);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition-fast);
}

.header-phone-link:hover {
  background: rgba(199, 243, 34, 0.15);
  color: var(--secondary-fixed);
  border-color: var(--secondary-fixed);
}

@media (max-width: 991px) {
  .header-phone-link {
    display: none;
  }
}

.social-links-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-icon-btn:hover {
  background: var(--secondary-fixed);
  color: var(--on-secondary-fixed);
  transform: translateY(-2px);
}

/* Service Detail Page Components */
.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(199, 243, 34, 0.2);
  border: 1px solid var(--secondary-fixed);
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tech-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.tech-tag {
  background: var(--surface-container-high);
  color: var(--primary);
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.tech-tag:hover {
  background: var(--secondary-fixed);
  color: var(--on-secondary-fixed);
  transform: translateY(-2px);
}

/* Contact Hub Cards Floating Hover */
.office-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.office-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(3, 37, 23, 0.12);
  border-color: rgba(199, 243, 34, 0.3);
}

.office-detail-row {
  transition: transform 0.25s ease;
}

.office-detail-row:hover {
  transform: translateX(4px);
}

/* ==========================================================================
   Global Floating Animations — Applied to EVERY Section
   ========================================================================== */

/* Additional Keyframes for Variety */
@keyframes floatDrift {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-8px) translateX(4px);
  }
  50% {
    transform: translateY(-12px) translateX(-2px);
  }
  75% {
    transform: translateY(-5px) translateX(6px);
  }
}

@keyframes shimmerGlow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(3, 37, 23, 0.06);
  }
  50% {
    box-shadow: 0 8px 24px rgba(199, 243, 34, 0.15), 0 4px 12px rgba(3, 37, 23, 0.08);
  }
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.18;
  }
  33% {
    transform: translate(30px, -25px) scale(1.15);
    opacity: 0.25;
  }
  66% {
    transform: translate(-20px, 15px) scale(0.9);
    opacity: 0.15;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.18;
  }
}

@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-10px) scale(1.02);
  }
  60% {
    transform: translateY(-6px) scale(1.01);
  }
}

@keyframes subtlePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.015);
  }
}

/* ---- Hero Section Floating Elements ---- */
.hero-card-composite {
  animation: floatBounce 6s ease-in-out infinite;
}

.hero-content .pill-badge {
  animation: floatDrift 5s ease-in-out infinite;
}

/* ---- Stats Banner Section ---- */
.stat-item {
  animation: floatGentle 4.5s ease-in-out infinite;
}

.stat-item:nth-child(2) {
  animation-delay: 0.6s;
}

.stat-item:nth-child(3) {
  animation-delay: 1.2s;
}

.stat-item:nth-child(4) {
  animation-delay: 1.8s;
}

.stat-number-wrapper {
  animation: subtlePulse 3s ease-in-out infinite;
}

/* ---- Service Cards Section ---- */
.service-card {
  animation: floatGentle 5.5s ease-in-out infinite;
}

.service-card:nth-child(2) {
  animation-delay: 0.4s;
}

.service-card:nth-child(3) {
  animation-delay: 0.8s;
}

.service-card:nth-child(4) {
  animation-delay: 1.2s;
}

.service-card:nth-child(5) {
  animation-delay: 1.6s;
}

.service-card:nth-child(6) {
  animation-delay: 2.0s;
}

.service-icon-box {
  animation: floatPulse 4s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon-box {
  animation-delay: 0.5s;
}

.service-card:nth-child(3) .service-icon-box {
  animation-delay: 1s;
}

/* ---- Section Headers ---- */
.section-header .pill-badge {
  animation: floatDrift 5s ease-in-out infinite;
}

.section-header .headline-lg {
  animation: subtlePulse 6s ease-in-out infinite;
}

/* ---- Feature Split / Why Choose Us ---- */
.feature-media {
  animation: floatBounce 7s ease-in-out infinite;
}

.value-box {
  animation: floatGentle 5s ease-in-out infinite;
}

.value-box:nth-child(2) {
  animation-delay: 0.5s;
}

.value-box:nth-child(3) {
  animation-delay: 1s;
}

.value-icon {
  animation: floatPulse 4s ease-in-out infinite;
}

.value-box:nth-child(2) .value-icon {
  animation-delay: 0.7s;
}

.value-box:nth-child(3) .value-icon {
  animation-delay: 1.4s;
}

/* ---- Testimonial Cards ---- */
.testimonial-card {
  animation: floatGentle 6s ease-in-out infinite;
  animation-fill-mode: both;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.7s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 1.4s;
}

.quote-stars {
  animation: shimmerGlow 3s ease-in-out infinite;
}

.testimonial-card .stat-icon-wrap {
  animation: floatPulse 4s ease-in-out infinite;
}

/* ---- CTA Banner Section ---- */
.cta-banner {
  animation: subtlePulse 8s ease-in-out infinite;
}

.cta-banner .btn {
  animation: floatGentle 3s ease-in-out infinite;
}

/* ---- Project / Case Study Cards ---- */
.project-card {
  animation: floatGentle 5.5s ease-in-out infinite;
}

.project-card:nth-child(2) {
  animation-delay: 0.5s;
}

.project-card:nth-child(3) {
  animation-delay: 1s;
}

.project-card:nth-child(4) {
  animation-delay: 1.5s;
}

.project-card:nth-child(5) {
  animation-delay: 2s;
}

.project-card:nth-child(6) {
  animation-delay: 2.5s;
}

.project-metric-pill {
  animation: floatPulse 4s ease-in-out infinite;
}

/* ---- FAQ Accordion ---- */
.faq-item {
  animation: floatGentle 6s ease-in-out infinite;
}

.faq-item:nth-child(2) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.6s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.9s;
}

.faq-item:nth-child(5) {
  animation-delay: 1.2s;
}

/* ---- Office / Contact Cards ---- */
.office-card {
  animation: floatDrift 6s ease-in-out infinite;
}

.office-card:nth-child(2) {
  animation-delay: 0.8s;
}

.office-flag-icon {
  animation: floatPulse 4s ease-in-out infinite;
}

/* ---- Tech Tags / Badges ---- */
.tech-tag {
  animation: floatGentle 4s ease-in-out infinite;
}

.tech-tag:nth-child(2) {
  animation-delay: 0.2s;
}

.tech-tag:nth-child(3) {
  animation-delay: 0.4s;
}

.tech-tag:nth-child(4) {
  animation-delay: 0.6s;
}

.tech-tag:nth-child(5) {
  animation-delay: 0.8s;
}

.service-hero-badge {
  animation: floatDrift 5s ease-in-out infinite;
}

/* ---- Filter Tabs ---- */
.filter-tab-btn {
  animation: floatGentle 5s ease-in-out infinite;
}

.filter-tab-btn:nth-child(2) {
  animation-delay: 0.3s;
}

.filter-tab-btn:nth-child(3) {
  animation-delay: 0.6s;
}

/* ---- Footer Social Icons ---- */
.social-icon-btn {
  animation: floatGentle 4s ease-in-out infinite;
}

.social-icon-btn:nth-child(2) {
  animation-delay: 0.3s;
}

.social-icon-btn:nth-child(3) {
  animation-delay: 0.6s;
}

.social-icon-btn:nth-child(4) {
  animation-delay: 0.9s;
}

/* ---- Ambient Floating Orbs behind Sections ---- */
.section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(199, 243, 34, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
  animation: orbFloat 15s infinite ease-in-out;
  z-index: 0;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -8%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(3, 37, 23, 0.05) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
  animation: orbFloat 18s infinite reverse ease-in-out;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

/* ---- Modal Floating Elements ---- */
.modal-sidebar-badge {
  animation: floatDrift 5s ease-in-out infinite;
}

.modal-perk-icon {
  animation: floatPulse 4s ease-in-out infinite;
}

.modal-perk-item:nth-child(2) .modal-perk-icon {
  animation-delay: 0.4s;
}

.modal-perk-item:nth-child(3) .modal-perk-icon {
  animation-delay: 0.8s;
}

/* ---- Accessibility: Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==========================================================================
   Comprehensive Responsive Architecture (Mobile, Tablet & Large Screens)
   ========================================================================== */

/* 1. Large Laptops & Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  :root {
    --container-max: 1100px;
    --section-padding: 80px;
  }
  .hero-grid {
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
    gap: 2rem;
  }
}

/* 2. Tablets & Small Laptops (max-width: 991px) */
@media (max-width: 991px) {
  :root {
    --section-padding: 70px;
    --gutter: 20px;
  }

  /* Header & Navigation Drawer */
  .site-header {
    height: 70px;
  }
  .nav-container {
    height: 70px;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem 4rem;
    gap: 1.25rem;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    font-size: 1.15rem;
    color: #ffffff;
    width: 100%;
    padding: 0.75rem 0;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-dropdown {
    position: static;
    transform: none !important;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 0.75rem;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-item.mobile-open .nav-dropdown {
    display: block;
  }
  .nav-item.mobile-open .dropdown-arrow {
    transform: rotate(180deg);
  }
  .mobile-toggle {
    display: block;
  }
  .header-phone-link {
    display: none;
  }

  /* Hero & Grids */
  .hero-wrapper {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-btn-group {
    justify-content: center;
  }
  .hero-trust-bar {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-media-container {
    padding: 16px 8px;
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-card-composite img {
    height: 360px;
  }
  .floating-stat-card {
    left: 8px;
    bottom: 8px;
    padding: 0.85rem 1.25rem;
    max-width: calc(100% - 16px);
  }
  .floating-badge {
    right: 8px;
    top: 8px;
    padding: 0.55rem 1rem;
    width: auto;
    height: auto;
  }

  /* Grids & Feature Splits */
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .grid-2, .feature-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature-media img {
    height: 360px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  /* Modal */
  .modal-split {
    grid-template-columns: 1fr;
  }
  .modal-sidebar {
    padding: 2rem 1.5rem;
  }
  .modal-form-area {
    padding: 2rem 1.5rem;
  }
  .modal-card {
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-perks-list {
    display: none;
  }
}

/* 3. Mobile Phones (max-width: 640px) */
@media (max-width: 640px) {
  :root {
    --section-padding: 50px;
    --gutter: 16px;
  }

  /* Typography on Mobile */
  .display-xl {
    font-size: 2.15rem !important;
    line-height: 1.15;
  }
  .headline-lg {
    font-size: 1.75rem !important;
    line-height: 1.2;
  }
  .headline-md {
    font-size: 1.45rem !important;
  }
  .body-lg {
    font-size: 1rem !important;
  }

  /* All Multi-Column Grids Stack into Single Column */
  .grid-2, .grid-3, .grid-4, .stats-grid, .footer-grid, .form-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .form-group.full-width {
    grid-column: span 1 !important;
  }

  /* Stats Banner */
  .stats-banner {
    padding: 2rem 1.25rem;
    margin-top: -20px;
    border-radius: var(--radius-lg);
  }
  .stat-number-wrapper {
    font-size: 2.5rem;
  }

  /* Media & Images */
  .hero-card-composite img {
    height: 260px;
  }
  .feature-media img {
    height: 240px;
    border-radius: var(--radius-md);
  }
  .floating-badge {
    top: 6px;
    right: 6px;
    padding: 0.45rem 0.85rem;
    gap: 0.35rem;
    width: auto;
    height: auto;
  }
  .floating-badge .material-symbols-outlined {
    font-size: 16px;
  }
  .floating-badge span:not(.material-symbols-outlined) {
    font-size: 0.68rem;
  }
  .floating-stat-card {
    left: 6px;
    bottom: 6px;
    padding: 0.65rem 0.9rem;
    gap: 0.5rem;
    border-radius: 14px;
    max-width: calc(100% - 12px);
  }
  .stat-icon-wrap {
    width: 32px;
    height: 32px;
  }

  /* Buttons & CTA */
  .hero-btn-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-btn-group .btn {
    width: 100%;
  }
  .btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.875rem;
  }
  .cta-banner {
    padding: 3rem 1.5rem;
    border-radius: var(--radius-lg);
  }

  /* Filter Tabs Scrolling */
  .filter-tabs-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .filter-tab-btn {
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  /* Footer Bottom */
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Modal Form on Mobile */
  .modal-overlay {
    padding: 0.75rem;
  }
  .modal-card {
    border-radius: var(--radius-lg);
    max-height: 94vh;
  }
  .modal-sidebar {
    padding: 1.5rem 1.25rem;
  }
  .modal-form-area {
    padding: 1.5rem 1.25rem;
  }
  .modal-form-title {
    font-size: 1.25rem;
  }
}
