:root {
  --primary: #132c35;
  --primary-dark: #071923;
  --primary-light: #184b57;
  --secondary: #31c39e;
  --secondary-hover: #159b7d;
  --accent: #d4a85f;
  --accent-hover: #b9893f;
  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Roboto', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;
  --container-max: 1240px;
}

/* ==========================================================================
   Pearl Homepage 2026 Refresh
   ========================================================================== */
.pearl-home {
  --ph-navy: #071b33;
  --ph-navy-soft: #0d2a49;
  --ph-green: #63c53e;
  --ph-green-dark: #48a72c;
  --ph-ink: #12263d;
  --ph-muted: #607083;
  --ph-line: #dfe7ed;
  --ph-mist: #f3f7f8;
  --ph-white: #ffffff;
  background: var(--ph-white);
  color: var(--ph-ink);
  overflow: hidden;
}

.pearl-home a {
  text-decoration: none;
}

.pearl-home .ph-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.pearl-home .ph-section {
  padding: 108px 0;
}

.pearl-home .ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #377e27;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pearl-home .ph-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ph-green);
  box-shadow: 0 0 0 5px rgba(99, 197, 62, 0.16);
}

.pearl-home .ph-eyebrow-light {
  color: #bceca9;
}

.pearl-home .ph-section-heading h2,
.pearl-home .ph-network-copy h2,
.pearl-home .ph-about-copy h2,
.pearl-home .ph-faq-intro h2,
.pearl-home .ph-final-cta h2 {
  color: var(--ph-ink) !important;
  font-size: clamp(2.2rem, 4vw, 3.65rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.045em;
  line-height: 1.08 !important;
  text-wrap: balance;
}

.pearl-home .ph-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pearl-home .ph-button:hover {
  transform: translateY(-2px);
}

.pearl-home .ph-button-primary {
  background: var(--ph-green);
  color: #082119;
  box-shadow: 0 12px 28px rgba(69, 151, 41, 0.24);
}

.pearl-home .ph-button-primary:hover {
  background: #77d354;
  color: #082119;
  box-shadow: 0 16px 34px rgba(69, 151, 41, 0.3);
}

.pearl-home .ph-button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(8, 28, 50, 0.24);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.pearl-home .ph-button-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.pearl-home .ph-button-full {
  width: 100%;
}

.pearl-home .ph-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ph-ink);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
}

.pearl-home .ph-text-link i {
  color: var(--ph-green-dark);
  transition: transform 180ms ease;
}

.pearl-home .ph-text-link:hover,
.pearl-home .ph-text-link:hover i {
  color: var(--ph-green-dark);
}

.pearl-home .ph-text-link:hover i {
  transform: translateX(4px);
}

/* Hero */
.pearl-home .ph-hero,
.pearl-home .ph-hero-slider {
  min-height: 690px;
  background: var(--ph-navy);
}

.pearl-home .ph-hero {
  position: relative;
}

.pearl-home .ph-hero-slider {
  position: relative;
  overflow: hidden;
}

.pearl-home .ph-hero-slide {
  min-height: 690px;
  isolation: isolate;
}

.pearl-home .ph-hero-background {
  filter: saturate(0.82) contrast(1.04);
  transform: scale(1.015);
}

.pearl-home .ph-hero-slide.active .ph-hero-background {
  transform: scale(1.055);
  transition: transform 9s ease-out;
}

.pearl-home .ph-hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 19, 37, 0.96) 0%, rgba(4, 19, 37, 0.84) 42%, rgba(4, 19, 37, 0.3) 76%, rgba(4, 19, 37, 0.42) 100%),
    linear-gradient(0deg, rgba(4, 19, 37, 0.48), transparent 38%);
}

.pearl-home .ph-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 690px;
  margin-inline: auto;
  padding: 68px 0 94px;
}

.pearl-home .ph-hero-grid.has-media {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 64px;
}

.pearl-home .ph-hero-content {
  max-width: 760px;
}

.pearl-home .ph-hero-title {
  max-width: 800px;
  margin: 0 0 24px !important;
  color: #ffffff !important;
  font-size: clamp(2.8rem, 5vw, 5.1rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.055em !important;
  line-height: 1.01 !important;
  text-wrap: balance;
  white-space: pre-line;
}

.pearl-home .ph-hero-description {
  max-width: 680px;
  margin: 0 !important;
  color: rgba(235, 243, 248, 0.84) !important;
  font-size: 1.12rem !important;
  line-height: 1.7 !important;
}

.pearl-home .ph-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.pearl-home .ph-hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: 35px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
}

.pearl-home .ph-hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pearl-home .ph-hero-assurances i {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(99, 197, 62, 0.2);
  color: #a9eb91;
  font-size: 0.62rem;
}

.pearl-home .ph-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 435px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px 70px 4px 4px;
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.38);
}

.pearl-home .ph-hero-media::before {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 22, 41, 0.45), transparent 48%);
}

.pearl-home .ph-hero-media img {
  width: 100%;
  height: 435px;
  object-fit: cover;
}

.pearl-home .ph-media-label {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(5, 22, 41, 0.8);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.pearl-home .ph-live-dot,
.pearl-home .ph-planner-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ph-green);
  box-shadow: 0 0 0 4px rgba(99, 197, 62, 0.18);
}

.pearl-home .ph-slider-controls {
  position: absolute;
  z-index: 15;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pearl-home .ph-slider-arrow,
.pearl-home .ph-slider-dot,
.pearl-home .ph-slider-dots {
  position: static !important;
  inset: auto !important;
  transform: none !important;
}

.pearl-home .ph-slider-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(5, 22, 41, 0.42);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.pearl-home .ph-slider-arrow:hover {
  border-color: var(--ph-green);
  background: var(--ph-green);
  color: #082119;
}

.pearl-home .ph-slider-dots {
  display: flex;
  gap: 7px;
  width: auto;
  padding: 0;
  background: transparent;
}

.pearl-home .ph-slider-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.pearl-home .ph-slider-dot.active {
  width: 25px;
  background: var(--ph-green);
}

/* Proof strip */
.pearl-home .ph-proof {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--ph-line);
  background: #ffffff;
}

.pearl-home .ph-proof-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
}

.pearl-home .ph-proof-intro,
.pearl-home .ph-proof-item {
  min-height: 122px;
  padding: 28px 30px;
  border-inline-end: 1px solid var(--ph-line);
}

.pearl-home .ph-proof-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline-start: 0;
  color: var(--ph-ink);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.pearl-home .ph-proof-intro i {
  color: var(--ph-green-dark);
}

.pearl-home .ph-proof-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.pearl-home .ph-proof-item:last-child {
  border-inline-end: 0;
}

.pearl-home .ph-proof-item strong {
  color: var(--ph-ink);
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}

.pearl-home .ph-proof-item span {
  color: var(--ph-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* Services */
.pearl-home .ph-services-section {
  background: #ffffff;
}

.pearl-home .ph-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.pearl-home .ph-heading-split h2 {
  max-width: 720px;
  margin: 0 !important;
}

.pearl-home .ph-heading-aside p {
  margin: 0 0 19px !important;
  color: var(--ph-muted) !important;
  font-size: 0.98rem !important;
  line-height: 1.72 !important;
}

.pearl-home .ph-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pearl-home .ph-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--ph-line);
  border-radius: 5px;
  background: #ffffff;
  color: var(--ph-ink);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pearl-home .ph-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(72, 167, 44, 0.55);
  color: var(--ph-ink);
  box-shadow: 0 22px 55px rgba(17, 38, 61, 0.1);
}

.pearl-home .ph-service-featured {
  grid-row: span 2;
  min-height: 618px;
  justify-content: flex-end;
  overflow: hidden;
  border: 0;
  color: #ffffff;
}

.pearl-home .ph-service-photo,
.pearl-home .ph-service-shade {
  position: absolute;
  inset: 0;
}

.pearl-home .ph-service-photo {
  background-position: center;
  background-size: cover;
  transition: transform 600ms ease;
}

.pearl-home .ph-service-featured:hover .ph-service-photo {
  transform: scale(1.045);
}

.pearl-home .ph-service-shade {
  background: linear-gradient(0deg, rgba(5, 24, 44, 0.98) 0%, rgba(5, 24, 44, 0.68) 45%, rgba(5, 24, 44, 0.08) 76%);
}

.pearl-home .ph-service-card-content {
  position: relative;
  z-index: 2;
}

.pearl-home .ph-service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 44px;
  border-radius: 4px;
  background: #edf8e9;
  color: var(--ph-green-dark);
  font-size: 1.08rem;
}

.pearl-home .ph-service-featured .ph-service-icon {
  margin-bottom: 18px;
  background: var(--ph-green);
  color: #082119;
}

.pearl-home .ph-service-kicker {
  display: block;
  margin-bottom: 8px;
  color: #bceca9;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pearl-home .ph-service-card h3 {
  margin: 0 0 12px !important;
  color: var(--ph-ink) !important;
  font-size: 1.28rem !important;
  line-height: 1.3 !important;
}

.pearl-home .ph-service-featured h3 {
  color: #ffffff !important;
  font-size: 1.8rem !important;
}

.pearl-home .ph-service-card p {
  margin: 0 0 24px !important;
  color: var(--ph-muted) !important;
  font-size: 0.91rem !important;
  line-height: 1.65 !important;
}

.pearl-home .ph-service-featured p {
  color: rgba(255, 255, 255, 0.76) !important;
}

.pearl-home .ph-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--ph-line);
  color: var(--ph-ink);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
}

.pearl-home .ph-service-featured .ph-service-link {
  border-top-color: rgba(255, 255, 255, 0.19);
  color: #ffffff;
}

.pearl-home .ph-service-link i {
  color: var(--ph-green-dark);
}

/* Corridor network and planner */
.pearl-home .ph-network-section {
  position: relative;
  background:
    radial-gradient(circle at 9% 18%, rgba(99, 197, 62, 0.13), transparent 24%),
    linear-gradient(135deg, #06172b 0%, #0a2642 62%, #0e304f 100%);
}

.pearl-home .ph-network-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.8) 0.7px, transparent 0.7px);
  background-size: 24px 24px;
  pointer-events: none;
}

.pearl-home .ph-network-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: 90px;
}

.pearl-home .ph-network-copy h2 {
  max-width: 690px;
  margin: 0 0 24px !important;
  color: #ffffff !important;
}

.pearl-home .ph-network-copy > p {
  max-width: 650px;
  margin: 0 !important;
  color: rgba(225, 236, 244, 0.72) !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
}

.pearl-home .ph-route-list {
  display: grid;
  gap: 2px;
  margin-top: 42px;
}

.pearl-home .ph-route-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pearl-home .ph-route-countries {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pearl-home .ph-route-countries span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.pearl-home .ph-route-countries i {
  color: var(--ph-green);
  font-size: 0.67rem;
}

.pearl-home .ph-route-item strong,
.pearl-home .ph-route-item small {
  display: block;
}

.pearl-home .ph-route-item strong {
  margin-bottom: 4px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.pearl-home .ph-route-item small {
  color: rgba(224, 235, 243, 0.57);
  font-size: 0.76rem;
}

.pearl-home .ph-route-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(99, 197, 62, 0.16);
  border: 1px solid rgba(99, 197, 62, 0.35);
  color: #bceca9;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.pearl-home .ph-route-tag i {
  color: #5cba3c;
  font-size: 0.7rem;
}

.pearl-home .ph-route-planner {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.pearl-home .ph-planner-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 25px;
  color: var(--ph-green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pearl-home .ph-planner-topline > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pearl-home .ph-planner-status {
  color: var(--ph-muted);
  letter-spacing: 0;
  text-transform: none;
}

.pearl-home .ph-route-planner h3 {
  margin: 0 0 10px !important;
  color: var(--ph-ink) !important;
  font-size: 1.55rem !important;
}

.pearl-home .ph-route-planner > p {
  margin: 0 0 25px !important;
  color: var(--ph-muted) !important;
  font-size: 0.86rem !important;
  line-height: 1.62 !important;
}

.pearl-home .ph-planner-fields {
  display: grid;
  gap: 8px;
}

.pearl-home .ph-planner-fields label {
  margin-top: 5px;
  color: var(--ph-ink);
  font-size: 0.74rem;
  font-weight: 700;
}

.pearl-home .ph-planner-fields input,
.pearl-home .ph-planner-fields select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d8e2e8;
  border-radius: 4px;
  outline: 0;
  background: #f8fafb;
  color: var(--ph-ink);
  font: 0.84rem var(--font-body);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.pearl-home .ph-planner-fields input:focus,
.pearl-home .ph-planner-fields select:focus {
  border-color: var(--ph-green-dark);
  box-shadow: 0 0 0 3px rgba(99, 197, 62, 0.14);
}

.pearl-home .ph-planner-fields input[readonly] {
  color: #7b8997;
}

.pearl-home .ph-planner-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 4px;
  background: #edf8e9;
}

.pearl-home .ph-planner-result span,
.pearl-home .ph-planner-result strong {
  display: block;
}

.pearl-home .ph-planner-result > div > span {
  margin-bottom: 4px;
  color: #527057;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pearl-home .ph-planner-result strong {
  color: #173f25;
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.pearl-home .ph-planner-result > i {
  color: var(--ph-green-dark);
  font-size: 1.45rem;
}

.pearl-home .ph-planner-corridor {
  min-height: 36px;
  padding: 9px 2px 13px;
  color: var(--ph-muted);
  font-size: 0.72rem;
}

/* TIR standards */
.pearl-home .ph-standards-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--ph-line);
  background: #ffffff;
}

.pearl-home .ph-standards-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.pearl-home .ph-standards-heading > span {
  color: var(--ph-green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pearl-home .ph-standards-heading h2 {
  max-width: 630px;
  margin: 0 !important;
  color: var(--ph-ink) !important;
  font-size: 1.65rem !important;
  line-height: 1.25 !important;
  text-align: end;
}

.pearl-home .ph-standards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ph-line);
  border-bottom: 1px solid var(--ph-line);
}

.pearl-home .ph-standards-grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 16px;
  border-inline-end: 1px solid var(--ph-line);
}

.pearl-home .ph-standards-grid > div:last-child {
  border-inline-end: 0;
}

.pearl-home .ph-standards-grid strong {
  color: var(--ph-green-dark);
  font-family: var(--font-heading);
  font-size: 0.77rem;
}

.pearl-home .ph-standards-grid span {
  color: var(--ph-ink);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
}

/* About */
.pearl-home .ph-about-section {
  background: #ffffff;
}

.pearl-home .ph-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 100px;
}

.pearl-home .ph-about-visual {
  position: relative;
  min-height: 620px;
}

.pearl-home .ph-about-visual::before {
  content: '';
  position: absolute;
  top: -22px;
  left: -22px;
  width: 45%;
  height: 45%;
  border-top: 5px solid var(--ph-green);
  border-left: 5px solid var(--ph-green);
}

.pearl-home .ph-about-visual img {
  position: relative;
  width: 100%;
  height: 620px;
  border-radius: 4px 4px 74px 4px;
  object-fit: cover;
}

.pearl-home .ph-about-badge {
  position: absolute;
  right: -32px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 230px;
  padding: 19px 22px;
  border-radius: 4px;
  background: var(--ph-navy);
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(7, 27, 51, 0.3);
}

.pearl-home .ph-about-badge > i {
  color: var(--ph-green);
  font-size: 1.4rem;
}

.pearl-home .ph-about-badge strong,
.pearl-home .ph-about-badge span {
  display: block;
}

.pearl-home .ph-about-badge strong {
  font-family: var(--font-heading);
  font-size: 0.84rem;
}

.pearl-home .ph-about-badge span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
}

.pearl-home .ph-about-copy h2 {
  margin: 0 0 24px !important;
}

.pearl-home .ph-about-copy > p {
  margin: 0 !important;
  color: var(--ph-muted) !important;
  font-size: 1rem !important;
  line-height: 1.78 !important;
}

.pearl-home .ph-benefit-list {
  display: grid;
  gap: 22px;
  margin: 38px 0;
}

.pearl-home .ph-benefit {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
}

.pearl-home .ph-benefit > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: #edf8e9;
  color: var(--ph-green-dark);
}

.pearl-home .ph-benefit h3 {
  margin: 0 0 3px !important;
  color: var(--ph-ink) !important;
  font-size: 1rem !important;
}

.pearl-home .ph-benefit p {
  margin: 0 !important;
  color: var(--ph-muted) !important;
  font-size: 0.86rem !important;
  line-height: 1.55 !important;
}

.pearl-home .ph-equipment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -12px 0 32px;
}

.pearl-home .ph-equipment-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid var(--ph-line);
  border-radius: 3px;
  color: var(--ph-muted);
  font-size: 0.69rem;
  font-weight: 700;
}

.pearl-home .ph-equipment-tags i {
  color: var(--ph-green-dark);
}

/* Process */
.pearl-home .ph-process-section {
  border-top: 1px solid var(--ph-line);
  background: var(--ph-mist);
}

.pearl-home .ph-heading-centred {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.pearl-home .ph-heading-centred h2 {
  margin: 0 0 18px !important;
}

.pearl-home .ph-heading-centred > p {
  margin: 0 !important;
  color: var(--ph-muted) !important;
}

.pearl-home .ph-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pearl-home .ph-process-card {
  position: relative;
  min-height: 292px;
  padding: 32px 28px;
  border: 1px solid var(--ph-line);
  border-radius: 4px;
  background: #ffffff;
}

.pearl-home .ph-process-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--ph-green);
  transition: width 220ms ease;
}

.pearl-home .ph-process-card:hover::after {
  width: 100%;
}

.pearl-home .ph-process-number {
  position: absolute;
  top: 25px;
  right: 26px;
  color: #d8e1e6;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
}

.pearl-home .ph-process-icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  margin-bottom: 48px;
  border-radius: 50%;
  background: var(--ph-navy);
  color: var(--ph-green);
}

.pearl-home .ph-process-card h3 {
  margin: 0 0 10px !important;
  color: var(--ph-ink) !important;
  font-size: 1.03rem !important;
}

.pearl-home .ph-process-card p {
  margin: 0 !important;
  color: var(--ph-muted) !important;
  font-size: 0.84rem !important;
  line-height: 1.6 !important;
}

/* FAQ */
.pearl-home .ph-faq-section {
  background: #ffffff;
}

.pearl-home .ph-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1fr);
  align-items: start;
  gap: 100px;
}

.pearl-home .ph-faq-intro {
  position: sticky;
  top: 110px;
}

.pearl-home .ph-faq-intro h2 {
  margin: 0 0 22px !important;
}

.pearl-home .ph-faq-kicker {
  display: block;
  margin: -9px 0 8px;
  color: var(--ph-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.pearl-home .ph-faq-intro p {
  margin: 0 0 28px !important;
  color: var(--ph-muted) !important;
  line-height: 1.75 !important;
}

.pearl-home .ph-faq-list {
  max-width: none;
}

.pearl-home .ph-faq-item {
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--ph-line);
  border-radius: 0;
  box-shadow: none;
}

.pearl-home .ph-faq-item:first-child {
  border-top: 1px solid var(--ph-line);
}

.pearl-home .ph-faq-item.active {
  border-color: var(--ph-line);
  box-shadow: none;
}

.pearl-home .ph-faq-question {
  width: 100%;
  padding: 25px 0;
  border: 0;
  background: transparent;
  color: var(--ph-ink);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  text-align: start;
}

.pearl-home .ph-faq-item.active .ph-faq-question {
  background: transparent;
  color: var(--ph-green-dark);
}

.pearl-home .ph-faq-icon {
  width: 32px;
  height: 32px;
  background: var(--ph-mist);
  color: var(--ph-ink);
}

.pearl-home .ph-faq-item.active .ph-faq-icon {
  transform: rotate(45deg);
  background: var(--ph-green);
  color: #082119;
}

.pearl-home .ph-faq-answer {
  padding: 0;
}

.pearl-home .ph-faq-item.active .ph-faq-answer {
  padding: 0 55px 25px 0;
}

.pearl-home .ph-faq-answer p {
  margin: 0 !important;
  color: var(--ph-muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.72 !important;
}

/* Final CTA */
.pearl-home .ph-final-cta {
  padding: 82px 0;
  background: var(--ph-navy);
}

.pearl-home .ph-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 80px;
}

.pearl-home .ph-cta-kicker {
  display: block;
  margin-bottom: 12px;
  color: #bceca9;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pearl-home .ph-final-cta h2 {
  max-width: 760px;
  margin: 0 0 14px !important;
  color: #ffffff !important;
  font-size: clamp(2rem, 3.5vw, 3.25rem) !important;
}

.pearl-home .ph-final-cta p {
  max-width: 760px;
  margin: 0 !important;
  color: rgba(226, 236, 244, 0.68) !important;
}

.pearl-home .ph-final-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* RTL */
[dir="rtl"] .pearl-home .ph-text-link:hover i,
[dir="rtl"] .pearl-home .ph-button i.fa-arrow-right {
  transform: scaleX(-1);
}

[dir="rtl"] .pearl-home .ph-about-visual::before {
  right: -22px;
  left: auto;
  border-right: 5px solid var(--ph-green);
  border-left: 0;
}

[dir="rtl"] .pearl-home .ph-about-badge {
  right: auto;
  left: -32px;
}

[dir="rtl"] .pearl-home .ph-faq-item.active .ph-faq-answer {
  padding-right: 0;
  padding-left: 55px;
}

/* Responsive */
@media (max-width: 1100px) {
  .pearl-home .ph-hero-grid.has-media {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 36px;
  }

  .pearl-home .ph-hero-media,
  .pearl-home .ph-hero-media img {
    min-height: 380px;
    height: 380px;
  }

  .pearl-home .ph-network-layout,
  .pearl-home .ph-about-layout,
  .pearl-home .ph-faq-layout {
    gap: 55px;
  }

  .pearl-home .ph-standards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pearl-home .ph-standards-grid > div:nth-child(3) {
    border-inline-end: 0;
  }

  .pearl-home .ph-standards-grid > div:nth-child(-n+3) {
    border-bottom: 1px solid var(--ph-line);
  }

  .pearl-home .ph-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .pearl-home .ph-section {
    padding: 84px 0;
  }

  .pearl-home .ph-hero-grid.has-media,
  .pearl-home .ph-network-layout,
  .pearl-home .ph-about-layout,
  .pearl-home .ph-faq-layout,
  .pearl-home .ph-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .pearl-home .ph-hero-media {
    display: none;
  }

  .pearl-home .ph-proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pearl-home .ph-proof-intro {
    grid-column: 1 / -1;
    min-height: 78px;
    padding-inline: 0;
    border-bottom: 1px solid var(--ph-line);
    border-inline-end: 0;
  }

  .pearl-home .ph-proof-item {
    padding-inline: 20px;
  }

  .pearl-home .ph-proof-item:nth-child(2) {
    padding-inline-start: 0;
  }

  .pearl-home .ph-heading-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pearl-home .ph-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pearl-home .ph-service-featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 520px;
  }

  .pearl-home .ph-network-layout {
    gap: 60px;
  }

  .pearl-home .ph-route-planner {
    max-width: 650px;
  }

  .pearl-home .ph-about-layout {
    gap: 65px;
  }

  .pearl-home .ph-about-visual {
    width: calc(100% - 32px);
    min-height: 520px;
  }

  .pearl-home .ph-about-visual img {
    height: 520px;
  }

  .pearl-home .ph-faq-intro {
    position: static;
    max-width: 620px;
  }

  .pearl-home .ph-final-cta-inner {
    gap: 35px;
  }

  .pearl-home .ph-final-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .pearl-home .ph-container,
  .pearl-home .ph-hero-grid {
    width: min(100% - 32px, 1180px);
  }

  .pearl-home .ph-section {
    padding: 68px 0;
  }

  .pearl-home .ph-hero,
  .pearl-home .ph-hero-slider,
  .pearl-home .ph-hero-slide,
  .pearl-home .ph-hero-grid {
    min-height: 650px;
  }

  .pearl-home .ph-hero-grid {
    align-items: end;
    padding: 70px 0 94px;
  }

  .pearl-home .ph-hero-overlay {
    background: linear-gradient(0deg, rgba(4, 19, 37, 0.99) 0%, rgba(4, 19, 37, 0.88) 58%, rgba(4, 19, 37, 0.48) 100%);
  }

  .pearl-home .ph-hero-title {
    margin-bottom: 17px !important;
    font-size: clamp(2.25rem, 10vw, 3.15rem) !important;
    line-height: 1.05 !important;
  }

  .pearl-home .ph-hero-description {
    font-size: 0.96rem !important;
    line-height: 1.6 !important;
  }

  .pearl-home .ph-hero-actions {
    margin-top: 25px;
  }

  .pearl-home .ph-hero-actions .ph-button {
    flex: 1 1 100%;
  }

  .pearl-home .ph-hero-assurances {
    display: none;
  }

  .pearl-home .ph-slider-controls {
    right: 16px;
    bottom: 22px;
  }

  .pearl-home .ph-slider-arrow {
    display: none;
  }

  .pearl-home .ph-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pearl-home .ph-proof-intro {
    grid-column: 1 / -1;
  }

  .pearl-home .ph-proof-item {
    min-height: 108px;
    padding: 22px 14px;
    border-bottom: 1px solid var(--ph-line);
  }

  .pearl-home .ph-proof-item:nth-child(2) {
    padding-inline-start: 0;
  }

  .pearl-home .ph-proof-item:last-child {
    grid-column: 1 / -1;
    padding-inline: 0;
    border-bottom: 0;
  }

  .pearl-home .ph-section-heading h2,
  .pearl-home .ph-network-copy h2,
  .pearl-home .ph-about-copy h2,
  .pearl-home .ph-faq-intro h2,
  .pearl-home .ph-final-cta h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem) !important;
  }

  .pearl-home .ph-heading-split {
    margin-bottom: 38px;
  }

  .pearl-home .ph-services-grid {
    grid-template-columns: 1fr;
  }

  .pearl-home .ph-service-featured {
    grid-column: auto;
    min-height: 470px;
  }

  .pearl-home .ph-service-card {
    min-height: 260px;
    padding: 27px;
  }

  .pearl-home .ph-standards-heading {
    display: block;
  }

  .pearl-home .ph-standards-heading > span {
    display: block;
    margin-bottom: 8px;
  }

  .pearl-home .ph-standards-heading h2 {
    text-align: start;
  }

  .pearl-home .ph-standards-grid {
    grid-template-columns: 1fr;
  }

  .pearl-home .ph-standards-grid > div,
  .pearl-home .ph-standards-grid > div:nth-child(3) {
    border-inline-end: 0;
    border-bottom: 1px solid var(--ph-line);
  }

  .pearl-home .ph-standards-grid > div:last-child {
    border-bottom: 0;
  }

  .pearl-home .ph-service-icon {
    margin-bottom: 34px;
  }

  .pearl-home .ph-route-item {
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 14px;
  }

  .pearl-home .ph-route-item em {
    grid-column: 2;
  }

  .pearl-home .ph-route-planner {
    padding: 27px 22px;
  }

  .pearl-home .ph-planner-topline {
    align-items: flex-start;
  }

  .pearl-home .ph-planner-status {
    display: none !important;
  }

  .pearl-home .ph-about-visual {
    width: calc(100% - 12px);
    min-height: 420px;
  }

  .pearl-home .ph-about-visual::before {
    top: -12px;
    left: -12px;
  }

  .pearl-home .ph-about-visual img {
    height: 420px;
    border-radius: 4px 4px 44px 4px;
  }

  .pearl-home .ph-about-badge {
    right: -12px;
    bottom: 22px;
  }

  [dir="rtl"] .pearl-home .ph-about-badge {
    right: auto;
    left: -12px;
  }

  .pearl-home .ph-process-grid {
    grid-template-columns: 1fr;
  }

  .pearl-home .ph-process-card {
    min-height: 250px;
  }

  .pearl-home .ph-faq-question {
    padding: 22px 0;
    font-size: 0.9rem;
  }

  .pearl-home .ph-final-cta {
    padding: 64px 0;
  }

  .pearl-home .ph-final-actions,
  .pearl-home .ph-final-actions .ph-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pearl-home *,
  .pearl-home *::before,
  .pearl-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

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

/* ==========================================================================
   GLOBAL RESPONSIVE TYPOGRAPHY SYSTEM
   Optimized for PC (Desktop), Tablet, and Mobile
   ========================================================================== */

/* 1. Root Responsive Scaling */
html {
  font-size: 16px !important;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (max-width: 1024px) {
  html {
    font-size: 15px !important; /* Smooth proportional downscale for tablet */
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14.5px !important; /* Smooth proportional downscale for mobile */
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px !important;
  }
}

/* 2. Global Body & Font Normalization */
body,
.elementor,
.elementor-kit-5,
.elementor-page {
  font-family: var(--font-body) !important;
  color: var(--gray-700) !important;
  font-size: 1rem !important;
  line-height: 1.68 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 3. Global Headings Normalization (Montserrat) */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title,
.section-title {
  font-family: var(--font-heading) !important;
  color: var(--primary);
  letter-spacing: -0.015em;
  margin-top: 0;
}

/* Headings on Dark Background Sections */
.hero-title,
.hero-slider-section .hero-title,
.world-time .section-title,
.world-time-city,
.page-banner h1,
.sidebar-cta h3,
.footer-title,
.pt-footer h3,
.as-box-title {
  color: #ffffff !important;
}

.world-time .section-subtitle {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* H1 - Main Page / Hero Titles */
h1,
.elementor-element h1.elementor-heading-title,
.page-banner h1 {
  font-size: 2.75rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin-bottom: 1.25rem !important;
}

@media (max-width: 1024px) {
  h1,
  .elementor-element h1.elementor-heading-title,
  .page-banner h1 {
    font-size: 2.25rem !important;
    line-height: 1.22 !important;
  }
}

@media (max-width: 768px) {
  h1,
  .elementor-element h1.elementor-heading-title,
  .page-banner h1 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }
}

/* H2 - Section Titles */
h2,
.elementor-element h2.elementor-heading-title,
.section-title,
.world-time .section-title {
  font-size: 2.15rem !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
  margin-bottom: 1rem !important;
}

@media (max-width: 1024px) {
  h2,
  .elementor-element h2.elementor-heading-title,
  .section-title,
  .world-time .section-title {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 768px) {
  h2,
  .elementor-element h2.elementor-heading-title,
  .section-title,
  .world-time .section-title {
    font-size: 1.45rem !important;
    line-height: 1.32 !important;
    margin-bottom: 0.75rem !important;
  }
}

/* H3 - Subsections, Box Titles, Card Headers */
h3,
.elementor-element h3.elementor-heading-title,
.article-content h3,
.sidebar-title,
.pf-292c8dce-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  line-height: 1.38 !important;
  margin-bottom: 0.75rem !important;
}

@media (max-width: 768px) {
  h3,
  .elementor-element h3.elementor-heading-title,
  .article-content h3,
  .sidebar-title,
  .pf-292c8dce-title {
    font-size: 1.1rem !important;
    line-height: 1.35 !important;
  }
}

/* H4, H5, H6 */
h4 {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}
h5 {
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}
h6 {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 4. Global Paragraph & Text Normalization (Roboto) */
p,
li,
.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.article-content p,
.article-content li,
.service-card-text {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.72 !important;
  color: var(--gray-700) !important;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  p,
  li,
  .elementor-widget-text-editor,
  .elementor-widget-text-editor p,
  .article-content p,
  .article-content li,
  .service-card-text {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    margin-bottom: 1rem;
  }
}

/* Lead / Hero Paragraphs */
.hero-desc,
.section-desc,
.lead {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 1024px) {
  .hero-desc,
  .section-desc,
  .lead {
    font-size: 1.05rem !important;
  }
}

@media (max-width: 768px) {
  .hero-desc,
  .section-desc,
  .lead {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
}

/* 5. Subtitles & Overlines */
.section-subtitle,
.hero-subtitle,
.world-time .section-subtitle {
  font-family: var(--font-heading) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 0.5rem !important;
}

@media (max-width: 768px) {
  .section-subtitle,
  .hero-subtitle,
  .world-time .section-subtitle {
    font-size: 0.775rem !important;
    letter-spacing: 1px !important;
  }
}

/* 6. Navigation Typography */
.topbar {
  font-size: 0.875rem !important;
  line-height: 1.4 !important;
}

.topbar-badge {
  font-size: 0.775rem !important;
  font-weight: 700 !important;
}

.nav-link {
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.01em;
}

.dropdown-item {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

@media (max-width: 768px) {
  .nav-menu .nav-link {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    padding: 0.85rem 0 !important;
  }
  .nav-menu .dropdown-item {
    font-size: 0.95rem !important;
    padding: 0.65rem 1rem !important;
  }
}

/* 7. Buttons Typography */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-accent,
button.btn,
a.btn {
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

@media (max-width: 768px) {
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-accent,
  button.btn,
  a.btn {
    font-size: 0.9rem !important;
    padding: 0.65rem 1.35rem !important;
  }
}

/* 8. Component Specific Fine-Tuning */

/* 5 Feature Cards */
.elementor-element-83b5e51 .elementor-container {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 16px !important;
}

.elementor-element-83b5e51 .elementor-column.elementor-col-20 {
  flex: 1 1 calc(20% - 16px) !important;
  min-width: 190px !important;
  max-width: 240px !important;
  width: auto !important;
  margin-bottom: 0 !important;
}

.elementor-element-83b5e51 .elementor-icon-box-wrapper {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 24px 18px !important;
  text-align: center !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important;
  border: 1px solid #eef2f6 !important;
  transition: all 0.3s ease !important;
  min-height: 150px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}

.elementor-element-83b5e51 .elementor-icon-box-title span {
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: var(--primary) !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  display: block !important;
}

@media (max-width: 1024px) {
  .elementor-element-83b5e51 .elementor-column.elementor-col-20 {
    flex: 1 1 calc(33.333% - 16px) !important;
    max-width: 300px !important;
  }
}

@media (max-width: 640px) {
  .elementor-element-83b5e51 .elementor-column.elementor-col-20 {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
  .elementor-element-83b5e51 .elementor-icon-box-wrapper {
    min-height: 110px !important;
    padding: 18px !important;
  }
}

/* 10 Service Cards */
.as-box-title {
  font-family: var(--font-heading) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
}

.as-box-subtitle {
  font-family: var(--font-heading) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  color: #5cba3c !important;
}

@media (max-width: 768px) {
  .as-box-title {
    font-size: 1.1rem !important;
  }
}

/* Process Flow Steps */
.pf-292c8dce-number {
  font-family: var(--font-heading) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
}

.pf-292c8dce-title {
  font-family: var(--font-heading) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
}

.pf-292c8dce-desc {
  font-family: var(--font-body) !important;
  font-size: 0.925rem !important;
  line-height: 1.65 !important;
  color: #64748b !important;
}

/* World Time Clocks */
.world-time-city {
  font-family: var(--font-heading) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
}

.world-time-country {
  font-family: var(--font-heading) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}

.world-time-digital {
  font-family: 'Montserrat', monospace !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
}

.world-time-zone {
  font-family: var(--font-body) !important;
  font-size: 0.775rem !important;
}

/* Counter */
.elementor-counter-title {
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
}

.elementor-counter-number-wrapper {
  font-family: var(--font-heading) !important;
  font-size: 2.75rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

@media (max-width: 768px) {
  .elementor-counter-number-wrapper {
    font-size: 2.25rem !important;
  }
}

/* Footer Typography */
.footer-title,
.pt-footer h3 {
  font-family: var(--font-heading) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 1.25rem !important;
}

.footer-about,
.pt-footer__about {
  font-family: var(--font-body) !important;
  font-size: 0.925rem !important;
  line-height: 1.72 !important;
  color: var(--gray-300) !important;
}

.footer-links a,
.pt-footer__links a {
  font-family: var(--font-body) !important;
  font-size: 0.925rem !important;
  line-height: 1.6 !important;
  color: var(--gray-300) !important;
}

.footer-contact li,
.pt-footer__contact {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: var(--gray-300) !important;
}

.footer-contact a {
  color: var(--gray-300) !important;
}

.footer-bottom,
.pt-footer__bottom {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  color: var(--gray-500) !important;
}

.footer-bottom p {
  margin: 0 !important;
  color: rgba(203, 213, 225, 0.72) !important;
}

/* Subpage Breadcrumbs & Details */
.breadcrumbs {
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
}

.sidebar-title {
  font-family: var(--font-heading) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
}

.sidebar-nav a {
  font-family: var(--font-heading) !important;
  font-size: 0.925rem !important;
  font-weight: 600 !important;
}

.form-label {
  font-family: var(--font-heading) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
}

.form-control {
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
}

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

.topbar .container,
.navbar .container,
.footer .container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* TOPBAR */
.topbar {
  background-color: var(--primary-dark);
  color: #cbd5e1;
  font-size: 0.875rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}
.topbar-contact a svg {
  color: var(--secondary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.topbar-contact a:hover {
  color: var(--secondary);
}
.topbar-contact a:hover svg {
  transform: scale(1.1);
}
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(92, 186, 60, 0.16);
  color: #ffffff;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 600;
  border: 1px solid rgba(92, 186, 60, 0.45);
  letter-spacing: 0.015em;
}
.topbar-badge svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 2px 10px rgba(17, 35, 90, 0.06);
  transition: box-shadow 0.3s ease;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.navbar-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 84px;
}
.nav-item-cta {
  margin-left: 0.5rem;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.95rem;
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #11235a !important; /* Authoritative Deep Navy */
  background: transparent !important; /* NO faint washed-out background pill */
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.2s ease;
  text-decoration: none;
}
.nav-link:hover {
  color: #2b7d1c !important; /* High contrast brand green */
  background: transparent !important;
}
.nav-link.active {
  color: #2b7d1c !important; /* High contrast brand green */
  font-weight: 700 !important;
  background: transparent !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0.95rem;
  right: 0.95rem;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 3px;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.dropdown-icon {
  width: 14px;
  height: 14px;
  color: #64748b;
  transition: transform 0.25s ease, color 0.2s ease;
}
.nav-item:hover .dropdown-icon {
  transform: rotate(180deg);
  color: #2b7d1c;
}
.nav-link.active .dropdown-icon {
  color: #2b7d1c;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  min-width: 290px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 35px rgba(17, 35, 90, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-200);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}
.sidebar-backdrop {
  display: none;
}
.sidebar-header {
  display: none;
}
.sidebar-footer {
  display: none;
}
.sidebar-dropdown-trigger {
  display: none;
}
.nav-icon-mobile {
  display: none;
}
.mobile-toggle {
  display: none;
}
.dropdown-header-row {
  display: flex;
  align-items: center;
}
.sidebar-nav-scroll {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.885rem;
  color: var(--gray-700);
  font-weight: 500;
  border-left: 3px solid transparent;
  background-color: transparent;
  transition: all 0.18s ease;
  text-decoration: none;
}
.dropdown-item strong {
  color: #11235a;
  font-weight: 700;
}
.dropdown-item:hover {
  background-color: #f0fdf4;
  color: #11235a;
  border-left-color: var(--secondary);
  padding-left: 1.55rem;
}
.dropdown-item:hover strong {
  color: #2b7d1c;
}

/* Header Get Quote CTA Button */
.navbar .btn-secondary {
  background-color: var(--secondary);
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 0.925rem !important;
  font-weight: 700 !important;
  padding: 0.65rem 1.45rem !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 3px 10px rgba(92, 186, 60, 0.32);
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
}
.navbar .btn-secondary:hover {
  background-color: var(--secondary-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(92, 186, 60, 0.45);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.925rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background-color: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background-color: transparent;
}
.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--primary);
}
.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 23, 59, 0.92), rgba(17, 35, 90, 0.85)), url('/wp-content/uploads/2026/07/ChatGPT-Image-Jul-20-2026-01_00_36-PM.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 6rem 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 780px;
}
.hero-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-200);
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* PAGE BANNER */
.page-banner {
  background: linear-gradient(135deg, rgba(10, 23, 59, 0.94), rgba(17, 35, 90, 0.9)), url('/wp-content/uploads/2022/09/MULTIMODAL-TRANSPORTATION-1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-300);
}
.breadcrumbs a:hover {
  color: var(--secondary);
}

/* STATS BAR */
.stats-bar {
  background-color: var(--white);
  padding: 2.5rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.stat-item p {
  color: var(--gray-500);
  font-weight: 500;
  font-size: 0.925rem;
}

/* SECTION COMMONS */
.section {
  padding: 5rem 0;
}
.section-light {
  background-color: var(--gray-50);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}
.section-desc {
  color: var(--gray-600);
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background-color: var(--gray-100);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.service-card-text {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
}
.service-card-link:hover {
  color: var(--secondary-hover);
  gap: 0.75rem;
}

/* DETAIL PAGE CONTENT */
.page-content-wrapper {
  padding: 4.5rem 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
}
.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary);
  margin: 2rem 0 1rem;
  line-height: 1.3;
}
.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary-light);
  margin: 1.5rem 0 0.75rem;
}
.article-content p {
  margin-bottom: 1.25rem;
}
.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}
.article-content li {
  margin-bottom: 0.5rem;
}
.article-content img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-md);
}

/* SIDEBAR */
.sidebar-widget {
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
}
.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--secondary);
}
.sidebar-nav li {
  margin-bottom: 0.5rem;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  background-color: var(--white);
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-size: 0.925rem;
  font-weight: 500;
  border: 1px solid var(--gray-200);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.sidebar-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.sidebar-cta p {
  font-size: 0.925rem;
  color: var(--gray-200);
  margin-bottom: 1.5rem;
}

/* FORMS */
.form-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group.full-width {
  grid-column: span 2;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(92, 186, 60, 0.2);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.alert-success {
  background-color: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}
.alert-error {
  background-color: #fef2f2;
  border: 1px solid #ef4444;
  color: #991b1b;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

/* FOOTER */
.footer {
  background-color: var(--primary-dark);
  color: var(--gray-300);
  padding: 5rem 0 2rem;
  border-top: 4px solid var(--secondary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-about {
  color: var(--gray-300);
  font-size: 0.925rem;
  line-height: 1.7;
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: var(--gray-300);
  font-size: 0.925rem;
  transition: all 0.2s ease;
}
.footer-links a:hover {
  color: var(--secondary);
  padding-left: 0.35rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.925rem;
}
.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Mobile & Tablet Animated Off-Canvas Sidebar (<= 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .topbar {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  /* Body scroll lock when sidebar is open */
  body.sidebar-open {
    overflow: hidden !important;
    touch-action: none;
  }

  /* Animated Hamburger Toggle Button */
  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
    z-index: 1000;
  }
  .mobile-toggle:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
  }
  .hamburger-box {
    width: 22px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #0e2b45;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  }
  .mobile-toggle.is-active .line-1 {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-toggle.is-active .line-2 {
    opacity: 0;
    transform: scaleX(0);
  }
  .mobile-toggle.is-active .line-3 {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Backdrop Overlay */
  .sidebar-backdrop {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(9, 28, 46, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  }
  .sidebar-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Animated Off-Canvas Sidebar */
  .nav-menu {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 360px;
    max-width: 86vw;
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    gap: 0;
    z-index: 9999;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    border-top: none;
  }
  .nav-menu.open {
    transform: translateX(0);
  }

  /* Sidebar Header */
  .sidebar-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #0e2b45;
    border-bottom: 3px solid #fc653c;
    color: #ffffff;
    flex-shrink: 0;
  }
  .sidebar-brand-wrap {
    display: flex;
    flex-direction: column;
  }
  .sidebar-brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  .sidebar-brand-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fc653c;
    font-weight: 600;
    margin-top: 3px;
  }
  .sidebar-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .sidebar-close:hover {
    background: #fc653c;
    border-color: #fc653c;
    transform: rotate(90deg);
  }

  /* Scrollable Nav Content */
  .sidebar-nav-scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav-item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
  }
  .nav-item:last-child {
    border-bottom: none;
  }

  /* Navigation Links */
  .nav-menu .nav-link {
    width: 100%;
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 14px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    background: transparent !important;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .nav-menu .nav-link:hover {
    background-color: #f8fafc !important;
    color: #fc653c !important;
  }
  .nav-menu .nav-link.active {
    background-color: rgba(252, 101, 60, 0.08) !important;
    color: #fc653c !important;
    font-weight: 700 !important;
    border-left: 3px solid #fc653c !important;
  }
  .nav-menu .nav-link::after {
    display: none !important;
  }
  .nav-icon-mobile {
    display: inline-block !important;
    width: 18px;
    font-size: 15px;
    color: #fc653c;
    text-align: center;
  }

  /* Dropdown Header Row */
  .dropdown-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .dropdown-header-row .nav-link {
    flex: 1;
  }
  .sidebar-dropdown-trigger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #64748b;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  .sidebar-dropdown-trigger:hover {
    background-color: #f1f5f9;
    color: #fc653c;
  }
  .sidebar-dropdown-trigger .dropdown-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
  }
  .has-dropdown.open .sidebar-dropdown-trigger .dropdown-icon {
    transform: rotate(180deg);
    color: #fc653c;
  }

  /* Collapsible Services Accordion */
  .nav-menu .dropdown-menu {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background-color: #f8fafc !important;
    border-radius: 8px;
    padding: 0;
    margin: 0 0 8px 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transform: none !important;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease, visibility 0.3s ease;
  }
  .has-dropdown.open .dropdown-menu {
    max-height: 700px;
    opacity: 1;
    visibility: visible;
    padding: 6px 0;
    transition: max-height 0.45s ease-in-out, opacity 0.3s ease;
  }
  .nav-menu .dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 24px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #475569 !important;
    border-left: 3px solid transparent;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .nav-menu .dropdown-item i {
    width: 16px;
    font-size: 13px;
    color: #94a3b8;
    text-align: center;
    transition: color 0.2s ease;
  }
  .nav-menu .dropdown-item:hover {
    background-color: #edf2f7 !important;
    color: #0e2b45 !important;
    border-left-color: #fc653c;
    padding-left: 28px !important;
  }
  .nav-menu .dropdown-item:hover i {
    color: #fc653c;
  }
  .nav-menu .dropdown-item.active {
    color: #fc653c !important;
    font-weight: 700 !important;
    border-left-color: #fc653c;
    background-color: rgba(252, 101, 60, 0.08) !important;
  }
  .dropdown-overview-item {
    font-weight: 700 !important;
    color: #0e2b45 !important;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 11px !important;
    margin-bottom: 4px;
  }
  .dropdown-overview-item i {
    color: #fc653c !important;
  }

  /* Sidebar Footer */
  .sidebar-footer {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    flex-shrink: 0;
  }
  .sidebar-quote-btn {
    width: 100%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    background: #fc653c !important;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(252, 101, 60, 0.25);
    transition: background-color 0.2s ease;
  }
  .sidebar-quote-btn:hover {
    background: #e04f26 !important;
  }
  .sidebar-contact-strip {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .sidebar-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  .sidebar-contact-link:hover {
    color: #fc653c;
  }
  .sidebar-contact-link i {
    width: 14px;
    text-align: center;
    color: #fc653c;
  }
  .sidebar-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0e2b45;
    background: #e2e8f0;
    padding: 6px 10px;
    border-radius: 6px;
  }
  .sidebar-badge-item i {
    color: #fc653c;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* ==========================================================================
   Interactive Hero Slider Component
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: #0a173b;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 7s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 23, 59, 0.94) 0%, rgba(17, 35, 90, 0.82) 55%, rgba(10, 23, 59, 0.45) 100%);
}

.hero-slide-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 7.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-slide-container.single-col {
  grid-template-columns: 1fr;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(92, 186, 60, 0.18);
  border: 1px solid rgba(92, 186, 60, 0.45);
  color: #5cba3c;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-featured-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.4s ease;
}

.hero-featured-img:hover {
  transform: translateY(-6px);
}

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

/* Slider Controls */
.hero-ctrl-prev,
.hero-ctrl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 18px;
}

.hero-ctrl-prev:hover,
.hero-ctrl-next:hover {
  background: #5cba3c;
  color: #ffffff;
  border-color: #5cba3c;
  transform: translateY(-50%) scale(1.08);
}

.hero-ctrl-prev { left: 24px; }
.hero-ctrl-next { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  width: 32px;
  border-radius: 10px;
  background: #5cba3c;
}

@media (max-width: 992px) {
  .hero-slide-container {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem 6.5rem 1.5rem;
  }
  .hero-dots {
    bottom: 75px;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-featured-img {
    display: none;
  }
}

/* ==========================================================================
   Process Flow Steps (Timely Flow of Services)
   ========================================================================== */
.pf-292c8dce-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 0 36px;
  position: relative;
}

.pf-292c8dce-item,
.pf-292c8dce-animate .pf-292c8dce-item {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 32px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pf-292c8dce-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(17, 35, 90, 0.12);
  border-color: #5cba3c;
}

.pf-292c8dce-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #11235a;
  color: #5cba3c;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(17, 35, 90, 0.2);
  transition: all 0.3s ease;
}

.pf-292c8dce-item:hover .pf-292c8dce-number {
  background: #5cba3c;
  color: #ffffff;
  transform: scale(1.08);
}

.pf-292c8dce-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #11235a;
  margin-bottom: 12px;
  line-height: 1.35;
}

.pf-292c8dce-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.pf-292c8dce-arrow {
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #5cba3c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pf-292c8dce-arrow svg {
  width: 14px;
  height: 14px;
}

.pf-292c8dce-item:last-child .pf-292c8dce-arrow {
  display: none;
}

@media (max-width: 1024px) {
  .pf-292c8dce-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .pf-292c8dce-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .pf-292c8dce-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   World Time Clocks Component
   ========================================================================== */
.world-time-clock-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.world-time-clock-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(92, 186, 60, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.world-time-flag {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
}

.world-time-city {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.world-time-country {
  color: #5cba3c;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.world-time-digital {
  margin-top: 18px;
  font-family: 'Montserrat', monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.world-time-zone {
  margin-top: 8px;
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   Homepage 5-Column Feature Cards (Hero Overlay) Fix
   Resolves:
   1. Cards hidden behind hero section (added z-index & relative position)
   2. Eliminates duplicate nested box & weird inner shadows
   ========================================================================== */
.elementor-264 .elementor-element.elementor-element-83b5e51,
.elementor-element.elementor-element-83b5e51 {
  position: relative !important;
  z-index: 25 !important;
  margin-top: -65px !important;
  margin-bottom: 2rem !important;
}

/* Strip out nested card styling on outer column & elementor-populated containers */
.elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-column,
.elementor-element-83b5e51 .elementor-column {
  margin-bottom: 1rem !important;
}

.elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-widget-wrap,
.elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-element-populated,
.elementor-element-83b5e51 .elementor-widget-wrap,
.elementor-element-83b5e51 .elementor-element-populated {
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-element-populated:hover,
.elementor-element-83b5e51 .elementor-element-populated:hover {
  box-shadow: none !important;
  background: transparent !important;
}

.elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-widget-container,
.elementor-element-83b5e51 .elementor-widget-container {
  padding: 0 6px !important;
}

/* Single unified clean card on the icon-box-wrapper */
.elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-icon-box-wrapper,
.elementor-element-83b5e51 .elementor-icon-box-wrapper {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 26px 14px 22px !important;
  text-align: center !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  box-shadow: 0 10px 25px -4px rgba(10, 23, 59, 0.08), 0 4px 6px -2px rgba(10, 23, 59, 0.04) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
  min-height: 160px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative !important;
}

.elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-icon-box-wrapper:hover,
.elementor-element-83b5e51 .elementor-icon-box-wrapper:hover {
  transform: translateY(-6px) !important;
  border-color: #5cba3c !important;
  box-shadow: 0 20px 35px -5px rgba(17, 35, 90, 0.16), 0 8px 10px -6px rgba(17, 35, 90, 0.08) !important;
}

/* Icons */
.elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-icon-box-icon,
.elementor-element-83b5e51 .elementor-icon-box-icon {
  margin-bottom: 12px !important;
}

.elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-icon,
.elementor-element-83b5e51 .elementor-icon {
  font-size: 32px !important;
  color: #11235a !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
}

.elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-icon-box-wrapper:hover .elementor-icon,
.elementor-element-83b5e51 .elementor-icon-box-wrapper:hover .elementor-icon {
  color: #5cba3c !important;
  transform: scale(1.1) !important;
}

/* Typography */
.elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-icon-box-title,
.elementor-element-83b5e51 .elementor-icon-box-title {
  margin: 0 !important;
}

.elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-icon-box-title span,
.elementor-element-83b5e51 .elementor-icon-box-title span {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #11235a !important;
  line-height: 1.35 !important;
  display: block !important;
}

@media (max-width: 992px) {
  .elementor-264 .elementor-element.elementor-element-83b5e51,
  .elementor-element-83b5e51 {
    margin-top: -45px !important;
  }
}

@media (max-width: 768px) {
  .elementor-264 .elementor-element.elementor-element-83b5e51,
  .elementor-element-83b5e51 {
    margin-top: -30px !important;
  }
  .elementor-264 .elementor-element.elementor-element-83b5e51 .elementor-widget-container,
  .elementor-element-83b5e51 .elementor-widget-container {
    padding: 0 4px !important;
  }
}

/* ==========================================================================
   ENTERPRISE SERVICES & SERVICE SINGLE PAGES SYSTEM
   ========================================================================== */

/* 1. Service Page Header & Hero */
.service-hero-banner {
  background: linear-gradient(135deg, #0a173b 0%, #11235a 60%, #1e3a8a 100%);
  color: #ffffff;
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #5cba3c;
}

.service-hero-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.7;
}

.service-hero-banner .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Breadcrumbs */
.service-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.service-breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-breadcrumbs a:hover {
  color: #5cba3c;
}

.service-breadcrumbs .sep {
  opacity: 0.5;
  font-size: 0.75rem;
}

.service-breadcrumbs .current {
  color: #5cba3c;
  font-weight: 600;
}

.service-hero-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(92, 186, 60, 0.18);
  border: 1px solid rgba(92, 186, 60, 0.4);
  color: #5cba3c;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.service-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.service-hero-subtitle,
.service-hero-desc {
  font-size: 1.125rem;
  color: #ffffff !important;
  max-width: 800px;
  line-height: 1.65;
  margin: 0;
}

/* 2. Service Main Layout */
.service-page-body {
  padding: 3.5rem 0 4.5rem;
  background-color: #f8fafc;
}

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

.service-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

.service-main-content {
  min-width: 0;
}

/* Article Styling */
.service-content-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px -2px rgba(17, 35, 90, 0.06);
  border: 1px solid #e2e8f0;
  margin-bottom: 2rem;
}

.service-content-card h2,
.service-main-content h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-content-card h2:first-child,
.service-main-content h2:first-child {
  margin-top: 0;
}

.service-content-card h2::before,
.service-main-content h2::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 1.35em;
  background: #5cba3c;
  border-radius: 3px;
  flex-shrink: 0;
}

.service-content-card h3,
.service-main-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-content-card p,
.service-main-content p {
  color: #334155;
  font-size: 1.025rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.service-lead-box {
  background: linear-gradient(135deg, rgba(17, 35, 90, 0.03) 0%, rgba(92, 186, 60, 0.06) 100%);
  border-left: 4px solid #11235a;
  border-radius: 0.5rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.service-lead-box p {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.7;
}

/* Feature Grid & Cards */
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-feature-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.service-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px -4px rgba(17, 35, 90, 0.1);
  border-color: #5cba3c;
}

.service-feature-item .icon-circle {
  width: 44px;
  height: 44px;
  background: rgba(92, 186, 60, 0.12);
  color: #5cba3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-feature-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #11235a;
  margin-bottom: 0.5rem;
}

.service-feature-item p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Benefit List */
.service-benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.15rem 1.25rem;
  transition: all 0.2s ease;
}

.service-benefit-item:hover {
  background: #ffffff;
  border-color: #5cba3c;
  box-shadow: 0 6px 16px -2px rgba(17, 35, 90, 0.06);
}

.service-benefit-item .check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #5cba3c;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}

.service-benefit-item .benefit-text {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.65;
}

.service-benefit-item .benefit-text strong {
  color: #11235a;
  display: inline;
}

/* Image Wrappers & Diagrams */
.service-image-box {
  margin: 2rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 30px -5px rgba(17, 35, 90, 0.12);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.service-image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-image-box:hover img {
  transform: scale(1.02);
}

.service-image-caption {
  padding: 0.85rem 1.25rem;
  font-size: 0.875rem;
  color: #64748b;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-image-caption i {
  color: #5cba3c;
}

/* Diagram Cards */
.service-diagram-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2.25rem 0;
  box-shadow: 0 8px 24px -4px rgba(17, 35, 90, 0.08);
}

.service-diagram-card .diagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.service-diagram-card .diagram-header h4 {
  font-size: 1.15rem;
  color: #11235a;
  margin: 0;
  font-weight: 700;
}

.service-diagram-card .diagram-header .badge {
  background: rgba(17, 35, 90, 0.08);
  color: #11235a;
  padding: 0.25rem 0.65rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-diagram-card img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
}

/* Quick Inquiry / Sidebar Form Enhancement */
.service-sidebar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 4px 18px -2px rgba(17, 35, 90, 0.06);
  margin-bottom: 1.75rem;
}

.service-sidebar-card h3.sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #11235a;
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}

.service-sidebar-card h3.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #5cba3c;
}

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

.service-nav-list li {
  margin-bottom: 0.4rem;
}

.service-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  background: #f8fafc;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.service-nav-list a:hover {
  background: #ffffff;
  color: #11235a;
  border-color: #5cba3c;
  padding-left: 1.25rem;
  box-shadow: 0 3px 10px rgba(92, 186, 60, 0.1);
}

.service-nav-list a.active {
  background: #11235a;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(17, 35, 90, 0.2);
}

.service-nav-list a.active svg {
  transform: translateX(3px);
  color: #5cba3c;
}

/* 3. Services Hub (/services) Grid Styles */
.services-hub-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
}

.services-hub-intro h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #11235a;
  margin-bottom: 1rem;
}

.services-hub-intro p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
}

.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-hub-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px -3px rgba(17, 35, 90, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-hub-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -5px rgba(17, 35, 90, 0.15);
  border-color: #5cba3c;
}

.service-hub-card .card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
}

.service-hub-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-hub-card:hover .card-thumb img {
  transform: scale(1.08);
}

.service-hub-card .card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(17, 35, 90, 0.9);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-hub-card .card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-hub-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #11235a;
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-hub-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-hub-card .card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.service-hub-card .card-features li {
  font-size: 0.875rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.service-hub-card .card-features li i {
  color: #5cba3c;
  font-size: 0.8rem;
}

.service-hub-card .card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: #f8fafc;
  color: #11235a;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.925rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.service-hub-card .card-btn:hover {
  background: #5cba3c;
  color: #ffffff;
  border-color: #5cba3c;
}

.service-hub-card .card-btn svg {
  transition: transform 0.2s ease;
}

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

/* 4. Stats & Trust Strip */
.services-stats-strip {
  background: #11235a;
  color: #ffffff;
  border-radius: 1rem;
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #5cba3c;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.stat-item .stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .service-layout-grid {
    grid-template-columns: 1fr;
  }
  .services-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-hero-title {
    font-size: 1.85rem;
  }
  .service-content-card {
    padding: 1.5rem;
  }
  .services-hub-grid {
    grid-template-columns: 1fr;
  }
  .services-stats-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   Multilingual Language Switcher & RTL Support
   ========================================================================== */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switcher-dropdown {
  position: relative;
  display: inline-block;
}

.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.4;
  list-style: none;
}

.lang-switcher-btn::-webkit-details-marker {
  display: none;
}

.lang-switcher-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(92, 186, 60, 0.6);
}

.lang-switcher-btn .lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-switcher-btn .lang-chevron {
  transition: transform 0.2s ease;
  opacity: 0.8;
}

.lang-switcher-dropdown[open] .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #0d1b3e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  min-width: 185px;
  padding: 0.4rem;
  display: none;
  z-index: 1050;
  backdrop-filter: blur(8px);
}

.lang-switcher-dropdown[open] .lang-dropdown-menu {
  display: block;
}

.lang-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  color: #e2e8f0;
  font-size: 0.825rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.lang-dropdown-link:hover {
  background: rgba(92, 186, 60, 0.18);
  color: #ffffff;
}

.lang-dropdown-link.active {
  background: rgba(92, 186, 60, 0.25);
  color: #5cba3c;
  font-weight: 700;
}

.lang-dropdown-link .lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-dropdown-link .lang-code {
  font-size: 0.675rem;
  opacity: 0.6;
  margin-left: auto;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
}

.lang-dropdown-link .lang-check-icon {
  font-size: 0.75rem;
  color: #5cba3c;
  margin-left: 0.25rem;
}

/* Mobile Sidebar Language Selector */
.sidebar-lang-selector {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.sidebar-lang-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.sidebar-lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.sidebar-lang-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.65rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.825rem;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sidebar-lang-pill:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.sidebar-lang-pill.active {
  background: #eef8eb;
  border-color: #5cba3c;
  color: #1f5f0b;
  font-weight: 700;
}

.sidebar-lang-pill .pill-flag {
  font-size: 1rem;
}

/* RTL Support for Persian (fa) and Arabic (ar) */
[dir="rtl"] {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .topbar-content {
  flex-direction: row-reverse;
}

[dir="rtl"] .navbar-inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .lang-dropdown-menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .lang-dropdown-link .lang-code {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .lang-dropdown-link .lang-check-icon {
  margin-left: 0;
  margin-right: 0.25rem;
}

@media (max-width: 1024px) {
  [dir="rtl"] .nav-menu {
    right: auto;
    left: 0;
    transform: translateX(-100%);
  }
  [dir="rtl"] .nav-menu.is-open {
    transform: translateX(0);
  }
}

[dir="rtl"] .dropdown-menu {
  left: auto;
  right: 0;
  text-align: right;
}

[dir="rtl"] .sidebar-dropdown-trigger {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .topbar-badge svg,
[dir="rtl"] .topbar-contact a svg {
  margin-right: 0;
  margin-left: 0.5rem;
}

[dir="rtl"] .sidebar-close {
  left: 1.25rem;
  right: auto;
}

[dir="rtl"] .nav-icon-mobile {
  margin-right: 0;
  margin-left: 0.85rem;
}

[dir="rtl"] .dropdown-item i {
  margin-right: 0;
  margin-left: 0.75rem;
}

/* ==========================================================================
   TIR Homepage Sections: Calculator, Corridors, Pillars, Fleet & FAQ
   ========================================================================== */

/* 1. TIR Freight Rate & Transit Time Calculator Section */
.tir-calc-section {
  background: linear-gradient(135deg, #091b3e 0%, #11235a 50%, #0c2b54 100%);
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.tir-calc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(92, 186, 60, 0.12) 0%, transparent 50%),
              radial-gradient(circle at bottom left, rgba(17, 35, 90, 0.4) 0%, transparent 60%);
  pointer-events: none;
}
.tir-calc-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}
.tir-calc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(92, 186, 60, 0.2);
  color: #5cba3c;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(92, 186, 60, 0.4);
  margin-bottom: 1rem;
}
.tir-calc-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.tir-calc-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
}
.tir-calc-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}
.tir-calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.tir-calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.tir-calc-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tir-calc-label i {
  color: #5cba3c;
  font-size: 0.85rem;
}
.tir-calc-input,
.tir-calc-select,
.tir-calc-textarea {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.925rem;
  width: 100%;
  transition: all 0.2s ease;
  outline: none;
}
.tir-calc-input:focus,
.tir-calc-select:focus,
.tir-calc-textarea:focus {
  border-color: #5cba3c;
  box-shadow: 0 0 0 3px rgba(92, 186, 60, 0.25);
  background: rgba(15, 23, 42, 0.9);
}
.tir-calc-select option {
  background: #0f172a;
  color: #ffffff;
}
.tir-calc-radio-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem 0;
}
.tir-calc-radio-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: #cbd5e1;
  cursor: pointer;
}
.tir-calc-radio-label input[type="radio"] {
  accent-color: #5cba3c;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Transit Output Estimator Bar */
.tir-estimate-output-box {
  background: rgba(92, 186, 60, 0.12);
  border: 1px solid rgba(92, 186, 60, 0.35);
  border-radius: 0.75rem;
  padding: 1.25rem 1.75rem;
  margin: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.tir-estimate-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tir-estimate-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #5cba3c;
  color: #0d1b3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.tir-estimate-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a7f3d0;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.tir-estimate-corridor-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}
.tir-estimate-days-box {
  text-align: right;
}
.tir-estimate-days-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #5cba3c;
  line-height: 1;
}
.tir-estimate-days-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  text-transform: uppercase;
  font-weight: 600;
}
.tir-calc-submit-btn {
  background: #5cba3c;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 10px 20px -5px rgba(92, 186, 60, 0.4);
}
.tir-calc-submit-btn:hover {
  background: #4fa632;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -5px rgba(92, 186, 60, 0.5);
}
.tir-calc-submit-btn i {
  transition: transform 0.2s ease;
}
.tir-calc-submit-btn:hover i {
  transform: translateX(4px);
}
.calc-msg-box {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 6px;
  display: none;
  font-size: 0.9rem;
  text-align: center;
}
.calc-msg-box.success {
  display: block;
  background: rgba(92, 186, 60, 0.2);
  border: 1px solid #5cba3c;
  color: #a7f3d0;
}
.calc-msg-box.error {
  display: block;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #fca5a5;
}

/* 2. Strategic Cross-Border Corridors Grid */
.tir-corridors-section {
  padding: 5rem 0;
  background: #f8fafc;
}
.tir-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}
.tir-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(17, 35, 90, 0.08);
  color: #11235a;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.tir-section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0e2b45;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.tir-section-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}
.tir-corridors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.tir-corridor-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid #11235a;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tir-corridor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(17, 35, 90, 0.1), 0 10px 10px -5px rgba(17, 35, 90, 0.04);
  border-top-color: #5cba3c;
}
.corridor-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.corridor-flag-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.4rem;
}
.corridor-transit-pill {
  background: #eef8eb;
  color: #1f5f0b;
  border: 1px solid rgba(92, 186, 60, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.corridor-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0e2b45;
  margin-bottom: 0.65rem;
}
.corridor-route-steps {
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.5;
  border-left: 3px solid #5cba3c;
}
.corridor-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.corridor-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
}
.corridor-meta-item i {
  color: #5cba3c;
  font-size: 0.8rem;
}
.corridor-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 0.5rem;
  background: #11235a;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: auto;
}
.corridor-cta-btn:hover {
  background: #5cba3c;
  color: #ffffff;
}

/* 3. The 5 Pillars of TIR Convention */
.tir-pillars-section {
  padding: 5rem 0;
  background: #ffffff;
}
.tir-pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.tir-pillar-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.tir-pillar-card:hover {
  background: #ffffff;
  border-color: #5cba3c;
  transform: translateY(-6px);
  box-shadow: 0 15px 30px -10px rgba(92, 186, 60, 0.15);
}
.pillar-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(92, 186, 60, 0.35);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pillar-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #11235a;
  color: #5cba3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 1rem;
  transition: all 0.25s ease;
}
.tir-pillar-card:hover .pillar-icon-box {
  background: #5cba3c;
  color: #ffffff;
}
.pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0e2b45;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.pillar-desc {
  font-size: 0.825rem;
  color: #64748b;
  line-height: 1.55;
}

/* 4. Certified Fleet & Infrastructure Showcase */
.tir-fleet-section {
  padding: 5rem 0;
  background: #f1f5f9;
}
.tir-fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.tir-fleet-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.tir-fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.fleet-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tir-fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.06);
}
.fleet-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(17, 35, 90, 0.85);
  color: #ffffff;
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fleet-content {
  padding: 1.5rem;
}
.fleet-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0e2b45;
  margin-bottom: 0.5rem;
}
.fleet-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.fleet-specs {
  border-top: 1px solid #f1f5f9;
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.fleet-spec-item {
  font-size: 0.775rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.fleet-spec-item i {
  color: #5cba3c;
}

/* 5. Frequently Asked Questions (FAQ) */
.tir-faq-section {
  padding: 5rem 0;
  background: #ffffff;
}
.tir-faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.tir-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.25s ease;
  background: #ffffff;
}
.tir-faq-item.active {
  border-color: #5cba3c;
  box-shadow: 0 4px 12px rgba(92, 186, 60, 0.1);
}
.tir-faq-question {
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0e2b45;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: background 0.2s ease;
}
.tir-faq-item.active .tir-faq-question {
  background: #ffffff;
  color: #11235a;
}
.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #11235a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.tir-faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: #5cba3c;
  color: #ffffff;
}
.tir-faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.25s ease;
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.7;
}
.tir-faq-item.active .tir-faq-answer {
  padding: 1rem 1.5rem 1.5rem;
  max-height: 500px;
  transition: max-height 0.4s ease-in, padding 0.25s ease;
}

/* RTL Adjustments for Homepage TIR Sections */
[dir="rtl"] .tir-calc-label i,
[dir="rtl"] .corridor-meta-item i,
[dir="rtl"] .fleet-spec-item i {
  margin-right: 0;
  margin-left: 0.4rem;
}
[dir="rtl"] .corridor-route-steps {
  border-left: none;
  border-right: 3px solid #5cba3c;
}
[dir="rtl"] .fleet-badge {
  left: auto;
  right: 1rem;
}
[dir="rtl"] .tir-calc-submit-btn:hover i {
  transform: translateX(-4px);
}
[dir="rtl"] .tir-estimate-days-box {
  text-align: left;
}

/* Responsive Rules for New Sections */
@media (max-width: 1024px) {
  .tir-calc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tir-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tir-fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tir-calc-title {
    font-size: 1.85rem;
  }
  .tir-calc-card {
    padding: 1.5rem;
  }
  .tir-calc-grid {
    grid-template-columns: 1fr;
  }
  .tir-corridors-grid {
    grid-template-columns: 1fr;
  }
  .tir-pillars-grid {
    grid-template-columns: 1fr;
  }
  .tir-fleet-grid {
    grid-template-columns: 1fr;
  }
  .tir-estimate-output-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .tir-estimate-days-box {
    text-align: left;
  }
  [dir="rtl"] .tir-estimate-days-box {
    text-align: right;
  }
}

/* ==========================================================================
   Sophisticated Glass Theme — Homepage Refinement
   ========================================================================== */
.pearl-home {
  --ph-navy: #061923;
  --ph-navy-soft: #102d38;
  --ph-green: #31c39e;
  --ph-green-dark: #13866e;
  --ph-aqua: #62ddc0;
  --ph-gold: #d4a85f;
  --ph-ink: #132c35;
  --ph-muted: #667a80;
  --ph-line: rgba(56, 82, 88, 0.16);
  --ph-mist: #edf2f0;
  --ph-white: #f8faf9;
  background: #f3f6f5;
}
/* Clean header that sits above—not on top of—the hero */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1002;
  min-height: 40px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #071923;
  background-image: radial-gradient(circle at 1px 1px, rgba(98, 221, 192, 0.1) 1px, transparent 0);
  background-size: 22px 22px;
  color: rgba(255, 255, 255, 0.76);
}

.topbar-content {
  min-height: 40px;
}

.navbar {
  position: sticky;
  top: 40px;
  z-index: 1001;
  border: 0;
  border-bottom: 1px solid rgba(98, 221, 192, 0.15);
  background-color: rgba(8, 29, 39, 0.97);
  background-image:
    linear-gradient(90deg, rgba(8, 29, 39, 0.98), rgba(10, 38, 47, 0.96)),
    radial-gradient(circle at 1px 1px, rgba(98, 221, 192, 0.08) 1px, transparent 0);
  background-size: auto, 24px 24px;
  box-shadow: 0 12px 34px rgba(4, 18, 25, 0.18);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.navbar > .container {
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.navbar-inner {
  height: 82px;
}

.navbar-brand img {
  padding: 6px 11px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.navbar .nav-link {
  color: rgba(244, 251, 248, 0.82) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #62ddc0 !important;
}

.navbar .nav-link::after {
  background: linear-gradient(90deg, #31c39e, #62ddc0);
}

.navbar .nav-item-cta .btn-secondary,
.navbar .btn-secondary {
  border: 1px solid rgba(98, 221, 192, 0.45);
  background: linear-gradient(135deg, #3bd0aa, #1ead88);
  color: #06231d !important;
  box-shadow: 0 10px 24px rgba(25, 173, 136, 0.18);
  backdrop-filter: none;
}

.navbar .nav-item-cta .btn-secondary:hover,
.navbar .btn-secondary:hover {
  border-color: #7be9cf;
  background: linear-gradient(135deg, #62ddc0, #31c39e);
  color: #06231d !important;
}

.topbar-badge {
  border-color: rgba(98, 221, 192, 0.46);
  background: rgba(49, 195, 158, 0.17);
  color: #e8fff8;
}

.topbar-contact a svg,
.topbar-contact a:hover svg {
  color: #62ddc0;
}

.lang-switcher-btn {
  border-color: rgba(98, 221, 192, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.lang-switcher-btn:hover {
  border-color: rgba(98, 221, 192, 0.62);
  background: rgba(49, 195, 158, 0.12);
}

.lang-dropdown-menu {
  border-color: rgba(98, 221, 192, 0.18);
  background: rgba(7, 25, 35, 0.98);
}

.lang-dropdown-link,
.lang-dropdown-link:visited {
  color: rgba(240, 249, 245, 0.8);
}

.lang-dropdown-link:hover,
.lang-dropdown-link.active {
  background: rgba(49, 195, 158, 0.14);
  color: #62ddc0;
}

@media (min-width: 1025px) {
  .navbar .dropdown-menu {
    top: calc(100% - 3px);
    min-width: 330px;
    padding: 8px;
    border: 1px solid rgba(98, 221, 192, 0.18);
    border-radius: 14px;
    background: rgba(7, 25, 35, 0.98);
    box-shadow: 0 24px 60px rgba(2, 14, 20, 0.34);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
  }

  .navbar .dropdown-item,
  .navbar .dropdown-item:link,
  .navbar .dropdown-item:visited {
    display: flex;
    align-items: center;
    gap: 11px;
    width: auto;
    margin: 2px 0;
    padding: 11px 13px !important;
    border: 0;
    border-inline-start: 3px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: rgba(235, 246, 242, 0.76) !important;
  }

  .navbar .dropdown-item i {
    width: 18px;
    flex: 0 0 18px;
    color: #62ddc0;
    text-align: center;
  }

  .navbar .dropdown-item:hover,
  .navbar .dropdown-item:focus-visible,
  .navbar .dropdown-item.active {
    padding: 11px 13px !important;
    border-inline-start-color: #31c39e;
    background: rgba(49, 195, 158, 0.13);
    color: #ffffff !important;
  }

  .navbar .dropdown-overview-item,
  .navbar .dropdown-overview-item:visited {
    margin-bottom: 6px;
    padding-bottom: 13px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #62ddc0 !important;
    font-weight: 700 !important;
  }
}

/* Hero: layered photography and frosted content */
.pearl-home .ph-hero,
.pearl-home .ph-hero-slider,
.pearl-home .ph-hero-slide,
.pearl-home .ph-hero-grid {
  min-height: 720px;
}

.pearl-home .ph-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 17, 24, 0.86) 0%, rgba(5, 23, 31, 0.62) 48%, rgba(4, 20, 28, 0.18) 78%, rgba(4, 18, 26, 0.34) 100%),
    linear-gradient(0deg, rgba(4, 19, 27, 0.58), transparent 46%);
}

.pearl-home .ph-hero-background {
  filter: saturate(0.72) contrast(1.05) brightness(0.92);
}

.pearl-home .ph-hero-grid {
  padding: 68px 0 86px;
}

.pearl-home .ph-hero-grid.has-media {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 44px;
}

.pearl-home .ph-hero-content {
  max-width: 680px;
  padding: 34px 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(6, 26, 35, 0.66), rgba(8, 34, 43, 0.3));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}

.pearl-home .ph-hero-title {
  max-width: 650px;
  font-size: clamp(2.65rem, 3.45vw, 3.85rem) !important;
  letter-spacing: -0.044em !important;
  line-height: 1.02 !important;
  white-space: normal;
}

.pearl-home .ph-eyebrow,
.pearl-home .ph-eyebrow-light,
.pearl-home .ph-service-kicker,
.pearl-home .ph-cta-kicker {
  color: #159b7d;
}

.pearl-home .ph-eyebrow-light {
  color: #86efd5;
}

.pearl-home .ph-eyebrow-dot,
.pearl-home .ph-live-dot,
.pearl-home .ph-planner-status i {
  background: #42d1ad;
  box-shadow: 0 0 0 5px rgba(49, 195, 158, 0.18);
}

.pearl-home .ph-button {
  min-height: 54px;
  border-radius: 12px;
}

.pearl-home .ph-button-primary {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #62ddc0, #24b990);
  color: #0b252c;
  box-shadow: 0 14px 38px rgba(21, 160, 126, 0.26);
}

.pearl-home .ph-button-primary:hover {
  background: linear-gradient(135deg, #7be9cf, #35caa2);
  color: #0b252c;
  box-shadow: 0 18px 44px rgba(21, 160, 126, 0.34);
}

.pearl-home .ph-button-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.pearl-home .ph-hero-assurances i {
  background: rgba(168, 189, 178, 0.16);
  color: #d9e6e0;
}

.pearl-home .ph-hero-media {
  overflow: visible;
  min-height: 470px;
  border-color: rgba(255, 255, 255, 0.19);
  border-radius: 24px;
  background: rgba(7, 28, 36, 0.22);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.pearl-home .ph-hero-media::before {
  border-radius: inherit;
  pointer-events: none;
}

.pearl-home .ph-hero-media img {
  width: 100%;
  height: 470px;
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
}

.pearl-home .ph-media-label,
.pearl-home .ph-slider-arrow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(8, 27, 36, 0.46);
  backdrop-filter: blur(15px);
}

.pearl-home .ph-slider-dot.active,
.pearl-home .ph-slider-arrow:hover {
  background: #4bd5b2;
  color: #0b252c;
}

/* Standalone metrics band */
.pearl-home .ph-proof {
  margin-top: 0;
  padding: 0;
  border-top: 1px solid rgba(98, 221, 192, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(105deg, #071923, #0d3039);
}

.pearl-home .ph-proof-grid {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.pearl-home .ph-proof-intro,
.pearl-home .ph-proof-item {
  min-height: 104px;
  padding-block: 24px;
  border-color: rgba(255, 255, 255, 0.12);
}

.pearl-home .ph-proof-intro {
  color: #ffffff;
}

.pearl-home .ph-proof-intro i {
  color: #d4a85f;
}

.pearl-home .ph-proof-item strong {
  color: #62ddc0;
}

.pearl-home .ph-proof-item span {
  color: rgba(231, 242, 238, 0.66);
}

/* Image-led services with glass captions */
.pearl-home .ph-services-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(49, 195, 158, 0.2), transparent 30%),
    radial-gradient(circle at 8% 84%, rgba(212, 168, 95, 0.1), transparent 24%),
    linear-gradient(180deg, #f5f8f7, #eaf0ee);
}

.pearl-home .ph-service-card {
  overflow: hidden;
  justify-content: flex-end;
  padding: 14px;
  border-color: rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  background: #16313a;
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(16, 41, 47, 0.12);
}

.pearl-home .ph-service-card:hover {
  border-color: rgba(190, 210, 201, 0.74);
  color: #ffffff;
  box-shadow: 0 30px 72px rgba(14, 38, 45, 0.2);
}

.pearl-home .ph-service-featured {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.pearl-home .ph-service-image-card {
  min-height: 330px;
}

.pearl-home .ph-service-image-card .ph-service-photo,
.pearl-home .ph-service-featured .ph-service-photo {
  filter: saturate(0.9) contrast(1.03) brightness(1.02);
}

.pearl-home .ph-service-card:hover .ph-service-photo {
  transform: scale(1.045);
}

.pearl-home .ph-service-shade {
  background: linear-gradient(0deg, rgba(4, 20, 28, 0.76) 0%, rgba(5, 24, 32, 0.14) 47%, transparent 72%);
}

.pearl-home .ph-service-card-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  width: 100%;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(6, 26, 34, 0.68), rgba(10, 38, 47, 0.38));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(7px) saturate(118%);
  -webkit-backdrop-filter: blur(7px) saturate(118%);
}

.pearl-home .ph-service-icon,
.pearl-home .ph-service-featured .ph-service-icon {
  grid-column: 1;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(235, 243, 239, 0.12);
  color: #78e4c9;
  backdrop-filter: blur(10px);
}

.pearl-home .ph-service-card h3,
.pearl-home .ph-service-featured h3 {
  grid-column: 2;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 1.16rem !important;
}

.pearl-home .ph-service-card p,
.pearl-home .ph-service-featured p {
  display: -webkit-box;
  grid-column: 1 / -1;
  overflow: hidden;
  margin: 12px 0 14px !important;
  color: rgba(236, 244, 241, 0.72) !important;
  font-size: 0.83rem !important;
  line-height: 1.48 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pearl-home .ph-service-featured .ph-service-kicker {
  grid-column: 2;
  margin: 0 0 4px;
}

.pearl-home .ph-service-featured .ph-service-icon {
  grid-row: 1 / 3;
}

.pearl-home .ph-service-featured h3 {
  grid-row: 2;
  font-size: 1.55rem !important;
}

.pearl-home .ph-service-link,
.pearl-home .ph-service-featured .ph-service-link {
  grid-column: 1 / -1;
  padding-top: 12px;
  border-top-color: rgba(255, 255, 255, 0.15);
  color: #edf4f1;
}

.pearl-home .ph-service-link i {
  color: #62ddc0;
}

/* Dark translucent route planner */
.pearl-home .ph-network-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(49, 195, 158, 0.22), transparent 29%),
    radial-gradient(circle at 92% 82%, rgba(212, 168, 95, 0.1), transparent 24%),
    linear-gradient(135deg, #061923 0%, #0d2934 62%, #163640 100%);
}

.pearl-home .ph-route-countries i,
.pearl-home .ph-route-tag i {
  color: #62ddc0;
}

.pearl-home .ph-route-tag {
  border-color: rgba(98, 221, 192, 0.34);
  background: rgba(49, 195, 158, 0.13);
  color: #ddfff6;
}

.pearl-home .ph-route-planner {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(12, 39, 49, 0.72), rgba(7, 28, 37, 0.48));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}

.pearl-home .ph-planner-topline {
  color: #c5d5ce;
}

.pearl-home .ph-planner-status,
.pearl-home .ph-route-planner > p,
.pearl-home .ph-planner-corridor {
  color: rgba(225, 237, 232, 0.64) !important;
}

.pearl-home .ph-route-planner h3,
.pearl-home .ph-planner-fields label {
  color: #ffffff !important;
}

.pearl-home .ph-planner-fields input,
.pearl-home .ph-planner-fields select {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #eef5f2;
}

.pearl-home .ph-planner-fields input::placeholder {
  color: rgba(231, 240, 236, 0.42);
}

.pearl-home .ph-planner-fields input[readonly] {
  color: rgba(231, 240, 236, 0.54);
}

.pearl-home .ph-planner-fields select option {
  background: #102d38;
  color: #ffffff;
}

.pearl-home .ph-planner-result {
  border: 1px solid rgba(98, 221, 192, 0.22);
  background: rgba(49, 195, 158, 0.13);
}

.pearl-home .ph-planner-result > div > span,
.pearl-home .ph-planner-result strong,
.pearl-home .ph-planner-result > i {
  color: #d9e5e0;
}

/* TIR standards become a light glass ribbon */
.pearl-home .ph-standards-section {
  padding: 74px 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(130, 158, 149, 0.13), transparent 22%),
    #e9efed;
}

.pearl-home .ph-standards-grid {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 55px rgba(29, 57, 61, 0.08);
  backdrop-filter: blur(16px);
}

.pearl-home .ph-standards-grid > div {
  border-color: rgba(60, 86, 90, 0.12);
}

/* About imagery and glass assurance card */
.pearl-home .ph-about-section {
  background: linear-gradient(180deg, #f7f9f8, #eef3f1);
}

.pearl-home .ph-about-visual::before {
  border-color: #829c92;
  opacity: 0.55;
}

.pearl-home .ph-about-visual img {
  border-radius: 24px 24px 78px 24px;
  filter: saturate(0.76) contrast(1.03);
  box-shadow: 0 32px 80px rgba(17, 43, 49, 0.18);
}

.pearl-home .ph-about-badge {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(8, 32, 41, 0.72), rgba(12, 43, 52, 0.46));
  box-shadow: 0 24px 56px rgba(8, 28, 36, 0.28);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.pearl-home .ph-about-badge > i {
  color: #62ddc0;
}

.pearl-home .ph-benefit > span {
  border: 1px solid rgba(21, 155, 125, 0.2);
  border-radius: 13px;
  background: rgba(49, 195, 158, 0.14);
  color: #13866e;
}

.pearl-home .ph-equipment-tags span {
  border-color: rgba(83, 111, 112, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

/* Fleet and infrastructure gallery */
.pearl-home .ph-gallery-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(49, 195, 158, 0.2), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(212, 168, 95, 0.11), transparent 24%),
    #e8eeec;
}

.pearl-home .ph-gallery-heading {
  margin-bottom: 46px;
}

.pearl-home .ph-gallery-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr 0.86fr;
  grid-template-rows: repeat(2, 310px);
  gap: 18px;
}

.pearl-home .ph-gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  background: #18323b;
  box-shadow: 0 22px 58px rgba(18, 44, 50, 0.13);
}

.pearl-home .ph-gallery-card-tall {
  grid-row: 1 / 3;
}

.pearl-home .ph-gallery-card-wide {
  grid-column: 2 / 4;
}

.pearl-home .ph-gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 20, 27, 0.74), transparent 55%);
  pointer-events: none;
}

.pearl-home .ph-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.pearl-home .ph-gallery-card:hover img {
  transform: scale(1.045);
  filter: saturate(0.9) contrast(1.03);
}

.pearl-home .ph-gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(7, 28, 36, 0.52);
  color: #ffffff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
}

.pearl-home .ph-gallery-card figcaption > span {
  color: #e4bd78;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
}

.pearl-home .ph-gallery-card figcaption strong,
.pearl-home .ph-gallery-card figcaption small {
  display: block;
}

.pearl-home .ph-gallery-card figcaption strong {
  font-family: var(--font-heading);
  font-size: 0.86rem;
}

.pearl-home .ph-gallery-card figcaption small {
  margin-top: 3px;
  color: rgba(235, 243, 239, 0.58);
  font-size: 0.7rem;
}

/* Process cards float over transport photography */
.pearl-home .ph-process-section {
  position: relative;
  border: 0;
  background:
    linear-gradient(rgba(4, 20, 28, 0.8), rgba(5, 24, 32, 0.88)),
    url('/wp-content/uploads/2026/07/ChatGPT-Image-Jul-18-2026-02_00_30-PM.png') center / cover no-repeat;
}

.pearl-home .ph-process-section .ph-heading-centred h2 {
  color: #ffffff !important;
}

.pearl-home .ph-process-section .ph-heading-centred > p {
  color: rgba(230, 239, 235, 0.68) !important;
}

.pearl-home .ph-process-card {
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(12, 39, 48, 0.66), rgba(12, 35, 44, 0.38));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(17px) saturate(120%);
  -webkit-backdrop-filter: blur(17px) saturate(120%);
}

.pearl-home .ph-process-card::after {
  z-index: 2;
  inset-inline: 18px;
  width: auto;
  background: linear-gradient(90deg, #31c39e, #d4a85f);
  border-radius: 0 0 999px 999px;
  opacity: 0;
  transform: scaleX(0.08);
  transform-origin: left center;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms ease;
}

.pearl-home .ph-process-card:hover::after {
  width: auto;
  opacity: 1;
  transform: scaleX(1);
}

[dir="rtl"] .pearl-home .ph-process-card::after {
  transform-origin: right center;
}

@media (prefers-reduced-motion: reduce) {
  .pearl-home .ph-process-card::after {
    transition: none;
  }
}

.pearl-home .ph-process-number {
  color: rgba(255, 255, 255, 0.18);
}

.pearl-home .ph-process-icon {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #62ddc0;
}

.pearl-home .ph-process-card h3 {
  color: #ffffff !important;
}

.pearl-home .ph-process-card p {
  color: rgba(231, 240, 236, 0.66) !important;
}

/* FAQ and close */
.pearl-home .ph-faq-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(49, 195, 158, 0.17), transparent 27%),
    radial-gradient(circle at 92% 88%, rgba(212, 168, 95, 0.09), transparent 22%),
    #f0f4f2;
}

.pearl-home .ph-faq-list {
  overflow: hidden;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 62px rgba(20, 48, 53, 0.08);
  backdrop-filter: blur(15px);
}

.pearl-home .ph-faq-icon,
.pearl-home .ph-faq-item.active .ph-faq-icon {
  background: rgba(49, 195, 158, 0.16);
  color: #13866e;
}

.pearl-home .ph-final-cta {
  position: relative;
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 26, 0.88), rgba(6, 26, 34, 0.68)),
    url('/wp-content/uploads/2022/09/pexels-pixabay-262353-1.jpg') center / cover no-repeat;
}

.pearl-home .ph-final-cta-inner {
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(6, 26, 35, 0.66), rgba(10, 38, 47, 0.34));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

/* Homepage footer follows the restrained palette */
.pearl-home-page .footer {
  border-top-color: #31c39e;
  background: #071923;
}

.pearl-home-page .footer-title::after {
  background: linear-gradient(90deg, #31c39e, #d4a85f);
}

.pearl-home-page .footer-contact svg,
.pearl-home-page .footer-links a:hover {
  color: #62ddc0;
}

@media (max-width: 1024px) {
  .topbar {
    display: none;
  }

  .navbar {
    top: 0;
    padding-top: 0;
  }

  .navbar > .container {
    width: 100%;
    padding: 0 16px;
    border-radius: 0;
  }

  .mobile-toggle {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
  }

  .hamburger-line {
    background: #ffffff;
  }

  .nav-menu .nav-link {
    color: var(--gray-700) !important;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: #13866e !important;
  }

  .nav-menu .dropdown-item,
  .nav-menu .dropdown-item:link,
  .nav-menu .dropdown-item:visited {
    color: var(--gray-700) !important;
  }

  .nav-menu .dropdown-item:hover,
  .nav-menu .dropdown-item.active {
    border-left-color: #31c39e;
    background-color: rgba(49, 195, 158, 0.1) !important;
    color: #13866e !important;
  }

  .nav-menu .dropdown-item i,
  .nav-menu .dropdown-item:hover i,
  .nav-menu .dropdown-item.active i,
  .nav-menu .dropdown-overview-item i {
    color: #159b7d !important;
  }

  .navbar .sidebar-quote-btn,
  .navbar .sidebar-quote-btn:hover {
    border-color: #183a43;
    background: #183a43;
    color: #ffffff !important;
  }

  .pearl-home .ph-hero-grid {
    padding-top: 56px;
    padding-bottom: 76px;
  }

  .pearl-home .ph-hero-assurances {
    display: none;
  }

  .pearl-home .ph-hero-media,
  .pearl-home .ph-hero-media img {
    min-height: 410px;
    height: 410px;
  }

  .pearl-home .ph-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 360px);
  }

  .pearl-home .ph-gallery-card-tall,
  .pearl-home .ph-gallery-card-wide {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .pearl-home .ph-hero-content {
    max-width: 700px;
  }

  /* The glass-theme desktop columns are declared later than the original
     responsive rules. Reassert a single column once the side image is hidden
     so it cannot keep a 360px ghost column and crush the slide copy. */
  .pearl-home .ph-hero-grid.has-media {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .pearl-home .ph-hero-content {
    width: 100%;
    min-width: 0;
  }

  .pearl-home .ph-gallery-grid {
    grid-template-rows: repeat(2, 320px);
  }
}

@media (max-width: 640px) {
  .navbar-brand img {
    max-height: 50px !important;
  }

  .pearl-home .ph-hero,
  .pearl-home .ph-hero-slider,
  .pearl-home .ph-hero-slide,
  .pearl-home .ph-hero-grid {
    min-height: 660px;
  }

  .pearl-home .ph-hero-grid {
    padding: 54px 0 76px;
  }

  .pearl-home .ph-hero-content {
    padding: 27px 22px;
    border-radius: 19px;
    backdrop-filter: blur(14px) saturate(120%);
  }

  .pearl-home .ph-hero-title {
    font-size: clamp(2rem, 9.5vw, 2.8rem) !important;
  }

  .pearl-home .ph-hero-slider {
    touch-action: pan-y;
  }

  .pearl-home .ph-slider-controls {
    right: auto;
    bottom: 16px;
    left: 50%;
    gap: 10px;
    transform: translateX(-50%);
  }

  .pearl-home .ph-slider-arrow {
    display: grid;
    width: 42px;
    height: 42px;
  }

  .pearl-home .ph-slider-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
  }

  .pearl-home .ph-slider-dot.active {
    width: 28px;
  }

  .pearl-home .ph-proof {
    margin-top: 0;
  }

  .pearl-home .ph-proof-grid {
    border-radius: 16px;
  }

  .pearl-home .ph-service-card,
  .pearl-home .ph-service-featured {
    min-height: 420px;
    padding: 12px;
    border-radius: 18px;
  }

  .pearl-home .ph-service-card-content {
    padding: 16px 17px;
    border-radius: 14px;
  }

  .pearl-home .ph-route-planner {
    border-radius: 18px;
  }

  .pearl-home .ph-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .pearl-home .ph-gallery-card,
  .pearl-home .ph-gallery-card-tall,
  .pearl-home .ph-gallery-card-wide {
    grid-row: auto;
    grid-column: auto;
    height: 390px;
    border-radius: 18px;
  }

  .pearl-home .ph-gallery-card-tall {
    height: 500px;
  }

  .pearl-home .ph-faq-list {
    padding: 0 18px;
    border-radius: 16px;
  }

  .pearl-home .ph-final-cta-inner {
    padding: 28px 22px;
    border-radius: 18px;
  }
}

/* ==========================================================================
   Site-wide Pearl Theme — Midnight, Emerald, Pearl & Gold
   ========================================================================== */
:root {
  --e-global-color-primary: #132c35;
  --e-global-color-secondary: #667a80;
  --e-global-color-text: #667a80;
  --e-global-color-accent: #31c39e;
  --e-global-color-1c80643: #159b7d;
  --e-global-color-e961206: #31c39e;
  --e-global-color-01ca064: #13866e;
  --e-global-color-76dbb94: #071923;
  --e-global-color-d014e21: #d4a85f;
}

body:not(.pearl-home-page) {
  background: #f3f6f5;
  color: #334d55;
}

body:not(.pearl-home-page) .site-content a:not(.btn):not(.card-btn):not(.corridor-cta-btn),
body:not(.pearl-home-page) .site-content a:not(.btn):not(.card-btn):not(.corridor-cta-btn):visited {
  color: #13866e;
}

body:not(.pearl-home-page) .site-content a:not(.btn):not(.card-btn):not(.corridor-cta-btn):hover {
  color: #0d6f5c;
}

.single-page-header,
.service-hero-banner,
.tir-calc-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(49, 195, 158, 0.22), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(212, 168, 95, 0.1), transparent 26%),
    linear-gradient(135deg, #071923 0%, #0d3039 62%, #16414b 100%) !important;
  border-bottom-color: #31c39e;
}

.service-hero-banner::before {
  background-image: radial-gradient(rgba(98, 221, 192, 0.13) 1px, transparent 1px);
  background-size: 24px 24px;
}

.service-breadcrumbs a,
.service-breadcrumbs a:visited {
  color: rgba(237, 248, 244, 0.78) !important;
}

.service-breadcrumbs a:hover,
.service-breadcrumbs .current,
.service-hero-tag {
  color: #62ddc0 !important;
}

.service-hero-tag {
  border-color: rgba(98, 221, 192, 0.36);
  background: rgba(49, 195, 158, 0.14);
}

.service-page-body,
.tir-corridors-section,
.tir-fleet-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(49, 195, 158, 0.1), transparent 24%),
    #f3f6f5;
}

.service-content-card,
.service-sidebar-card,
.service-feature-item,
.service-benefit-item,
.service-diagram-card,
.service-hub-card,
.tir-corridor-card,
.tir-pillar-card,
.tir-fleet-card,
.tir-faq-item {
  border-color: rgba(56, 82, 88, 0.14);
  box-shadow: 0 12px 34px rgba(13, 48, 57, 0.06);
}

.service-content-card h2,
.service-main-content h2,
.service-content-card h3,
.service-main-content h3,
.service-feature-item h4,
.service-benefit-item .benefit-text strong,
.service-diagram-card .diagram-header h4,
.service-sidebar-card h3.sidebar-title,
.services-hub-intro h2,
.service-hub-card h3,
.tir-section-title,
.corridor-name,
.pillar-title,
.fleet-title,
.tir-faq-question {
  color: #132c35 !important;
}

.service-content-card h2::before,
.service-main-content h2::before,
.service-sidebar-card h3.sidebar-title::after {
  background: linear-gradient(180deg, #31c39e, #62ddc0);
}

.service-lead-box {
  border-left-color: #31c39e;
  background: linear-gradient(135deg, rgba(49, 195, 158, 0.09), rgba(212, 168, 95, 0.05));
}

.service-feature-item:hover,
.service-benefit-item:hover,
.service-hub-card:hover,
.tir-pillar-card:hover,
.tir-faq-item.active {
  border-color: #31c39e;
  box-shadow: 0 16px 34px rgba(19, 134, 110, 0.11);
}

.service-feature-item .icon-circle,
.tir-section-badge {
  background: rgba(49, 195, 158, 0.13);
  color: #13866e;
}

.service-benefit-item .check-icon,
.service-hub-card .card-btn:hover,
.tir-calc-submit-btn,
.tir-estimate-icon,
.tir-faq-item.active .faq-toggle-icon {
  border-color: #31c39e;
  background: linear-gradient(135deg, #3bd0aa, #1ead88);
  color: #06231d;
}

.service-image-caption i,
.service-hub-card .card-features li i,
.corridor-meta-item i,
.fleet-spec-item i,
.tir-calc-label i,
.tir-estimate-days-num {
  color: #159b7d;
}

.service-nav-list a:hover {
  border-color: #31c39e;
  color: #132c35;
  box-shadow: 0 4px 12px rgba(19, 134, 110, 0.1);
}

.service-nav-list a.active,
.services-stats-strip,
.corridor-cta-btn,
.pillar-icon-box,
.fleet-badge {
  background: #0d3039;
  color: #ffffff;
}

.service-nav-list a.active svg,
.stat-item .stat-num,
.pillar-icon-box,
.tir-calc-badge {
  color: #62ddc0;
}

.service-hub-card .card-badge {
  background: rgba(7, 25, 35, 0.88);
}

.service-hub-card .card-btn {
  border-color: rgba(56, 82, 88, 0.16);
  background: #edf3f1;
  color: #132c35;
}

.services-stats-strip {
  border: 1px solid rgba(98, 221, 192, 0.18);
  background:
    radial-gradient(circle at 90% 10%, rgba(49, 195, 158, 0.18), transparent 28%),
    #0d3039;
}

.services-hub-page .service-page-body .container > div[style*="#11235a"] {
  background:
    radial-gradient(circle at 88% 12%, rgba(49, 195, 158, 0.18), transparent 28%),
    linear-gradient(135deg, #0d3039, #071923) !important;
  box-shadow: 0 18px 42px rgba(7, 25, 35, 0.2) !important;
}

.service-sidebar-card[style*="#11235a"] {
  background:
    radial-gradient(circle at 88% 12%, rgba(49, 195, 158, 0.18), transparent 28%),
    linear-gradient(145deg, #0d3039, #071923) !important;
}

.service-sidebar-card [style*="#5cba3c"] {
  color: #62ddc0 !important;
}

.service-sidebar-card [style*="rgba(92,186,60"] {
  background: rgba(49, 195, 158, 0.16) !important;
}

.service-sidebar-card[style*="border-left: 4px solid #5cba3c"] {
  border-left-color: #31c39e !important;
}

.service-sidebar-card [style*="#11235a"],
.service-main-content strong[style*="#11235a"] {
  color: #132c35 !important;
}

.service-lead-box[style*="#5cba3c"] {
  border-left-color: #31c39e !important;
}

.service-benefit-item[style*="#fe4c1c"] {
  border-left-color: #d4a85f !important;
}

.service-benefit-item .check-icon[style*="#fe4c1c"] {
  background: #d4a85f !important;
  color: #132c35 !important;
}

.corridor-transit-pill,
.tir-estimate-output-box {
  border-color: rgba(49, 195, 158, 0.32);
  background: rgba(49, 195, 158, 0.12);
  color: #13866e;
}

.tir-corridor-card {
  border-top-color: #132c35;
}

.tir-corridor-card:hover {
  border-top-color: #31c39e;
}

.corridor-route-steps {
  border-left-color: #31c39e;
  background: #edf3f1;
}

.corridor-cta-btn:hover,
.tir-pillar-card:hover .pillar-icon-box,
.tir-calc-submit-btn:hover {
  background: #159b7d;
  color: #ffffff;
}

.site-content .elementor-button,
.site-content button[type="submit"] {
  border-color: #31c39e !important;
  background: linear-gradient(135deg, #3bd0aa, #1ead88) !important;
  color: #06231d !important;
  box-shadow: 0 10px 24px rgba(21, 155, 125, 0.16);
}

.site-content .elementor-button:hover,
.site-content button[type="submit"]:hover {
  background: linear-gradient(135deg, #62ddc0, #31c39e) !important;
}

.site-content input:focus,
.site-content select:focus,
.site-content textarea:focus {
  border-color: #31c39e !important;
  box-shadow: 0 0 0 3px rgba(49, 195, 158, 0.16) !important;
}

/* Elementor-based About and Contact pages */
.elementor-134 .elementor-element-abt_hero,
.elementor-23 .elementor-element-cnt_hero {
  background:
    radial-gradient(circle at 86% 14%, rgba(49, 195, 158, 0.22), transparent 30%),
    linear-gradient(135deg, #071923, #0d3039 64%, #16414b) !important;
  border-bottom: 3px solid #31c39e;
}

.elementor-134 .elementor-element-abt_hero_badge .elementor-heading-title,
.elementor-134 .elementor-element-abt_story_eyebrow .elementor-heading-title,
.elementor-23 .elementor-element-cnt_badge .elementor-heading-title {
  color: #62ddc0 !important;
}

.elementor-134 .elementor-element-abt_hero_h1 .elementor-heading-title,
.elementor-23 .elementor-element-cnt_h1 .elementor-heading-title {
  color: #ffffff !important;
}

.elementor-134 .elementor-element-abt_story_h2 .elementor-heading-title,
.elementor-134 [style*="#082546"],
.elementor-23 [style*="#082546"] {
  color: #132c35 !important;
}

.elementor-134 [style*="#23439D"],
.elementor-23 [style*="#23439D"] {
  border-color: #31c39e !important;
  color: #13866e !important;
}

.elementor-134 [style*="rgba(35,67,157"],
.elementor-23 [style*="rgba(35,67,157"] {
  background: rgba(49, 195, 158, 0.12) !important;
}

.elementor-134 [style*="#fe4c1c"],
.elementor-23 [style*="#fe4c1c"] {
  border-color: #d4a85f !important;
  color: #b37f30 !important;
}

.elementor-134 [style*="rgba(254,76,28"],
.elementor-23 [style*="rgba(254,76,28"] {
  background: rgba(212, 168, 95, 0.13) !important;
}

.elementor-134 [style*="#16a085"] {
  border-color: #31c39e !important;
  color: #13866e !important;
}

.elementor-134 .elementor-element-abt_values_sec,
.elementor-23 .elementor-element-cnt_cards_sec,
.elementor-23 .elementor-element-cnt_main_sec {
  background: #f3f6f5 !important;
}

.world-time {
  background:
    radial-gradient(circle at top left, rgba(49, 195, 158, 0.2), transparent 35%),
    radial-gradient(circle at bottom right, rgba(212, 168, 95, 0.1), transparent 40%),
    #071923;
}

.world-time-country,
.world-time-clock-card:hover {
  border-color: #31c39e;
}

.world-time-country {
  color: #62ddc0;
}

.footer {
  border-top-color: #31c39e;
  background: #071923;
}

.footer-title::after {
  background: linear-gradient(90deg, #31c39e, #d4a85f);
}

.footer-contact svg,
.footer-links a:hover {
  color: #62ddc0;
}

@media (max-width: 1024px) {
  .sidebar-close,
  .nav-icon-mobile,
  .sidebar-dropdown-trigger,
  .sidebar-contact-link i,
  .sidebar-lang-title i {
    color: #159b7d;
  }

  .sidebar-lang-pill.active {
    border-color: #31c39e;
    background: rgba(49, 195, 158, 0.11);
    color: #13866e;
  }
}

/* ==========================================================================
   Floating Glassy WhatsApp Button
   ========================================================================== */
.whatsapp-glass-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  height: 56px;
  max-width: 56px;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.72);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: none !important;
  text-decoration: none !important;
  color: #ffffff !important;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  direction: ltr !important;
  transform: translateZ(0);
  transition: 
    max-width 0.45s cubic-bezier(0.34, 1.3, 0.64, 1),
    background 0.3s ease,
    transform 0.25s ease;
}

.whatsapp-glass-btn:hover,
.whatsapp-glass-btn:focus-visible {
  max-width: 250px;
  background: rgba(37, 211, 102, 0.88);
  box-shadow: none !important;
  transform: translateY(-2px);
  outline: none;
}

.whatsapp-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  min-width: 53px;
  flex-shrink: 0;
  color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.whatsapp-glass-btn:hover .whatsapp-icon-wrap,
.whatsapp-glass-btn:focus-visible .whatsapp-icon-wrap {
  transform: scale(1.08) rotate(6deg);
}

.whatsapp-icon-svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  filter: none !important;
}

.whatsapp-phone-label {
  white-space: nowrap;
  opacity: 0;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffffff;
  padding-right: 18px;
  padding-left: 2px;
  transform: translateX(10px);
  transition: 
    opacity 0.25s ease 0.08s,
    transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1) 0.05s;
  user-select: none;
  text-shadow: none !important;
  unicode-bidi: isolate;
  direction: ltr;
}

.whatsapp-glass-btn:hover .whatsapp-phone-label,
.whatsapp-glass-btn:focus-visible .whatsapp-phone-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-glass-btn:active {
  transform: translateY(0) scale(0.97);
}

@media (max-width: 768px) {
  .whatsapp-glass-btn {
    bottom: 20px;
    right: 20px;
    height: 52px;
    max-width: 52px;
  }
  .whatsapp-icon-wrap {
    width: 49px;
    height: 49px;
    min-width: 49px;
  }
  .whatsapp-icon-svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-glass-btn:hover,
  .whatsapp-glass-btn:focus-visible {
    max-width: 235px;
  }
  .whatsapp-phone-label {
    font-size: 13.5px;
    padding-right: 15px;
  }
}


