/* ============================================
   ALLROUND LOGISTICS - CORPORATE WEBSITE
   Bold Industrial Design System
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Primary Palette - Deep Navy & Electric Blue */
  --color-navy-900: #0A1628;
  --color-navy-800: #0F2137;
  --color-navy-700: #162D4A;
  --color-navy-600: #1E3A5F;
  --color-electric: #00A3FF;
  --color-electric-glow: #00D4FF;
  --color-white: #FFFFFF;
  --color-gray-100: #F4F6F8;
  --color-gray-200: #E8ECF0;
  --color-gray-300: #D1D9E0;
  --color-gray-500: #6B7C93;
  --color-gray-700: #3D4F63;
  --color-accent-orange: #FF6B35;
  --color-success: #00C48C;

  /* Typography */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Layout */
  --container-max: 1400px;
  --container-padding: clamp(1rem, 5vw, 3rem);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.16);
  --shadow-glow: 0 0 40px rgba(0, 163, 255, 0.3);

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

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ============================================
   CSS RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray-700);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--color-navy-900);
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 10vw, 7rem);
}

h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  max-width: 65ch;
}

.text-lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray-500);
}

.text-small {
  font-size: 0.875rem;
}

.text-electric {
  color: var(--color-electric);
}

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--dark {
  background-color: var(--color-navy-900);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--gray {
  background-color: var(--color-gray-100);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn--primary {
  background: var(--color-electric);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 163, 255, 0.3);
}

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

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

.btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-navy-900);
}

.btn--dark {
  background: var(--color-navy-900);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-navy-700);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy-900);
  border: 2px solid var(--color-navy-900);
}

.btn--outline:hover {
  background: var(--color-navy-900);
  color: var(--color-white);
}

.btn__icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.btn:hover .btn__icon {
  transform: translateX(4px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-base);
}

.header--scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.logo__img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  background: var(--color-white);
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

.footer__brand .logo__img {
  height: 88px;
  width: 88px;
}

.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--color-white);
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-electric);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-xs);
  z-index: 1001;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle__bar {
  width: 28px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle--active .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle--active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle--active .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-navy-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
  z-index: 999;
}

.mobile-nav--active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.mobile-nav--active .mobile-nav__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav--active .mobile-nav__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav--active .mobile-nav__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav--active .mobile-nav__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav--active .mobile-nav__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav--active .mobile-nav__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav--active .mobile-nav__link:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav--active .mobile-nav__link:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav__link:hover {
  color: var(--color-electric);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-700) 100%);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Diagonal geometric overlay */
.hero__background::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(0, 163, 255, 0.05) 40%, rgba(0, 163, 255, 0.05) 60%, transparent 60%);
  transform: rotate(-15deg);
}

/* Grid pattern */
.hero__background::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 163, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 163, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Animated gradient orb */
.hero__orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.15) 0%, transparent 70%);
  top: 20%;
  right: -10%;
  animation: float 15s ease-in-out infinite;
  z-index: 1;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--color-electric);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--color-electric);
}

.hero__title {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero__title span {
  display: block;
}

.hero__title .highlight {
  color: var(--color-electric);
  position: relative;
}

.hero__description {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-gray-300);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

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

/* Hero Stats */
.hero__stats {
  position: absolute;
  bottom: var(--space-3xl);
  left: 0;
  right: 0;
  z-index: 2;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

@media (min-width: 768px) {
  .stat {
    text-align: left;
  }
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-electric);
  line-height: 1;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--color-gray-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-xs);
}

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-700) 100%);
  overflow: hidden;
}

.page-hero__background {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 163, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 163, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--color-electric);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.page-hero__eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--color-electric);
}

.page-hero__title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.page-hero__description {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--color-gray-300);
  max-width: 600px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}

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

.service-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.6) 0%, transparent 50%);
}

.service-card__icon {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  width: 56px;
  height: 56px;
  background: var(--color-electric);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.service-card__content {
  padding: var(--space-lg);
}

.service-card__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.service-card__description {
  color: var(--color-gray-500);
  margin-bottom: var(--space-md);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--color-electric);
  text-transform: uppercase;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

/* ============================================
   FEATURES / WHY US
   ============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.feature {
  text-align: center;
  padding: var(--space-lg);
}

@media (min-width: 768px) {
  .feature {
    text-align: left;
  }
}

.feature__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-electric) 0%, var(--color-electric-glow) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.25);
}

@media (min-width: 768px) {
  .feature__icon {
    margin: 0 0 var(--space-md);
  }
}

.feature__icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-white);
}

.feature__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.feature__description {
  color: var(--color-gray-500);
}

.section--dark .feature__description {
  color: var(--color-gray-300);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-700) 100%);
  overflow: hidden;
}

.cta__background {
  position: absolute;
  inset: 0;
}

.cta__background::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 50%;
  width: 200%;
  height: 300%;
  background: linear-gradient(45deg, transparent 30%, rgba(0, 163, 255, 0.03) 30%, rgba(0, 163, 255, 0.03) 70%, transparent 70%);
  transform: translateX(-50%) rotate(-15deg);
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta__title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta__description {
  font-size: 1.25rem;
  color: var(--color-gray-300);
  margin: 0 auto var(--space-xl);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about__image {
  position: relative;
}

.about__image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about__image::before {
  content: '';
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  right: calc(var(--space-lg) * -1);
  bottom: calc(var(--space-lg) * -1);
  border: 3px solid var(--color-electric);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about__content h2 {
  margin-bottom: var(--space-md);
}

.about__content p {
  margin-bottom: var(--space-md);
  color: var(--color-gray-500);
}

.about__list {
  margin: var(--space-lg) 0;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-gray-700);
}

.about__list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--color-electric);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.location-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-electric);
  transition: all var(--transition-base);
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.location-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.location-card__title svg {
  width: 24px;
  height: 24px;
  color: var(--color-electric);
}

.location-card__info {
  color: var(--color-gray-500);
  font-size: 0.9375rem;
}

.location-card__info p {
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.location-card__info a {
  color: var(--color-electric);
  transition: color var(--transition-fast);
}

.location-card__info a:hover {
  color: var(--color-navy-900);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy-900);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-navy-900);
  background: var(--color-gray-100);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  background: var(--color-white);
  border-color: var(--color-electric);
  box-shadow: 0 0 0 4px rgba(0, 163, 255, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-navy-900);
  color: var(--color-gray-300);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .footer__brand {
    grid-column: span 1;
  }
}

.footer__brand .logo {
  margin-bottom: var(--space-md);
}

.footer__brand p {
  color: var(--color-gray-500);
  max-width: 300px;
}

.footer__title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: var(--color-gray-500);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-electric);
}

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-gray-500);
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  color: var(--color-electric);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact a {
  color: var(--color-gray-500);
  transition: color var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--color-electric);
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--color-electric);
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
}

.stagger.visible > *:nth-child(1) { animation: fadeInUp 0.6s ease 0.1s forwards; }
.stagger.visible > *:nth-child(2) { animation: fadeInUp 0.6s ease 0.2s forwards; }
.stagger.visible > *:nth-child(3) { animation: fadeInUp 0.6s ease 0.3s forwards; }
.stagger.visible > *:nth-child(4) { animation: fadeInUp 0.6s ease 0.4s forwards; }
.stagger.visible > *:nth-child(5) { animation: fadeInUp 0.6s ease 0.5s forwards; }
.stagger.visible > *:nth-child(6) { animation: fadeInUp 0.6s ease 0.6s forwards; }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .service-detail {
    grid-template-columns: 2fr 1fr;
  }
}

.service-detail__content h2 {
  font-size: 1.75rem;
  margin: var(--space-xl) 0 var(--space-md);
}

.service-detail__content h2:first-child {
  margin-top: 0;
}

.service-detail__content p {
  color: var(--color-gray-500);
  margin-bottom: var(--space-md);
}

.service-detail__content ul {
  margin: var(--space-md) 0;
}

.service-detail__content li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-gray-700);
}

.service-detail__content li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--color-electric);
  border-radius: 50%;
  margin-top: 8px;
}

.service-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.sidebar-card__title {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-electric);
}

.sidebar-nav li {
  margin-bottom: var(--space-xs);
}

.sidebar-nav a {
  display: block;
  padding: var(--space-sm);
  color: var(--color-gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--color-white);
  color: var(--color-electric);
  padding-left: var(--space-md);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
