/* ==========================================================================
   ORBIS LOGISTICS - Master Stylesheet
   European Industrial & Editorial Logistics Design System
   Pixel-Perfect Implementation matching 7 Reference Screenshots
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- Root Design Tokens --- */
:root {
  --color-navy: #1b2430;
  --color-navy-dark: #121820;
  --color-navy-surface: #202b3d;
  --color-navy-card: #182230;
  --color-navy-field: #182232;
  
  --color-orange: #ffbd32;
  --color-orange-hover: #e6a51b;
  --color-orange-subtle: rgba(241, 91, 36, 0.12);
  
  --color-bg-light: #f5f5f3;
  --color-bg-white: #ffffff;
  
  --color-border-light: #d8dde2;
  --color-border-light-subtle: #e2e7ec;
  --color-border-dark: rgba(255, 255, 255, 0.12);
  --color-border-field: rgba(255, 255, 255, 0.22);
  
  --color-text-dark: #202b3d;
  --color-text-muted: #5a6b82;
  --color-text-light-muted: #8c9ba9;
  --color-text-white: #ffffff;
  --color-text-white-muted: rgba(255, 255, 255, 0.72);
  --color-stencil-gray: #9ba6b2;
  
  --font-main: 'Manrope ', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  --container-max: 1360px;
  --container-padding: 3rem;
  
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Reset & Base Rules --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* --- Section Top Dividers & Angled Badges (Screenshots 2, 3, 4, 6) --- */
.section-top-bar {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 2.25rem;
  position: relative;
}

.section-top-bar::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--color-border-light);
  margin-left: 0;
}

.section-dark .section-top-bar::after {
  background-color: var(--color-border-dark);
}

.section-tab-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-navy-surface);
  color: var(--color-text-white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.4rem 1.6rem 0.4rem 1rem;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%);
  user-select: none;
  z-index: 2;
}

.section-dark .section-tab-badge {
  background-color: #151e2b;
  border-left: 2px solid var(--color-orange);
}

/* --- Technical Corner Brackets System --- */
.tech-corners {
  position: relative;
}

.tech-corners .corner-tl,
.tech-corners .corner-tr,
.tech-corners .corner-bl,
.tech-corners .corner-br {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  z-index: 10;
}

.tech-corners .corner-tl {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid var(--color-text-dark);
  border-left: 1.5px solid var(--color-text-dark);
}

.tech-corners .corner-tr {
  top: -1px;
  right: -1px;
  border-top: 1.5px solid var(--color-text-dark);
  border-right: 1.5px solid var(--color-text-dark);
}

.tech-corners .corner-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 1.5px solid var(--color-text-dark);
  border-left: 1.5px solid var(--color-text-dark);
}

.tech-corners .corner-br {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid var(--color-text-dark);
  border-right: 1.5px solid var(--color-text-dark);
}

/* Dark Mode Brackets */
.bracket-dark .corner-tl,
.bracket-dark .corner-tr,
.bracket-dark .corner-bl,
.bracket-dark .corner-br {
  border-color: rgba(255, 255, 255, 0.45);
}

/* --- Section Typography Standards --- */
.section-title-large {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

.section-dark .section-title-large {
  color: var(--color-text-white);
}

.section-desc-text {
  font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 680px;
  margin-top: 1.25rem;
}

.section-dark .section-desc-text {
  color: var(--color-text-white-muted);
}

/* ==========================================================================
   01. HEADER & NAVIGATION (Screenshot 1)
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.75rem 0;
  background: transparent;
  transition: background-color var(--transition-smooth), padding var(--transition-smooth);
}

.site-header.is-scrolled {
  position: fixed;
  background-color: rgba(27, 36, 48, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border-dark);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo svg {
  height: 40px;
  width: auto;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-item a {
  color: var(--color-text-white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  opacity: 0.9;
  position: relative;
  padding-bottom: 4px;
}

.nav-item a:hover {
  opacity: 1;
  color: #ffbd32;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-orange);
  transition: width var(--transition-fast);
}

.nav-item a:hover::after {
  width: 100%;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffbd32;
  color: var(--color-text-white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.65rem 1.35rem;
  background: transparent;
  transition: all var(--transition-fast);
}

.header-cta-btn:hover {
  background-color: #ffbd32;
  color: var(--color-text-white);
  box-shadow: 0 4px 15px rgba(241, 91, 36, 0.35);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text-white);
  transition: all var(--transition-smooth);
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   02. HERO SECTION (Screenshot 1)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-navy);
  background-image: url('../images/hero-truck.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-text-white);
  padding-top: 8rem;
  padding-bottom: 4.5rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 36, 48, 0.88) 0%,
    rgba(20, 27, 36, 0.82) 50%,
    rgba(15, 21, 29, 0.92) 100%
  );
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-top-info {
  display: flex;
  margin-bottom: 1.5rem;
}

/* .hero-badge-tag {
  display: inline-flex;
  align-items: center;
  color: #ffbd32;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-left: 1.5rem;
}

.hero-badge-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background-color: #ffbd32;
} */
.hero-badge-tag {
    position: relative;
    display: inline-block;
    color: #ffbd32;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    /* Space for the corner brackets */
    padding: 12px 18px;
}

/* Top-left bracket ┌ */
.hero-badge-tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border-top: 3px solid #ffbd32;
    border-left: 3px solid #ffbd32;
}

/* Bottom-right bracket ┘ */
.hero-badge-tag::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 28px;
    height: 28px;
    border-right: 3px solid #ffbd32;
    border-bottom: 3px solid #ffbd32;
}

.hero-title-group {
  position: relative;
  margin: 1.5rem 0 3.5rem 0;
  user-select: none;
}

.hero-title-orbis {
  font-size: clamp(3.75rem, 9.5vw, 5.5rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--color-text-white);
  display: block;
  margin-top: -40px;
}


.hero-title-logistics {
/*   font-size: clamp(4.5rem, 12.5vw, 11.5rem); */
	font-size: 44px;
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.03em;
  color: var(--color-text-white);
  display: block;
  text-align: right;
  margin-top: -0.75rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero-bottom-content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-end;
  gap: 3rem;
  margin-top: 1rem;
}

.hero-subheadings {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-lead-text {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-white);
  max-width: 490px;
  margin-top: -30px;
}

.hero-sub-text {
  font-size: 1rem;
  color: var(--color-text-white-muted);
  width: 55%;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffbd32;
  color: var(--color-text-white);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1.15rem 2.75rem;
  border-radius: 0;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.hero-cta-button-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-text-white);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.15rem 2.75rem;
    border-radius: 0;
    border: 2px solid #ffbd32;
    transition: background-color var(--transition-fast),
                transform var(--transition-fast),
                box-shadow var(--transition-fast);
}

.hero-cta-button-2:hover {
    background-color: #ffbd32;
    color: var(--color-text-white);
    transform: translateY(-2px);
}

.hero-cta-button:hover {
  background-color: #ffbd32;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(241, 91, 36, 0.4);
}

/* ==========================================================================
   03. ABOUT SECTION & STATS (Screenshot 2)
   ========================================================================== */
.about-section {
  background-color: var(--color-bg-light);
  padding: 6.5rem 0 7.5rem 0;
  position: relative;
}

.about-editorial-text {
  font-size: clamp(1.35rem, 2.3vw, 18px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--color-text-dark);
  max-width: 1220px;
  margin-bottom: 4.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background-color: transparent;
  border: 1px solid var(--color-border-light);
  padding: 2.25rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.stat-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-3px);
}

.stat-icon-wrapper {
  margin-bottom: 1.5rem;
  color: var(--color-orange);
}

.stat-icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-orange);
}

.stat-number {
  font-size: clamp(2.25rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-text-muted);
}

/* ==========================================================================
   04. TRANSPORTATION METHODS (Screenshot 3)
   ========================================================================== */
.transport-section {
  background-color: var(--color-bg-light);
  padding: 5.5rem 0 7.5rem 0;
  border-top: 1px solid var(--color-border-light-subtle);
}

.transport-header {
  margin-bottom: 3.5rem;
}

.transport-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.transport-image-container {
  position: relative;
  padding: 1.25rem;
  background: transparent;
}

.transport-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: var(--color-navy);
}

.transport-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition-smooth);
}

.transport-image-wrapper:hover img {
  transform: scale(1.03);
}

.transport-accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border-light);
  transition: border-color var(--transition-fast);
}

.accordion-item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  user-select: none;
}

.accordion-title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--color-orange);
  flex-shrink: 0;
}

.accordion-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.accordion-item.is-active .accordion-title,
.accordion-header:hover .accordion-title {
  color: var(--color-orange);
}

.accordion-icon {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.accordion-item.is-active .accordion-icon {
  color: var(--color-text-dark);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), opacity var(--transition-smooth);
  opacity: 0;
}

.accordion-item.is-active .accordion-body {
  max-height: 400px;
  opacity: 1;
}

.accordion-content-inner {
  padding-bottom: 1.75rem;
  padding-left: 1.5rem;
}

.accordion-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.accordion-read-more {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-fast);
}

.accordion-read-more:hover {
  color: var(--color-orange);
}

/* ==========================================================================
   05. SERVICE SUPPORT (Screenshot 4)
   ========================================================================== */
.services-section {
  background-color: var(--color-navy-surface);
  padding: 6.5rem 0 7.5rem 0;
  position: relative;
}

.services-header {
  margin-bottom: 3.5rem;
}

.services-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  border: 1px solid var(--color-border-dark);
}

.service-grid-cell {
  border-right: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
  position: relative;
  overflow: hidden;
}

.service-grid-cell:nth-child(4n) {
  border-right: none;
}

.service-grid-cell:nth-last-child(-n+4) {
  border-bottom: none;
}

.service-text-cell {
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-navy-surface);
  transition: background-color var(--transition-fast);
}

.service-text-cell:hover {
  background-color: rgba(36, 48, 66, 0.8);
}

.service-item-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.service-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-orange);
  letter-spacing: -0.02em;
  line-height: 1;
}

.service-title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.25;
}

.service-body-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-white-muted);
}

.service-image-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-image-cell:hover img {
  transform: scale(1.05);
}

.service-wireframe-cell {
  background-color: var(--color-navy-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-wireframe-cell svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   06. FREIGHT TRANSPORT COSTS / QUOTE FORM (Screenshot 5)
   ========================================================================== */
.quote-section {
  background-color: var(--color-navy-surface);
  padding: 6.5rem 0 7.5rem 0;
  border-top: 1px solid var(--color-border-dark);
  position: relative;
}

.quote-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.quote-header .section-title-large {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-text-white);
}

.quote-header .section-desc-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 620px;
}

.quote-form-container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Corner Brackets on Inputs (Screenshot 5 Exact Match) */
.tech-field-wrapper {
  position: relative;
  background-color: var(--color-navy-field);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.tech-field-wrapper:focus-within {
  border-color: var(--color-orange);
  background-color: rgba(20, 27, 36, 0.95);
}

.tech-field-wrapper .corner-tl,
.tech-field-wrapper .corner-tr,
.tech-field-wrapper .corner-bl,
.tech-field-wrapper .corner-br {
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 5;
}

.tech-field-wrapper .corner-tl {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.4);
  border-left: 1.5px solid rgba(255, 255, 255, 0.4);
}

.tech-field-wrapper .corner-tr {
  top: -1px;
  right: -1px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.4);
  border-right: 1.5px solid rgba(255, 255, 255, 0.4);
}

.tech-field-wrapper .corner-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  border-left: 1.5px solid rgba(255, 255, 255, 0.4);
}

.tech-field-wrapper .corner-br {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  border-right: 1.5px solid rgba(255, 255, 255, 0.4);
}

.tech-field-wrapper input,
.tech-field-wrapper textarea {
  width: 100%;
  padding: 1.15rem 1.25rem;
  color: var(--color-text-white);
  font-size: 0.9375rem;
}

.tech-field-wrapper input::placeholder,
.tech-field-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.tech-field-wrapper textarea {
  resize: vertical;
  min-height: 110px;
}

.form-checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.5rem 0 1rem 0;
  user-select: none;
}

.custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background-color: transparent;
  cursor: pointer;
  display: grid;
  place-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.custom-checkbox:checked {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.custom-checkbox:checked::before {
  content: '✓';
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.checkbox-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.checkbox-label a {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.85);
}

.quote-submit-btn {
  width: 100%;
  background-color: var(--color-orange);
  color: var(--color-text-white);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1.2rem;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.quote-submit-btn:hover {
  background-color: var(--color-orange-hover);
  box-shadow: 0 8px 25px rgba(241, 91, 36, 0.35);
}

.quote-feedback-modal {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background-color: rgba(241, 91, 36, 0.12);
  border: 1px solid var(--color-orange);
  color: var(--color-text-white);
}

.quote-feedback-modal.is-visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* ==========================================================================
   07. GEOGRAPHY OF TRANSPORTATION (Screenshot 6)
   ========================================================================== */
.geography-section {
  background-color: var(--color-bg-light);
  padding: 6.5rem 0 7.5rem 0;
  position: relative;
}

.geography-header {
  margin-bottom: 2.5rem;
}

.geography-tabs {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.geo-tab-btn {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: none;
  border: none;
  padding: 0.25rem 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.geo-tab-btn:hover {
  color: var(--color-text-dark);
}

.geo-tab-btn.is-active {
  color: var(--color-orange);
  font-weight: 700;
}

.geo-tab-btn.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-orange);
}

.map-visual-container {
  margin-top: 3.5rem;
  width: 100%;
  position: relative;
}

.svg-world-map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(32, 43, 61, 0.06));
}

.map-country {
  fill: var(--color-navy-surface);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 0.5;
  transition: fill 0.35s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.35s ease;
  cursor: pointer;
}

.map-country:hover {
  fill: #2c3c52;
}

.map-country.is-highlighted {
  fill: var(--color-orange) !important;
  stroke: #ff7f4d !important;
  stroke-width: 0.8;
  filter: drop-shadow(0 2px 8px rgba(241, 91, 36, 0.4));
}

/* ==========================================================================
   08. FOOTER SECTION & STENCIL BANNER (Screenshot 7)
   ========================================================================== */
.site-footer {
  background-color: var(--color-bg-light);
  padding: 5.5rem 0 2.5rem 0;
  border-top: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr 1fr auto;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.footer-brand .site-logo svg {
  height: 38px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-email-link {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-orange);
  transition: opacity var(--transition-fast);
}

.footer-email-link:hover {
  opacity: 0.85;
}

.footer-address-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 280px;
}

.footer-nav-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link-list a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-link-list a:hover {
  color: var(--color-orange);
}

.footer-social-links {
  display: flex;
  gap: 0.65rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #ffbd32;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background-color: #ffbd32;
  color: #fff;
  border-color: #ffbd32;
}

.footer-stencil-banner {
  width: 100%;
  margin: 2rem 0 3rem 0;
  user-select: none;
  overflow: hidden;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-light);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer-bottom-bar a:hover {
  color: var(--color-orange);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--color-navy-surface);
  z-index: 110;
  padding: 6rem 2.5rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
  transition: right var(--transition-smooth);
}

.mobile-nav-drawer.is-open {
  right: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-item a {
  color: var(--color-text-white);
  font-size: 1.25rem;
  font-weight: 700;
}

.mobile-nav-item a:hover {
  color: var(--color-orange);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  :root {
    --container-padding: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  
  .service-grid-cell:nth-child(2n) {
    border-right: none;
  }
  
  .service-grid-cell:nth-child(4n) {
    border-right: 1px solid var(--color-border-dark);
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .main-navigation,
  .header-cta-btn {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-bottom-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-actions {
    justify-content: flex-start;
  }
  
  .transport-main-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.25rem;
  }
  
  .hero-section {
    padding-top: 6rem;
  }
  
  .hero-title-group {
    margin: 1.5rem 0 2rem 0;
  }
  
  .hero-title-orbis {
    margin-left: 0;
  }
  
  .hero-title-logistics {
    text-align: left;
    margin-top: 0;
  }
  
  .about-editorial-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .services-tech-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  
  .service-grid-cell {
    border-right: none !important;
    min-height: 200px;
  }
  
  .service-wireframe-cell {
    display: none;
  }
  
  .form-row-2col {
    grid-template-columns: 1fr;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .accordion-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-logo svg {
    height: 32px;
  }
  
  .hero-cta-button {
    width: 100%;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.outer-parent{
	display:flex;
}



