/* ================================================================
   2K Transport Services — Design Tokens & Component Styles
   ================================================================ */

/* --- Design Tokens --- */
:root {
  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Fluid type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* 4px spacing system */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand Colors — derived from logo */
  --color-navy:       #0D1B2A;
  --color-navy-light: #132337;
  --color-navy-mid:   #1B2D45;
  --color-accent:     #D42B2B;
  --color-accent-hover: #B82424;
  --color-accent-light: #E04040;
  --color-silver:     #B0B8C4;
  --color-silver-light: #CDD3DC;
  --color-gold:       #C8922A;
  --color-gold-light: #D4A23D;
  --color-white:      #FFFFFF;
  --color-off-white:  #F5F7FA;
  --color-gray-100:   #E8EBF0;
  --color-gray-200:   #D0D5DD;
  --color-gray-300:   #98A2B3;
  --color-gray-600:   #475467;
  --color-gray-800:   #1D2939;

  /* Semantic */
  --color-bg:         #FFFFFF;
  --color-text:       #1D2939;
  --color-text-muted: #475467;
  --color-text-light: rgba(255,255,255,0.8);
  --color-surface:    #F5F7FA;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08);
  --shadow-md: 0 4px 12px rgba(13,27,42,0.10);
  --shadow-lg: 0 12px 32px rgba(13,27,42,0.14);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}


/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
@media (min-width: 768px) {
  .nav__logo { height: 56px; }
}

.nav__links {
  display: none;
  list-style: none;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
}

.nav__links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: var(--space-1) 0;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav__links a:hover {
  color: #fff;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-md);
  font-weight: 600 !important;
  font-size: var(--text-sm) !important;
}

.nav__cta:hover {
  background: var(--color-accent-hover) !important;
  transform: translateY(-1px);
}

.nav__cta::after { display: none !important; }

/* Mobile hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav__toggle { display: none; }
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.nav__mobile.open {
  display: block;
}

.nav__mobile a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: var(--text-base);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__mobile a:hover {
  color: #fff;
}

.nav__mobile .nav__cta--mobile {
  display: inline-block;
  margin-top: var(--space-4);
  background: var(--color-accent);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: #fff;
  text-align: center;
  width: 100%;
  border-bottom: none;
}


/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy);
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,26,46,0.92) 0%,
    rgba(15,26,46,0.75) 40%,
    rgba(15,26,46,0.5) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: calc(80px + var(--space-16)) var(--space-4) var(--space-16);
}

@media (min-width: 768px) {
  .hero__content {
    padding: calc(80px + var(--space-20)) var(--space-8) var(--space-20);
    max-width: 720px;
    margin-left: clamp(var(--space-8), 8vw, 120px);
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(212, 43, 43, 0.15);
  border: 1px solid rgba(212, 43, 43, 0.45);
  color: #F0A0A0;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: inline;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--space-5);
  font-weight: 400;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-8);
  line-height: 1.5;
  max-width: 550px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}


/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-6);
  cursor: pointer;
  border: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27, 108, 176, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

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

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn--gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--color-navy);
  color: #fff;
}

.btn--dark:hover {
  background: var(--color-navy-light);
  transform: translateY(-1px);
}


/* ================================================================
   SECTIONS
   ================================================================ */
.section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) var(--space-4);
}

@media (min-width: 768px) {
  .section { padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-8); }
}

.section--dark {
  background: var(--color-navy);
  color: #fff;
}

.section--light {
  background: var(--color-off-white);
}

.section--white {
  background: #fff;
}

.section__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
}

.section__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section--dark .section__label {
  color: var(--color-accent-light);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
  font-weight: 400;
}

.section--dark .section__title {
  color: #fff;
}

.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--dark .section__desc {
  color: rgba(255,255,255,0.65);
}


/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(27, 108, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.why-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ================================================================
   SERVICES
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
}

.service-card {
  background: var(--color-navy-mid);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(27, 108, 176, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-accent-light);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #fff;
  margin-bottom: var(--space-3);
}

.service-card__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.service-card__list {
  list-style: none;
  padding: 0;
}

.service-card__list li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  padding: var(--space-1) 0;
  padding-left: var(--space-5);
  position: relative;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}


/* ================================================================
   PROCESS / HOW IT WORKS
   ================================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin: 0 auto var(--space-4);
  position: relative;
  z-index: 2;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.process-step__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* connector line between steps on desktop */
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    right: calc(-50% + 36px);
    height: 2px;
    background: var(--color-gray-200);
    z-index: 1;
  }
}


/* ================================================================
   SERVICE AREA
   ================================================================ */
.area-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .area-content { grid-template-columns: 1fr 1fr; }
}

.area-text__heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #fff;
  margin-bottom: var(--space-4);
}

.area-text p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.area-routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.area-route {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: 500;
}

.area-route svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent-light);
  flex-shrink: 0;
}

/* Map placeholder area */
.area-map {
  background: var(--color-navy-mid);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.area-map__content {
  position: relative;
  z-index: 1;
}

.area-map__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  background: rgba(27, 108, 176, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-light);
}

.area-map__icon svg {
  width: 32px;
  height: 32px;
}

.area-map__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: var(--space-2);
}

.area-map__text {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
}


/* ================================================================
   CONTACT / QUOTE FORM
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.3fr; }
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.contact-info__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(27, 108, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail__label {
  font-size: var(--text-xs);
  color: var(--color-gray-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail__value {
  font-size: var(--text-base);
  color: var(--color-navy);
  font-weight: 500;
}

.contact-detail__value a {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-detail__value a:hover {
  text-decoration: underline;
}

/* SDVOSB badge in contact */
.sdvosb-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(200, 146, 42, 0.1);
  border: 1px solid rgba(200, 146, 42, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  margin-top: var(--space-4);
}

.sdvosb-badge svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.sdvosb-badge span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}


/* Quote form */
.quote-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-100);
}

.quote-form__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-navy);
  margin-bottom: var(--space-6);
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

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

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

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-1);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  background: var(--color-off-white);
  color: var(--color-text);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(27, 108, 176, 0.15);
  background: #fff;
}

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

.form-submit {
  grid-column: 1 / -1;
  margin-top: var(--space-2);
}

.form-submit .btn {
  width: 100%;
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.6);
  padding: var(--space-12) var(--space-4) var(--space-6);
}

.footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 360px;
}

.footer__heading {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
}

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

.footer__links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: var(--text-sm);
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer__bottom a:hover {
  color: rgba(255,255,255,0.8);
}


/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--color-navy);
  padding: calc(80px + var(--space-12)) var(--space-4) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(212,43,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .page-hero { padding: calc(80px + var(--space-16)) var(--space-8) var(--space-16); }
}

.page-hero__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-light);
  margin-bottom: var(--space-3);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--space-4);
  font-weight: 400;
  position: relative;
}

.page-hero__desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* Active nav link */
.nav__links a.nav--active {
  color: #fff;
}
.nav__links a.nav--active::after {
  width: 100%;
}

/* Stats bar */
.stats-bar {
  background: var(--color-accent);
  padding: var(--space-6) var(--space-4);
}

.stats-bar__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}

@media (min-width: 768px) {
  .stats-bar__inner { grid-template-columns: repeat(4, 1fr); }
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-item__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-4);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--space-4);
  font-weight: 400;
}

.cta-banner__text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--color-navy-light);
  padding: var(--space-3) var(--space-4);
}

.breadcrumb__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

.breadcrumb__inner a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.breadcrumb__inner a:hover { color: #fff; }

.breadcrumb__sep { color: rgba(255,255,255,0.3); }

.breadcrumb__current { color: rgba(255,255,255,0.85); font-weight: 500; }

/* Service detail cards (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .service-detail { gap: var(--space-16); }
}

.service-detail__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .service-detail__item { grid-template-columns: 1fr 1fr; }
  .service-detail__item--reverse .service-detail__visual { order: -1; }
}

.service-detail__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.service-detail__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
  font-weight: 400;
}

.service-detail__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.service-detail__list {
  list-style: none;
  margin-bottom: var(--space-6);
}

.service-detail__list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
  border-bottom: 1px solid var(--color-gray-100);
}

.service-detail__list li:last-child { border-bottom: none; }

.service-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.service-detail__visual {
  background: var(--color-navy);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.service-detail__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,43,43,0.18) 0%, transparent 70%);
}

.service-detail__icon-lg {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: rgba(212,43,43,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-light);
  position: relative;
  z-index: 1;
}

.service-detail__icon-lg svg { width: 40px; height: 40px; }

.service-detail__visual-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
  position: relative;
  z-index: 1;
}

.service-detail__visual-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  max-width: 260px;
  position: relative;
  z-index: 1;
}

/* Team / About cards */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

.team-card {
  background: var(--color-navy-mid);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212,43,43,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent-light);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: var(--space-1);
}

.team-card__role {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-light);
  margin-bottom: var(--space-4);
}

.team-card__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* Values list */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.value-card {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.value-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(212,43,43,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.value-card__icon svg { width: 22px; height: 22px; }

.value-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-navy);
  margin-bottom: var(--space-1);
}

.value-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ================================================================
   SCROLL REVEAL ANIMATION
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children for cards */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
