/* ============================================
   APP GLOBAL LOGISTICS CONSORTIUM SDN. BHD.
   Shared stylesheet for all 6 pages
============================================ */

:root {
  --cream: #f5f1e6;
  --gold: #1b8a8e;
  --gold-dark: #136669;

  --gold-light: #f3cd6c;
  --yellow: #ffc300;
  --coral: #ff6f59;
  --pink-soft: #f6a9a0;
  --white: #ffffff;
  --muted: #5c7380;
  --border: rgba(26, 43, 74, 0.12);
  --black: #000000;
  --shadow: 0 18px 40px rgba(26, 43, 74, 0.08);
  --blue: #183650;
  /* --blue: #ACB0FF; */
  /* --blue: #ffdeda; */

  /* --goldV1: #d9a320; */
  /* --beigeV1: #FFF6E4; */
  /* --cream-softV1: #fdf6ec; */
  /* --navyV1: #0d1b3e; */
  /* --navy-softV1: #142a52; */
  --navy-soft: #0B1B3D;
  --navy: #0B1B3D;
  --cream-soft: #ffffff;
  --blue: #007DBA;
  --beige: #007DBA;
  --gold: #FF9E1B;


}

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

html,
body {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  background: var(--white);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
  font-family: 'Merriweather', serif;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 30px;
}

/* ============================================
   GLOBAL MICRO ANIMATIONS
============================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.58s ease, transform 0.58s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hover-lift {
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  will-change: transform;
}

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

.hover-lift:focus-visible {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {

  .reveal-on-scroll,
  .hover-lift {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
  }
}

/* ============================================
   TOP CONTACT BAR
============================================ */
.top-bar {
  /* background-color: var(--navy); */
  background-color: var(--navy);
  padding: 8px 0;
}

.top-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 30px;
  color: #d9dde6;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.brand-logo-band {
  background-color: var(--white);
  border-bottom: 1px solid #e3e7ef;
  padding: 18px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logo-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.brand-logo-img {
  width: clamp(260px, 34vw, 520px);
  max-width: 100%;
  height: auto;
}

/* ============================================
   HEADER / NAVIGATION
============================================ */
.header {
  background-color: var(--navy);
  padding: 14px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--white);
  cursor: pointer;
}

/* This is navigation's alignment */
.nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  padding-bottom: 8px;
  position: relative;
  transition: color 0.25s ease;

}

.nav-link:hover {
  color: var(--gold);
}

.nav-link.active {
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
}

/* ============================================
   PAGE HERO (used on About/Services/Projects/Enquiry/Contact)
============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.page-hero p {
  color: #cdd6e3;
  font-size: 0.95rem;
}

/* ============================================
   HOME HERO SECTION
============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.25) 38%,
      rgba(255, 255, 255, 0.05) 60%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-title {
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.hero-subtitle {
  font-weight: 700;
  font-size: 26px;
  color: var(--navy);
  margin-top: 10px;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: var(--navy);
}

.hero-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--navy-soft);
  max-width: 420px;
  margin-bottom: 26px;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  display: inline-block;
  background-color: var(--gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 30px;
  box-shadow: 0 6px 16px rgba(31, 138, 139, 0.35);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(31, 138, 139, 0.45);
}

/* ============================================
   SECTIONS (shared)
============================================ */
.section {
  padding: 70px 0;
}

.section-alt {
  background-color: var(--cream-soft);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 13px;
  color: var(--navy);
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 150px;
  max-width: 100%;
  height: 4px;
  margin: 10px auto 0;
  background: var(--gold);
}

.section-heading p {
  color: var(--navy);
  line-height: 1.7;
  font-size: 15px;
}

/* ============================================
   ABOUT US PAGE
============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-images img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.about-images .img-main {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  top: 0;
}

.about-images .img-small {
  width: 55%;
  position: absolute;
  left: 0;
  bottom: -100px;
  border: 6px solid var(--white);
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 13px;
  color: var(--navy);
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.about-copy h2::after {
  content: '';
  display: block;
  width: 150px;
  max-width: 100%;
  height: 4px;
  margin: 10px auto 0;
  background: var(--gold);
}

.about-copy p {
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  font-size: 14px;
}

.vm-section {
  margin-bottom: 72px;
}

.vm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  margin-top: 90px;
  justify-content: center;
}

.vm-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  flex-shrink: 0;
}

.vm-card {
  background: #fff6e4;
  width: 100%;
  min-height: 300px;
  box-sizing: border-box;
  /* Text Padding */
  padding: 36px 40px 28px;
  box-shadow:
    -45px 60px 45px 0px rgba(0, 0, 0, 0.05),
    -20px 27px 34px 0px rgba(0, 0, 0, 0.09),
    -5px 7px 18px 0px rgba(0, 0, 0, 0.1);
}

.vm-icon {
  position: absolute;
  top: -51px;
  z-index: 1;
  transform-origin: center;
}

.vm-icon--vision {
  right: -20.5px;
  width: 115.5px;
  height: 132px;
  top: -60.5px;
}

.vm-icon--mission {
  left: -30px;
  width: 100px;
  height: 149px;
  /* transform: scaleX(-1); */
  top: -59.5px;
  transform-origin: center;
}

.vm-title {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.608px;
  text-align: center;
  color: #000000;
  margin: 0 0 18px;
}

.vm-text {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: -0.285px;
  line-height: 1.5;
  text-align: justify;
  color: #000000;
}

/* "Why Choose Us" */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 30px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.why-card .why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.why-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.why-card p {
  color: var(--navy);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================
   SERVICES PAGE
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px 26px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: var(--navy);
}

.service-card p {
  color: var(--navy);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* ============================================
   PROJECTS PAGE
============================================ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.project-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
}

.project-body {
  padding: 22px;
}

.project-body span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-body h3 {
  margin: 8px 0 10px;
  font-size: 1.1rem;
  color: var(--navy);
}

.project-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   ENQUIRY PAGE
============================================ */
.enquiry-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: flex-start;
}

.enquiry-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
  color: var(--navy);
}

.enquiry-info p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.enquiry-info ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--navy-soft);
  font-size: 0.92rem;
}

.enquiry-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font: inherit;
  background: var(--cream-soft);
  color: var(--navy);
}

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

.enquiry-form button {
  justify-self: start;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.enquiry-status {
  margin: 2px 2px 0;
  min-height: 1.3em;
  font-size: 0.92rem;
  color: #17653a;
}

.enquiry-status.is-error {
  color: #b02020;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-cards {
  display: grid;
  gap: 18px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-card h4 {
  margin-bottom: 4px;
  font-size: 1rem;
  color: var(--navy);
}

.contact-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.contact-hero {
  background:
    linear-gradient(120deg, rgba(13, 27, 62, 0.95), rgba(20, 42, 82, 0.86)),
    radial-gradient(circle at 80% 20%, rgba(217, 163, 32, 0.3), transparent 45%);
}

.contact-intro-section {
  padding-bottom: 24px;
}

.contact-intro-section .contact-pro-intro {
  margin-bottom: 0;
}

.contact-pro-section {
  padding: 24px 0 70px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-pro-intro {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.contact-pro-intro h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.35rem);
  margin-bottom: 12px;
  color: var(--navy);
}

.contact-pro-intro p {
  font-size: 0.98rem;
  color: #4b5f7f;
  line-height: 1.7;
}

.contact-office-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-office-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(13, 27, 62, 0.1);
  box-shadow: 0 16px 36px rgba(13, 27, 62, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-office-head {
  padding: 20px 22px;
  background: linear-gradient(140deg, #0d1b3e, #1b8a8e);
  color: var(--white);
}

.contact-office-head h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.contact-office-head span {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.contact-office-body {
  padding: 18px 22px 22px;
  display: grid;
  gap: 12px;
}

.contact-office-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-office-row img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-office-row span,
.contact-office-row a {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #1f3359;
}

.contact-office-row a:hover {
  color: var(--gold-dark);
}

.contact-map-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(13, 27, 62, 0.16);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.25s ease;
}

.contact-map-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.contact-map-section {
  padding: 0 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.contact-map-wrap {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 22px;
  align-items: stretch;
}

.contact-map-panel {
  background: var(--white);
  border: 1px solid rgba(13, 27, 62, 0.1);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 28px rgba(13, 27, 62, 0.08);
}

.contact-map-panel h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-map-panel p {
  color: #405278;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-map-list {
  display: grid;
  gap: 12px;
}

.contact-map-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f3359;
  font-size: 0.9rem;
  line-height: 1.4;
}

.map-point {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.point-head {
  background: url("../assets/images/logo3.png") center / contain no-repeat;
  width: 18px;
  height: 18px;
  border-radius: 0;
}

.point-air {
  background: #008e9b;
}

.point-sea {
  background: #d9a320;
}

.contact-map-canvas {
  min-height: 430px;
  border-radius: 18px;
  border: 1px solid rgba(13, 27, 62, 0.14);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(13, 27, 62, 0.12);
}

.branch-map-fallback {
  min-height: 430px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: #1f3359;
  background: linear-gradient(150deg, #e8eef8 0%, #f8fafc 100%);
}

.leaflet-popup-content-wrapper {
  border-radius: 10px;
}

.branch-popup h4 {
  font-family: 'Merriweather', serif;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 4px;
}

.branch-popup p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #32496f;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--navy);
  color: #cdd6e3;
  padding: 50px 0 20px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-col p,
.footer-col li {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--navy);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-logo {
  height: 50px;
  margin-bottom: 14px;
  /* filter: brightness(0) invert(1); */
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--white);
}

/* ============================================
   HOME: WHY CHOOSE US (cream-pink gradient section)
============================================ */
.wcu-card {
  background: var(--white);
  width: 280px;
  min-height: 270px;
  box-sizing: border-box;
  /* Text Padding */
  padding: 36px 40px 28px;
  box-shadow:
    -45px 60px 45px 0px rgba(0, 0, 0, 0.05),
    -20px 27px 34px 0px rgba(0, 0, 0, 0.09),
    -5px 7px 18px 0px rgba(0, 0, 0, 0.1);
}


.why-choose-section {
  /* background: var(--beige); */
  background: var(--navy-soft);
  padding: 70px 0 110px;
}

.section-wc h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 13px;
  color: var(--white);
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.section-wc h2::after {
  content: '';
  display: block;
  width: 150px;
  max-width: 100%;
  height: 4px;
  margin: 10px auto 0;
  background: var(--gold);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.why-choose-grid .why-card-wide:nth-child(5) {
  grid-column: 2;
}

.why-choose-grid .why-card-wide:nth-child(6) {
  grid-column: 3;
}

.why-choose-grid .why-card-wide:nth-child(7) {
  grid-column: 4;
}

.why-card-wide {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow:
    -45px 60px 45px 0px rgba(0, 0, 0, 0.05),
    -20px 27px 34px 0px rgba(0, 0, 0, 0.09),
    -5px 7px 18px 0px rgba(0, 0, 0, 0.1);
}


.why-card-wide .why-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  /* background: rgba(27, 138, 142, 0.12); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.why-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.why-card-wide h4 {
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.why-card-wide p {
  color: var(--navy);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ============================================
   HOME: OUR SERVICES (wavy capsule timeline)
============================================ */
.services-section {
  background: var(--cream-soft);
  padding: 80px 0 60px;
  overflow-x: hidden;
}

.services-wave {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1300px;
  margin: 90px auto 0;
  padding: 0 20px;
  gap: 20px;
}

.capsule {
  width: 125px;
  height: 250px;
  border-radius: 75px;
  background: #0d1b3e;
  color: var(--white);
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding: 28px 16px; */
  padding: 0px 16px 70px 16px;
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.342px;
  line-height: 1.3;
  /* box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25); */
  z-index: 1;
}

.yellowWave {
  position: relative;
  overflow: visible;
}

.capsule:first-child {
  margin-left: 0;
  margin-right: 0;
}

.capsule.text-sm {
  font-size: 14px;
  letter-spacing: -0.285px;
}

/* ============================================
   CAPSULE ODD (1, 3, 5, 7) - TOP ALIGNMENT
============================================ */

/* Yellow arc — sits behind the capsule background, visible only outside the pill */
.capsule::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 75px;
  border-radius: 50%;
  border: 20px solid var(--gold);
  border-top: 0;
  border-radius: 0 0 70px 70px;
  background: transparent;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

.yellowWave::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 150px;
  border: 20px solid var(--gold);
  border-radius: 50%;
  /* border-top-color: transparent; */
  clip-path: inset(50% 0 0 0);
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  z-index: -1;
}

.capsule .capsule-icon {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.capsule .capsule-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.capsule .capsule-icon img.icon-flight {
  width: 78px;
  height: 78px;
}

/* ============================================
   CAPSULE EVEN (2, 4, 6) - OFFSET DOWN ALIGNMENT
============================================ */

.capsule.offset-down {
  margin-top: 100px;
  padding: 150px 16px 45px 16px;
}

/* Yellow arc for offset-down capsules — positioned at top */
.capsule.offset-down::after {
  border: 20px solid var(--gold);
  top: -20px;
  bottom: auto;
  transform: translateX(-50%) rotate(180deg);
}

/* White circle icon for offset-down capsules — positioned at top */
.capsule.offset-down .capsule-icon {
  top: 20px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}

/* ============================================
   HOME: MAIN CLIENTELE
============================================ */
.clientele-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.client-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

/* ============================================
   HOME: GLOBAL NETWORK PARTNERS
============================================ */
.network-section {
  background: linear-gradient(135deg, var(--navy), var(--gold-dark));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.network-section .section-heading h2 {
  color: var(--white);
}


.network-section .eyebrow {
  color: var(--gold-light);
}

.network-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.network-stats div strong {
  display: block;
  font-size: 2rem;
  color: var(--gold-light);
}

.network-stats div span {
  font-size: 0.85rem;
  color: #cdd6e3;
}

.network-partners {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-badge {
  width: 150px;
  height: 110px;
  border-radius: 16px;
  background: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px;
}

.partner-badge img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
}

/* ============================================
   HOME: OUR BRANCH
============================================ */
.branch-section {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}

.branch-section .section-heading h2 {
  color: var(--white);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.branch-card {
  background: var(--white);
  color: var(--navy);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.branch-card h3 {
  color: var(--gold-dark);
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.branch-card .branch-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--navy-soft);
  line-height: 1.5;
}

.branch-card .branch-row .ico {
  flex-shrink: 0;
}

/* ============================================
   CONTACT PAGE: OUR BRANCH (Figma design)
============================================ */
.our-branch-section {
  background: var(--white);
  padding: 80px 0 100px;
}

.our-branch-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.branch-figma-card {
  position: relative;
  width: 337px;
  height: 547px;
  flex-shrink: 0;
}

.branch-figma-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 372px;
  object-fit: cover;
}

.branch-figma-glass {
  position: absolute;
  top: 200px;
  left: 38px;
  width: 261px;
  height: 397px;
  background: rgba(255, 195, 0, 0.75);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  border-radius: 10px;
  box-shadow:
    -2px -2px 4px -4px rgba(0, 0, 0, 0.25),
    0px 4px 4px 0px rgba(0, 0, 0, 0.25),
    0px 0px 50px 0px rgba(0, 0, 0, 0.15),
    inset 2px 2px 4px 0px rgba(0, 0, 0, 0.5),
    inset 0px 0px 14.8px 0px rgba(0, 0, 0, 0.17);
  padding: 22px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.branch-figma-title {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 30px;
  color: var(--black);
  text-align: center;
  letter-spacing: -0.57px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.branch-figma-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.branch-figma-row img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.branch-figma-row span,
.branch-figma-row a {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 13px;
  color: #000000;
  letter-spacing: -0.247px;
  line-height: 1.5;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .our-branch-cards {
    gap: 16px;
  }

  .branch-figma-card {
    width: 300px;
  }

  .branch-figma-glass {
    left: 20px;
    width: 260px;
  }
}

@media (max-width: 768px) {
  .our-branch-cards {
    flex-direction: column;
    align-items: center;
  }

  .branch-figma-card {
    width: 337px;
  }

  .branch-figma-glass {
    left: 38px;
    width: 261px;
  }
}

/* ============================================
   HOME: CONTACT US (dark form section)
============================================ */
.contact-section-dark {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}

.contact-section-dark .section-heading h2 {
  color: var(--white);
}

.contact-form-dark {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.contact-form-dark input,
.contact-form-dark textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  border: none;
  font: inherit;
  background: #e7e7e7;
  color: var(--navy);
}

.contact-form-dark textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form-dark button {
  justify-self: center;
  margin-top: 10px;
  padding: 14px 50px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(217, 163, 32, 0.4);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 992px) {
  .hero-title {
    font-size: 40px;
  }

  .about-grid,
  .enquiry-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-choose-grid .why-card-wide:nth-child(5),
  .why-choose-grid .why-card-wide:nth-child(6),
  .why-choose-grid .why-card-wide:nth-child(7) {
    grid-column: auto;
  }

  .services-wave {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding: 60px 20px 60px;
    margin-top: 0;
  }

  .capsule.offset-down {
    margin-top: 0;
  }

  .branch-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .services-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-office-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-map-wrap {
    grid-template-columns: 1fr;
  }

  .contact-map-panel {
    order: 2;
  }

  .contact-map-canvas {
    order: 1;
  }
}

@media (max-width: 768px) {
  .brand-logo-band {
    padding: 12px 20px;
  }

  .brand-logo-img {
    width: clamp(190px, 60vw, 320px);
  }

  .nav-toggle {
    display: block;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 30px;
    gap: 16px;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav-list.open {
    display: flex;
  }

  .top-bar-inner {
    gap: 16px;
    font-size: 11px;
  }

  .hero {
    height: 100vh;
    min-height: 500px;
    padding: 100px 0 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.75);
  }

  .hero-text {
    max-width: 100%;
  }

  .about-images .img-small {
    display: none;
  }

  .why-grid,
  .services-grid,
  .project-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .services-wave {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 16px;
    margin: 40px auto 0;
  }

  .capsule {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px !important;
    margin: 0 !important;
    border-radius: 50px;
    text-align: left;
  }

  /* Odd capsules (1,3,5,7) - icon on right using order */
  .services-wave .capsule:nth-child(odd) .capsule-icon {
    order: 2;
  }

  .capsule.offset-down {
    margin-top: 0 !important;
    padding: 20px 24px !important;
  }

  .capsule::after,
  .capsule.offset-down::after {
    display: none;
  }

  .capsule .capsule-icon,
  .capsule.offset-down .capsule-icon {
    position: static;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin: 0;
    transform: none !important;
    top: auto;
    bottom: auto;
    order: 1;
  }

  .capsule-icon img {
    width: 50px;
    height: 50px;
  }

  .contact-pro-section {
    padding: 58px 0;
  }

  .contact-office-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-section {
    padding-bottom: 65px;
  }

  .contact-map-panel {
    padding: 20px;
  }

  .contact-map-canvas,
  .branch-map-fallback {
    min-height: 360px;
  }
}

.vm-grid {
  margin-top: 70px;
}

@media (max-width: 768px) {

  .vm-wrap,
  .vm-card {
    width: 100%;
    max-width: 365px;
  }

  .vm-icon--vision {
    right: -30px;
  }
}

.footer-grid {
  grid-template-columns: 1fr;
}

/* ============================================
   ABOUT PAGE: INTRODUCTION SECTION
============================================ */
.au-intro-section {
  background: #fffbf2;
  padding: 70px 0 60px;
}

.au-intro-heading {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 40px;
  text-align: center;
}

.au-section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.au-section-title {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 30px;
  color: #0d1b3e;
  letter-spacing: -0.57px;
  text-align: center;
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 0;
}

.au-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--gold);
}

.au-intro-lead {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 14px;
  color: #0d1b3e;
  letter-spacing: -0.285px;
  line-height: 1.7;
  text-align: justify;
  margin-top: 28px;
  max-width: 956px;
  margin-left: auto;
  margin-right: auto;
}

.au-intro-copy {
  flex: 1;
}

.au-intro-copy p {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 14px;
  color: #0d1b3e;
  letter-spacing: -0.285px;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}

.au-intro-feature {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.au-intro-feature--reverse {
  flex-direction: row-reverse;
}

.au-intro-row {
  display: flex;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: flex-start;
}

.au-intro-row--top {
  margin-bottom: 40px;
}

.au-img-col {
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 10px;
}

.au-img-col--right {
  padding-top: 10px;
}

.au-img-frame {
  width: 300px;
  height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.au-img-frame--feature {
  width: 360px;
  height: 220px;
  border-radius: 14px;
}

.au-img-frame--planet {
  margin-left: 40px;
}

.au-card-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 10px;
}

.au-glass-card {
  position: relative;
  border-radius: 10px;
  padding: 18px 24px 18px 50px;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  box-shadow:
    -2px -2px 4px -4px rgba(0, 0, 0, 0.25),
    0px 4px 4px 0px rgba(0, 0, 0, 0.25),
    0px 0px 50px 0px rgba(0, 0, 0, 0.15),
    inset 2px 2px 4px 0px rgba(0, 0, 0, 0.5),
    inset 0px 0px 14.8px 0px rgba(0, 0, 0, 0.17);
}

.au-glass-card p {
  font-family: 'Merriweather', serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  letter-spacing: -0.285px;
  line-height: 1.6;
  text-align: justify;
  margin: 0;
}

.au-gold-1 {
  background: rgba(199, 151, 43, 0.6);
}

.au-gold-2 {
  background: rgba(199, 151, 43, 0.7);
}

.au-gold-3 {
  background: rgba(199, 151, 43, 0.8);
}

.au-teal-1 {
  background: rgba(0, 151, 167, 0.6);
  padding: 18px 50px 18px 24px;
}

.au-teal-2 {
  background: rgba(0, 151, 167, 0.7);
  padding: 18px 50px 18px 24px;
}

.au-teal-3 {
  background: rgba(0, 151, 167, 0.8);
  padding: 18px 50px 18px 24px;
}

.au-teal-4 {
  background: rgba(0, 151, 167, 0.9);
  padding: 18px 50px 18px 24px;
}

.au-bullet {
  position: absolute;
  width: 22px;
  height: 22px;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.au-bullet--right {
  left: auto;
  right: 16px;
}

/* ============================================
   ABOUT PAGE: VISION & PHILOSOPHY
============================================ */
.au-vm-section {
  background: #fff6e4;
  padding: 70px 0 80px;
}

.au-vm-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
}

.au-vm-card {
  position: relative;
  background: #fffbf2;
  width: 500px;
  min-height: 208px;
  padding: 36px 36px 32px;
  box-shadow:
    -126px 168px 59px 0px rgba(0, 0, 0, 0),
    -81px 108px 54px 0px rgba(0, 0, 0, 0.01),
    -45px 60px 45px 0px rgba(0, 0, 0, 0.05),
    -20px 27px 34px 0px rgba(0, 0, 0, 0.09),
    -5px 7px 18px 0px rgba(0, 0, 0, 0.1);
  overflow: visible;
}

.au-vm-title {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 30px;
  color: #000;
  letter-spacing: -0.57px;
  text-align: center;
  margin-bottom: 18px;
}

.au-vm-text {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
  letter-spacing: -0.285px;
  line-height: 1.6;
  text-align: justify;
}

.au-eclipse {
  position: absolute;
  width: 150px;
  height: 176px;
  top: -40px;
}

.au-eclipse--right {
  right: -30px;
}

.au-eclipse--left {
  left: -30px;
}

/* ============================================
   ABOUT PAGE: OUR QUALITY
============================================ */
.au-quality-section {
  background: #fffbf2;
  padding: 70px 0 80px;
}

.au-quality-banner-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.au-quality-banner {
  border-radius: 20px;
  padding: 4px;
  background: linear-gradient(90deg,
      rgb(194, 146, 38) 0%,
      rgb(178, 125, 15) 16.916%,
      rgb(217, 177, 74) 39%,
      rgb(250, 222, 123) 59%,
      rgb(218, 183, 79) 76%,
      rgb(199, 151, 43) 100%);
}

.au-quality-banner-glass {
  background: rgba(255, 251, 242, 0.5);
  border-radius: 10px;
  padding: 28px 56px;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  box-shadow:
    -2px -2px 4px -4px rgba(0, 0, 0, 0.25),
    0px 4px 4px 0px rgba(0, 0, 0, 0.25),
    0px 0px 50px 0px rgba(0, 0, 0, 0.15),
    inset 2px 2px 4px 0px rgba(0, 0, 0, 0.5),
    inset 0px 0px 14.8px 0px rgba(0, 0, 0, 0.17);
}

.au-quality-banner-glass p {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  letter-spacing: -0.285px;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}

/* ============================================
   ABOUT PAGE: QUALITY OBJECTIVES
============================================ */
.au-objectives-section {
  background: var(white);
  padding: 70px 0 90px;
}

.au-silver-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
}

.au-silver-card {
  width: 340px;
  flex-shrink: 0;
}

.au-silver-outer {
  border-radius: 20px;
  padding: 4px;
  min-height: 329px;
  background: linear-gradient(90deg,
      rgb(109, 109, 109) 0%,
      rgb(184, 185, 189) 16.916%,
      rgb(243, 246, 253) 39%,
      rgb(219, 220, 225) 59%,
      rgb(126, 126, 126) 76%,
      rgb(97, 97, 97) 100%);
}

.au-silver-glass {
  background: rgba(255, 251, 242, 0.5);
  border-radius: 10px;
  min-height: 321px;
  padding: 32px 28px 28px;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  box-shadow:
    -2px -2px 4px -4px rgba(0, 0, 0, 0.25),
    0px 4px 4px 0px rgba(0, 0, 0, 0.25),
    0px 0px 50px 0px rgba(0, 0, 0, 0.15),
    inset 2px 2px 4px 0px rgba(0, 0, 0, 0.5),
    inset 0px 0px 14.8px 0px rgba(0, 0, 0, 0.17);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.au-silver-title {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 20px;
  color: #0d1b3e;
  letter-spacing: -0.38px;
  text-align: center;
  margin: 0;
}

.au-silver-list {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  letter-spacing: -0.285px;
  line-height: 1.8;
  padding-left: 20px;
  margin: 0;
}

.au-silver-list li {
  margin-bottom: 8px;
}

/* ============================================
   ABOUT PAGE: RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .au-intro-feature {
    gap: 24px;
  }

  .au-intro-row {
    flex-wrap: wrap;
    gap: 32px;
  }

  .au-img-col {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .au-img-frame--planet {
    margin-left: 0;
  }

  .au-card-col {
    width: 100%;
  }

  .au-glass-card {
    padding: 16px 44px 16px 44px;
  }
}

@media (max-width: 768px) {
  .au-intro-heading {
    padding: 0 20px;
  }

  .au-intro-feature {
    padding: 0 20px;
    flex-direction: column;
    gap: 20px;
  }

  .au-img-frame--feature {
    width: 100%;
    max-width: 360px;
    height: 220px;
  }

  .au-intro-row {
    padding: 0 20px;
  }

  .au-img-col {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .au-img-frame {
    width: 100%;
    max-width: 300px;
    height: 220px;
  }

  .au-vm-cards {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .au-vm-card {
    width: 100%;
    max-width: 540px;
  }

  .au-eclipse {
    width: 90px;
    height: 106px;
    top: -20px;
  }

  .au-eclipse--right {
    right: -10px;
  }

  .au-eclipse--left {
    left: -10px;
  }

  .au-quality-banner-wrap {
    padding: 0 20px;
  }

  .au-quality-banner-glass {
    padding: 24px 28px;
  }

  .au-silver-cards {
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
  }

  .au-silver-card {
    width: 100%;
    max-width: 340px;
  }
}

/* ============================================
   SERVICES PAGE
============================================ */

/* Title section */
.sv-title-section {
  background: #fffbf2;
  padding: 70px 40px 8px;
  text-align: center;
  max-width: 100%;
}

.sv-page-title {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 30px;
  color: #0d1b3e;
  letter-spacing: -0.57px;
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 32px;
}

.sv-page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  order: 1;
  margin-left: 16px;
  margin-right: 0;
  width: 200px;
  height: 2px;
  background: var(--gold);
}

.sv-page-intro {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 14px;
  color: #0d1b3e;
  letter-spacing: -0.285px;
  line-height: 1.7;
  order: 2;
  text-align: justify;
  max-width: 960px;
  margin: 0 auto;
}

.sv-intro-section {
  padding-bottom: 20px;
}

/* Service sections */

.sv-air-section {
  background: var(--white);
  padding-top: 24px;
}

.sv-sea-section {
  background: var(--white);
  margin-top: 40px;
}

.sv-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.sv-service-section--reverse .sv-images {
  flex-direction: row-reverse;
}

/* Badge row */
.sv-badge-row {
  margin-bottom: -50px;
}

.sv-badge-row--left {
  display: flex;
  justify-content: flex-start;
}

.sv-badge-row--right {
  display: flex;
  justify-content: flex-end;
}

/* Badge pill */
.sv-badge {
  display: flex;
  align-items: center;
  height: 84px;
  border-radius: 100px;
  position: relative;
  min-width: 440px;
}

.sv-badge--air {
  background: #0d1b3e;
  padding-right: 32px;
}

.sv-badge--air.capsule {
  width: 440px;
  max-width: 100%;
  height: 88px;
  min-width: 440px;
  padding: 0 28px 0 14px;
  justify-content: flex-start;
  text-align: left;
  border-radius: 999px;
  overflow: visible;
  gap: 18px;
}

.sv-badge--air.capsule::after,
.sv-badge--air.yellowWave::after {
  display: none;
}

.sv-badge--sea {
  background: #d9a320;
  padding-left: 32px;
}

.sv-badge--sea.capsule {
  width: 410px;
  max-width: 100%;
  height: 88px;
  min-width: 400px;
  padding: 0 14px 0 28px;
  justify-content: flex-start;
  text-align: left;
  border-radius: 999px;
  overflow: visible;
  gap: 18px;
  background: var(--gold);
  flex-direction: row-reverse;
}

.sv-badge--proj.capsule {
  width: 1000px;
  max-width: 100%;
  height: 88px;
  min-width: 620px;
  padding: 0 14px 0 28px;
  justify-content: flex-start;
  text-align: left;
  border-radius: 999px;
  overflow: visible;
  gap: 18px;
  background: var(--gold);
  flex-direction: row-reverse;
}

.sv-badge--sea.capsule::after,
.sv-badge--sea.yellowWave::after,
.sv-badge--proj.capsule::after,
.sv-badge--proj.yellowWave::after {
  display: none;
}

/* Badge cap (circle end) */
.sv-badge-cap {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.sv-badge-cap--air {
  background: var(--white);
  margin-left: -6px;
  margin-right: 24px;
  order: -1;
  box-shadow: 0 0 0 4px #d9a320;
}

.sv-badge--air .sv-badge-cap--air {
  width: 66px;
  height: 66px;
  margin-left: 5px;
  margin-right: 0;
  box-shadow: none;
  flex: 0 0 66px;
}

.sv-badge-cap--sea {
  background: #0d1b3e;
  margin-right: -6px;
  margin-left: 24px;
  box-shadow: 0 0 0 4px #0097a7;
}

.sv-badge--sea .sv-badge-cap--sea {
  width: 66px;
  height: 66px;
  margin-left: 16px;
  margin-right: 0;
  box-shadow: none;
  background: var(--white);
  flex: 0 0 66px;
}

/* Icon ring inside cap */
.sv-badge-icon-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-badge-icon-ring img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.sv-badge--air .sv-badge-icon-ring {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 0;
  box-shadow: 0 2px 6px rgba(11, 27, 61, 0.14);
}

.sv-badge--air .sv-badge-icon-ring img {
  width: 36px;
  height: 36px;
  filter: none;
}

.sv-badge-icon-ring--sea img {
  filter: brightness(0) invert(1);
}

.sv-badge--sea .sv-badge-icon-ring--sea {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 0;
  box-shadow: 0 2px 6px rgba(11, 27, 61, 0.14);
}

.sv-badge--sea .sv-badge-icon-ring--sea img {
  width: 36px;
  height: 36px;
  filter: none;
}

/* Badge tail (pointed end) */
.sv-badge-tail {
  width: 0;
  height: 0;
  flex-shrink: 0;
}

.sv-badge-tail--air {
  border-top: 42px solid transparent;
  border-bottom: 42px solid transparent;
  border-left: 30px solid #0d1b3e;
}

.sv-badge--air .sv-badge-tail--air {
  display: none;
}

.sv-badge-tail--sea {
  border-top: 42px solid transparent;
  border-bottom: 42px solid transparent;
  border-right: 30px solid #0097a7;
  order: -1;
}

.sv-badge--sea .sv-badge-tail--sea {
  display: none;
}

/* Badge label */
.sv-badge-label {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: -0.38px;
  white-space: normal;
  flex: 1;
}

.sv-badge--air .sv-badge-label {
  padding-left: 10px;
  padding-right: 0;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.36px;
}

.sv-badge-label--sea {
  color: var(--black);
  text-align: right;
}

.sv-badge--sea .sv-badge-label--sea {
  padding-right: 10px;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.36px;
}

/* Images layout Gap between photos and*/
.sv-images {
  display: flex;
  gap: 10px;
  margin-bottom: -10px;
  align-items: flex-start;
  justify-content: center;
}

.sv-hero-photo {
  flex-shrink: 0;
  width: 300px;
}

.sv-hero-photo img {
  width: 300px;
  height: 412px;
  object-fit: cover;
  display: block;
}

.sv-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 200px);
  grid-template-rows: repeat(2, 200px);
  gap: 11px;
  flex-shrink: 0;
}

.sv-photo-grid img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Content blocks */
.sv-content {
  border-radius: 30px;
  padding: 36px 48px;
}

.sv-content--air {
  background: var(--navy);
}

.sv-content--sea {
  background: var(--gold);
}

.sv-content p {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: -0.285px;
  line-height: 1.7;
  text-align: justify;
  margin: 0 0 12px;
}

.sv-content p:last-child {
  margin-bottom: 0;
}

.sv-content--air p {
  color: #ffffff;
}

.sv-content--sea p {
  color: var(--black);
}

/* ============================================
   SERVICES PAGE: RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .sv-photo-grid {
    grid-template-columns: repeat(3, 160px);
    grid-template-rows: repeat(2, 160px);
  }

  .sv-photo-grid img {
    width: 160px;
    height: 160px;
  }

  .sv-hero-photo img {
    width: 240px;
    height: 338px;
  }

  .sv-hero-photo {
    width: 240px;
  }

  .sv-badge {
    min-width: 360px;
  }

  .sv-badge-label {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .sv-images {
    flex-direction: column;
    align-items: center;
  }

  .sv-images--sea,
  .sv-service-section--reverse .sv-images {
    flex-direction: column-reverse;
  }

  .sv-photo-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    width: 100%;
    max-width: 660px;
  }

  .sv-photo-grid img {
    width: 100%;
    height: 160px;
  }

  .sv-hero-photo {
    width: 100%;
    max-width: 660px;
  }

  .sv-hero-photo img {
    width: 100%;
    height: 280px;
  }

  .sv-badge {
    min-width: unset;
    width: 100%;
  }

  .sv-badge--air {
    padding-right: 16px;
  }

  .sv-badge--air.capsule {
    min-width: unset;
    width: 100%;
    padding-right: 18px;
  }

  .sv-badge--sea {
    padding-left: 16px;
  }

  .sv-badge--sea.capsule {
    min-width: unset;
    width: 100%;
    padding-left: 18px;
  }

  .sv-badge--proj.capsule {
    min-width: unset;
    width: 100%;
    padding-left: 18px;
  }
}

@media (max-width: 600px) {
  .sv-title-section {
    padding: 50px 20px 8px;
  }

  .sv-inner {
    padding: 0 20px;
  }

  .sv-content {
    padding: 28px 24px;
  }

  .sv-badge-label {
    font-size: 14px;
  }

  .sv-badge-cap {
    width: 72px;
    height: 72px;
  }

  .sv-badge-icon-ring {
    width: 48px;
    height: 48px;
  }

  .sv-badge-icon-ring img {
    width: 26px;
    height: 26px;
  }

  .sv-badge {
    height: 72px;
  }

  .sv-badge--air.capsule {
    height: 72px;
    min-width: unset;
    gap: 12px;
    padding: 0 18px 0 10px;
  }

  .sv-badge--air.capsule::before {
    width: 68px;
    height: 68px;
    border-width: 6px;
  }

  .sv-badge--air .sv-badge-cap--air {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    margin-left: 12px;
  }

  .sv-badge--air .sv-badge-icon-ring img {
    width: 28px;
    height: 28px;
  }

  .sv-badge--air .sv-badge-label {
    padding-left: 10px;
    font-size: 14px;
  }

  .sv-badge--sea.capsule {
    height: 72px;
    min-width: unset;
    gap: 12px;
    padding: 0 10px 0 18px;
  }

  .sv-badge--proj.capsule {
    height: 72px;
    min-width: unset;
    gap: 12px;
    padding: 0 10px 0 18px;
  }

  .sv-badge--sea.capsule::before {
    width: 68px;
    height: 68px;
    border-width: 6px;
  }

  .sv-badge--sea .sv-badge-cap--sea {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    margin-left: 12px;
    margin-right: 0;
  }

  .sv-badge--sea .sv-badge-icon-ring--sea img {
    width: 28px;
    height: 28px;
  }

  .sv-badge--sea .sv-badge-label--sea {
    font-size: 14px;
  }

  .sv-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .sv-photo-grid img {
    height: 130px;
  }
}

/* ============================================
   PROJECTS PAGE
============================================ */
.pj-section {
  background: var(--white);
  padding: 72px 0 60px;
}

.pj-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Heading */
.pj-heading {
  text-align: center;
  margin-bottom: 40px;
}

.pj-title {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 2.7vw, 2.9rem);
  color: #0b1b3d;
  letter-spacing: -0.04em;
  display: block;
  position: relative;
  padding-bottom: 10px;
  margin: 0;
  line-height: 1.12;
}

.pj-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  max-width: 100%;
  height: 3px;
  background: var(--gold);
}

.pj-sections {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.pj-projects-block,
.pj-highlights-block {
  width: 100%;
}

.pj-subheading {
  margin: 0 0 24px;
  font-family: 'Merriweather', serif;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 700;
  color: #0b1b3d;
  text-align: left;
}

.section-heading {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 18px;
  padding-top: 26px;
}

.section-heading h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.1rem, 2.7vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
  color: var(--navy);
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 140px;
  max-width: 100%;
  height: 3px;
  margin: 10px auto 0;
  background: var(--gold);
}

.pj-cards-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pj-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 240px;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 16px 36px rgba(11, 27, 61, 0.16);
  transform: translateY(0);
  opacity: 0;
  animation: pjCardReveal 0.62s ease forwards, pjCardShadowPulse 2.8s ease-in-out 0.62s infinite;
}

.pj-card:nth-child(2) {
  animation-delay: 0.12s;
}

.pj-card:nth-child(3) {
  animation-delay: 0.24s;
}

.pj-card:nth-child(4) {
  animation-delay: 0.36s;
}

.pj-card:nth-child(5) {
  animation-delay: 0.48s;
}

.pj-card:nth-child(6) {
  animation-delay: 0.6s;
}

.pj-card:nth-child(7) {
  animation-delay: 0.72s;
}

.pj-card:nth-child(8) {
  animation-delay: 0.84s;
}

@keyframes pjCardReveal {
  from {
    transform: translateY(18px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pj-card:hover {
  animation-play-state: paused;
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 46px rgba(11, 27, 61, 0.24);
  filter: saturate(1.04);
}

.pj-card:focus-visible {
  animation-play-state: paused;
  transform: translateY(-3px) !important;
}

@keyframes pjCardShadowPulse {

  0%,
  100% {
    box-shadow: 0 14px 30px rgba(11, 27, 61, 0.14);
  }

  50% {
    box-shadow: 0 20px 44px rgba(11, 27, 61, 0.22);
  }
}

.pj-card--deck {
  width: 100%;
  height: 100%;
}

.pj-card:focus-visible {
  outline: 3px solid rgba(255, 195, 0, 0.85);
  outline-offset: 6px;
}

.pj-card .pj-card-overlay {
  height: 36%;
}

.pj-view-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.pj-view-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.pj-view-btn:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.pj-view-btn:focus-visible {
  outline: 3px solid rgba(255, 195, 0, 0.85);
  outline-offset: 3px;
}

/* Back card (Air Freight) - smallest, furthest back */
.pj-card-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.pj-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 37%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pj-card-label span {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: -0.38px;
  text-align: center;
  display: block;
  position: relative;
  padding-bottom: 6px;
}

.pj-card-label span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gold);
}

/* ============================================
   PROJECT DETAIL PAGE
============================================ */
.project-detail-hero {
  text-align: left;
}

.project-detail-hero .page-hero p {
  max-width: 820px;
  margin: 0;
}

.project-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.project-detail-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.project-detail-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.project-detail-copy p {
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 18px;
  text-align: justify;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.project-meta-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.project-detail-highlights {
  margin-top: 18px;
}

.project-detail-actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .project-detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .project-detail-hero {
    text-align: center;
  }

  .project-detail-hero .page-hero p {
    margin: 0 auto;
  }
}

.pj-panel-label {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 30px;
  color: #fff6e4;
  letter-spacing: -0.57px;
  text-align: center;
  margin: 16px 0 0;
}

/* Click-to-play video panel */
.pj-video-panel {
  width: min(100%, 840px);
  border-radius: 20px;
  border: 1px solid rgba(13, 27, 62, 0.14);
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(13, 27, 62, 0.09);
  padding: 14px;
  cursor: pointer;
}

.pj-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  background: #0d1b3e;
}

.pj-project-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pj-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.pj-video-play:hover {
  transform: scale(1.06);
}

.pj-video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 27, 62, 0.76);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 1;
}

.pj-video-nav:hover {
  background: rgba(13, 27, 62, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.pj-video-nav span {
  font-size: 28px;
  line-height: 1;
}

.pj-video-nav--prev {
  left: 12px;
}

.pj-video-nav--next {
  right: 12px;
}

.pj-video-play-triangle {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #0d1b3e;
  margin-left: 4px;
}

.pj-video-panel.is-playing .pj-video-play {
  display: none;
}

.pj-video-caption {
  margin: 10px 2px 2px;
  font-size: 13px;
  font-weight: 500;
  color: #1c2d50;
}

.pj-video-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.pj-video-count {
  margin: 10px 2px 2px;
  font-size: 12px;
  font-weight: 600;
  color: #4a5f86;
}

/* New Project box */
.pj-newproject-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 520px);
  gap: 14px;
  margin-left: auto;
  margin-right: auto;
}

.pj-newproject-panel--top {
  margin-bottom: 16px;
}

.pj-highlights-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.pj-highlights-block .pj-subheading {
  width: 100%;
  margin-bottom: 20px;
}

.pj-highlights-block .pj-video-panel {
  margin-left: auto;
  margin-right: auto;
}

.pj-newproject-box {
  width: 100%;
  border-radius: 20px;
  padding: 4px;
  background: linear-gradient(90deg,
      rgb(194, 146, 38) 0%,
      rgb(178, 125, 15) 16.916%,
      rgb(217, 177, 74) 39%,
      rgb(250, 222, 123) 59%,
      rgb(218, 183, 79) 76%,
      rgb(199, 151, 43) 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  box-shadow:
    -2px -2px 4px -4px rgba(0, 0, 0, 0.25),
    0px 4px 4px 0px rgba(0, 0, 0, 0.25),
    0px 0px 50px 0px rgba(0, 0, 0, 0.15),
    inset 2px 2px 4px 0px rgba(0, 0, 0, 0.5),
    inset 0px 0px 14.8px 0px rgba(0, 0, 0, 0.17);
}

.pj-approve-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.pj-newproject-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  letter-spacing: -0.38px;
  line-height: 1.25;
}

/* Dot navigation for project updates */
.pj-update-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.pj-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #c7c7c7;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.pj-dot--active {
  background: #c79726;
}

/* ============================================
   PROJECTS PAGE: RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .pj-cards-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pj-newproject-panel {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .pj-inner {
    padding: 0 20px;
  }

  .pj-sections {
    gap: 42px;
  }

  .pj-cards-row {
    grid-template-columns: 1fr;
  }

  .pj-card {
    min-height: 250px;
  }

  .pj-card-label span {
    font-size: 16px;
  }

  .pj-video-panel {
    padding: 10px;
    border-radius: 16px;
  }

  .pj-video-play {
    width: 52px;
    height: 52px;
  }

  .pj-video-nav {
    width: 38px;
    height: 38px;
  }

  .pj-video-nav span {
    font-size: 24px;
  }

  .pj-video-play-triangle {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 13px;
  }

  .pj-video-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .pj-newproject-panel {
    width: 100%;
    max-width: none;
  }

  .pj-newproject-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .pj-card {
    min-height: 220px;
  }
}

/* ============================================
   PROJECTS PAGE: Eye button on stacked cards
============================================ */
.pj-card {
  display: block;
  text-decoration: none;
}

.pj-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 37%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.pj-card-label {
  flex: 1;
}

.pj-eye-btn {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
  cursor: pointer;
  transition: transform 0.2s;
}

.pj-eye-btn:hover {
  transform: scale(1.12);
}

.pj-eye-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.pj-eye-icon {
  position: absolute;
  inset: 18% 14%;
  width: 72%;
  height: 72%;
  display: block;
}

/* ============================================
   PROJECT DETAIL / TIMELINE PAGE
============================================ */
.pd-section {
  background: #fffbf2;
  padding: 70px 0 100px;
}

.pd-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Heading */
.pd-heading {
  text-align: center;
  margin-bottom: 60px;
}

.pd-title {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 30px;
  color: #0b1b3d;
  letter-spacing: -0.57px;
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
  margin: 0;
}

.pd-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--gold);
}

/* â”€â”€ Timeline â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pd-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  padding-bottom: 0;
  --pd-vline-top: 0px;
  --pd-vline-bottom: 0px;
}

/* Vertical center line — absolutely positioned, full container height */
.pd-vline {
  position: absolute;
  left: 50%;
  top: var(--pd-vline-top);
  bottom: var(--pd-vline-bottom);
  width: 4px;
  background: var(--navy);
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 2px;
  pointer-events: none;
}

.pd-entry {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}

.pd-entry:last-child {
  margin-bottom: 0;
}

.pd-entry--left {
  grid-column: 1;
  padding-right: 36px;
}

.pd-entry--right {
  grid-column: 2;
  padding-left: 36px;
}

/* â”€â”€ Date Badge â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pd-badge {
  display: flex;
  align-items: center;
  height: 50px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* Navy badge: teal cap LEFT, navy bar, navy rounded-right */
.pd-badge--navy {
  flex-direction: row;
}

.pd-badge--navy .pd-badge-cap {
  order: 0;
  margin-left: -10px;
}

.pd-badge--navy .pd-badge-text {
  background: #0b1b3d;
  order: 1;
}

.pd-badge--navy .pd-badge-end {
  background: #0b1b3d;
  order: 2;
  border-radius: 0 25px 25px 0;
  width: 32px;
}

/* Teal badge: navy rounded-left, teal bar, teal cap RIGHT */
.pd-badge--teal {
  flex-direction: row;
  justify-content: flex-end;
}

.pd-badge--teal .pd-badge-end {
  background: #0b1b3d;
  order: 0;
  border-radius: 25px 0 0 25px;
  width: 32px;
}

.pd-badge--teal .pd-badge-text {
  background: #0097a7;
  order: 1;
}

.pd-badge--teal .pd-badge-cap {
  order: 2;
  margin-right: -10px;
}

/* Badge cap (large teal circle) */
.pd-badge-cap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0097a7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 0 5px rgba(0, 151, 167, 0.18);
}

.pd-badge-calendar {
  display: none;
}

/* Badge text bar */
.pd-badge-text {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff6e4;
  letter-spacing: -0.38px;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
  position: relative;
}

/* Badge end (small rounded cap) */
.pd-badge-end {
  height: 50px;
  flex-shrink: 0;
}

/* â”€â”€ Horizontal connector line â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pd-hline {
  position: absolute;
  top: 35px;
  width: 22px;
  height: 4px;
  background: var(--navy);
  z-index: 1;
  border-radius: 2px;
}

.pd-hline--left {
  right: -2px;
  width: 38px;
}

.pd-hline--right {
  left: -2px;
  width: 38px;
}

/* â”€â”€ Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pd-card {
  background: #fff6e4;
  border-radius: 10px;
  padding: 28px;
  box-shadow:
    -164px 153px 63px 0px rgba(0, 0, 0, 0),
    -105px 98px 57px 0px rgba(0, 0, 0, 0.01),
    -59px 55px 48px 0px rgba(0, 0, 0, 0.05),
    -26px 24px 36px 0px rgba(0, 0, 0, 0.09),
    -7px 6px 20px 0px rgba(0, 0, 0, 0.1);
}

/* â”€â”€ Photo grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pd-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.pd-photo {
  aspect-ratio: 150 / 175;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.pd-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* "More" overlay slot */
.pd-photo--more {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 6px;
}

.pd-more-icon {
  width: 50px;
  height: 50px;
  display: block;
}

.pd-more-count {
  font-family: 'Merriweather', serif;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: -0.27px;
}

/* â”€â”€ Description â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pd-desc {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 14px;
  color: #0b1b3d;
  letter-spacing: -0.285px;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1100px) {
  .pd-inner {
    padding: 0 30px;
  }

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

@media (max-width: 860px) {
  .pd-timeline {
    grid-template-columns: 1fr;
  }

  .pd-vline {
    left: 16px;
    grid-column: 1;
    grid-row: 1 / -1;
  }

  .pd-entry--left,
  .pd-entry--right {
    grid-column: 1;
    padding-left: 48px !important;
    padding-right: 0 !important;
  }

  .pd-hline--left,
  .pd-hline--right {
    left: -32px;
    right: auto;
    width: 32px;
  }

  .pd-badge--teal,
  .pd-badge--navy {
    flex-direction: row;
    justify-content: flex-start;
  }

  .pd-badge--teal .pd-badge-end {
    order: 2;
    border-radius: 0 25px 25px 0;
  }

  .pd-badge--teal .pd-badge-text {
    order: 1;
  }

  .pd-badge--teal .pd-badge-cap {
    order: 0;
    margin-left: -10px;
    margin-right: 0;
  }

  .pd-badge--navy .pd-badge-cap {
    margin-left: -10px;
  }
}

@media (max-width: 600px) {
  .pd-inner {
    padding: 0 16px;
  }

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

  .pd-badge-text {
    font-size: 14px;
    padding: 0 12px;
  }

  .pd-badge-cap {
    width: 54px;
    height: 54px;
  }

  .pd-badge-calendar {
    display: none;
    width: 18px;
    height: 18px;
  }

  .pd-card {
    padding: 20px 16px;
  }
}

/* ============================================
   LIGHTBOX
============================================ */
.pd-photo img {
  cursor: pointer;
  transition: opacity 0.15s;
}

.pd-photo img:hover {
  opacity: 0.88;
}

.pd-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.pd-lightbox.open {
  display: flex;
}

.pd-lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
}

.pd-lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  transition: background 0.2s;
  z-index: 10000;
}

.pd-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.pd-lightbox-prev,
.pd-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  transition: background 0.2s;
  z-index: 10000;
}

.pd-lightbox-prev {
  left: 20px;
}

.pd-lightbox-next {
  right: 20px;
}

.pd-lightbox-prev:hover,
.pd-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.28);
}

.pd-lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Merriweather', serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  z-index: 10000;
}