:root {
  /* --- Contact Us Page Color Palette (Unified Sitewide) --- */
  
  /* Backgrounds */
  --bg-primary: #070707;      /* Main dark background */
  --bg-secondary: #202020;    /* Cards, forms, elevated surfaces */
  --bg-overlay: rgba(7, 7, 7, 0.85); /* Overlay backgrounds */
  
  /* Brand Colors */
  --brand-primary: #3bc1c8;   /* Rush teal - primary accent */
  --brand-secondary: #4b7ebf; /* Rush blue - secondary accent */
  --brand-glow: rgba(59, 193, 200, 0.25); /* Teal glow effects */
  
  /* Text Colors */
  --text-primary: #ffffff;    /* Primary text */
  --text-secondary: #e0e0e0;  /* Secondary text */
  --text-tertiary: #b0b0b0;   /* Muted text */
  
  /* Border & Divider Colors */
  --border-subtle: rgba(255, 255, 255, 0.08); /* Subtle dividers */
  --border-medium: rgba(255, 255, 255, 0.15); /* Medium borders */
  --border-strong: rgba(255, 255, 255, 0.25); /* Strong borders */
  
  /* Legacy compatibility - mapped to Contact Us colors */
  --color-primary: #070707;
  --color-secondary: #3bc1c8;
  --color-accent: #4b7ebf;
  --color-text: #ffffff;
  --color-text-light: #ffffff;
  --color-background: #070707;
  --color-background-dark: #202020;
  --color-border: rgba(255, 255, 255, 0.15);
  --brand-on-primary: #070707;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 3rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-width: 1px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal: 1040;
  --z-index-popover: 1050;
  --z-index-tooltip: 1060;
  
  /* Container */
  --container-max-width: 1200px;
  --container-padding: var(--spacing-md);
}

/* Dark Mode Colors - unified with Contact Us palette */
[data-theme="dark"] {
  --color-text: #ffffff;
  --color-text-light: #e0e0e0;
  --color-background: #070707;
  --color-background-dark: #202020;
  --color-border: rgba(255, 255, 255, 0.15);
}

/* --- Rush UI Utilities & Components --- */
/* Unified with Contact Us color system */
:root {
  --brand-primary-600: #3bc1c8;
  --brand-primary-700: #4b7ebf;
  --bg: #070707;         /* Contact Us background */
  --surface-1: #202020;  /* Contact Us forms/cards */
  --divider: var(--border-subtle);
}

html, body { background-color: #070707 !important; }

/* Page wrapper for Our Services and Contact Us pages */
.page-wrapper {
  background-color: #070707 !important;
  min-height: 100vh;
}

.section { padding-top: 72px; padding-bottom: 72px; }
.section--tight { padding-top: 48px; padding-bottom: 48px; }
.container-narrow { max-width: 920px; margin-inline: auto; }
.eyebrow { color: var(--brand-primary); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; }
.section-title { 
  font-family: 'Montserrat', sans-serif;
  color: #fff; 
  font-weight: 500; 
  font-size: clamp(1.75rem, 0.9rem + 2.4vw, 2.5rem); 
  text-align: center;
  margin-bottom: 1rem;
}
.section-title-bold { font-weight: 700; }
.section-subtitle { color: #e0e0e0; font-size: clamp(1rem, 0.9rem + 0.6vw, 1.125rem); }

.navbar-glass { background: #070707 !important; backdrop-filter: blur(8px); border-bottom: 1px solid var(--border-subtle); }
.navbar .nav-link { 
  color: rgba(255,255,255,0.7) !important; 
  font-weight: 600; 
  padding: .75rem 1rem; 
  position: relative;
  transition: all 0.3s ease;
}
.navbar .nav-link.active, .navbar .nav-link:hover { 
  color: #fff !important; 
  transform: translateY(-4px);
}
.navbar .nav-link::after { 
  content:""; 
  position:absolute; 
  left:0.5rem; 
  bottom:6px; 
  width: 0;
  height:2px; 
  background: var(--brand-primary); 
  border-radius: 2px;
  transition: width 0.3s ease;
}
.navbar .nav-link.active::after, 
.navbar .nav-link:hover::after { 
  width: calc(100% - 1rem);
}

.btn-pill { border-radius: 9999px !important; font-weight: 600 !important; }
.btn-lg-elev { padding: 12px 28px !important; box-shadow: 0 8px 24px rgba(0,0,0,.35); transition: all 0.3s ease; font-size: 1rem !important; }
.btn-primary-rush { background: var(--brand-primary) !important; color: #fff !important; border: none !important; transition: all 0.3s ease; }
.btn-primary-rush:hover { background: var(--brand-primary) !important; color: #fff !important; box-shadow: 0 16px 40px var(--brand-glow); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.08) !important; border: 2px solid #fff !important; color: #fff !important; backdrop-filter: blur(6px); transition: all 0.3s ease; padding: 12px 28px !important; font-size: 1rem !important; }
.btn-ghost-light:hover { background: rgba(255,255,255,.15) !important; border-color: var(--brand-primary) !important; color: #fff !important; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
/* CTA alignment helper for consistent width and alignment */
.btn-cta { min-width: 180px; text-align: center; }
@media (max-width: 575.98px) {
  .btn-cta { width: 100%; min-width: 0; }
}

.section-divider {
  width: 160px;
  height: 4px;
  background: var(--brand-primary);
  margin: 0 auto 3rem;
  border-radius: 3px;
}

.hero { position: relative; min-height: 100vh; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; background-position: center; background-size: cover; filter: brightness(.60); z-index: -2; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,7,7,0.5) 0%, rgba(7,7,7,0.75) 60%, rgba(7,7,7,0.85) 100%); z-index: -1; }
.hero__content { min-height: 100vh; display: grid; align-items: center; }
.hero .display-hero { font-size: clamp(2rem, 1.1rem + 3vw, 3.25rem); font-weight: 800; text-shadow: 0 8px 32px rgba(0,0,0,.7); color: #fff; }
.hero .divider { width: 160px; height: 4px; background: var(--brand-primary); border-radius: 3px; margin-bottom: 16px; }
.hero .lead { color: #ffffff; line-height:1.9; }
.hero p { color: #ffffff; line-height:1.9; }

.img-rounded { border-radius: 16px; overflow: hidden; }
.card-glass { background: rgba(32,32,32,0.7); border: 1px solid var(--border-subtle); border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,.4); backdrop-filter: blur(12px); }

.site-footer { 
  background: #070707; 
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 2000px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #3bc1c8 10%, #3bc1c8 90%, transparent 100%);
}.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
  .footer-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.footer-brand .footer-logo {
  filter: brightness(1.1);
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--brand-primary);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
  transform: translateY(-4px);
}

.footer-nav a:hover::after {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 16px;
}

@media (max-width: 991px) {
  .social-icons { justify-content: center; }
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(59,193,200,0.3);
  color: #fff;
}

.footer-bottom {
  padding-top: 30px;
}

.copyright {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.copyright span {
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}