/* ==========================================================================
   Global Resets
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%; /* Prevent iOS automatic font scaling */
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  background-color: #ffffff;       
  color: #000000;                  
}

/* Images – prevent overflow and remove bottom gap */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

/* Global links */
a {
  color: #fa5101;                  
  text-decoration: none;
}

/* Focus outline for accessibility (keyboard navigation) */
a:focus-visible {
  outline: 3px solid #fa5101;     
  outline-offset: 2px;
}

/* ==========================================================================
   Typography & Content Base
   ========================================================================== */

/* Paragraphs & lists – shared foundation (16px base) */
p,
dt, dd,
ul, ol,
li,
figure figcaption {
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 24px;
  color: #000000;                    
}

/* Larger body text variant for main content areas (17px) */
.mainBody p,
.mainBody li,
.mainBody_copy p {
  font-size: 17px;
  line-height: 28px;
}

/* Headings – consolidated defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  color: #00379e;                   
  line-height: 1.25;
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Desktop heading sizes (base) */
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 32px; }
h4 { font-size: 26px; }
h5 { font-size: 21px; }
h6 { font-size: 20px; }

/* Accent-colored headings (common pattern) */
.heading-orange,
.mainBody_Header h1,
.mainBody_Header h2,
.feature-sub .banner-title,
.calculator-container h2 {
  color: #fa5101;                    
}

/* Navigation links – Raleway */
.nav-link,
.navbar-nav .nav-link {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
}

/* Mission / tagline / subtext – Manrope Thin (300) */
.mission-statement,
.tagline,
.lead {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  color: #00379e;                   
  margin: 0 0 24px;
}

/* Light version override for specific sections */
.section-three-copy,
.section-four-copy {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;                    
  margin: 0 0 24px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

/* Color utilities */
.text-accent {
  color: #fa5101;         
}

.bg-accent {
  background-color: #fa5101; 
}

/* Typography utilities */
.uppercase {
  text-transform: uppercase;
}

.bold-orange {
  font-weight: 700;
  color: #fa5101;          
}

.bold-blue {
  font-weight: 700;
  color: #00379e;          
}

/* Alignment & layout */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons – base + variants */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  background: #fa5101;
  color: white;
}

.btn-primary:hover {
  background: #d94500;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(250,81,1,0.25);
}

.btn-secondary {
  background: #00379e;
}

.btn-secondary:hover {
  background: #002b7a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,55,158,0.25);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

/* ── Top Bar ─────────────────────────────────────────────────────────────── */
.header_top-bar {
  background: #00379e;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0;
}

/* Login button in top bar */
.header_login-button {
  display: inline-block;
  background: #fa5101;
  color: #ffffff;
  text-transform: uppercase;
  padding: 5px 20px;
  transition: all 0.3s ease;
}

.header_login-button:hover {
  background: #d94500;
}

/* ── Header Wrapper & Sticky Behavior ───────────────────────────────────── */
.header-wrapper {
  position: relative;
  z-index: 1000;
  background: #ffffff;
  transition: all 0.3s ease;
}

.header-wrapper.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ── Logos & Sizing ──────────────────────────────────────────────────────── */
.navbar-brand,
.navbar-brand2 {
  padding: 12px 15px;
  transition: padding 0.4s ease;
}

.header-wrapper.scrolled .navbar-brand,
.header-wrapper.scrolled .navbar-brand2 {
  padding: 8px 15px;
}

.navbar-brand .logo {
  max-width: 207px;
  height: auto;
  transition: max-width 0.4s ease;
}

.header-wrapper.scrolled .navbar-brand .logo {
  max-width: 123px;
}

.logo-20,
.navbar-brand2 .logo-20 {
  height: 70px;
  width: auto;
  transition: height 0.4s ease;
  transform-origin: right center;
}

.header-wrapper.scrolled .logo-20 {
  height: 48px;
}

/* ── Base Navbar ─────────────────────────────────────────────────────────── */
.navbar {
  padding: 0;
}

/* ── Mega Dropdown ───────────────────────────────────────────────────────── */
.dropdown-menu {
  margin-top: 0;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu-with-bg {
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  min-height: 210px;
  width: 900px;
  max-width: 95vw;
  left: 50% !important;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  overflow: hidden;
}

.dropdown:hover > .dropdown-menu-with-bg {
  visibility: visible;
  opacity: 1;
}

.dropdown-menu-with-bg .dropdown-content {
  display: flex;
  width: 100%;
}

.left-column {
  width: 45%;
  background: #ffffff;
  padding: 30px 25px;
  border-right: 1px solid #a7a9ac;
}

.right-column {
  width: 55%;
  height: 210px;
  min-height: 210px;
  max-height: 210px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #ffffff;
  overflow: hidden;
}

.left-column .dropdown-item {
  display: flex !important;
  align-items: center;
  white-space: nowrap;
  padding: 12px 20px;
  border-bottom: 1px solid #a7a9ac;
  font-weight: 700;
  text-transform: uppercase;
  color: #00379e;
  transition: all 0.3s ease;
}

.left-column .dropdown-item:last-child {
  border-bottom: none;
}

.left-column .dropdown-item:hover,
.left-column .dropdown-item:focus {
  color: #fa5101 !important;
  transform: translateX(8px);
  background: transparent !important;
}

.left-column .dropdown-item_img {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Mega menu background images */
.right-column--solutions   { background-image: url('../../assets/images/menubg-solutions.jpg'); }
.right-column--management  { background-image: url('../../assets/images/menubg-management.jpg'); }
.right-column--technology  { background-image: url('../../assets/images/menubg-technology.jpg'); }
.right-column--resources   { background-image: url('../../assets/images/menubg-resources.jpg'); }
.right-column--about       { background-image: url('../../assets/images/menubg-about.jpg'); }

/* ==========================================================================
   Swiper Hero Slider
   ========================================================================== */

.feature-wrapper {
  position: relative;
  width: 100%;
}

.hero-swiper.swiper {
  width: 100%;
  height: 100vh;
  min-height: 620px;
}

/* Slides – base background handling */
.swiper-slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Individual slide backgrounds */
.swiper-slide.slide--1 { background-image: url("../../assets/images/slider-one.jpg"); }
.swiper-slide.slide--2 { background-image: url("../../assets/images/slider-two.jpg"); }
.swiper-slide.slide--3 { background-image: url("../../assets/images/slider-three.jpg"); }

/* Captions container */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  padding: 48px 5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.slider-caption {
  pointer-events: auto;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Top caption – fixed positioning */
.slider-caption.top {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  color: #00379e;
  font-size: 70px;
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  z-index: 15;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slider-caption.top .word-emphasis {
  font-weight: 800;
  color: #fa5101;
  letter-spacing: 0.01em;
  display: inline-block;
}

.slider-caption.top.top--white {
  color: #ffffff;
}

/* Bottom caption */
.slider-caption.bottom {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  max-width: 90%;
  line-height: 36px;
}

/* ==========================================================================
   Feature / Subpage Banner
   ========================================================================== */

.feature-sub {
  width: 100%;
  height: clamp(380px, 55vh, 520px);
  min-height: 340px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f8f9fa;
  position: relative;
  margin-top: 60px;
}

/* Gradient overlay – darker on left for text readability */
.feature-sub .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,55,158,0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 120px;
  text-align: left;
}

/* Caption container */
.feature-sub .banner-caption {
  max-width: 50%;
  color: #ffffff;
  padding: 0 20px;
}

/* Title */
.feature-sub .banner-title {
  font-size: 54px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 2px;
  color: #fa5101;
}

/* Subtitle – white text */
.feature-sub .banner-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  color: #ffffff;
}

/* Font family for banner text */
.feature-sub .banner-title,
.feature-sub .banner-subtitle {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

/* Page-specific background images */
.feature-sub.banner-usalogistics   { background-image: url("../images/banner-usalogistics.jpg"); }
.feature-sub.banner-canlogistics   { background-image: url("../images/banner-canlogistics.jpg"); }
.feature-sub.banner-crossborder    { background-image: url("../images/banner-crossborder.jpg"); }
.feature-sub.banner-parcel         { background-image: url("../images/banner-parcel.jpg"); }
.feature-sub.banner-management     { background-image: url("../images/banner-management.jpg"); }
.feature-sub.banner-warehousing    { background-image: url("../images/banner-warehousing.jpg"); }
.feature-sub.banner-ecommerce      { background-image: url("../images/banner-ecommerce.jpg"); }
.feature-sub.banner-sentrotms      { background-image: url("../images/banner-sentrotms.jpg"); }
.feature-sub.banner-sentrowms      { background-image: url("../images/banner-sentrowms.jpg"); }
.feature-sub.banner-density        { background-image: url("../images/banner-density.jpg"); }
.feature-sub.banner-support        { background-image: url("../images/banner-support.jpg"); }
.feature-sub.banner-regions        { background-image: url("../images/banner-regions.jpg"); }
.feature-sub.banner-resources      { background-image: url("../images/banner-resources.jpg"); }
.feature-sub.banner-faq            { background-image: url("../images/banner-faq.jpg"); }
.feature-sub.banner-profile        { background-image: url("../images/banner-profile.jpg"); }
.feature-sub.banner-contact        { background-image: url("../images/banner-contact.jpg"); }
.feature-sub.banner-partner        { background-image: url("../images/banner-partner.jpg"); }
.feature-sub.banner-privacy        { background-image: url("../images/banner-privacy.jpg"); }

/* ==========================================================================
   Breadcrumb (Desktop only)
   ========================================================================== */

.breadcrumb-wrap {
  font-size: 14px;
  font-weight: 600;
  color: #00379e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #a7a9ac;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Current page emphasis */
.breadcrumb-wrap .current-page {
  color: #fa5101;
  font-weight: 700;
}

/* Links */
.breadcrumb-wrap a {
  color: #00379e;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-wrap a:hover,
.breadcrumb-wrap a:focus {
  color: #fa5101;
  text-decoration: underline;
}

/* Divider (chevron icon) */
.breadcrumb-divider {
  color: #00379e;
  font-size: 14px;
}

.breadcrumb-divider i {
  vertical-align: middle;
}

/* ==========================================================================
   Freight Density Calculator
   ========================================================================== */

.calculator-container {
  max-width: 700px;
  margin: 48px auto;
  padding: 40px 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid #a7a9ac;
}

.calculator-container h2 {
  text-align: center;
  color: #00379e;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Form rows */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.form-row.second-row {
  margin-top: 32px;
}

/* Form groups – inputs stay in one line on desktop */
.form-group {
  flex: 1;
  min-width: 180px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #00379e;
  font-size: 15px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #a7a9ac;
  border-radius: 8px;
  font-size: 16px;
  text-align: right;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #fa5101;
  box-shadow: 0 0 0 3px rgba(250,81,1,0.15);
}

/* Buttons */
.button-group {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Result box */
.result-box {
  margin-top: 48px;
  padding: 32px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #a7a9ac;
  text-align: center;
}

.result-box h2 {
  margin-bottom: 16px;
  color: #00379e;
  font-size: 22px;
}

.result-box p {
  font-size: 18px;
  margin: 12px 0;
}

.result-box strong {
  color: #00379e;
}

#density-value,
#pcf-value,
#class-value {
  font-size: 36px;
  font-weight: 700;
  color: #fa5101;
  margin: 8px 0;
}

/* Footnote */
.footnote {
  margin-top: 32px;
  font-size: 13px;
  color: #666666;
  line-height: 20px;
  text-align: center;
}

/* Density table wrapper */
.density-table-wrapper {
  margin-top: 40px;
  padding: 24px;
  background: rgba(0,55,158,0.05);
  border-radius: 12px;
}

.density-table-wrapper h4 {
  margin-bottom: 20px;
  color: #00379e;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
}

/* Table */
.density-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 24px;
}

.density-table th,
.density-table td {
  padding: 14px;
  border: 1px solid #a7a9ac;
  text-align: left;
  vertical-align: top;
}

.density-table th {
  background: #00379e;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

.density-table td:first-child,
.density-table td:nth-child(2) {
  text-align: center;
  font-weight: 500;
}

.density-table tr:nth-child(even) {
  background: #f8f9fa;
}

.density-table tr:hover {
  background: rgba(250,81,1,0.08);
  transition: background 0.2s ease;
}

/* Highlighted row */
.density-table tr.highlighted {
  background: #fa5101 !important;
  color: #ffffff !important;
  font-weight: 700;
}

.density-table tr.highlighted td {
  border-color: #ffffff !important;
}

/* ==========================================================================
   Content Styling (Main / Subpage Body)
   ========================================================================== */

/* Main container for body content */
.mainBody {
  padding-left: 60px;
  padding-right: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 28px;
  font-size: 17px;
}

/* Bullet List */
.mainBody_List {
  margin-bottom: 40px;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* Remove default bullets from the list and any nested lists */
.mainBody_List ul,
.mainBody_List ol,
.mainBody_List li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* Custom bullet for every list item */
.mainBody_List li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
}

/* Custom bullet image */
.mainBody_List li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background-image: url("../../assets/images/arrow-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

/* ==========================================================================
   Container (custom overrides – less aggressive than Bootstrap defaults)
   ========================================================================== */

.container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}

/* Standard Bootstrap-like breakpoints */
@media (min-width: 576px) {
  .container { max-width: 540px; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
}

@media (min-width: 1200px) {
  .container { max-width: 1170px; }
}

@media (min-width: 1400px) {
  .container { max-width: 1337px; } /* your custom wide size */
}

/* ==========================================================================
   Transit Times Section
   ========================================================================== */

.transit-times-section {
  background-color: #ffffff;
}

.transit-times-section .table {
  font-size: 17px;
}

.transit-times-section .table thead th {
  background-color: #00379e;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px;
}

.transit-times-section .table tbody td {
  vertical-align: middle;
  padding: 12px;
}

.transit-times-section .table-hover tbody tr:hover {
  background-color: rgba(250,81,1,0.1);
}

.transit-times-section .btn {
  padding: 12px 40px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.transit-times-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ==========================================================================
   Services/Features Section
   ========================================================================== */

.services-section {
  background-color: #ffffff;
}

.services-section h2 {
  color: #fa5101;
}

.blockquote {
  font-size: 18px;
  border-left: 4px solid #fa5101;
  padding-left: 24px;
  background-color: rgba(250,81,1,0.05);
  border-radius: 4px;
  margin: 24px 0;
}

/* ==========================================================================
   Homepage Sections
   ========================================================================== */

/* General Section Wrapper */
.homepage-section {
  padding: 10px 0;
  background-color: #ffffff;
}

/* Section Two: Split Layout */
.section-two-left {
  position: relative;
  padding: 20px;
  text-align: center;
}

.section-two-animated {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.quick-link-content {
  text-align: justify;
  padding-right: 20px;
}

.quick-link-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.quick-link-icon {
  flex-shrink: 0;
  margin-right: 24px;
}

.quick-link-icon img {
  width: 80px;
  height: 80px;
}

.quick-link-header {
  font-size: 24px;
  margin-bottom: 12px;
  color: #00379e;
}

.quick-link-text {
  font-size: 16px;
  line-height: 26px;
  color: #00379e;
}

/* ==========================================================================
   Full-Width Banners Homepage
   ========================================================================== */

.homepage-ad1,
.homepage-ad2 {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: #ffffff;
}

.ad1-content,
.ad2-content {
  max-width: 900px;
  padding: 20px;
}

.ad1-copy,
.ad2-copy {
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Specific Backgrounds */
.homepage-ad1 {
  background: url('../../assets/images/home-students-sec.jpg') center center / cover no-repeat;
}

.homepage-ad2 {
  background: url('../../assets/images/home-logistics-sec-mobile.jpg') left bottom / cover no-repeat;
}

/* FAQ Section Styling */
.accordion-button {
  background-color: #f8f9fa;
  color: #00379e;
  font-size: 18px;
  padding: 20px 24px;
  border: none;
  transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: #fa5101;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  background-color: #ffffff;
  padding: 24px;
  font-size: 16px;
  line-height: 26px;
}

.accordion-item {
  border: 1px solid #a7a9ac;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-button:hover {
  background-color: #e9ecef;
}

/* ==========================================================================
   Footer
   ========================================================================== */

/* Main Wrapper – Background Image */
.footer-wrapper {
  background: url("../../assets/images/home-footer-sec-background.png") no-repeat center center / cover;
  position: relative;
}

/* Top & Bottom Sections */
.footer-top,
.footer-bottom {
  position: relative;
  z-index: 2;
}

/* Top Section */
.footer-top {
  border-top: 5px solid #fa5101;
  padding: 60px 0 50px;
}

/* Logo */
.footer-logo {
  margin-bottom: 40px;
}

/* Locations & Contact Info */
.location-header {
  color: #fa5101;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.location-item {
  margin-bottom: 40px;
}

.location-item p,
.contact-phone {
  color: #00379e;
  margin: 0 0 8px;
  line-height: 23px;
  font-size: 15px;
}

.contact-phone {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.6px;
}

.footer-nav-title {
  color: #fa5101;
  padding-left: 68px;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

/* Footer Navigation Links */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer-nav img {
  width: 48px;
  height: 48px;
  margin-right: 20px;
  flex-shrink: 0;
}

.footer-nav a {
  color: #00379e;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: #fa5101;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 40px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0,55,158,0.12);
  border-radius: 50%;
  color: #00379e;
  font-size: 22px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fa5101;
  color: #ffffff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 15px rgba(0,0,0,0.25);
}

/* Bottom Bar */
.footer-bottom {
  background-color: #00379e;
  border-top: 4px solid #fa5101;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
}


/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

/* ── Mobile-First Adjustments (<768px) ───────────────────────────────────── */
@media (max-width: 767.98px) {
  /* Typography */
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  h3 { font-size: 26px; }
  h4 { font-size: 20px; }
  h5 { font-size: 18px; }
  h6 { font-size: 17px; }

  /* Feature / Subpage Banner */
  .feature-sub {
    height: 350px;
  }

  .feature-sub .banner-overlay {
    padding-left: 30px;
    padding-right: 30px;
  }

  .feature-sub .banner-caption {
    max-width: 95%;
  }

  .feature-sub .banner-title {
    font-size: 32px;
  }

  .feature-sub .banner-subtitle {
    font-size: 18px;
  }

  /* Content / Main Body */
  .mainBody {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mainBody,
  .mainBody_copy,
  .mainBody_List li {
    font-size: 16px;
  }

  .mainBody_List li:before {
    width: 14px;
    height: 14px;
  }

  .mainBody_List li {
    padding-left: 28px;
  }

  /* Transit Times Table */
  .transit-times-section .table {
    font-size: 15px;
  }

  .transit-times-section .table thead th,
  .transit-times-section .table tbody td {
    padding: 12px;
  }

  /* Density Table */
  .density-table {
    font-size: 13px;
  }

  .density-table th,
  .density-table td {
    padding: 10px;
  }
}

/* ── Tablet Adjustments (768px – 991.98px) ───────────────────────────────── */
@media (max-width: 991.98px) {
  /* Typography */
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  h3 { font-size: 28px; }
  h4 { font-size: 22px; }
  h5 { font-size: 19px; }
  h6 { font-size: 18px; }

  /* Feature / Subpage Banner */
  .feature-sub {
    height: 400px;
  }

  .feature-sub .banner-overlay {
    justify-content: center;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
  }

  .feature-sub .banner-caption {
    max-width: 85%;
  }

  .feature-sub .banner-title {
    font-size: 38px;
  }

  .feature-sub .banner-subtitle {
    font-size: 20px;
  }

  /* Content / Main Body */
  .mainBody,
  .mainBody_copy,
  .mainBody_List li {
    font-size: 16px;
  }

  .mainBody_List li:before {
    width: 14px;
    height: 14px;
  }

  .mainBody_List li {
    padding-left: 28px;
  }

  .mainBody {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* Homepage CTA Banners (Section Three & Four) */
  .homepage-ad1,
  .homepage-ad2 {
    min-height: 500px;
    padding: 60px 20px;
  }

  .ad1-copy,
  .ad2-copy {
    font-size: 24px;
  }
}


/* ── Mobile Menu & Toggler Adjustments (<1200px) ─────────────────────────── */
@media (max-width: 1199.98px) {
  /* Outer menu container – dark blue background  ─────────────────── */	
  .navbar-collapse {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #133b6f;
    transform: translateX(100%);
    transition: all 0.7s ease;
    overflow-y: auto;
    z-index: 1000;
    padding: 60px 16px 16px;
	}

  .navbar-collapse.show {
    transform: translateX(0);
	}
 /* Close Button */
  .navbar-collaps-menu_close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1100;
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
	}
  /* Main Nav Links - White */
  .nav-link {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 30px;
	display: block;
	}

  .nav-link:hover,
  .nav-item:hover .nav-link {
    background: #fa5101;
	color: #ffffff;
  	}
	
  .navbar-nav {
    margin-top: 20px;
	}
/* Submenu container – no background, inherits dark blue */
  .dropdown-menu {
	position: static;
    transform: none;
    visibility: visible;
    opacity: 1;
    display: block;
    background: none;                   
    border: none;
    box-shadow: none;
    padding: 0 0 0 40px;                  /* indent sub-items */
    margin: 0;
    max-height: none;
    overflow: visible;
	}
	
/* Inner wrappers – no background interference */
  .dropdown-content,
  .left-column,
  .right-column,
  .dropdown-menu-with-bg {
    background: none !important;
    background-image: none !important;
    border: none;
  }

 /* Submenu items – white text + visible separators */
  .dropdown-item {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding: 14px 24px;
    display: block;
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s ease;
}

/* Override the desktop blue color rule specifically for mobile */
  .navbar-collapse .left-column .dropdown-item,
  .navbar-collapse .dropdown-menu .dropdown-item {
    color: #ffffff;
}
	
  .dropdown-item:hover,
  .dropdown-item:focus,
  .dropdown-item:active {
    background: rgba(250, 81, 1, 0.18);  /* very light orange hover */
  }

  .dropdown-item_img {
    display: none;
	}	
	
/* No border after last item */
  .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
  }

  .nav-item.dropdown > .nav-link {
    font-weight: 800;
    font-size: 19px;
    padding: 18px 30px 10px;
    margin-bottom: 8px;
    border-bottom: 2px solid rgba(250, 81, 1, 0.4);
    color: #ffffff;
  }
	
  /* Mobile Toggler (Hamburger / Close Icon) */
  .navbar-toggler {
    border: none;
    background: transparent;
    padding: 8px 12px;
    margin-right: -0.75rem;
    outline: none;
    box-shadow: none;
    transition: background-color 0.2s ease;
  }

  .navbar-toggler:focus,
  .navbar-toggler:active,
  .navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
  }

  .navbar-toggler-icon {
    width: 32px;
    height: 32px;
    background-image: url('../../assets/images/sentro-hamburger-menu.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.2s ease;
  }

  .navbar-toggler:hover .navbar-toggler-icon,
  .navbar-toggler:focus .navbar-toggler-icon,
  .navbar-toggler:active .navbar-toggler-icon,
  .navbar-toggler:focus-visible .navbar-toggler-icon {
    background-image: url('../../assets/images/sentro-hamburger-menu-hover.png');
  }

  .navbar-toggler:hover,
  .navbar-toggler:focus-visible {
    background-color: rgba(255, 255, 255, 0.12);
  }

  .navbar-toggler:focus-visible {
    outline: 3px solid #fa5101;
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Change to close icon when menu is open */
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url('../../assets/images/sentro-close.png');
  }

  /* Mega Dropdowns on Mobile: hide image, left-align, full width */
  .dropdown-menu-with-bg {
    background-image: none !important;
    background-color: #133b6f;
    width: 100% !important;
    min-height: auto;
    left: 0 !important;
    transform: none !important;
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .right-column {
    display: none !important;
  }

  .left-column {
    width: 100% !important;
    border-right: none !important;
    padding: 0px 16px;
  }

  .left-column .dropdown-item {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .left-column .dropdown-item:last-child {
    border-bottom: none;
  }
}

/* ── Desktop / Large Adjustments (≥1200px) ───────────────────────────────── */
@media (min-width: 1200px) {
  /* Header / Navigation Sticky */
  .header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  /* Hero Slider Push-down for fixed header */
  .feature-wrapper {
    padding-top: 96px;
  }
	
  /* Navigation */
  .navbar-expand-xl .navbar-nav {
    height: 83px;
    align-items: flex-end;
  }

  .nav-link {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    color: #00379e;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    height: auto;
	padding: 15px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1;
  }

  .nav-link:hover,
  .nav-item:hover .nav-link {
    color: #ffffff;
    background: #fa5101;
  }

  /* Shrunk / scrolled state, smaller font, spacing from top */
  .header-wrapper.scrolled .navbar-expand-xl .navbar-nav {
    height: 60px;
	margin-top: 10px;
  }

  .header-wrapper.scrolled .nav-link {
    padding: 10px;
    font-size: 14px;
  }	

  /* Swiper Pagination – Vertical right dots */
  .hero-swiper .swiper-pagination {
    position: absolute;
    right: 50px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: auto;
    height: 100%;
    max-height: 80%;
    z-index: 30;
    pointer-events: auto;
  }

  .hero-swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: 2px solid #fa5101;
    border-radius: 50%;
    background: transparent;
    opacity: 0.7;
    transition: all 0.4s ease;
  }

  .hero-swiper .swiper-pagination-bullet-active,
  .hero-swiper .swiper-pagination-bullet:hover {
    background: #fa5101;
    border-color: #ffffff;
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(250,81,1,0.2);
    transform: scale(1.2);
  }

  /* Footer Top Padding */
  .footer-top {
    padding: 90px 0 70px;
  }
}
	
	