@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --color-graphite: #34383c;
  --color-graphite-light: #3f4347;
  --color-graphite-dark: #2a2d30;
  --color-charcoal: #34383c;
  --color-charcoal-light: #3f4347;
  --color-charcoal-dark: #2a2d30;
  --color-blue: #4a90e2;
  --color-blue-hover: #5ba3f5;
  --color-blue-muted: #3a7bc8;
  --color-orange: #ff6b35;
  --color-orange-hover: #ff8555;
  --color-white: #fafaf8;
  --color-warm-gray: #d4d2ce;
  --color-tan: #d4a574;
  --color-gray-light: #e5e5e5;
  --color-gray-medium: #999999;

  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
  --spacing-2xl: 96px;

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  font-weight: 400;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(70, 74, 78, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(50, 54, 58, 0.12) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 50%, rgba(65, 69, 73, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 25%, rgba(0, 0, 0, 0.15) 50%, transparent 75%),
    linear-gradient(180deg, #34383c 0%, #2d3135 40%, #2a2e32 70%, #282c30 100%);
  background-attachment: fixed;
  color: var(--color-warm-gray);
  position: relative;
  min-width: 320px;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.04) 0%, transparent 8%),
    radial-gradient(circle at 35% 45%, rgba(0, 0, 0, 0.06) 0%, transparent 10%),
    radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.03) 0%, transparent 12%),
    radial-gradient(circle at 85% 65%, rgba(0, 0, 0, 0.05) 0%, transparent 9%),
    radial-gradient(circle at 45% 75%, rgba(255, 255, 255, 0.035) 0%, transparent 11%),
    radial-gradient(circle at 25% 85%, rgba(0, 0, 0, 0.055) 0%, transparent 8%);
  background-size: 400px 400px, 350px 350px, 500px 500px, 450px 450px, 380px 380px, 420px 420px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}

body > * {
  position: relative;
  z-index: 2;
}

#app {
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
  position: relative;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.header {
  background:
    radial-gradient(circle at 20% 15%, rgba(65, 69, 73, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 80% 85%, rgba(35, 39, 43, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(50, 54, 58, 0.08) 0%, transparent 50%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.015) 0%, transparent 28%, rgba(0, 0, 0, 0.25) 55%, transparent 82%),
    linear-gradient(180deg, rgba(42, 46, 50, 0.98) 0%, rgba(36, 40, 44, 0.99) 50%, rgba(32, 36, 40, 1) 100%);
  backdrop-filter: blur(10px);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(74, 144, 226, 0.08);
  pointer-events: auto;
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.015),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, ##012763 0%, transparent 100%);
  pointer-events: none;
}

.header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(74, 144, 226, 0.15) 50%, transparent 100%);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  position: relative;
  padding-left: 8px;
}

.logo-container::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.arl-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}

.arl-main-logo {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4)) brightness(1.05);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.arl-logo-link:hover .arl-main-logo {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 12px rgba(79, 209, 197, 0.3)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4)) brightness(1.1);
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.78;
  transition: opacity 0.2s;
  flex-shrink: 0;
  max-width: 132px;
  background: rgb(255, 255, 255);
  border-radius: 6px;
}

.brand-logo-link:hover {
  opacity: 0.9;
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

.brand-logo-auto {
  background: rgb(255, 255, 255) !important;
  border-radius: 6px;
  padding: 1px !important;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  opacity: 1 !important;
  object-fit: contain;
  max-width: none;
}

.brand-logo-asset {
  background: rgb(255, 255, 255) !important;
  border-radius: 6px;
  padding: 1px !important;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  opacity: 1 !important;
  object-fit: contain;
  max-width: none;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(1.2) contrast(1.1);
  background: #f5f5f0;
  border-radius: 4px;
  padding: 4px;
}

.logo-image-white {
  height: 50px;
  width: auto;
  display: block;
  filter: brightness(1.3) contrast(1.2);
  background: white;
  border-radius: 4px;
  padding: 4px;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  pointer-events: auto;
}

.nav a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-blue);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: rgba(250, 250, 248, 0.95);
  text-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  color: rgba(250, 250, 248, 0.95);
}

.nav a.active::after {
  width: 100%;
  background-color: var(--color-blue);
}

.nav .cta-link {
  background-color: var(--color-orange);
  padding: 10px 24px;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.nav .cta-link::after {
  display: none;
}

.nav .cta-link:hover {
  background-color: var(--color-orange-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

/* Nav Item Wrapper Styles */
.nav-item-wrapper {
  display: inline-flex;
  align-items: center;
  background: rgba(52, 56, 60, 0.3);
  border: 1px solid var(--color-blue);
  border-radius: 4px;
  padding: 8px 14px;
  transition: all 0.3s ease;
}

.nav-item-wrapper:hover {
  background: rgba(52, 56, 60, 0.5);
  border-color: var(--color-blue-hover);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Nav Dropdown Styles */
.nav-item-with-dropdown {
	text-wrap:none;
	position: relative;
	z-index: 1001;
	display: inline-flex;
	align-items: center;
	gap: 2px;
	background: rgba(52, 56, 60, 0.3);
	border: 1px solid var(--color-blue);
	border-radius: 4px;
	padding: 8px 14px;
	transition: all 0.3s ease;
}

.nav-item-with-dropdown:hover {
  background: rgba(52, 56, 60, 0.5);
  border-color: var(--color-blue-hover);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.nav-link {
	white-space: nowrap;
  color: rgba(250, 250, 248, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: 14px;
  cursor: pointer;
  padding-bottom: 0;
}

.nav-link::after {
  display: none;
}

.nav-link:hover {
  color: rgba(250, 250, 248, 1);
}

.nav-chevron-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 248, 0.7);
  transition: color 0.2s ease;
  margin-left: 2px;
}

.nav-chevron-button:hover {
  color: rgba(250, 250, 248, 1);
}

.nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
  pointer-events: none;
}

.nav-dropdown-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
	text-wrap:none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: linear-gradient(180deg, rgba(40, 44, 48, 0.98) 0%, rgba(36, 40, 44, 0.99) 100%);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	min-width: 240px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 1002;
	pointer-events: none;
}

.nav-dropdown-open .nav-dropdown-menu {
	text-wrap:none;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.nav-dropdown-item {
	text-wrap:none;
	display: block;
	padding: 12px 20px;
	color: rgba(250, 250, 248, 0.9);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: background-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.nav-dropdown-item:first-child {
  border-radius: 6px 6px 0 0;
}

.nav-dropdown-item:last-child {
  border-radius: 0 0 6px 6px;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus {
  background-color: rgba(74, 144, 226, 0.15);
  color: rgba(250, 250, 248, 1);
  outline: none;
}

.hero {
  padding: 0;
  background: url('assets/6k_hero-home_page.jpeg')
    center/cover no-repeat;
  min-height: 600px;
  height: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  width: 100%;
  padding-top: 120px;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2 0%, rgba(135, 206, 250, 0.4) 50%, #4a90e2 100%);
  z-index: 10;
}

.hero-section {
  position: relative;
  width: 100vw;
  height: calc(100vh - 90px);
  max-height: calc(100vh - 90px);
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-clearpath-auto {
  height: 76vh;
  max-height: 76vh;
  background-image: url('assets/ClearPath_first_-_Canva_Edited.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}


.hero-clearpath-auto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding: var(--spacing-xl) var(--spacing-md);
  position: relative;
  z-index: 2;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: calc(100% + 80px);
  background: transparent;
  z-index: -1;
  pointer-events: none;
  display: none;
}

.hero-auto .hero-content::before,
.hero-asset .hero-content::before {
  display: none;
}

.hero-logo {
  height: 120px;
  width: auto;
  margin: 0 auto var(--spacing-md);
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  position: relative;
  left: -5%;
}

.company-name {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-headline {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  margin-top: 20px;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subheadline {
  font-size: 29px;
  line-height: 1.5;
  color: var(--color-gray-light);
  margin-bottom: var(--spacing-xl);
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-ctas {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  position: absolute;
  bottom: var(--spacing-sm);
  left: 50%;
  transform: translateX(-50%);
}

.hero-ctas .btn {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 16px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-orange);
  color: #FFFFFF;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-primary:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-orange-lift {
  background-color: var(--color-orange);
  transition: all 0.3s ease;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-orange-lift:hover {
  background-color: #ff8556;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.btn-features-cta {
  background-color: #5a3825;
  color: white;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #5a3825;
  transition: all 0.2s ease;
}

.btn-features-cta:hover {
  background-color: #6b4530;
  border-color: #6b4530;
}

.services {
  padding: var(--spacing-2xl) 0 48px 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(85, 89, 94, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 70% 75%, rgba(50, 54, 59, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(70, 74, 79, 0.08) 0%, transparent 50%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.04) 0%, transparent 30%, rgba(0, 0, 0, 0.18) 60%, transparent 80%),
    linear-gradient(180deg, #3f4348 0%, #383c41 50%, #34383d 100%);
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -1px;
  margin-bottom: 0;
  left: 0;
  right: 0;
  border-top: none;
  border-bottom: none;
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2 0%, rgba(135, 206, 250, 0.4) 50%, #4a90e2 100%);
}

.about-arl-band + .services {
  padding-top: var(--spacing-md);
  margin-top: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  align-items: stretch;
}

.service-card {
  background:
    radial-gradient(circle at 15% 10%, rgba(65, 69, 73, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(35, 39, 43, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(50, 54, 58, 0.1) 0%, transparent 50%),
    linear-gradient(138deg, rgba(255, 255, 255, 0.02) 0%, transparent 25%, rgba(0, 0, 0, 0.2) 50%, transparent 75%),
    linear-gradient(135deg, #37393d 0%, #2f3337 50%, #2c3034 100%);
  padding: var(--spacing-xl);
  border-radius: 8px;
  border: 2px solid rgba(74, 144, 226, 0.7);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 144, 226, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card-top {
  flex-shrink: 0;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.service-card-middle {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-bottom {
  flex-shrink: 0;
  margin-top: auto;
}

.service-icon {
  color: var(--color-orange);
  margin-bottom: var(--spacing-md);
}

.logo-wrapper {
  position: relative;
  display: inline-block;
}

.logo-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  pointer-events: none;
}

.logo-panel,
.logo-panel * {
  background-color: #ffffff !important;
}

.logo-panel-bordered {
  transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.logo-panel-bordered:hover {
  border: 5px solid #2F6BFF !important;
  box-shadow: 0 0 12px rgba(47, 107, 255, 0.4);
  transform: translateY(-8px);
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: var(--spacing-sm);
  color: #000000;
}

.service-card p {
  color: #000000;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: var(--spacing-xs) 0;
  color: #000000;
  position: relative;
  padding-left: 24px;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
}

.service-card-white h3 {
  color: var(--color-white);
}

.service-card-white p {
  color: var(--color-white);
}

.service-card-white .service-features li {
  color: var(--color-white);
}

/* Enhanced Service Card Styles */
.service-card-enhanced {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-enhanced:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5),
              0 0 20px rgba(74, 144, 226, 0.4),
              0 0 40px rgba(74, 144, 226, 0.2),
              0 0 0 1px rgba(74, 144, 226, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(74, 144, 226, 0.9);
}

.service-card-enhanced:hover .service-icon-enhanced {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.3) 0%, rgba(74, 144, 226, 0.15) 100%);
  border-color: rgba(74, 144, 226, 0.6);
}

.service-card-enhanced:hover .service-icon-enhanced svg {
  stroke: #5ba3f5;
  filter: brightness(1.3);
}

.service-icon-enhanced {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(74, 144, 226, 0.05) 100%);
  border-radius: 12px;
  border: 2px solid rgba(74, 144, 226, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon-enhanced svg {
  stroke: #4a90e2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-title-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.service-title-link {
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.service-title-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 16px;
  width: 0;
  height: 2px;
  background: #4a90e2;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-title-link:hover {
  transform: translateY(-5px);
}

.service-title-link:hover::after {
  width: calc(100% - 16px);
}

.service-title-link:hover h3 {
  color: #5ba3f5;
}

.service-title-link:hover .service-title-arrow {
  transform: translateX(6px);
  color: #5ba3f5;
}

.service-title-wrapper h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 3px solid #4a90e2;
  line-height: 1.2;
  color: var(--color-white);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-title-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--color-white);
  font-weight: 700;
}

.service-title-divider {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, #4a90e2 0%, rgba(74, 144, 226, 0.3) 100%);
  margin-left: 16px;
  margin-top: 8px;
}

/* Animated List Items */
.service-features-animated li {
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.service-features-animated li:nth-child(1) { animation-delay: 0.1s; }
.service-features-animated li:nth-child(2) { animation-delay: 0.2s; }
.service-features-animated li:nth-child(3) { animation-delay: 0.3s; }
.service-features-animated li:nth-child(4) { animation-delay: 0.4s; }
.service-features-animated li:nth-child(5) { animation-delay: 0.5s; }
.service-features-animated li:nth-child(6) { animation-delay: 0.6s; }
.service-features-animated li:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Intersection Observer trigger class */
.service-features-visible li {
  animation-play-state: running;
}

.how-we-work {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, #2f3438 0%, #2a2e32 100%);
}

.how-we-work h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

.section-intro {
  text-align: center;
  font-size: 20px;
  color: var(--color-warm-gray);
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.8;
  font-weight: 400;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.process-step {
  text-align: center;
  padding: var(--spacing-lg);
}

.step-number {
  font-size: 64px;
  font-weight: 700;
  color: var(--color-orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.process-step h3 {
  font-size: 24px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}

.process-step p {
  color: var(--color-warm-gray);
  line-height: 1.8;
  font-weight: 400;
}

.credibility {
  padding: var(--spacing-lg) 0;
  background: linear-gradient(180deg, #3d4247 0%, #35393e 100%);
}

.credibility-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  align-items: start;
}

.credibility-text h2 {
  font-size: 38px;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
  line-height: 1.2;
}

.credibility-text p {
  color: var(--color-warm-gray);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  font-size: 18px;
  font-weight: 400;
}

.credibility-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--spacing-lg);
}

.stat {
  text-align: center;
  padding: var(--spacing-md);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 14px;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.cta-section {
  padding: var(--spacing-lg) 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(75, 79, 83, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 75% 80%, rgba(45, 49, 53, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(60, 64, 68, 0.08) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, transparent 30%, rgba(0, 0, 0, 0.2) 60%, transparent 80%),
    linear-gradient(180deg, #36393d 0%, #2f3337 50%, #2c3034 100%);
  text-align: center;
  position: relative;
}

.cta-section h2 {
  font-size: 50px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}

.cta-section p {
  font-size: 24px;
  color: var(--color-warm-gray);
  margin-bottom: var(--spacing-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background:
    radial-gradient(circle at 20% 15%, rgba(65, 69, 73, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 80% 85%, rgba(35, 39, 43, 0.18) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(50, 54, 58, 0.1) 0%, transparent 50%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.025) 0%, transparent 28%, rgba(0, 0, 0, 0.25) 55%, transparent 82%),
    linear-gradient(180deg, #2d3135 0%, #272b2f 50%, #23272b 100%);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: none;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2 0%, rgba(135, 206, 250, 0.4) 50%, #4a90e2 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  font-size: 16px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: var(--color-gray-light);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 14px;
}

.footer-section a:hover {
  color: var(--color-blue-hover);
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 2px;
  margin-bottom: var(--spacing-xs);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.footer-logo:hover {
  transform: translateY(-8px);
}

.footer-section p {
  color: var(--color-gray-light);
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-tagline {
  color: var(--color-gray-medium);
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-charcoal-light);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer-bottom p {
  color: var(--color-gray-medium);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-md);
}

.footer-legal a {
  color: var(--color-gray-medium);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--color-blue-hover);
}

.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--color-white);
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--color-blue);
}

.content-section {
  padding: var(--spacing-2xl) 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(75, 79, 83, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 75% 80%, rgba(45, 49, 53, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(60, 64, 68, 0.08) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, transparent 30%, rgba(0, 0, 0, 0.2) 60%, transparent 80%),
    linear-gradient(180deg, #36393d 0%, #2f3337 50%, #2c3034 100%);
  position: relative;
}

.features-band + .content-section::before,
.content-section + .content-section::before,
.content-section + .capabilities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2 0%, rgba(135, 206, 250, 0.4) 50%, #4a90e2 100%);
}

.content-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2 0%, rgba(135, 206, 250, 0.4) 50%, #4a90e2 100%);
}

.two-column-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  align-items: flex-start;
}

.two-column-layout.align-center {
  align-items: center;
}

.column h3 {
  font-size: 42px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}

.column p {
  color: var(--color-warm-gray);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  font-weight: 400;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--color-charcoal-light) 0%,
    var(--color-charcoal) 100%
  );
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.award-section {
  padding: var(--spacing-2xl) 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(85, 89, 94, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 70% 75%, rgba(50, 54, 59, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(70, 74, 79, 0.08) 0%, transparent 50%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.04) 0%, transparent 30%, rgba(0, 0, 0, 0.18) 60%, transparent 80%),
    linear-gradient(180deg, #3f4348 0%, #383c41 50%, #34383d 100%);
  position: relative;
}

.award-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  align-items: center;
}

.award-badge {
  text-align: center;
  padding: var(--spacing-xl);
  background: linear-gradient(180deg, #323639 0%, #2a2e32 100%);
  border-radius: 8px;
  border: 2px solid var(--color-orange);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.badge-icon {
  color: var(--color-orange);
  margin-bottom: var(--spacing-md);
}

.award-badge h3 {
  font-size: 24px;
  margin-bottom: var(--spacing-xs);
  color: var(--color-white);
}

.award-label {
  font-size: 18px;
  color: var(--color-orange);
  font-weight: 600;
}

.award-text h2 {
  font-size: 38px;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
  line-height: 1.2;
}

.award-text p {
  color: var(--color-warm-gray);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  font-size: 18px;
  font-weight: 400;
}

.steps-section {
  padding: var(--spacing-2xl) 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(75, 79, 83, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 75% 80%, rgba(45, 49, 53, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(60, 64, 68, 0.08) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, transparent 30%, rgba(0, 0, 0, 0.2) 60%, transparent 80%),
    linear-gradient(180deg, #36393d 0%, #2f3337 50%, #2c3034 100%);
  position: relative;
  border-bottom: 4px solid var(--color-blue);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.step-card {
  text-align: center;
  padding: var(--spacing-xl);
  background:
    radial-gradient(circle at 15% 10%, rgba(75, 79, 84, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(40, 44, 49, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(60, 64, 69, 0.1) 0%, transparent 50%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.025) 0%, transparent 25%, rgba(0, 0, 0, 0.2) 52%, transparent 78%),
    linear-gradient(135deg, #41454a 0%, #3a3e43 50%, #35393e 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.step-number-badge {
  width: 64px;
  height: 64px;
  background-color: var(--color-orange);
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.step-card h3 {
  font-size: 24px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}

.step-card p {
  color: var(--color-warm-gray);
  line-height: 1.8;
  font-weight: 400;
}

.personal-care-section,
.vehicles-section {
  padding: var(--spacing-2xl) 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(85, 89, 94, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 70% 75%, rgba(50, 54, 59, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(70, 74, 79, 0.08) 0%, transparent 50%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.04) 0%, transparent 30%, rgba(0, 0, 0, 0.18) 60%, transparent 80%),
    linear-gradient(180deg, #3f4348 0%, #383c41 50%, #34383d 100%);
  position: relative;
}

.icon-feature {
  color: var(--color-orange);
  text-align: center;
  margin-bottom: 1.5rem;
}

.personal-care-section .column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-orange);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
}

.info-card h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.info-card p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.info-card .btn {
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.what-we-move-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #2f3438 0%, #2a2e32 100%);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.industry-card {
  position: relative;
  text-align: center;
  min-height: 240px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-8px);
}

.industry-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: var(--spacing-md);
  left: var(--spacing-md);
  right: var(--spacing-md);
  text-align: center;
}

.how-why-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, #3d4247 0%, #35393e 100%);
}

.two-column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.column-card {
  padding: var(--spacing-xl);
  background: linear-gradient(180deg, #323639 0%, #2a2e32 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.column-card h2 {
  font-size: 32px;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: var(--spacing-sm) 0;
  padding-left: 32px;
  color: var(--color-warm-gray);
  position: relative;
  line-height: 1.8;
  font-weight: 400;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 20px;
}

.network-section {
  padding: 24px 0 var(--spacing-sm);
  background:
    radial-gradient(circle at 25% 20%, rgba(75, 79, 83, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 75% 80%, rgba(45, 49, 53, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(60, 64, 68, 0.08) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, transparent 30%, rgba(0, 0, 0, 0.2) 60%, transparent 80%),
    linear-gradient(180deg, #36393d 0%, #2f3337 50%, #2c3034 100%);
  text-align: center;
  border-top: none;
  border-bottom: none;
  position: relative;
}

.network-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2 0%, rgba(135, 206, 250, 0.4) 50%, #4a90e2 100%);
}

.network-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2 0%, rgba(135, 206, 250, 0.4) 50%, #4a90e2 100%);
}

.network-content h2 {
  font-size: 42px;
  margin-bottom: var(--spacing-md);
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.network-content p {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.network-subtitle {
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.clearpath-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.clearpath-logo-link img {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .clearpath-logo-link:hover {
    transform: translateY(-8px);
  }
}

.features-band {
  padding: var(--spacing-md) 0 var(--spacing-2xl);
  background:
    radial-gradient(circle at 20% 15%, rgba(65, 69, 73, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 80% 85%, rgba(35, 39, 43, 0.18) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(50, 54, 58, 0.1) 0%, transparent 50%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.025) 0%, transparent 28%, rgba(0, 0, 0, 0.25) 55%, transparent 82%),
    linear-gradient(180deg, #2d3135 0%, #272b2f 50%, #23272b 100%);
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 10;
  border-top: none;
}

.features-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2 0%, rgba(135, 206, 250, 0.4) 50%, #4a90e2 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card-dark {
  background:
    radial-gradient(circle at 15% 10%, rgba(60, 64, 68, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(30, 34, 38, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(45, 49, 53, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 25%, rgba(0, 0, 0, 0.2) 50%, transparent 75%),
    linear-gradient(135deg, #32363a 0%, #2a2e32 50%, #25292d 100%);
  border-radius: 8px;
  padding: var(--spacing-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
}

.feature-card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-card-dark ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card-dark li {
  padding: 4px 0;
  padding-left: 24px;
  color: #FFFFFF;
  position: relative;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.feature-card-dark li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}

.feature-card-dark li:first-child {
  font-weight: 700;
  font-size: 19px;
  padding-top: 0;
  padding-left: 0;
  line-height: 1.5;
}

.feature-card-dark li:first-child::before {
  content: none;
}

.capabilities-section {
  padding: var(--spacing-2xl) 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(75, 79, 83, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 75% 80%, rgba(45, 49, 53, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(60, 64, 68, 0.08) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, transparent 30%, rgba(0, 0, 0, 0.2) 60%, transparent 80%),
    linear-gradient(180deg, #36393d 0%, #2f3337 50%, #2c3034 100%);
  position: relative;
}

.about-arl-band + .capabilities-section {
  margin-top: 0 !important;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.capability-card {
  padding: var(--spacing-xl);
  background:
    radial-gradient(circle at 15% 10%, rgba(75, 79, 84, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(40, 44, 49, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(60, 64, 69, 0.1) 0%, transparent 50%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.025) 0%, transparent 25%, rgba(0, 0, 0, 0.2) 52%, transparent 78%),
    linear-gradient(135deg, #41454a 0%, #3a3e43 50%, #35393e 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-orange);
  }
}

.capability-icon {
  margin-bottom: var(--spacing-md);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.capability-icon svg {
  width: 48px;
  height: 48px;
}

.capability-card h3 {
  font-size: 26px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}

.capability-card p {
  font-size: 19px;
  color: var(--color-warm-gray);
  line-height: 1.8;
  font-weight: 400;
}

.black-section {
  background: linear-gradient(180deg, #1a1d20 0%, #0f1113 100%);
  padding: var(--spacing-2xl) 0;
  width: 100%;
}

.black-section h2 {
  font-size: 42px;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.black-section p {
  font-size: 18px;
  color: var(--color-white);
  line-height: 1.6;
  text-align: center;
}

.about-arl-band {
  background:
    radial-gradient(ellipse 800px 600px at 50% 50%, rgba(85, 90, 95, 0.15) 0%, rgba(70, 74, 79, 0.08) 40%, transparent 70%),
    radial-gradient(circle at 30% 25%, rgba(85, 89, 94, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 70% 75%, rgba(50, 54, 59, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(70, 74, 79, 0.08) 0%, transparent 50%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.04) 0%, transparent 30%, rgba(0, 0, 0, 0.18) 60%, transparent 80%),
    linear-gradient(180deg, #3f4348 0%, #383c41 50%, #34383d 100%);
  padding: 0 0 48px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%) !important;
  margin-top: -1px !important;
  margin-bottom: 0;
  position: relative;
  left: 0;
  right: 0;
  border-top: none;
  border-bottom: none;
}

.about-arl-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2 0%, rgba(135, 206, 250, 0.4) 50%, #4a90e2 100%);
}

.about-arl-band::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2 0%, rgba(135, 206, 250, 0.4) 50%, #4a90e2 100%);
}

.hero-services + .about-arl-band {
  margin-top: -1px !important;
  padding-top: 0 !important;
}

.hero-full-width + .about-arl-band {
  margin-top: -1px !important;
  padding-top: 0 !important;
}

.hero-asset.hero-full-width {
  min-height: 70vh !important;
  height: 70vh !important;
  background: none !important;
}

.hero-asset.hero-full-width::before {
  display: none !important;
}

.hero-asset .hero-image-full {
  height: 100%;
  z-index: 1;
}

.hero-asset .hero-image-full img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.hero-asset .hero-content-overlay {
  padding: 0;
  z-index: 3;
}

.about-arl-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px var(--spacing-lg) 0 var(--spacing-lg);
  text-align: left;
  position: relative;
}

.about-asset-logistics-content {
  text-align: center;
}

.about-asset-logistics-content h2 {
  font-size: 42px;
  margin-bottom: var(--spacing-md);
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.asset-logistics-subtitle {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.about-arl-content::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background-image: url('assets//arl-logo.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

.about-section-title {
  font-size: 42px;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.about-section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--color-blue);
}

.about-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.about-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(100, 120, 140, 0.25);
  border-radius: 8px;
  padding: var(--spacing-xl);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-orange);
  z-index: 1;
}

.about-brand-card {
  display: flex;
  flex-direction: column;
}

.about-card h2 {
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: left;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.about-card p {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-card .about-trust-indicators {
  display: flex;
  justify-content: space-around;
  gap: var(--spacing-md);
  margin: 0 0 28px 0;
  padding: var(--spacing-md) 0 24px 0;
  border-bottom: 1px solid rgba(74, 144, 226, 0.15);
}

.about-card .trust-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  flex: 1;
}

.about-card .trust-indicator svg {
  width: 46px;
  height: 46px;
  stroke: rgba(74, 144, 226, 0.9);
  flex-shrink: 0;
}

.about-card .trust-indicator span {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  line-height: 1.3;
}

.about-card .capabilities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card .capability-item {
  font-size: 17px;
  color: #FFFFFF;
  line-height: 1.9;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  padding-left: 28px;
  position: relative;
  margin-bottom: 16px;
}

.about-card .capability-item::before {
  content: "●";
  position: absolute;
  left: 8px;
  color: var(--color-orange);
  font-size: 14px;
  font-weight: bold;
  top: 6px;
}

.about-card .capability-item:last-child {
  margin-bottom: 0;
}


.about-arl-band h1,
.about-arl-band h2,
.about-arl-band h3 {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.about-arl-band p,
.about-arl-band li,
.about-arl-band a {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.network-section h1,
.network-section h2,
.network-section h3 {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.network-section p,
.network-section li,
.network-section a {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.features-band h1,
.features-band h2,
.features-band h3 {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.features-band p,
.features-band li,
.features-band a {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.cta-section,
.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section p,
.cta-section li,
.cta-section a {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.auto-services-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, #2f3438 0%, #2a2e32 100%);
}

.services-grid-four {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.service-list ul {
  list-style: none;
  padding: var(--spacing-lg);
  background: linear-gradient(180deg, #3f4449 0%, #35393e 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.service-list li {
  padding: var(--spacing-xs) 0;
  padding-left: 24px;
  color: var(--color-warm-gray);
  position: relative;
  line-height: 1.7;
  font-weight: 400;
}

.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}

.contact-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, #2f3438 0%, #2a2e32 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: var(--spacing-lg);
  color: var(--color-white);
}

.contact-detail {
  margin-bottom: var(--spacing-lg);
}

.contact-detail h3 {
  font-size: 18px;
  color: var(--color-tan);
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.contact-detail p {
  color: var(--color-warm-gray);
  line-height: 1.8;
  font-weight: 400;
}

.contact-detail a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--color-blue-hover);
}

.contact-form-wrapper {
  padding: var(--spacing-xl);
  background: linear-gradient(180deg, #3f4449 0%, #35393e 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper h2 {
  font-size: 28px;
  margin-bottom: var(--spacing-lg);
  color: var(--color-white);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--color-white);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(180deg, #2a2e32 0%, #252a2d 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 16px;
}

.formDropDown {
	width: 100%;
	padding: 12px 16px;
	background: linear-gradient(180deg, #2a2e32 0%, #161a1c 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	color: var(--color-white);
	font-family: inherit;
	font-size: 16px;	
}

.formDropDown {
  background-color: #161a1c; /* The dark bottom color of your gradient */
  color: white;
  border: 1px solid #2a2e32;
  padding: 8px;
}

/* This works in Firefox and some versions of Chrome */
.formDropDown option {
  background-color: #161a1c;
  color: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
}

.hero-auto,
.hero-asset,
.hero-services,
.hero-contact {
  background:
    radial-gradient(circle at 8% 12%, rgba(75, 78, 85, 0.4) 0%, transparent 3%),
    radial-gradient(circle at 22% 8%, rgba(55, 58, 65, 0.5) 0%, transparent 2.5%),
    radial-gradient(circle at 15% 25%, rgba(70, 73, 80, 0.35) 0%, transparent 4%),
    radial-gradient(circle at 32% 18%, rgba(60, 63, 70, 0.4) 0%, transparent 3.5%),
    radial-gradient(circle at 45% 12%, rgba(65, 68, 75, 0.45) 0%, transparent 3%),
    radial-gradient(circle at 58% 8%, rgba(75, 78, 85, 0.35) 0%, transparent 2.8%),
    radial-gradient(circle at 68% 22%, rgba(55, 58, 65, 0.5) 0%, transparent 3.2%),
    radial-gradient(circle at 78% 15%, rgba(70, 73, 80, 0.4) 0%, transparent 3.5%),
    radial-gradient(circle at 85% 25%, rgba(60, 63, 70, 0.45) 0%, transparent 3%),
    radial-gradient(circle at 92% 10%, rgba(65, 68, 75, 0.35) 0%, transparent 3.8%),
    radial-gradient(circle at 12% 42%, rgba(75, 78, 85, 0.35) 0%, transparent 3.5%),
    radial-gradient(circle at 25% 38%, rgba(55, 58, 65, 0.4) 0%, transparent 3%),
    radial-gradient(circle at 38% 48%, rgba(70, 73, 80, 0.45) 0%, transparent 3.2%),
    radial-gradient(circle at 48% 35%, rgba(60, 63, 70, 0.4) 0%, transparent 3.8%),
    radial-gradient(circle at 62% 42%, rgba(65, 68, 75, 0.35) 0%, transparent 3%),
    radial-gradient(circle at 72% 38%, rgba(75, 78, 85, 0.45) 0%, transparent 3.5%),
    radial-gradient(circle at 88% 45%, rgba(55, 58, 65, 0.4) 0%, transparent 3.2%),
    radial-gradient(circle at 18% 62%, rgba(70, 73, 80, 0.4) 0%, transparent 3.5%),
    radial-gradient(circle at 28% 58%, rgba(60, 63, 70, 0.35) 0%, transparent 3%),
    radial-gradient(circle at 42% 68%, rgba(65, 68, 75, 0.45) 0%, transparent 3.8%),
    radial-gradient(circle at 55% 62%, rgba(75, 78, 85, 0.4) 0%, transparent 3.2%),
    radial-gradient(circle at 65% 58%, rgba(55, 58, 65, 0.35) 0%, transparent 3.5%),
    radial-gradient(circle at 78% 65%, rgba(70, 73, 80, 0.4) 0%, transparent 3%),
    radial-gradient(circle at 92% 62%, rgba(60, 63, 70, 0.45) 0%, transparent 3.2%),
    radial-gradient(circle at 8% 82%, rgba(65, 68, 75, 0.4) 0%, transparent 3.5%),
    radial-gradient(circle at 22% 78%, rgba(75, 78, 85, 0.35) 0%, transparent 3%),
    radial-gradient(circle at 35% 88%, rgba(55, 58, 65, 0.45) 0%, transparent 3.8%),
    radial-gradient(circle at 48% 82%, rgba(70, 73, 80, 0.4) 0%, transparent 3.2%),
    radial-gradient(circle at 62% 78%, rgba(60, 63, 70, 0.35) 0%, transparent 3.5%),
    radial-gradient(circle at 75% 85%, rgba(65, 68, 75, 0.45) 0%, transparent 3%),
    radial-gradient(circle at 88% 82%, rgba(75, 78, 85, 0.4) 0%, transparent 3.2%),
    radial-gradient(ellipse at 30% 40%, rgba(68, 71, 78, 0.15) 0%, transparent 25%),
    radial-gradient(ellipse at 70% 60%, rgba(58, 61, 68, 0.18) 0%, transparent 28%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.015) 0%, transparent 35%, rgba(0, 0, 0, 0.12) 65%, transparent 100%),
    linear-gradient(180deg, #50535a 0%, #4a4d54 30%, #45484f 60%, #40434a 100%);
  background-attachment: fixed;
  position: relative;
}

.hero-auto::before,
.hero-asset::before,
.hero-services::before,
.hero-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 5% 5%, rgba(80, 83, 90, 0.3) 0%, transparent 1.5%),
    radial-gradient(circle at 12% 3%, rgba(50, 53, 60, 0.35) 0%, transparent 1.2%),
    radial-gradient(circle at 18% 9%, rgba(70, 73, 80, 0.25) 0%, transparent 1.8%),
    radial-gradient(circle at 25% 6%, rgba(60, 63, 70, 0.3) 0%, transparent 1.4%),
    radial-gradient(circle at 32% 11%, rgba(75, 78, 85, 0.28) 0%, transparent 1.6%),
    radial-gradient(circle at 38% 4%, rgba(55, 58, 65, 0.32) 0%, transparent 1.3%),
    radial-gradient(circle at 45% 8%, rgba(65, 68, 75, 0.27) 0%, transparent 1.7%),
    radial-gradient(circle at 52% 5%, rgba(70, 73, 80, 0.3) 0%, transparent 1.5%),
    radial-gradient(circle at 58% 10%, rgba(60, 63, 70, 0.26) 0%, transparent 1.4%),
    radial-gradient(circle at 65% 7%, rgba(75, 78, 85, 0.31) 0%, transparent 1.6%),
    radial-gradient(circle at 72% 4%, rgba(55, 58, 65, 0.29) 0%, transparent 1.3%),
    radial-gradient(circle at 78% 9%, rgba(65, 68, 75, 0.28) 0%, transparent 1.8%),
    radial-gradient(circle at 85% 6%, rgba(70, 73, 80, 0.3) 0%, transparent 1.5%),
    radial-gradient(circle at 92% 11%, rgba(60, 63, 70, 0.27) 0%, transparent 1.4%),
    radial-gradient(circle at 97% 8%, rgba(75, 78, 85, 0.32) 0%, transparent 1.6%);
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.hero-services {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  display: block !important;
}

.hero-auto .hero-headline,
.hero-asset .hero-headline,
.hero-services .hero-headline,
.hero-contact .hero-headline {
  color: #ffffff;
}

.hero-asset .hero-headline {
  font-weight: 700;
}

.hero-auto .hero-headline {
  font-size: 42px;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: var(--spacing-md);
  pointer-events: none;
}

.hero-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  opacity: 0.4;
  filter: brightness(1.1);
  object-fit: contain;
}

.hero.hero-full-width {
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  min-height: 700px;
  height: 700px;
  overflow: hidden;
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  left: 0;
  right: 0;
}

.hero-services.hero-full-width {
  height: 70vh;
  min-height: 70vh;
  max-height: 70vh;
}

.hero-services .hero-image-full img {
  object-position: center top;
}

.hero-auto.hero-full-width {
  width: 100vw !important;
  max-width: none !important;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: unset;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  align-items: flex-start !important;
  padding-top: 20px !important;
}

.hero-image-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-image-full::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 43, 43, 0.35);
  z-index: 2;
}

.hero-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-auto .hero-image-full {
  background-color: #2d3748;
}

.hero-auto .hero-image-full img {
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.12) contrast(1.15) saturate(1.05);
}

.hero-auto .hero-image-full::after {
  background-color: rgba(0, 0, 0, 0.20);
}

.hero-auto .hero-content-overlay {
  padding-top: 120px;
}

.hero-content-overlay {
  position: relative;
  z-index: 3;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.hero-content-overlay h1,
.hero-content-overlay h2,

  .capabilities-list {
    grid-template-columns: 1fr;
  }

  .about-trust-indicators {
    gap: var(--spacing-lg);
  }
.hero-content-overlay h3 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content-overlay p,
.hero-content-overlay li,
.hero-content-overlay a {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-content-overlay .btn {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-full-width .hero-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.hero-content-centered {
  position: absolute !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 48px), 900px);
  text-align: center;
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center;
  padding: 0 var(--spacing-md) !important;
  z-index: 3;
}

.hero-content-centered .hero-headline {
  margin-bottom: var(--spacing-md);
}

.hero-content-centered .hero-subheadline {
  margin-bottom: 0;
}

.hero-content-centered h1,
.hero-content-centered h2,
.hero-content-centered h3 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content-centered p,
.hero-content-centered li,
.hero-content-centered a {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-content-centered .btn {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content .btn,
.hero-content-overlay .btn,
.hero-content-centered .btn,
.hero .btn {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.hero-content > *,
.hero-content-overlay > * > *,
.hero-content-centered > * {
  text-align: center !important;
}

.hero-content,
.hero-content-overlay .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .header .container {
    padding: 0 var(--spacing-md);
  }

  .nav {
    gap: 32px;
  }

  .nav a {
    font-size: 14px;
  }

  .hero-content {
    max-width: 700px;
  }

  .two-column-layout,
  .award-content {
    gap: var(--spacing-lg);
  }

  .about-section-title {
    font-size: 36px;
  }

  .about-cards-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .about-logo {
    max-width: 280px;
  }

  .about-card h2 {
    font-size: 28px;
  }

  .about-card p {
    font-size: 17px;
  }

  .about-card .capability-item {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  .logo-container {
    gap: 14px;
  }

  .arl-main-logo {
    height: 63px;
  }

  .brand-logos {
    gap: 8px;
  }

  .brand-logo-link {
    max-width: 110px;
  }

  .brand-logo {
    height: 40px;
  }

  .nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav a {
    font-size: 13px;
    padding: 4px 8px;
  }

  .nav a::after {
    height: 1.5px;
  }

  .nav .cta-link {
    padding: 8px 16px;
    font-size: 13px;

    .hero-logo {
      height: 90px;
    }

    .company-name {
      font-size: 32px;
      line-height: 1.25;
      margin-bottom: var(--spacing-sm);
    }

    .hero-headline {
      font-size: 28px;
      line-height: 1.3;
      margin-bottom: var(--spacing-md);
    }

    .hero-auto .hero-headline {
      font-size: 28px;
      line-height: 1.3;
    }

    .hero-content .hero-headline[style*='font-size: 52px'] {
      font-size: 32px !important;
    }

    .hero-content .hero-headline[style*='font-size: 42px'] {
      font-size: 28px !important;
    }

    .hero-content p[style*='font-size: 37px'] {
      font-size: 24px !important;
    }

    .hero-content p[style*='font-size: 34px'] {
      font-size: 22px !important;
    }

    .hero-subheadline {
      font-size: 18px;
      line-height: 1.55;
      margin-bottom: var(--spacing-lg);
    }

    .hero-ctas {
      position: static;
      transform: none;
      margin-top: var(--spacing-lg);
      flex-direction: column;
      gap: var(--spacing-sm);
      width: 100%;
    }

    .btn {
      width: 100%;
      text-align: center;
      padding: 16px 24px;
      font-size: 16px;
    }

    .btn-large {
      padding: 18px 32px;
      font-size: 17px;
    }

    .btn-small {
      padding: 12px 20px;
      font-size: 15px;
    }

    .hero-section {
      height: calc(100vh - 79px);
      max-height: calc(100vh - 79px);
    }

    .hero-image {
      display: none;
    }

    .hero.hero-full-width {
      min-height: 480px;
      height: 480px;
      width: 100vw !important;
      max-width: 100vw !important;
      margin: 0 !important;
      padding: 0 !important;
      left: 50%;
      right: 50%;
      margin-left: -50vw !important;
      margin-right: -50vw !important;
    }

    .hero-services.hero-full-width {
      height: 55vh;
      min-height: 55vh;
    }

    .hero-auto.hero-full-width {
      width: 100vw !important;
      max-width: 100vw !important;
      aspect-ratio: 16 / 9;
      height: auto;
      min-height: unset;
      margin: 0 !important;
      padding: 0 !important;
      left: 50%;
      right: 50%;
      margin-left: -50vw !important;
      margin-right: -50vw !important;
      align-items: flex-start !important;
      padding-top: 20px !important;
    }

    .hero-services {
      width: 100vw !important;
      max-width: 100vw !important;
      margin: 0 !important;
      padding: 0 !important;
      left: 50%;
      right: 50%;
      margin-left: -50vw !important;
      margin-right: -50vw !important;
    }

    .hero-image-full {
      height: 100%;
    }

    .hero-image-full img {
      height: 100%;
    }

    .hero-content-overlay {
      padding: 0;
      margin: 0 !important;
    }

    .hero-full-width .hero-content {
      text-align: center;
      max-width: 100%;
      padding: 0 var(--spacing-sm);
    }

    .hero-full-width .hero-content .hero-headline {
      font-size: 26px;
      line-height: 1.3;
      margin-bottom: var(--spacing-md);
    }

    .hero-full-width .hero-content .hero-headline br {
      display: none;
    }

    .hero-full-width .hero-content .hero-subheadline {
      font-size: 16px;
      line-height: 1.5;
      margin-bottom: var(--spacing-md);
    }

    .hero-full-width .hero-content .hero-subheadline br {
      display: none;
    }

    .hero-content-centered {
      width: calc(100% - 32px);
      padding: 0 var(--spacing-md) !important;
    }

    .hero-content-centered .hero-headline {
      font-size: 28px;
      line-height: 1.3;
      margin-bottom: var(--spacing-md);
    }

    .hero-content-centered .hero-subheadline {
      font-size: 16px;
      line-height: 1.5;
    }

    .service-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }

    .service-card {
      padding: var(--spacing-lg);
    }

    .service-card h3 {
      font-size: 26px;
    }

    .service-title-wrapper h3 {
      font-size: 28px;
    }

    .service-icon-enhanced {
      width: 48px;
      height: 48px;
    }

    .service-icon-enhanced svg {
      width: 40px;
      height: 40px;
    }

    .service-card p {
      font-size: 17px;
    }

    .how-we-work,
    .content-section,
    .steps-section,
    .personal-care-section,
    .vehicles-section,
    .what-we-move-section,
    .how-why-section,
    .auto-services-section,
    .capabilities-section {
      padding: var(--spacing-xl) 0;
    }

    .about-arl-band {
      padding: 0 0 40px 0;
      width: 100vw;
      margin-left: calc(-50vw + 50%) !important;
      margin-top: 0 !important;
    }

    .about-arl-content {
      padding: var(--spacing-xl) var(--spacing-lg) 0 var(--spacing-lg);
    }

    .about-section-title {
      font-size: 30px;
      margin-bottom: 18px;
    }

    .about-section-title::after {
      bottom: -18px;
      width: 80px;
    }

    .about-cards-container {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
      margin-top: 46px;
    }

    .about-card {
      padding: var(--spacing-lg);
    }

    .about-card h2 {
      font-size: 26px;
      line-height: 1.3;
      font-weight: 700;
    }

    .about-card p {
      font-size: 16px;
      line-height: 1.8;
      font-weight: 500;
    }

    .about-card .trust-indicator {
      gap: 6px;
    }

    .about-card .trust-indicator svg {
      width: 36px;
      height: 36px;
    }

    .about-card .trust-indicator span {
      font-size: 12px;
    }

    .about-card .capability-item {
      font-size: 15px;
      margin-bottom: 12px;
    }

    .about-arl-content::before {
      width: 700px;
      height: 500px;
    }

    .how-we-work h2,
    .cta-section h2,
    .section-title {
      font-size: 30px;
      line-height: 1.3;
      margin-bottom: var(--spacing-md);
    }

    .section-intro {
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: var(--spacing-lg);
      font-weight: 500;
    }

    .credibility {
      padding: var(--spacing-xl) 0;
    }

    .credibility-text h2,
    .award-text h2,
    .column-card h2 {
      font-size: 26px;
      line-height: 1.3;
      margin-bottom: var(--spacing-md);
    }

    .credibility-text p,
    .award-text p {
      font-size: 17px;
      line-height: 1.8;
      font-weight: 500;
    }

    .credibility-stats {
      margin-top: var(--spacing-lg);
      gap: var(--spacing-md);
    }

    .stat-number {
      font-size: 36px;
    }

    .stat-label {
      font-size: 13px;
    }

    .process-grid,
    .steps-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
    }

    .process-step,
    .step-card {
      padding: var(--spacing-lg);
    }

    .step-number {
      font-size: 48px;
    }

    .process-step h3,
    .step-card h3 {
      font-size: 22px;
      line-height: 1.3;
    }

    .process-step p,
    .step-card p {
      font-size: 16px;
      line-height: 1.8;
      font-weight: 500;
    }

    .cta-section {
      padding: var(--spacing-xl) 0;
    }

    .cta-section h2 {
      font-size: 30px;
      line-height: 1.3;
    }

    .cta-section p {
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: var(--spacing-lg);
      font-weight: 500;
    }

    .cta-buttons {
      flex-direction: column;
      gap: var(--spacing-sm);
    }

    .footer {
      padding: var(--spacing-lg) 0 var(--spacing-md);
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: var(--spacing-md);
    }

    .footer-legal {
      justify-content: center;
    }

    .two-column-layout,
    .award-content,
    .two-column-grid,
    .contact-grid,
    .info-cards-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }

    .two-column-layout .column img {
      margin-top: var(--spacing-md);
    }

    .award-badge {
      padding: var(--spacing-lg);
      margin-bottom: var(--spacing-md);
    }

    .award-badge h3 {
      font-size: 22px;
    }

    .award-label {
      font-size: 17px;
    }

    .column h3 {
      font-size: 28px;
      line-height: 1.3;
    }

    .column p {
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: var(--spacing-md);
      font-weight: 500;
    }

    .icon-feature {
      margin-bottom: var(--spacing-md);
    }

    .icon-feature svg {
      width: 48px;
      height: 48px;
    }

    .contact-section {
      padding: var(--spacing-xl) 0;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
      font-size: 26px;
      line-height: 1.3;
      margin-bottom: var(--spacing-md);
    }

    .contact-detail {
      margin-bottom: var(--spacing-md);
    }

    .contact-detail h3 {
      font-size: 17px;
      line-height: 1.3;
    }

    .contact-detail p {
      font-size: 16px;
      line-height: 1.8;
      font-weight: 500;
    }

    .contact-form-wrapper {
      padding: var(--spacing-lg);
      margin-top: var(--spacing-md);
    }

    .contact-form .form-row {
      grid-template-columns: 1fr;
    }

    .form-group {
      margin-bottom: var(--spacing-sm);
    }

    .form-group label {
      font-size: 15px;
    }

    .form-group input,
    .form-group textarea {
      font-size: 15px;
      padding: 12px;
    }

    .industries-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-sm);
    }

    .industry-card {
      min-height: 200px;
    }

    .industry-card h3 {
      font-size: 18px;
      bottom: var(--spacing-sm);
      left: var(--spacing-sm);
      right: var(--spacing-sm);
    }

    .capabilities-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
    }

    .capability-card {
      padding: var(--spacing-lg);
    }

    .capability-card h3 {
      font-size: 24px;
      line-height: 1.3;
    }

    .capability-card p {
      font-size: 17px;
      line-height: 1.8;
      font-weight: 500;
    }

    .services-grid-four {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
    }

    .service-list ul {
      padding: var(--spacing-md);
    }

    .service-list li {
      font-size: 16px;
      line-height: 1.8;
      font-weight: 500;
    }

    .network-section {
      padding: 16px 0 var(--spacing-xs);
    }

    .network-content h2 {
      font-size: 30px;
      line-height: 1.3;
      margin-bottom: var(--spacing-md);
      font-weight: 700;
    }

    .network-content p {
      font-size: 18px;
      line-height: 1.8;
      font-weight: 600;
    }

    .about-asset-logistics-content h2 {
      font-size: 30px;
      line-height: 1.3;
      margin-bottom: var(--spacing-md);
      font-weight: 700;
    }

    .asset-logistics-subtitle {
      font-size: 18px;
      line-height: 1.8;
      font-weight: 600;
    }

    .features-band {
      padding: var(--spacing-md) 0 var(--spacing-xl);
      margin-top: 0;
    }

    .features-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
    }

    .feature-card-dark {
      padding: var(--spacing-md);
    }

    .feature-card-dark li {
      font-size: 17px;
      line-height: 1.8;
      font-weight: 600;
    }

    .feature-card-dark li:first-child {
      font-size: 19px;
      line-height: 1.5;
      font-weight: 700;
      padding-left: 0;
    }

    .feature-card-dark li:first-child::before {
      content: none;
    }

    .logo-image {
      height: 32px;
    }

    .logo {
      font-size: 20px;
    }
  }

  @media (max-width: 480px) {
    body {
      font-size: 15px;
      line-height: 1.8;
      font-weight: 500;
    }

    .container {
      padding: 0 var(--spacing-sm);
    }

    .header {
      padding: var(--spacing-sm) 0;
    }

    .logo-container {
      gap: 10px;
    }

    .arl-main-logo {
      height: 50px;
    }

    .brand-logos {
      gap: 6px;
    }

    .brand-logo-link {
      max-width: 94px;
    }

    .brand-logo {
      height: 32px;
    }

    .logo-image {
      height: 28px;
    }

    .logo {
      font-size: 18px;
    }

    .nav {
      gap: 6px;
    }

    .nav a {
      font-size: 11px;
      padding: 4px 6px;
    }

    .nav .cta-link {
      padding: 6px 12px;
      font-size: 11px;
    }

    /* Mobile dropdown styles for small screens */
    .nav-item-with-dropdown .nav-link {
		white-space: nowrap;
      font-size: 11px;
      padding: 4px 6px;
    }

    .nav-chevron-button {
      padding: 2px;
    }

    .nav-chevron {
      width: 10px;
      height: 10px;
    }
  }

  .nav-dropdown-item {
    font-size: 11px;
    padding: 10px 20px;
  }

  p {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
  }

  .hero {
    min-height: 450px;
    height: 450px;
    padding: 0;
    padding-top: 60px;
  }

  .hero-content {
    max-width: 100%;
    margin: 0;
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .hero-content::before {
    display: none;
  }

  .hero-logo {
    height: 70px;
  }

  .company-name {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-headline {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-content .hero-headline[style*='font-size: 52px'] {
    font-size: 28px !important;
  }

  .hero-content .hero-headline[style*='font-size: 42px'] {
    font-size: 24px !important;
  }

  .hero-content p[style*='font-size: 37px'] {
    font-size: 20px !important;
  }

  .hero-content p[style*='font-size: 34px'] {
    font-size: 19px !important;
  }

  .hero-subheadline {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero.hero-full-width {
    min-height: 420px;
    height: 420px;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }

  .hero-services.hero-full-width {
    height: 55vh;
    min-height: 55vh;
  }

  .hero-auto.hero-full-width {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 78vh;
    margin: 0 !important;
    padding: 0 !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    align-items: flex-start !important;
    padding-top: 20px !important;
  }

  .hero-services {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }

  .hero-image-full {
    height: 100%;
  }

  .hero-image-full img {
    height: 100%;
  }

  .hero-content-overlay {
    padding: 0;
    margin: 0 !important;
  }

  .features-band {
    margin-top: 0;
    padding: var(--spacing-sm) 0 var(--spacing-lg);
  }

  .hero-full-width .hero-content .hero-headline {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-full-width .hero-content .hero-subheadline {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-content-centered {
    width: calc(100% - 24px);
  }

  .hero-content-centered .hero-headline {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-content-centered .hero-subheadline {
    font-size: 16px;
    line-height: 1.6;
  }

  .btn {
    padding: 14px 20px;
    font-size: 15px;
  }

  .btn-large {
    padding: 16px 28px;
    font-size: 16px;
  }

  .btn-small {
    padding: 10px 18px;
    font-size: 14px;
  }

  .service-card {
    padding: var(--spacing-md);
  }

  .how-we-work h2,
  .cta-section h2,
  .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .column h3 {
    font-size: 24px;
    line-height: 1.3;
  }

  .credibility-text h2,
  .award-text h2,
  .column-card h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .cta-section h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .cta-section p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
  }

  .network-content h2 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
  }

  .network-content p {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 600;
  }

  .about-asset-logistics-content h2 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
  }

  .asset-logistics-subtitle {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 600;
  }

  .stat-number {
    font-size: 36px;
  }

  .capability-card h3 {
    font-size: 21px;
    line-height: 1.3;
  }

  .capability-card p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
  }

  .about-arl-band {
    padding: 0 0 30px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%) !important;
    margin-top: 0 !important;
  }

  .about-arl-content {
    padding: var(--spacing-lg) var(--spacing-md) 0 var(--spacing-md);
  }

  .about-section-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .about-section-title::after {
    bottom: -16px;
    width: 70px;
  }

  .about-cards-container {
    gap: var(--spacing-md);
    margin-top: 40px;
  }

  .about-card {
    padding: var(--spacing-md);
  }

  .about-card h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
  }

  .about-card p {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
  }

  .about-card .trust-indicator svg {
    width: 32px;
    height: 32px;
  }

  .about-card .trust-indicator span {
    font-size: 11px;
  }

  .about-card .capability-item {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .about-arl-content::before {
    width: 500px;
    height: 400px;
  }

  .feature-card-dark {
    padding: var(--spacing-sm);
  }

  .feature-card-dark li {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 600;
  }

  .feature-card-dark li:first-child {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    padding-left: 0;
  }

  .feature-card-dark li:first-child::before {
    content: none;
  }
}

/* Contact Page Wrapper with Full-Page Overlay */
.contact-page-wrapper {
  position: relative;
  min-height: 100vh;
  background-image: url('assets/contact_page_image.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.contact-page-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.15) 0%,
    rgba(35, 35, 35, 0.25) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Contact Page Parallax Hero */
.contact-hero-parallax {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  padding-top: 0;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  max-width: 900px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

.contact-hero-subhead {
  font-size: 28px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.3);
}

.contact-hero-cue {
  font-size: 19px;
  font-weight: 700;
  color: #4a90e2;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 auto 32px;
  text-align: center;
  max-width: 900px;
}

@media (max-width: 900px) {
  .contact-page-wrapper {
    background-attachment: scroll;
  }

  .contact-hero-parallax {
    height: 240px;
  }

  .contact-hero-content h1 {
    font-size: 42px;
  }

  .contact-hero-subhead {
    font-size: 18px;
  }

  .contact-hero-cue {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .contact-hero-parallax {
    height: 220px;
  }

  .contact-hero-content h1 {
    font-size: 36px;
  }

  .contact-hero-subhead {
    font-size: 16px;
  }
}

.contact-decision-section {
  padding: 80px 0 100px;
  position: relative;
  z-index: 2;
  min-height: auto;
}

.decision-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 56px;
  padding: 0 48px;
}

.decision-card {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.decision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8844 0%, rgba(255, 136, 68, 0.5) 50%, #ff8844 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.decision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 136, 68, 0.4);
  background: rgba(0, 0, 0, 0.8);
}

.decision-card:hover::before {
  opacity: 1;
}

.decision-card.active {
  border-color: var(--color-orange);
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 12px 32px rgba(255, 136, 68, 0.3);
}

.decision-card.active::before {
  opacity: 1;
}

.decision-card-icon {
  margin: 0 auto 24px;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.decision-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.decision-card p {
  font-size: 16px;
  color: var(--color-warm-gray);
  line-height: 1.6;
  font-weight: 400;
}

.forms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

.quote-form-card,
.service-form-card {
  max-width: 100%;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #e8e8e8;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.contact-form .required {
  color: #f36f21;
  font-weight: 700;
}

.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form input[type='tel'],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: #1e1e1e;
  border: 1px solid #444;
  border-radius: 8px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type='text']::placeholder,
.contact-form input[type='email']::placeholder,
.contact-form input[type='tel']::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form input[type='text']:focus,
.contact-form input[type='email']:focus,
.contact-form input[type='tel']:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff8844;
  box-shadow: 0 0 0 3px rgba(255, 136, 68, 0.15);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 16px;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  background: linear-gradient(135deg, #f36f21 0%, #e65a10 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(243, 111, 33, 0.3);
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-form .btn:hover {
  background: linear-gradient(135deg, #e65a10 0%, #d54d08 100%);
  box-shadow: 0 6px 16px rgba(243, 111, 33, 0.4);
  transform: translateY(-2px);
}

.contact-form .btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(243, 111, 33, 0.3);
}

.contact-dual-form-section,
.contact-unified-form-section {
  padding: 96px 0 120px;
  position: relative;
  z-index: 2;
  min-height: auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.contact-header h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.contact-header h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-blue);
  margin: 20px auto 0;
  border-radius: 2px;
}

.contact-intro {
  font-size: 18px;
  color: var(--color-warm-gray);
  margin: 20px 0 0;
  font-weight: 400;
  line-height: 1.7;
}

.dual-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.unified-form-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.unified-form-card {
  max-width: 100%;
}

.unified-contact-form .form-section {
  margin-bottom: 40px;
}

.unified-contact-form .form-section:last-of-type {
  margin-bottom: 32px;
}

.unified-contact-form .form-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 136, 68, 0.3);
  letter-spacing: -0.2px;
}

.unified-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.unified-contact-form .form-group {
  margin-bottom: 28px;
}

.unified-contact-form label {
  display: block;
  margin-bottom: 10px;
  color: #e8e8e8;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.unified-contact-form .required {
  color: #f36f21;
  font-weight: 700;
}

.unified-contact-form input[type='text'],
.unified-contact-form input[type='email'],
.unified-contact-form input[type='tel'],
.unified-contact-form select,
.unified-contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: #1e1e1e;
  border: 1px solid #444;
  border-radius: 8px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.unified-contact-form input[type='text']::placeholder,
.unified-contact-form input[type='email']::placeholder,
.unified-contact-form input[type='tel']::placeholder,
.unified-contact-form textarea::placeholder {
  color: #888;
}

.unified-contact-form input[type='text']:focus,
.unified-contact-form input[type='email']:focus,
.unified-contact-form input[type='tel']:focus,
.unified-contact-form select:focus,
.unified-contact-form textarea:focus {
  outline: none;
  border-color: #ff8844;
  box-shadow: 0 0 0 3px rgba(255, 136, 68, 0.15);
}

.unified-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-card {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: none;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff8844 0%, rgba(255, 136, 68, 0.4) 50%, #ff8844 100%);
  border-radius: 16px 16px 0 0;
}

.form-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 6px 16px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.7);
}

.form-card-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.form-intro {
  font-size: 16px;
  color: var(--color-warm-gray);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 400;
}

.dual-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dual-contact-form .form-group {
  margin-bottom: 28px;
}

.dual-contact-form label {
  display: block;
  margin-bottom: 10px;
  color: #e8e8e8;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.dual-contact-form .required {
  color: #f36f21;
  font-weight: 700;
}

.dual-contact-form input[type='text'],
.dual-contact-form input[type='email'],
.dual-contact-form input[type='tel'],
.dual-contact-form input[type='date'],
.dual-contact-form select,
.dual-contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: #1e1e1e;
  border: 1px solid #444;
  border-radius: 8px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dual-contact-form input[type='text']::placeholder,
.dual-contact-form input[type='email']::placeholder,
.dual-contact-form input[type='tel']::placeholder,
.dual-contact-form textarea::placeholder {
  color: #888;
}

.dual-contact-form input[type='text']:focus,
.dual-contact-form input[type='email']:focus,
.dual-contact-form input[type='tel']:focus,
.dual-contact-form input[type='date']:focus,
.dual-contact-form select:focus,
.dual-contact-form textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
  background-color: #262626;
}

.dual-contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.dual-contact-form textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  transition: background 0.2s ease;
}

.checkbox-label:hover {
  background: rgba(255, 255, 255, 0.06);
}

.checkbox-label input[type='checkbox'] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #f36f21;
}

.checkbox-label span {
  font-size: 14px;
  color: #e0e0e0;
  font-weight: 400;
}

.form-message {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.dual-contact-form .btn {
  width: 100%;
  margin-top: 24px;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  background: linear-gradient(135deg, #f36f21 0%, #e65a10 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(243, 111, 33, 0.3);
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.dual-contact-form .btn:hover {
  background: linear-gradient(135deg, #e65a10 0%, #d54d08 100%);
  box-shadow: 0 6px 16px rgba(243, 111, 33, 0.4);
  transform: translateY(-2px);
}

.dual-contact-form .btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(243, 111, 33, 0.3);
}

@media (max-width: 900px) {
  .contact-decision-section {
    padding: 64px 0 80px;
  }

  .decision-cards-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px;
    margin-bottom: 48px;
  }

  .decision-card {
    padding: 32px 24px;
  }

  .decision-card h3 {
    font-size: 24px;
  }

  .decision-card p {
    font-size: 15px;
  }

  .forms-container {
    padding: 0 24px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form .form-group {
    margin-bottom: 20px;
  }

  .form-card {
    padding: 24px;
  }

  .form-card-title {
    font-size: 24px;
  }

  .contact-dual-form-section,
  .contact-unified-form-section {
    padding: 64px 0 80px;
  }

  .dual-form-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .unified-form-container {
    padding: 0 24px;
  }

  .contact-header {
    margin-bottom: 40px;
    padding: 0 16px;
  }

  .contact-header h1 {
    font-size: 36px;
  }

  .contact-intro {
    font-size: 16px;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .dual-contact-form .form-row,
  .unified-contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dual-contact-form .form-group,
  .unified-contact-form .form-group {
    margin-bottom: 24px;
  }

  .unified-contact-form .form-section-title {
    font-size: 18px;
  }
}

/* FAQ Page Styles */
.faq-hero-parallax {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('assets/contact_page_image.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.faq-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.55) 0%,
    rgba(35, 35, 35, 0.65) 100%
  );
  z-index: 1;
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 24px;
}

.faq-hero-content h1 {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.faq-hero-subhead {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-warm-gray);
  margin-bottom: 16px;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.3);
}

.faq-main-section {
  position: relative;
  padding: 80px 0 100px;
  background-image: url('assets/contact_page_image.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.faq-main-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.85) 0%,
    rgba(35, 35, 35, 0.90) 100%
  );
  z-index: 0;
}

.faq-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  padding: 0 16px;
}

.faq-tab {
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--color-charcoal);
  color: var(--color-warm-gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-tab:hover {
  background-color: var(--color-charcoal-light);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.faq-tab-active {
  background-color: var(--color-orange);
  color: #FFFFFF;
  border-color: var(--color-orange);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.faq-tab-active:hover {
  background-color: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
}

.faq-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

.faq-tab-content {
  display: none;
}

.faq-tab-content-active {
  display: block;
}

.faq-draft-notice {
  background-color: rgba(74, 144, 226, 0.08);
  border-left: 4px solid var(--color-blue);
  padding: 12px 16px;
  margin-bottom: 32px;
  color: var(--color-warm-gray);
  font-size: 14px;
  border-radius: 4px;
  line-height: 1.7;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: linear-gradient(180deg, #323639 0%, #2a2e32 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
  border-color: var(--color-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(74, 144, 226, 0.05);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-blue);
  transition: transform 0.3s ease;
}

.faq-item-active .faq-icon {
  transform: rotate(90deg);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
  line-height: 1.4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item-active .faq-answer {
  max-height: 1000px;
  padding: 0 24px 24px 64px;
}

.faq-answer p {
  color: var(--color-warm-gray);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 12px 0;
  font-weight: 400;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  color: var(--color-warm-gray);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  padding-left: 24px;
  font-weight: 400;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-answer li:last-child {
  margin-bottom: 0;
}

.faq-cta-section {
  background: linear-gradient(180deg, #2f3438 0%, #2a2e32 100%);
  padding: 80px 0;
  text-align: center;
}

.faq-cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.faq-cta-section p {
  font-size: 18px;
  color: var(--color-warm-gray);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 400;
}

.faq-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 16px;
}

@media (max-width: 900px) {
  .faq-hero-parallax {
    height: 320px;
    background-attachment: scroll;
  }

  .faq-hero-content h1 {
    font-size: 42px;
  }

  .faq-hero-subhead {
    font-size: 18px;
  }

  .faq-main-section {
    padding: 60px 0 80px;
    background-attachment: scroll;
  }

  .faq-tabs {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto 40px;
  }

  .faq-tab {
    width: 100%;
    padding: 16px 24px;
  }

  .faq-question {
    padding: 16px 20px;
    gap: 12px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-item-active .faq-answer {
    padding: 0 20px 20px 52px;
  }

  .faq-answer p,
  .faq-answer ul,
  .faq-answer ol {
    font-size: 15px;
  }

  .faq-cta-section {
    padding: 60px 16px;
  }

  .faq-cta-section h2 {
    font-size: 28px;
  }

  .faq-cta-section p {
    font-size: 16px;
  }

  .faq-cta-buttons {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }

  .faq-cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .faq-hero-parallax {
    height: 280px;
  }

  .faq-hero-content h1 {
    font-size: 36px;
  }

  .faq-hero-subhead {
    font-size: 16px;
  }

  .faq-question h3 {
    font-size: 15px;
  }

  .faq-answer p,
  .faq-answer ul,
  .faq-answer ol {
    font-size: 14px;
  }
}

/* Mobile Hero Typography Override */
@media (max-width: 768px) {
  .hero .hero-content .hero-headline,
  .hero-content .hero-headline {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }

  .hero .hero-content .hero-subheadline,
  .hero-content .hero-subheadline {
    font-size: 18px !important;
    line-height: 1.55 !important;
  }

  .hero .hero-content .hero-value-line,
  .hero-content .hero-value-line {
    font-size: 18px !important;
    line-height: 1.55 !important;
  }
}

/* Navbar Sub-Logo Sizing Override */
.nav-sublogo {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  transform: scale(1.08);
}

/* Service Card Logo Container Styling */
.service-logo-styled {
  background-color: #FFFFFF !important;
  border: 3px solid #4A90E2 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) !important;
}

/* Expert Card Hover Effect */
.expert-card:hover {
  border-color: #ff6b35 !important;
}
