@font-face {
  font-family: 'Tajawal';
  src: url('../Tajawal/Tajawal-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../Tajawal/Tajawal-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../Tajawal/Tajawal-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../Tajawal/Tajawal-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-white: #FFFFFF;
  --color-navy: #1C2D42;
  --color-orange: #E06B24;
  --color-orange-hover: #B84F14;
  --color-gray: #F4F6F8;
  --color-text: #1A1A1A;
  --font-primary: 'Tajawal', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-white);
  color: var(--color-text);
  line-height: 1.8;
  /* Premium line height */
  direction: rtl;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

section {
  padding: 6rem 5%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-navy);
  margin-bottom: 1rem;
  font-weight: 800;
}

p {
  font-weight: 400;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--color-orange);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  /* Soft rounded contrast */
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 107, 36, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-orange);
  border: 2px solid var(--color-orange);
}

.btn-outline:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  color: var(--color-navy);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  /* Sharp corporate edge */
  transition: padding 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 5%;
  /* Compact sleek height */
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo img {
  height: 40px;
  /* Reduced for sleekness */
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-navy);
  letter-spacing: -0.5px;
}

.brand-title strong {
  font-weight: 800;
  color: var(--color-orange);
}

.brand-subtitle {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-navy);
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-navy);
  font-weight: 700;
  position: relative;
  font-size: 0.95rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-orange);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-toggle {
  color: var(--color-navy);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
}

.lang-toggle:hover {
  color: var(--color-orange);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-navy);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 500px;
  background-image: linear-gradient(rgba(28, 45, 66, 0.5), rgba(28, 45, 66, 0.5)), url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
}

.hero-content {
  max-width: 800px;
  color: var(--color-white);
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Brand Brief */
.brand-brief {
  background-color: var(--color-white);
  text-align: center;
}

.brand-brief-container {
  max-width: 900px;
  margin: 0 auto;
}

.brand-brief p {
  font-size: 1.2rem;
  color: var(--color-text);
}

/* Services Grid (Manual Scroll) */
.services {
  background-color: var(--color-gray);
  width: 100%;
  position: relative;
  box-sizing: border-box !important;
}

.services-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-navy);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.services-grid {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 2rem;
  overflow-x: hidden;
  direction: ltr;
  box-sizing: border-box !important;
}

.service-card {
  direction: rtl;
  box-sizing: border-box !important;
  flex: 0 0 350px;
  margin-right: 2rem;
  margin-left: 0;
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  position: relative;
}



.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-img-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-container img {
  transform: scale(1.1);
}

.service-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-orange);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(224, 107, 36, 0.4);
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--color-orange);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  color: var(--color-orange-hover);
}

/* Why Choose Us - Anti-AI Asymmetrical */
.why-choose-us {
  background-color: var(--color-white);
  overflow: hidden;
}

.why-choose-us-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose-us-img {
  position: relative;
}

.why-choose-us-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 80px 8px 80px;
  /* Custom unequal radii */
  box-shadow: -20px 20px 0 var(--color-gray);
  /* Floating off-grid shadow */
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.why-choose-us-img:hover img {
  transform: translate(5px, -5px);
}

.why-choose-us-content .section-title {
  text-align: right;
}

.why-choose-us-content .section-title::after {
  left: auto;
  right: 0;
  transform: none;
}

.feature-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 28px;
}

.feature-icon {
  background-color: rgba(224, 107, 36, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0;
}

.feature-text h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  /* Bold subtitles */
}

/* Stats & SVG Fixed 50/50 Section */
.stats-section {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray);
}

.stats-container {
  display: flex;
  flex-direction: row-reverse;
  /* Reverses the RTL default layout to swap left and right */
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.stats-visual,
.stats-grid {
  flex: 1;
  width: 100%;
}

.stats-visual {
  text-align: right;
}

.stats-visual img {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin-bottom: 2rem;
}

.stats-visual-title {
  font-size: 2rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.stats-visual p {
  color: var(--color-text);
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2x2 precise grid */
  gap: 2rem;
}

.metric-item {
  background-color: var(--color-white);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: right;
  transition: all 0.4s ease;
  will-change: transform, box-shadow;
  transform: translateZ(0);
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 240px;
  min-height: 140px;
  margin: 0 auto;
  width: 100%;
}

.metric-item:hover {
  transform: translateY(-8px) scale(1.02) translateZ(0);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--color-navy);
}

.metric-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(224, 107, 36, 0.05);
  color: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.metric-item .number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
  line-height: 1;
  letter-spacing: -1px;
}

.metric-item .label {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 400;
}

/* Footer */
.footer {
  background-color: #121d2b;
  color: var(--color-white);
  padding: 5rem 5% 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.footer-col h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-orange);
}

/* Custom Footer Logo Typography replacing image */
.footer-logo-text {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  display: block;
  letter-spacing: -1px;
}

.footer-logo-text span {
  color: var(--color-orange);
}

.footer-col p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
}

.social-links a:hover {
  background-color: var(--color-orange);
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '\f104';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--color-orange);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-orange);
  transform: translateX(-5px);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.contact-info i {
  color: var(--color-orange);
  margin-top: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  padding-bottom: 24px;
}

/* Strict Mobile Sizing & Padding Audit */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .why-choose-us-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 3rem;
  }

  .why-choose-us-img {
    order: -1;
    margin: 0 1rem;
  }

  .why-choose-us-content .section-title,
  .stats-visual {
    text-align: center;
  }

  .why-choose-us-content .section-title::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .stats-visual img {
    margin: 0 auto 2rem;
  }
}

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  section {
    padding: 4rem 24px;
    /* Fixed robust horizontal padding */
  }

  .hero {
    padding: 0 24px;
    background-position: center center;
    background-size: cover;
    min-height: 70vh;
  }

  .services-nav {
    display: none;
  }

  .services {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box !important;
  }

  .services-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 15px 2rem;
    gap: 15px;
    width: 100%;
    box-sizing: border-box !important;
    margin: 0;
  }

  .service-card {
    flex: 0 0 280px;
    margin-right: 0;
    margin-left: 0;
    scroll-snap-align: center;
    box-sizing: border-box !important;
    width: auto;
    max-width: 100%;
  }

  .stats-container {
    flex-direction: column-reverse;
  }

  .nav-container {
    padding: 0.5rem 24px;
  }

  .logo {
    gap: 0.5rem;
  }

  .logo img {
    height: 32px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  /* Strictly remove Request Quote and lang toggle */
  .nav-actions .btn,
  .nav-actions .lang-toggle {
    display: none !important;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 2rem 24px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  /* Drop text sizes significantly */
  h1 {
    font-size: 2.2rem !important;
    line-height: 1.3;
  }

  h2,
  .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 2rem;
  }

  h3 {
    font-size: 1.4rem !important;
  }

  h4 {
    font-size: 1.2rem !important;
  }

  p {
    font-size: 1rem !important;
  }

  .hero-content h1 {
    font-size: 2.2rem !important;
  }

  .hero-content p {
    font-size: 1rem !important;
  }

  .stats-grid {
    width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .metric-item {
    max-width: 100%;
    width: 100%;
    min-height: auto;
    box-sizing: border-box;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    /* maintain 2x2 if space permits */
  }
}

/* Premium Scroll Reveal Animation */
.invisible-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.visible-fade {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   Subpages — Shared Utilities & Luxury Patterns
   ============================================= */

.container {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-5xl {
  max-width: 64rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.w-full {
  width: 100%;
}

.h-80 {
  height: 20rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.page-container,
.container.mx-auto.max-w-5xl.px-6 {
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  width: 100%;
}

section.page-section,
.split-hero,
.pillars-section,
.operations-section,
.identity-strip,
.slim-hero,
.stats-badges,
.services-catalog {
  padding: 5rem 0;
}

.premium-hover,
.premium-card {
  transition: all 0.3s ease;
}

.premium-hover:hover,
.premium-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 40px rgba(28, 45, 66, 0.12);
}

.img-zoom-group .img-zoom-target {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-zoom-group:hover .img-zoom-target {
  transform: scale(1.05);
}

.subpage-section-header {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

.subpage-section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  inset-inline-start: 0;
  width: 48px;
  height: 2px;
  background: var(--color-orange);
  border-radius: 2px;
}

.subpage-section-header i {
  color: var(--color-orange);
}

/* ── Contact Page ── */

.hero-overlap-wrapper {
  position: relative;
  background: linear-gradient(180deg, #e8edf3 0%, #f4f6f9 45%, #ffffff 100%);
}

.hero-overlap-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(28, 45, 66, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.hero-overlap-wrapper>* {
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 2.5rem 0 7rem;
  min-height: clamp(400px, 48vh, 520px);
  background-image: linear-gradient(rgba(28, 45, 66, 0.55), rgba(28, 45, 66, 0.55)), url('../images/logistics-freight-management-storage-supply-concept.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.page-hero>.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 38vh, 400px);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 45, 66, 0.65) 0%, transparent 50%, rgba(28, 45, 66, 0.25) 100%);
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.95);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-contact-badge i {
  color: var(--color-orange);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--color-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  width: 100%;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  width: 100%;
}

.floating-contact-panel {
  position: relative;
  z-index: 10;
  margin-top: -6.5rem;
  padding: 4rem 0 5rem;
}

.floating-panel-inner {
  background: var(--color-white);
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(28, 45, 66, 0.12), 0 12px 32px rgba(28, 45, 66, 0.06);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

/* ── Contact Intro Panel ── */

.contact-intro-area {
  padding: 2.75rem 2.5rem;
  background: linear-gradient(160deg, var(--color-navy) 0%, #1a3348 55%, #243a52 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-intro-area::before {
  content: '';
  position: absolute;
  top: -80px;
  inset-inline-end: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(224, 107, 36, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-intro-area::after {
  content: '';
  position: absolute;
  bottom: -40px;
  inset-inline-start: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-intro-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.contact-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(224, 107, 36, 0.15);
  color: var(--color-orange);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(224, 107, 36, 0.25);
}

.contact-intro-header h2 {
  color: var(--color-white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.contact-intro-header p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.75;
}

.contact-quick-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-quick-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-quick-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(224, 107, 36, 0.4);
  transform: translateX(-4px);
}

.contact-quick-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  background: rgba(224, 107, 36, 0.15);
  color: var(--color-orange);
  transition: all 0.3s ease;
}

.contact-quick-link--whatsapp .contact-quick-link-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.contact-quick-link--email .contact-quick-link-icon {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
}

.contact-quick-link:hover .contact-quick-link-icon {
  background: var(--color-orange);
  color: var(--color-white);
}

.contact-quick-link--whatsapp:hover .contact-quick-link-icon {
  background: #25d366;
  color: var(--color-white);
}

.contact-quick-link--email:hover .contact-quick-link-icon {
  background: #8b5cf6;
  color: var(--color-white);
}

.contact-quick-link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-quick-link-text strong {
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-quick-link-text span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.contact-quick-link-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.contact-quick-link:hover .contact-quick-link-arrow {
  color: var(--color-orange);
  transform: translateX(-3px);
}

.contact-intro-note {
  position: relative;
  z-index: 1;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-intro-note i {
  color: var(--color-orange);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Contact Cards ── */

.contact-cards-area {
  padding: 2.75rem 2rem;
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  display: flex;
  flex-direction: column;
}

.contact-cards-header {
  margin-bottom: 1.75rem;
}

.contact-cards-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(28, 45, 66, 0.06);
  color: var(--color-navy);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(28, 45, 66, 0.08);
}

.contact-cards-badge i {
  color: var(--color-orange);
}

.contact-cards-header h3 {
  font-size: 1.35rem;
  color: var(--color-navy);
  font-weight: 800;
  margin: 0;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 1rem;
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid #e8edf2;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  background: var(--card-accent, var(--color-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28, 45, 66, 0.1);
  border-color: rgba(224, 107, 36, 0.25);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  background: var(--card-icon-bg, rgba(224, 107, 36, 0.1));
  color: var(--card-accent, var(--color-orange));
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: var(--card-accent, var(--color-orange));
  color: var(--color-white);
  transform: scale(1.05);
}

.contact-card h4 {
  font-size: 0.88rem;
  color: var(--color-navy);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.contact-card-value {
  font-size: 0.82rem;
  color: #475569;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 0.5rem;
  word-break: break-word;
}

.contact-card-hint {
  font-size: 0.72rem;
  color: var(--color-orange);
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-hint {
  opacity: 1;
  transform: translateY(0);
}

.contact-card--location {
  --card-accent: #3b82f6;
  --card-icon-bg: rgba(59, 130, 246, 0.1);
}

.contact-card--phone {
  --card-accent: var(--color-orange);
  --card-icon-bg: rgba(224, 107, 36, 0.1);
}

.contact-card--email {
  --card-accent: #8b5cf6;
  --card-icon-bg: rgba(139, 92, 246, 0.1);
}

.contact-card--whatsapp {
  --card-accent: #25d366;
  --card-icon-bg: rgba(37, 211, 102, 0.1);
}

.contact-card--fax {
  --card-accent: #64748b;
  --card-icon-bg: rgba(100, 116, 139, 0.1);
}

.contact-card--mailbox {
  --card-accent: var(--color-navy);
  --card-icon-bg: rgba(28, 45, 66, 0.08);
  cursor: default;
}

.panel-map {
  padding: 0;
  background: var(--color-white);
  border-top: 1px solid #e8edf2;
}

.panel-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.15rem 2.5rem;
  background: linear-gradient(90deg, #fafbfc 0%, var(--color-white) 100%);
}

.panel-map-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  color: var(--color-navy);
  font-size: 0.95rem;
}

.panel-map-title i {
  color: var(--color-orange);
  font-size: 1.1rem;
}

.panel-map-sub {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
}

.map-iframe {
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
  box-shadow: 0 8px 32px rgba(28, 45, 66, 0.1);
  border: 1px solid #e8edf2;
}

.panel-map:hover .map-iframe {
  filter: grayscale(0%);
}

/* ── About Page ── */

.split-hero {
  padding-top: 0;
  padding-bottom: 4rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 45%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.split-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(224, 107, 36, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.split-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-title-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: right;
  padding: 3rem 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(224, 107, 36, 0.1);
  color: var(--color-orange);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.hero-title-col h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.hero-title-col h1 .brand-accent {
  color: var(--color-orange);
  display: block;
  margin-top: 0.35rem;
}

.hero-title-col h1::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--color-orange);
  margin-top: 1.25rem;
  border-radius: 2px;
}

.hero-title-col .hero-lead {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.9;
  max-width: 440px;
  margin-top: 1.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--color-navy);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.glass-logo-wrap {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 32px rgba(28, 45, 66, 0.12), 0 24px 64px rgba(28, 45, 66, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  max-width: 420px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.pillars-section {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.pillars-section::before {
  content: '';
  position: absolute;
  top: -80px;
  inset-inline-end: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(224, 107, 36, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pillars-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  inset-inline-start: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.pillars-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.pillars-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(224, 107, 36, 0.15);
  color: var(--color-orange);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(224, 107, 36, 0.25);
}

.pillars-section .section-title {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.pillars-section .section-title::after {
  background-color: var(--color-orange);
}

.pillars-intro {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.85;
}

.pillars-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.pillar-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 1.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.pillar-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(224, 107, 36, 0.45);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.pillar-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.pillar-item-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.35s ease;
}

.pillar-item:hover .pillar-item-num {
  color: rgba(224, 107, 36, 0.25);
}

.pillar-item-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(224, 107, 36, 0.2) 0%, rgba(224, 107, 36, 0.08) 100%);
  border: 1px solid rgba(224, 107, 36, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--color-orange);
  transition: all 0.35s ease;
}

.pillar-item:hover .pillar-item-icon {
  background: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
}

.pillar-item-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pillar-item-body h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.85rem;
}

.pillar-item-body p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.9;
  font-size: 0.93rem;
  flex-grow: 1;
}

.pillar-item-bar {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pillar-item:hover .pillar-item-bar {
  opacity: 1;
}

.pillar-item--vision .pillar-item-bar {
  background: linear-gradient(90deg, var(--color-orange), rgba(224, 107, 36, 0.2));
}

.pillar-item--mission .pillar-item-bar {
  background: linear-gradient(90deg, #60a5fa, rgba(96, 165, 250, 0.2));
}

.pillar-item--values .pillar-item-bar {
  background: linear-gradient(90deg, #34d399, rgba(52, 211, 153, 0.2));
}

.operations-section {
  background: linear-gradient(180deg, var(--color-white) 0%, #f8fafc 100%);
}

.operations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.operations-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(224, 107, 36, 0.1);
  color: var(--color-orange);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(224, 107, 36, 0.2);
}

.operations-content h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  color: var(--color-navy);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.operations-content h2 span {
  color: var(--color-orange);
}

.operations-content h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--color-orange);
  margin-top: 1rem;
  border-radius: 2px;
}

.operations-lead {
  color: #64748b;
  line-height: 1.95;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.operations-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.operations-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1rem;
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.3s ease;
  border-inline-start: 3px solid transparent;
}

.operations-feature:hover {
  border-inline-start-color: var(--color-orange);
  border-color: rgba(224, 107, 36, 0.3);
  box-shadow: 0 12px 28px rgba(28, 45, 66, 0.08);
}

.operations-feature-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(224, 107, 36, 0.14) 0%, rgba(224, 107, 36, 0.06) 100%);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--color-orange);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.operations-feature:hover .operations-feature-icon {
  background: var(--color-orange);
  color: var(--color-white);
}

.operations-feature-text h4 {
  font-size: 0.95rem;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
  font-weight: 800;
}

.operations-feature-text p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.operations-visual {
  position: relative;
}

.operations-visual-accent {
  position: absolute;
  inset-inline-end: -16px;
  bottom: -16px;
  width: 75%;
  height: 80%;
  background: var(--color-orange);
  border-radius: 1.25rem;
  opacity: 0.15;
  z-index: 0;
}

.operations-image-wrap {
  position: relative;
  z-index: 1;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(28, 45, 66, 0.16);
  border: 4px solid var(--color-white);
}

.operations-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.operations-float-badge {
  position: absolute;
  bottom: 1.75rem;
  inset-inline-start: -1.5rem;
  z-index: 2;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(28, 45, 66, 0.25);
  border-inline-start: 4px solid var(--color-orange);
  text-align: center;
  min-width: 120px;
}

.operations-float-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1.1;
}

.operations-float-badge span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
  font-weight: 500;
}

.identity-strip {
  background: var(--color-navy);
  padding: 4rem 0;
}

.identity-strip-inner {
  text-align: center;
}

.identity-strip-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 2;
  max-width: 720px;
  margin: 0 auto;
}

.identity-strip-inner .strip-label {
  display: inline-block;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* ── Services Page ── */

.slim-hero {
  padding: 2.5rem 0 2rem;
  min-height: clamp(340px, 45vh, 480px);
  background-image: linear-gradient(rgba(28, 45, 66, 0.55), rgba(28, 45, 66, 0.55)), url('../images/industrial-port-container-yard.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.slim-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 45, 66, 0.65) 0%, transparent 50%, rgba(28, 45, 66, 0.25) 100%);
  z-index: 1;
}

.slim-hero>.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(240px, 32vh, 360px);
}

.slim-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slim-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-white);
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.slim-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.slim-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-badges {
  background: linear-gradient(180deg, #f8fafc 0%, var(--color-gray) 100%);
  border-bottom: 1px solid #e2e8f0;
}

.stats-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-badge-card {
  background: var(--color-white);
  padding: 1.8rem 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(28, 45, 66, 0.04);
  text-align: center;
}

.stat-badge-card:hover {
  border-color: var(--color-orange);
}

.stat-badge-icon {
  width: 48px;
  height: 48px;
  background: rgba(224, 107, 36, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-orange);
  margin: 0 auto 1rem;
}

.stat-badge-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.stat-badge-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.75;
}

.services-catalog {
  background-color: var(--color-white);
}

.service-rows {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
  box-sizing: border-box !important;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box !important;
}

.service-visual {
  flex: 1;
  position: relative;
  min-height: 300px;
  box-sizing: border-box !important;
}

.service-visual-mask {
  overflow: hidden;
  border-radius: 1.25rem;
  height: 100%;
  min-height: 300px;
  box-shadow: 0 12px 36px rgba(28, 45, 66, 0.1);
}

.service-visual-mask img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.service-row--sea .service-visual-mask {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.service-row--air .service-visual-mask {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.service-row--land .service-visual {
  position: relative;
}

.service-row--land .service-visual-mask {
  position: relative;
}

.service-row--land .service-visual-mask::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 45, 66, 0.35) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.service-row--customs .service-badge-overlay {
  background: rgba(28, 45, 66, 0.85);
  backdrop-filter: blur(6px);
}

.service-badge-overlay {
  position: absolute;
  top: 1.25rem;
  inset-inline-end: 1.25rem;
  background: rgba(28, 45, 66, 0.75);
  backdrop-filter: blur(6px);
  color: var(--color-orange);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(28, 45, 66, 0.3);
  z-index: 2;
  border: 2px solid rgba(224, 107, 36, 0.4);
}

.service-detail-card {
  flex: 1;
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px rgba(28, 45, 66, 0.05);
  display: flex;
  flex-direction: column;
  box-sizing: border-box !important;
}

.service-detail-card h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-detail-card .service-body {
  color: #64748b;
  line-height: 1.95;
  font-size: 0.97rem;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.service-detail-card ul {
  margin-bottom: 1.5rem;
}

.service-detail-card ul li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  color: #475569;
}

.service-detail-card ul li i {
  color: var(--color-orange);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: rgba(28, 45, 66, 0.04);
  border-top: 2px solid var(--color-orange);
  border-radius: 0 0 10px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: auto;
  align-self: flex-start;
}

.capacity-badge i {
  color: var(--color-orange);
}

.summary-card {
  margin-top: 2rem;
}

.summary-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(135deg, #f8fafc 0%, var(--color-gray) 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(28, 45, 66, 0.06);
}

.summary-card-image {
  overflow: hidden;
  min-height: 300px;
}

.summary-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.summary-card-inner.img-zoom-group:hover .summary-card-image img {
  transform: scale(1.05);
}

.summary-card-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.summary-card-content h3 {
  font-size: 1.65rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.summary-card-content p {
  color: #64748b;
  line-height: 2;
  font-size: 0.97rem;
}

.summary-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.summary-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.92rem;
}

.summary-feature i {
  color: var(--color-orange);
}

/* ── Subpages Responsive ── */

@media (min-width: 1024px) {
  .floating-contact-panel {
    margin-top: -7.5rem;
  }
}

@media (min-width: 768px) {
  .service-row {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }

  .service-row.reverse {
    flex-direction: row-reverse;
  }
}

@media (max-width: 1023px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-intro-area {
    padding: 2.25rem 2rem;
  }

  .contact-cards-area {
    padding: 2.25rem 2rem;
  }

  .pillars-showcase {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pillar-item {
    padding: 1.75rem 1.5rem 2rem;
  }

  .operations-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .operations-visual {
    order: -1;
  }

  .operations-image-wrap img {
    height: 320px;
  }

  .operations-float-badge {
    inset-inline-start: 1rem;
    bottom: 1.25rem;
  }
}

@media (max-width: 992px) {
  .floating-contact-panel {
    margin-top: -5rem;
  }

  .split-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title-col {
    order: 1;
    align-items: center;
    text-align: center;
  }

  .hero-title-col h1::after {
    margin-inline: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-logo-col {
    order: 0;
  }

  .pillars-showcase {
    grid-template-columns: 1fr;
  }

  .pillars-intro {
    font-size: 0.95rem;
  }

  .operations-grid {
    gap: 2rem;
  }

  .operations-features {
    grid-template-columns: 1fr;
  }

  .operations-lead {
    max-width: 100%;
  }

  .operations-image-wrap img {
    height: 280px;
  }

  .stats-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary-card-inner {
    grid-template-columns: 1fr;
  }

  .summary-card-image {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: clamp(340px, 42vh, 420px);
    padding: 2rem 0 6rem;
    align-items: center;
  }

  .page-hero>.container {
    min-height: clamp(240px, 32vh, 320px);
  }

  .page-hero .hero-content {
    padding-inline: 0.5rem;
  }

  .page-hero h1,
  .page-hero p {
    text-align: center;
    margin-inline: auto;
  }

  .hero-contact-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .floating-contact-panel {
    margin-top: -4.5rem;
    padding: 3rem 0;
  }

  .contact-intro-area,
  .contact-cards-area {
    padding: 1.75rem 1.25rem;
  }

  .contact-intro-header h2 {
    font-size: 1.45rem;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-hint {
    opacity: 1;
    transform: none;
  }

  .panel-map-header {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .h-80 {
    height: 16rem;
  }

  .split-hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .glass-logo-wrap {
    padding: 2rem 1.5rem;
  }

  .slim-hero {
    min-height: clamp(300px, 40vh, 400px);
    padding: 2rem 0 1.5rem;
  }

  .slim-hero>.container {
    min-height: clamp(220px, 28vh, 300px);
  }

  .stats-badges-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-badge-card {
    padding: 1.2rem 1rem;
  }

  .summary-features {
    grid-template-columns: 1fr;
  }

  .operations-feature {
    padding: 1rem 0.9rem;
  }

  .operations-float-badge {
    padding: 1rem 1.15rem;
    min-width: 100px;
  }

  .operations-float-badge strong {
    font-size: 1.6rem;
  }

  .service-row {
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
  }

  .service-visual,
  .service-detail-card {
    width: 100%;
    flex: none;
  }

  .service-rows {
    gap: 2.5rem;
    width: 100%;
    overflow-x: hidden;
  }
}

/* Smart image slider (swiper-scroll) */
.swiper-scroll {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-scroll-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

.swiper-scroll-track::-webkit-scrollbar {
  display: none;
}

.swiper-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.swiper-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #1C2D42;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
  opacity: 0;
  backdrop-filter: blur(4px);
}

.swiper-scroll:hover .swiper-arrow {
  opacity: 1;
}

.swiper-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.swiper-arrow--prev {
  right: 8px;
}

.swiper-arrow--next {
  left: 8px;
}

.swiper-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.swiper-scroll:hover .swiper-dots {
  opacity: 1;
}

.swiper-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.swiper-dots span.active {
  background: #fff;
  width: 18px;
  border-radius: 3px;
}