:root {
  --color-navy: #1a3a5c;
  --color-navy-dark: #122a44;
  --color-navy-light: #234b74;
  --color-olive: #6b7c3e;
  --color-olive-dark: #556330;
  --color-olive-light: #8a9e52;
  --color-white: #ffffff;
  --color-light: #f5f7fa;
  --color-gray-100: #f0f2f5;
  --color-gray-200: #e2e6ea;
  --color-gray-300: #c5cdd5;
  --color-gray-600: #6c757d;
  --color-gray-800: #343a40;
  --color-dark: #212529;
  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar: 'Cairo', 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
}

body {
  font-family: var(--font-en);
  color: var(--color-dark);
  overflow-x: hidden;
}

[dir="rtl"] body,
[dir="rtl"] {
  font-family: var(--font-ar);
}

/* ============================================================
   Header / Navigation
   ============================================================ */

.site-header {
  background: var(--color-navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.925rem;
  padding: 0.5rem 0.85rem;
  transition: color var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
  font-weight: 700;
  border-bottom: 2px solid var(--color-olive);
}

.lang-switcher {
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.lang-switcher:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* ============================================================
   Hero Section (Homepage)
   ============================================================ */

.hero-section {
  position: relative;
  background-color: var(--color-navy-dark);
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 8s ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(18, 42, 68, 0.88) 0%, rgba(26, 58, 92, 0.82) 45%, rgba(35, 75, 116, 0.72) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-overlay {
  width: 100%;
  padding: 5rem 0 6rem;
  position: relative;
  z-index: 2;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.hero-dot:hover,
.hero-dot:focus-visible {
  background: rgba(255, 255, 255, 0.45);
  outline: none;
}

.hero-dot.is-active {
  background: var(--color-olive-light);
  border-color: var(--color-olive-light);
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.01ms;
    transform: none;
  }

  .hero-slide.is-active {
    transform: none;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-tagline {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-olive-light);
  line-height: 1.5;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
}

.hero-cta {
  margin-top: 1.5rem;
}

.hero-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-badge-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8;
}

.min-vh-75 {
  min-height: 75vh;
}

/* ============================================================
   Page Hero (Inner Pages)
   ============================================================ */

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

.page-hero {
  position: relative;
  background-color: var(--color-navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 42, 68, 0.9) 0%, rgba(26, 58, 92, 0.85) 55%, rgba(26, 58, 92, 0.78) 100%);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-olive), var(--color-olive-light), var(--color-olive));
  z-index: 2;
}

.page-hero--about { background-image: url('/images/about-team.jpg'); }
.page-hero--services { background-image: url('/images/services-warehouse.jpg'); }
.page-hero--operations { background-image: url('/images/operations-forklift.jpg'); }
.page-hero--products { background-image: url('/images/warehouse-boxes.jpg'); }
.page-hero--humanitarian { background-image: url('/images/humanitarian-aid.jpg'); }
.page-hero--quality { background-image: url('/images/quality-inspection.jpg'); }
.page-hero--contact { background-image: url('/images/logistics-truck.jpg'); }

.page-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.page-hero-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.breadcrumb-light .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.breadcrumb-light .breadcrumb-item a:hover {
  color: #ffffff;
}

.breadcrumb-light .breadcrumb-item.active {
  color: var(--color-olive-light);
}

.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   Brand DNA Cards
   ============================================================ */

.brand-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--color-navy);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.brand-card .brand-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.brand-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.brand-card p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   Service / Product Cards
   ============================================================ */

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-olive);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--color-gray-600);
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 0;
}

a.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.service-card-link:hover h3,
a.service-card-link:focus-visible h3 {
  color: var(--color-olive-dark);
}

a.service-card-link:focus-visible {
  outline: 2px solid var(--color-olive);
  outline-offset: 2px;
}

.service-card-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-olive);
}

a.service-card-link:hover .service-card-cta {
  color: var(--color-olive-dark);
}

/* ============================================================
   Product Detail Cards (Mama brand, etc.)
   ============================================================ */

.product-detail-section {
  scroll-margin-top: 6rem;
  padding-top: 1rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-card-image {
  background: var(--color-light);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}

.product-card-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-olive);
  margin-bottom: 0.65rem !important;
}

.product-card-body p:last-child {
  color: var(--color-gray-600);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   Operations Flow
   ============================================================ */

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 2.35rem;
  top: 4.5rem;
  width: 2px;
  height: calc(100% - 2rem);
  background: linear-gradient(to bottom, var(--color-olive), var(--color-navy-light));
  opacity: 0.4;
}

.flow-step-number {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.flow-step-body {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  flex: 1;
}

.flow-step-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.flow-step-body p {
  color: var(--color-gray-600);
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   Contact Cards
   ============================================================ */

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--color-olive);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.contact-card .contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(107, 124, 62, 0.1);
  color: var(--color-olive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--color-navy);
}

/* ============================================================
   Section Headings & Typography
   ============================================================ */

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-600);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.section-overline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-olive);
  margin-bottom: 0.5rem;
}

.text-navy {
  color: var(--color-navy) !important;
}

.text-olive {
  color: var(--color-olive) !important;
}

hr {
  border-color: var(--color-gray-200);
  opacity: 1;
}

/* ============================================================
   Stats / Numbers
   ============================================================ */

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ============================================================
   Highlight Box
   ============================================================ */

.highlight-box {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-gray-200);
}

.highlight-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.highlight-box p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   Quote Block
   ============================================================ */

.blockquote-card {
  background: var(--color-navy);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.blockquote-card p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 0;
}

.blockquote-card .blockquote-author {
  font-size: 0.9rem;
  color: var(--color-olive-light);
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
}

/* ============================================================
   CTA Section
   ============================================================ */

.cta-section {
  background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.5rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.navbar-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-olive-light);
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-olive-light);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 2rem 0 1.5rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn-primary {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--color-navy-light);
  border-color: var(--color-navy-light);
}

.btn-olive {
  background-color: var(--color-olive);
  border-color: var(--color-olive);
  color: #ffffff;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-olive:hover,
.btn-olive:focus {
  background-color: var(--color-olive-dark);
  border-color: var(--color-olive-dark);
  color: #ffffff;
}

.btn-outline-light {
  font-weight: 500;
}

/* ============================================================
   RTL Support
   ============================================================ */

[dir="rtl"] .navbar-nav {
  padding-right: 0;
}

[dir="rtl"] .ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}

[dir="rtl"] .ms-lg-3 {
  margin-right: 1rem !important;
  margin-left: 0 !important;
}

[dir="rtl"] .me-3 {
  margin-left: 1rem !important;
  margin-right: 0 !important;
}

[dir="rtl"] .service-card {
  border-left: none;
  border-right: 4px solid var(--color-olive);
}

[dir="rtl"] .flow-step:not(:last-child)::after {
  left: auto;
  right: 2.35rem;
}

[dir="rtl"] .page-hero .text-lg-end {
  text-align: left !important;
}

[dir="rtl"] .breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding-left: 0.5rem;
  padding-right: 0;
}

[dir="rtl"] .hero-badge {
  text-align: right;
}

[dir="rtl"] .hero-title,
[dir="rtl"] .hero-tagline,
[dir="rtl"] .hero-subtitle,
[dir="rtl"] .hero-description,
[dir="rtl"] .page-hero-title {
  letter-spacing: 0;
}

/* ============================================================
   Skip Link
   ============================================================ */

.skip-link:focus {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1040;
  background: var(--color-navy);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-section {
    min-height: auto;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .flow-step {
    gap: 1rem;
    padding: 1rem;
  }

  .flow-step-number {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
  }

  .flow-step:not(:last-child)::after {
    left: 1.75rem;
  }

  [dir="rtl"] .flow-step:not(:last-child)::after {
    right: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .page-hero-title {
    font-size: 1.6rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .blockquote-card p {
    font-size: 1.05rem;
  }
}

/* ============================================================
   List styles for content areas
   ============================================================ */

.content-list {
  list-style: none;
  padding-left: 0;
}

.content-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-gray-800);
  line-height: 1.6;
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-olive);
}

[dir="rtl"] .content-list {
  padding-right: 0;
}

[dir="rtl"] .content-list li {
  padding-left: 0;
  padding-right: 1.5rem;
}

[dir="rtl"] .content-list li::before {
  left: auto;
  right: 0;
}

/* ============================================================
   Checkmark List
   ============================================================ */

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  padding: 0.35rem 0;
  line-height: 1.7;
}

.check-list li::before {
  content: '\2713';
  color: var(--color-olive);
  margin-right: 0.6rem;
  font-weight: 700;
}

[dir="rtl"] .check-list {
  padding-right: 0;
}

[dir="rtl"] .check-list li::before {
  margin-right: 0;
  margin-left: 0.6rem;
}

/* ============================================================
   Contact Form Placeholder
   ============================================================ */

.contact-form-section {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-gray-200);
}

.contact-info-section {
  padding: 2rem 0;
}

/* ============================================================
   Content Images
   ============================================================ */

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 0.5rem;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.feature-image--tall img {
  min-height: 280px;
  max-height: 420px;
  object-fit: cover;
}

.feature-image--banner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.photo-credit {
  display: none;
  font-size: 0.7rem;
  color: var(--color-gray-600);
  margin-top: 0.35rem;
  margin-bottom: 1.5rem;
}

.photo-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.field-gallery .photo-grid-item {
  margin-bottom: 0;
}

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

.photo-grid-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 4 / 3;
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-grid-item:hover img {
  transform: scale(1.04);
}

.photo-strip {
  background: var(--color-navy-dark);
  padding: 0;
}

.photo-strip .photo-grid {
  gap: 0;
}

.photo-strip .photo-grid-item {
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 16 / 9;
}

.photo-strip .photo-grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 42, 68, 0.45), transparent 50%);
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip .photo-grid-item:not(:first-child) {
    display: none;
  }

  .feature-image--banner img {
    height: 200px;
  }
}

/* ============================================================
   Print Styles
   ============================================================ */

@media print {
  .site-header,
  .site-footer,
  .lang-switcher,
  .hero-cta,
  .cta-section {
    display: none;
  }
}
