:root {
  --navy: #2e3192;
  --navy-dark: #1e2460;
  --orange: #f39200;
  --orange-bright: #f58220;
  --lavender: #a5a6f6;
  --accent-blue: #6b74f1;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #444;
  --max-width: 1100px;
  --font: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--orange);
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(46, 49, 146, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  border: 2px solid var(--navy);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.nav-toggle:hover {
  background: rgba(46, 49, 146, 0.06);
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 56px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-ar {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.2;
}

.brand-en {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
}

.main-nav {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--navy);
  color: var(--white);
}

/* Page sections */
.page-section {
  background: var(--white);
}

.page-section+.page-section {
  margin-top: 0;
}

.page-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.page-banner+.container {
  padding-top: 2rem;
}

/* Main content */
main {
  flex: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.section-title {
  color: var(--accent-blue);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}

.section-title.orange {
  color: var(--orange);
}

.intro-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.intro-text strong,
.intro-text .highlight {
  color: var(--accent-blue);
  font-weight: 700;
}

.intro-text .slogan {
  color: var(--accent-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

ul.bullet-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

ul.bullet-list li {
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  color: var(--text-muted);
}

ul.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

.license {
  color: var(--accent-blue);
  font-weight: 700;
  margin: 1.5rem 0;
}

/* ── Home: Cover hero ── */
.cover-hero {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 75vh, 650px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-dark);
}

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

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

.cover-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 36, 96, 0.95) 0%,
    rgba(30, 36, 96, 0.8) 50%,
    rgba(30, 36, 96, 0.2) 100%
  );
}

.cover-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.cover-hero__content {
  max-width: 620px;
  color: var(--white);
  animation: heroFadeIn 0.8s ease-out forwards;
}

.cover-hero__badge {
  display: inline-block;
  background: rgba(243, 146, 0, 0.18);
  color: var(--orange);
  border: 1px solid rgba(243, 146, 0, 0.3);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.cover-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.cover-hero__title .highlight {
  color: var(--orange);
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cover-hero__desc {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-weight: 400;
}

.cover-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn--large {
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
}

.btn--white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.cover-hero__badges-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 18, 50, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 3;
  padding: 1rem 0;
}

.badges-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.badge-pill {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.72rem, 1.3vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transition: all 0.25s ease;
}

.badge-pill:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-1px);
}

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

/* Legacy hero (other pages) */
.hero-cover {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.hero-cover img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--navy);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-slogan {
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.services-bar {
  background: rgba(30, 36, 96, 0.85);
  color: var(--white);
  text-align: center;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ── Home: Diamond fleet gallery (Split Layout) ── */
.fleet-gallery {
  padding: 4.5rem 1.5rem;
  background: linear-gradient(180deg, var(--white) 0%, #f8f9fd 100%);
  position: relative;
  overflow: hidden;
}

.fleet-gallery__split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.fleet-gallery__content {
  text-align: left;
}

.fleet-gallery__desc {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 1.25rem 0 1.75rem;
}

.fleet-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.fleet-features li {
  position: relative;
  padding-left: 2.25rem;
}

.fleet-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: rgba(243, 146, 0, 0.12);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
}

.fleet-features li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.fleet-features li span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: block;
}

.fleet-gallery__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.fleet-gallery__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fleet-gallery__grid {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1;
}

.diamond {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: var(--navy);
  margin: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(30, 36, 96, 0.2);
  z-index: 2;
  text-decoration: none;
}

.diamond__img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.diamond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.diamond__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 36, 96, 0.88);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: opacity 0.4s ease;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  text-align: center;
}

.diamond__overlay-content {
  color: var(--white);
  transform: translateY(12px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 90%;
}

.diamond__overlay h3 {
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.diamond__overlay p {
  font-size: clamp(0.58rem, 1.2vw, 0.72rem);
  line-height: 1.3;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}

.diamond__arrow {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  line-height: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.15rem;
  box-shadow: 0 3px 8px rgba(243, 146, 0, 0.3);
  transition: background 0.2s, transform 0.2s;
}

/* Positions mapping */
.diamond--top   { top: 0;    left: 50%; transform: translateX(-50%); }
.diamond--left  { top: 50%;  left: 4%;  transform: translateY(-50%); }
.diamond--right { top: 50%;  right: 4%; transform: translateY(-50%); }
.diamond--bottom{ bottom: 0; left: 50%; transform: translateX(-50%); }

/* Hover effects */
.diamond:hover,
.diamond:focus-within {
  transform: translate(0, 0) scale(1.08);
  z-index: 10;
  box-shadow: 0 20px 45px rgba(30, 36, 96, 0.35);
}

.diamond--top:hover,
.diamond--top:focus-within { transform: translateX(-50%) scale(1.08); }
.diamond--left:hover,
.diamond--left:focus-within { transform: translateY(-50%) scale(1.08); }
.diamond--right:hover,
.diamond--right:focus-within { transform: translateY(-50%) scale(1.08); }
.diamond--bottom:hover,
.diamond--bottom:focus-within { transform: translateX(-50%) scale(1.08); }

.diamond:hover .diamond__overlay,
.diamond:focus-within .diamond__overlay {
  opacity: 1;
}

.diamond:hover .diamond__overlay-content,
.diamond:focus-within .diamond__overlay-content {
  transform: translateY(0);
}

.diamond:hover .diamond__img-wrapper,
.diamond:focus-within .diamond__img-wrapper {
  transform: scale(1.05);
}

.diamond:hover .diamond__arrow,
.diamond:focus-within .diamond__arrow {
  background: var(--white);
  color: var(--orange);
  transform: scale(1.1);
}


/* Legacy diamond grid */
.diamond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 520px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.diamond-grid .diamond {
  position: static;
  transform: none;
  width: auto;
}

.diamond-grid .diamond:nth-child(1) {
  grid-column: 2;
}

.diamond-grid .diamond:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.diamond-grid .diamond:nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}

.diamond-grid .diamond:nth-child(4) {
  grid-column: 2;
  grid-row: 3;
}

/* Image layouts */
.hero-image {
  margin: 1.5rem 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.image-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.image-grid-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.image-grid-3 .img-tall {
  grid-row: span 2;
  height: 100%;
}

.image-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.image-gallery img {
  border-radius: 4px;
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hex-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.hex {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  aspect-ratio: 1;
  overflow: hidden;
}

.hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Explore cards (3 profile sections) ── */
.explore-section {
  background: linear-gradient(180deg, #f7f8fc 0%, var(--white) 100%);
  padding: 0 0 1rem;
}

.explore-section .container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

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

.explore-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(46, 49, 146, 0.1);
  border: 1px solid rgba(46, 49, 146, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
  text-decoration: none;
}

.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(46, 49, 146, 0.18);
  color: inherit;
}

.explore-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.explore-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.explore-card:hover .explore-card__media img {
  transform: scale(1.08);
}

.explore-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 36, 96, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.explore-card__num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(243, 146, 0, 0.45);
  z-index: 2;
}

.explore-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--navy);
}

.explore-card__body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.explore-card__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.explore-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  transition: gap 0.2s ease;
}

.explore-card:hover .explore-card__link {
  gap: 0.6rem;
  color: var(--navy);
}

/* Legacy contents section */
.section-bar {
  height: 14px;
  background: var(--navy);
  width: 100%;
}

.contents-section {
  background: var(--white);
}

.contents-section__body {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  align-items: center;
  min-height: 480px;
}

.contents-section__nav {
  padding: 1rem 2rem 1rem 0;
}

.contents-badge {
  display: inline-block;
  background: var(--lavender);
  color: var(--text);
  font-weight: 700;
  padding: 0.45rem 1.6rem;
  border-radius: 999px;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.contents-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contents-list a {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s, transform 0.2s;
}

.contents-list a:hover {
  color: var(--navy);
  transform: translateX(4px);
}

.contents-num {
  width: 40px;
  height: 40px;
  background: var(--lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contents-label {
  line-height: 1.3;
}

.contents-section__visual {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 520px;
  overflow: hidden;
  border-radius: 2px;
}

.collage-img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.collage-img:not(:last-child) {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: -10px;
}

/* Legacy contents layout */
.contents-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.contents-images {
  display: flex;
  flex-direction: column;
  max-height: 520px;
  overflow: hidden;
}

.contents-images img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  min-height: 0;
}

.contents-images img:not(:last-child) {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: -10px;
}

/* Contact */
.contact-hero {
  position: relative;
  margin: 0;
}

.contact-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.contact-card {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(30, 36, 96, 0.88);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  color: var(--white);
  min-width: 260px;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-card .role {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-size: 0.9rem;
  margin: 0.35rem 0;
}

.contact-card a {
  color: var(--white);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  margin-top: auto;
}

/* ── Home: Shared section styles ── */
.home-section {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin: 0.5rem 0 0.75rem;
  font-weight: 800;
}

.section-header--light h2 {
  color: var(--navy);
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-tag {
  display: inline-block;
  background: var(--lavender);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

.section-tag--orange {
  background: rgba(243, 146, 0, 0.15);
  color: var(--orange-bright);
}

.section-tag--light {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

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

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

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

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

.btn--accent {
  background: var(--orange);
  color: var(--white);
}

.btn--accent:hover {
  background: var(--orange-bright);
  color: var(--white);
}

/* About intro */
.about-intro .container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-split__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-split__text p strong {
  color: var(--navy);
}

.about-split__text .license {
  margin: 1.25rem 0 1.5rem;
}

.about-split__image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(46, 49, 146, 0.15);
}

.about-split__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Slogan strip */
.slogan-strip {
  background: var(--navy);
  padding: 1.1rem 1.5rem;
  text-align: center;
}

.slogan-strip p {
  color: var(--accent-blue);
  font-weight: 800;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Service cards */
.services-section {
  background: #f7f8fc;
  padding: 3rem 0;
}

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

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(46, 49, 146, 0.08);
  border: 1px solid rgba(46, 49, 146, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(46, 49, 146, 0.14);
}

.service-card__icon {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  z-index: 2;
}

.service-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-card__body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.service-card__body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.service-card__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Why choose us */
.why-section .container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.why-split__content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--navy);
  margin: 0.6rem 0 1rem;
  font-weight: 800;
}

.why-split__content>p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin-bottom: 1.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-list__icon {
  width: 28px;
  height: 28px;
  background: rgba(243, 146, 0, 0.15);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.why-split__hero {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.why-split__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.why-split__thumbs img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}

/* Rental section */
.rental-section {
  background: #f7f8fc;
  padding: 2.5rem 0 3rem;
}

.rental-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(46, 49, 146, 0.1);
  border-left: 5px solid var(--orange);
}

.rental-banner__text {
  padding: 2rem 0 2rem 2rem;
}

.rental-banner__text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--navy);
  margin: 0.5rem 0 0.75rem;
  font-weight: 800;
}

.rental-banner__text p {
  color: var(--text-muted);
  line-height: 1.7;
}

.rental-banner__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Contact CTA */
.cta-section {
  background: var(--navy-dark);
  padding: 3rem 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.cta-box__content {
  padding: 2rem 0 2rem 2rem;
}

.cta-box__content h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: 0.5rem 0 0.75rem;
  font-weight: 800;
}

.cta-box__content>p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.cta-box__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cta-detail strong {
  display: block;
  color: var(--orange);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.cta-detail span,
.cta-detail a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
}

.cta-detail a:hover {
  color: var(--orange);
}

.cta-box__image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-gallery__split {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

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

  .fleet-gallery__actions {
    justify-content: center;
  }

  .fleet-features {
    text-align: left;
    max-width: 540px;
    margin: 0 auto 2rem;
  }
}

@media (max-width: 768px) {
  .cover-hero {
    min-height: auto;
  }

  .cover-hero__bg-wrapper {
    position: absolute;
    inset: 0;
  }

  .cover-hero__container {
    padding-top: 3.5rem;
    padding-bottom: 5.5rem;
  }

  .cover-hero__content {
    text-align: center;
    max-width: 100%;
  }

  .cover-hero__actions {
    justify-content: center;
  }

  .cover-hero__badges-bar {
    position: relative;
    background: rgba(15, 18, 50, 0.95);
    padding: 1.25rem 0.5rem;
  }

  .badges-bar__inner {
    justify-content: center;
    gap: 0.5rem;
  }

  .badge-pill {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
  }

  .fleet-gallery {
    padding: 3.5rem 1rem;
  }

  .fleet-gallery__grid {
    width: min(340px, 90vw);
    height: min(340px, 90vw);
  }

  .contents-section__body {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
    min-height: auto;
  }

  .contents-section__nav {
    padding: 0 0 1.5rem;
  }

  .contents-section__visual {
    max-height: 400px;
  }

  .hero-overlay {
    width: 100%;
    clip-path: none;
    background: rgba(46, 49, 146, 0.92);
    min-height: auto;
    position: relative;
    padding: 1.5rem;
  }

  .hero-cover img {
    height: 220px;
  }

  .mission-layout,
  .contents-layout,
  .image-grid-3,
  .image-grid-2 {
    grid-template-columns: 1fr;
  }

  .image-grid-3 .img-tall {
    grid-row: auto;
  }

  .image-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .hex-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin: -2rem 1rem 0;
  }

  .site-header {
    padding: 0.65rem 1rem;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 3px solid var(--navy);
    box-shadow: 0 8px 24px rgba(46, 49, 146, 0.12);
    padding: 0.5rem 0;
  }

  .site-header.is-nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.25rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(46, 49, 146, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .brand img {
    height: 48px;
  }

  .brand-en {
    font-size: 0.72rem;
  }

  .about-split,
  .why-split,
  .rental-banner,
  .cta-box,
  .service-cards {
    grid-template-columns: 1fr;
  }

  .about-split__image img {
    height: 240px;
  }

  .rental-banner__text {
    padding: 1.5rem;
  }

  .rental-banner__image img {
    height: 200px;
  }

  .cta-box__content {
    padding: 1.5rem;
  }

  .cta-box__details {
    grid-template-columns: 1fr;
  }

  .service-cards {
    gap: 1rem;
  }

  .explore-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .explore-card__media {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .brand-ar {
    font-size: 0.95rem;
  }

  .brand-en {
    font-size: 0.62rem;
    letter-spacing: 0.02em;
  }

  .brand img {
    height: 42px;
  }
}