/* ==========================================================================
   AL QURAISH ENTERPRISES — STYLESHEET
   Manufacturing | Logistics | Business Solutions
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN SYSTEM
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors - Al-Quraish Industrial Construction Identity */
  --navy: #1F2933;            /* Main Headings & Primary Text (Charcoal Black) */
  --navy-dark: #111827;       /* Dark Industrial Sections (Deep Navy/Charcoal) */
  --navy-light: #1F2937;      /* Secondary Dark Surface (Steel Charcoal) */
  --navy-card: #1F2937;       /* Dark Section Card Background */
  
  --gold: #4B2E83;            /* Brand Accent: Al-Quraish Purple */
  --gold-light: #6B46C1;      /* Secondary Purple / Interactive Accent */
  --gold-dark: #371E63;       /* Active / Pressed Purple State */
  --gold-gradient: #4B2E83;   /* Clean Solid Purple for Primary Brand Actions */
  
  /* Neutrals & Engineering Surfaces */
  --white: #FFFFFF;           /* Primary Background: Engineering White */
  --off-white: #F3F4F6;       /* Secondary Background: Concrete Light Grey */
  --light-gray: #E5E7EB;      /* Subtle Card Border & Dividers */
  --border: #E5E7EB;          /* Subtle Grey Border */
  --border-dark: rgba(255, 255, 255, 0.10); /* Subtle Border on Dark Industrial Sections */
  --text-dark: #1F2933;       /* Main Body & Heading Text: Charcoal Black */
  --text-muted: #6B7280;      /* Secondary Text & Descriptions: Steel Grey */
  --text-light: #9CA3AF;      /* Supporting Light Text on Dark Industrial Sections */
  
  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout */
  --container-width: 1280px;
  --header-height: 84px;
  --topbar-height: 38px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  
  /* Soft Shadows & Clean Transitions */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-dark: 0 14px 36px rgba(0, 0, 0, 0.35);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & GLOBAL BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  max-width: 980px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-brand-eyebrow {
  margin-bottom: 18px;
}

.hero-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  background: var(--gold);
  padding: 5px 16px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(75, 46, 131, 0.3);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.hero-supporting-headline {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: #F3F4F6;
  line-height: 1.35;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 20px;
}

.hero-title span.gold-highlight {
  color: var(--gold-light);
  display: block;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 46px);
  margin-bottom: 16px;
  color: var(--navy);
}

.section-title.light {
  color: var(--white);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--gold);
}

.section-desc {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.7;
}

.section-desc.light {
  color: var(--text-light);
  opacity: 0.9;
}

.text-center {
  text-align: center;
}
.text-center .section-eyebrow {
  justify-content: center;
}
.text-center .section-eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--gold);
}
.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-icon {
  transition: transform 0.25s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
  box-shadow: 0 3px 10px rgba(75, 46, 131, 0.25);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 5px 16px rgba(75, 46, 131, 0.35);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary-dark {
  background: transparent;
  color: var(--navy);
  border-color: #D1D5DB;
}

.btn-secondary-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.badge-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(75, 46, 131, 0.08);
  color: var(--gold);
  border: 1px solid rgba(75, 46, 131, 0.18);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   5. TOP INFORMATION BAR
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--navy-dark);
  color: var(--text-light);
  font-size: 12.5px;
  height: var(--topbar-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.top-bar-left .tagline {
  color: var(--gold-light);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c9d8e4;
}

.top-bar-item a:hover {
  color: var(--gold-light);
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   6. HEADER & STICKY NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: var(--transition);
}

.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-bottom: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 64px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* --------------------------------------------------------------------------
   6.1. PREMIUM MOBILE HAMBURGER & RIGHT-SIDE DRAWER
   -------------------------------------------------------------------------- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  z-index: 102;
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: rgba(75, 46, 131, 0.08);
  border-color: var(--gold);
}

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 22px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Backdrop */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Premium Mobile Drawer (Slide Right -> Left) */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88vw;
  max-width: 390px;
  height: 100vh;
  background: #111827;
  color: #FFFFFF;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
  overflow: hidden;
}

.mobile-menu-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

/* Drawer Header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #0F172A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.drawer-logo img {
  height: 48px;
  max-height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.drawer-close-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.drawer-close-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.drawer-close-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.drawer-close-btn:hover svg {
  transform: rotate(90deg);
}

/* Drawer Scroll Content */
.drawer-scroll-content {
  flex-grow: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar for Drawer */
.drawer-scroll-content::-webkit-scrollbar {
  width: 4px;
}
.drawer-scroll-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
.drawer-scroll-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* Navigation List */
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: #E2E8F0;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.drawer-nav-item .nav-num {
  font-size: 12px;
  font-weight: 700;
  color: #718096;
  width: 20px;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.drawer-nav-item .nav-title {
  flex-grow: 1;
}

.drawer-nav-item .nav-arrow {
  width: 16px;
  height: 16px;
  color: #718096;
  opacity: 0.7;
  transition: transform 0.25s ease, color 0.25s ease;
}

.drawer-nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
  padding-left: 20px;
}

.drawer-nav-item:hover .nav-num,
.drawer-nav-item:hover .nav-arrow {
  color: var(--gold-light);
}

.drawer-nav-item:hover .nav-arrow {
  transform: translateX(4px);
}

.drawer-nav-item.active {
  background: rgba(139, 92, 246, 0.15);
  color: #FFFFFF;
  border-left-color: var(--gold-light);
}

.drawer-nav-item.active .nav-num {
  color: var(--gold);
}

.drawer-nav-item.active .nav-arrow {
  color: var(--gold-light);
  opacity: 1;
}

/* Highlighted Section: Our Businesses */
.drawer-section-highlight {
  margin: 12px 0 6px;
  padding: 16px;
  background: #1F2937;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.drawer-business-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-biz-card {
  display: block;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.drawer-biz-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.biz-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.biz-card-tag {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.biz-card-header svg {
  width: 14px;
  height: 14px;
  color: #718096;
  transition: transform 0.2s ease, color 0.2s ease;
}

.drawer-biz-card:hover .biz-card-header svg {
  color: var(--gold-light);
  transform: translate(2px, -2px);
}

.drawer-biz-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
  line-height: 1.3;
}

.biz-card-sub {
  font-size: 11.5px;
  color: #94A3B8;
  margin-bottom: 8px;
}

.biz-card-pill {
  font-size: 10.5px;
  font-weight: 500;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Accordion Groups */
.drawer-accordion-group {
  display: flex;
  flex-direction: column;
}

.drawer-accordion-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: #E2E8F0;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.drawer-accordion-btn .nav-num {
  font-size: 12px;
  font-weight: 700;
  color: #718096;
  width: 20px;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.drawer-accordion-btn .nav-title {
  flex-grow: 1;
}

.drawer-accordion-btn .accordion-chevron {
  width: 16px;
  height: 16px;
  color: #718096;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.drawer-accordion-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
}

.drawer-accordion-btn:hover .nav-num,
.drawer-accordion-btn:hover .accordion-chevron {
  color: var(--gold-light);
}

.drawer-accordion-btn.expanded {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.03);
}

.drawer-accordion-btn.expanded .accordion-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(17, 24, 39, 0.6);
  border-radius: var(--radius-sm);
}

.drawer-accordion-btn.expanded + .drawer-submenu {
  max-height: 500px;
}

.submenu-inner {
  padding: 8px 12px 12px 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.submenu-link {
  display: block;
  padding: 8px 0;
  color: #94A3B8;
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.submenu-link:last-of-type {
  border-bottom: none;
}

.submenu-link:hover {
  color: #FFFFFF;
  padding-left: 6px;
}

.submenu-link-view-all {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
}

.submenu-link-view-all:hover {
  color: var(--white);
  transform: translateX(4px);
}

/* Drawer CTA Box */
.drawer-cta-box {
  background: #1F2937;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-cta-box .cta-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

.drawer-cta-box .cta-desc {
  font-size: 12.5px;
  color: #AAB4C3;
  line-height: 1.5;
  margin: 0;
}

.drawer-cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.btn-drawer {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  width: 100%;
}

.btn-drawer-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-drawer-call:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* Contact Info in Drawer */
.drawer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12.5px;
  color: #AAB4C3;
  line-height: 1.45;
}

.drawer-contact-row .contact-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.drawer-contact-row .contact-heading {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #718096;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.drawer-contact-row p {
  margin: 0;
  color: #E2E8F0;
}

.drawer-contact-row .phone-link {
  display: block;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 13px;
  margin-top: 2px;
  transition: var(--transition);
}

.drawer-contact-row .phone-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Drawer Footer */
.drawer-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.drawer-footer-brand {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.drawer-footer-tagline {
  font-size: 11px;
  color: #64748B;
  letter-spacing: 0.03em;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-menu-drawer {
    width: 380px;
    max-width: 42vw;
  }
}

/* --------------------------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 740px;
  background-color: var(--navy-dark);
  background-image: url('../images/hero/hero-concrete-logistics.jpg');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 90px 0 110px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 24, 39, 0.96) 0%,
    rgba(17, 24, 39, 0.88) 45%,
    rgba(17, 24, 39, 0.40) 80%,
    rgba(17, 24, 39, 0.20) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background-color: var(--gold-light);
}

.hero-desc {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
  color: #d2dee8;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-capabilities {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: flex-end;
}

.capability-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--gold);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  width: 280px;
  transition: var(--transition);
}

.capability-card:hover {
  background: rgba(17, 24, 39, 0.92);
  border-color: var(--gold);
  transform: translateX(-6px);
}

.capability-icon {
  width: 36px;
  height: 36px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.capability-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.capability-info p {
  font-size: 12px;
  color: #b7cbdb;
  line-height: 1.4;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 1.6s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

/* --------------------------------------------------------------------------
   8. BUSINESS DIVISIONS SECTION
   -------------------------------------------------------------------------- */
.section-divisions {
  padding: 100px 0;
  background-color: var(--off-white);
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .divisions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.division-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
}

.division-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #D1D5DB;
}

.division-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.division-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.division-card:hover .division-image-wrapper img {
  transform: scale(1.05);
}

.division-badge-float {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--navy-dark);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.division-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.division-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.division-icon {
  width: 44px;
  height: 44px;
  color: var(--navy);
  flex-shrink: 0;
}

.division-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.division-category {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.division-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 26px;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   9. ABOUT SECTION (EDITORIAL SPLIT)
   -------------------------------------------------------------------------- */
.section-about {
  padding: 110px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image-column {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.about-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}

.about-experience-badge .badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.about-experience-badge .badge-desc {
  font-size: 13px;
  color: #cfdbe6;
  line-height: 1.4;
}

.about-content-column .section-title {
  margin-bottom: 20px;
}

.about-lead {
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 30px;
}

.timeline-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.timeline-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.point-number {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(75, 46, 131, 0.08);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.point-content h4 {
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--navy);
}

.point-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. BUSINESS MODEL DIAGRAM
   -------------------------------------------------------------------------- */
.section-business-model {
  padding: 90px 0;
  background-color: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.model-diagram {
  margin-top: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.model-central-node {
  background: var(--navy-dark);
  color: var(--white);
  padding: 24px 36px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 440px;
  width: 100%;
}

.model-central-node h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 4px;
}

.model-central-node span {
  font-size: 12px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.model-connections {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 50px;
  margin: 0 auto;
}

.model-line-vertical {
  width: 2px;
  height: 25px;
  background: var(--gold);
  margin: 0 auto;
}

.model-line-horizontal {
  width: 50%;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
  position: relative;
}

.model-line-horizontal::before,
.model-line-horizontal::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 25px;
  background: var(--gold);
}

.model-line-horizontal::before {
  left: 0;
}

.model-line-horizontal::after {
  right: 0;
}

.model-branches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  width: 100%;
  margin-top: 5px;
}

.model-branch-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.model-branch-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.model-branch-card h4 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 6px;
}

.model-branch-card .branch-type {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.model-branch-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. CONCRETE PRODUCTS SECTION (DARK NAVY)
   -------------------------------------------------------------------------- */
.section-products-dark {
  padding: 110px 0;
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.product-card {
  background: var(--navy-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold);
  transition: width 0.3s ease;
  z-index: 3;
}

.product-card:hover::before {
  width: 100%;
}

.product-image-box {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-box img {
  transform: scale(1.08);
}

.product-num {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(17, 24, 39, 0.85);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-info {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}

.product-description {
  font-size: 13.5px;
  color: #a6bac9;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.product-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}

.product-action-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.product-card:hover .product-action-link svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   12. LOGISTICS SECTION
   -------------------------------------------------------------------------- */
.section-logistics {
  padding: 110px 0;
  background: var(--white);
}

.logistics-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.logistics-image-side {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.logistics-image-side img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.logistics-highlight-banner {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(6px);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold);
  color: var(--white);
}

.logistics-highlight-banner h5 {
  color: var(--gold-light);
  font-size: 14px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logistics-highlight-banner p {
  font-size: 13px;
  color: #cfdbe6;
  margin: 0;
}

.services-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  margin: 30px 0 36px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-dark);
  font-weight: 500;
}

.checklist-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   13. FLEET SECTION
   -------------------------------------------------------------------------- */
.section-fleet {
  padding: 100px 0;
  background-color: var(--off-white);
  border-top: 1px solid var(--border);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 45px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #D1D5DB;
}

.fleet-img-wrap {
  height: 220px;
  overflow: hidden;
}

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.05);
}

.fleet-card-body {
  padding: 24px;
}

.fleet-card-body h4 {
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--navy);
}

.fleet-spec-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.fleet-spec-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid #edf2f5;
}

.fleet-spec-label {
  font-weight: 500;
  color: var(--text-dark);
}

.fleet-spec-val {
  color: var(--text-muted);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   14. INDUSTRIES WE SERVE
   -------------------------------------------------------------------------- */
.section-industries {
  padding: 110px 0;
  background: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.industry-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.industry-card:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.industry-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(75, 46, 131, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}

.industry-card:hover .industry-icon-box {
  background: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.1);
}

.industry-icon-box svg {
  width: 28px;
  height: 28px;
}

.industry-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
  transition: var(--transition);
}

.industry-card:hover h4 {
  color: var(--white);
}

.industry-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  transition: var(--transition);
}

.industry-card:hover p {
  color: #baccd9;
}

/* --------------------------------------------------------------------------
   15. OUR STRENGTH (MANUFACTURING + TRANSPORTATION)
   -------------------------------------------------------------------------- */
.section-strength {
  padding: 100px 0;
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.strength-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.strength-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.strength-img-box {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.strength-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strength-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(75, 46, 131, 0.4);
  z-index: 2;
}

.strength-content h3 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 20px;
}

.strength-content p {
  color: #c4d6e4;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.strength-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
}

.pillar-item h5 {
  color: var(--gold-light);
  font-size: 15px;
  margin-bottom: 4px;
}

.pillar-item p {
  font-size: 13.5px;
  color: #b7cbdb;
  margin: 0;
}

/* --------------------------------------------------------------------------
   16. OUR VALUES
   -------------------------------------------------------------------------- */
.section-values {
  padding: 110px 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.value-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 22px;
  text-align: left;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  background: var(--white);
}

.value-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 18px;
}

.value-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--navy);
}

.value-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   17. LOCATIONS SECTION
   -------------------------------------------------------------------------- */
.section-locations {
  padding: 100px 0;
  background-color: var(--off-white);
  border-top: 1px solid var(--border);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.location-card-icon {
  width: 28px;
  height: 28px;
  color: var(--navy);
}

.location-card h4 {
  font-size: 18px;
  color: var(--navy);
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.location-detail svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.location-phones {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #edf2f5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.phone-link:hover {
  color: var(--gold-dark);
}

/* --------------------------------------------------------------------------
   18. LEADERSHIP SECTION
   -------------------------------------------------------------------------- */
.section-leadership {
  padding: 110px 0;
  background: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.leader-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 38px 26px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: #D1D5DB;
}

.leader-badge-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(75, 46, 131, 0.07);
  border: 1px solid rgba(75, 46, 131, 0.18);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 22px;
}

.leader-photo-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
  border-radius: 50%;
  padding: 6px;
  background: #FFFFFF;
  border: 3px solid #E5E7EB;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  flex-shrink: 0;
  overflow: hidden;
}

.leader-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  margin-bottom: 0;
  border: none;
  box-shadow: none;
}

.leader-card:hover .leader-photo-wrap {
  transform: scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(75, 46, 131, 0.18);
}

.leader-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.leader-role {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  line-height: 1.35;
}

.leader-division {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.leader-divider {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 16px;
  opacity: 0.6;
}

.leader-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #4B5563;
  font-style: italic;
  background: #F9FAFB;
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
}

.leader-phone-box {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  width: 100%;
}

.leader-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.leader-phone-link:hover {
  color: var(--gold);
}

.leader-phone-link svg {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   19. CONTACT CTA SECTION
   -------------------------------------------------------------------------- */
.section-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
}

.cta-box {
  max-width: 780px;
  margin: 0 auto;
}

.cta-box h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}

.cta-box p {
  color: #c9d8e4;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 34px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   20. CONTACT FORM COMPONENT
   -------------------------------------------------------------------------- */
.contact-form-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  text-align: left;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-size: 14.5px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(75, 46, 131, 0.15);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.form-feedback.success {
  display: block;
  background: #e6f7ec;
  color: #106634;
  border: 1px solid #a8e5bc;
}

.form-feedback.error {
  display: block;
  background: #fdf0ef;
  color: #a7231d;
  border: 1px solid #f8b8b4;
}

/* --------------------------------------------------------------------------
   21. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-brand p {
  color: #a7bbcc;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #b1c4d4;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: #b1c4d4;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #7e95a8;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold-light);
  color: #FFFFFF;
  border-color: var(--gold-light);
}

.social-link svg {
  width: 15px;
  height: 15px;
}

/* --------------------------------------------------------------------------
   22. BACK TO TOP BUTTON
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--navy-dark);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   23. INNER PAGE SPECIFIC STYLES
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--gold);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: clamp(34px, 4.5vw, 54px);
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero-subtitle {
  font-size: 18px;
  color: var(--gold-light);
  font-weight: 500;
  max-width: 680px;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #a7bbcc;
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb-separator {
  color: var(--gold);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-feature-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   24. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   25. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-capabilities {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .capability-card {
    width: calc(33.333% - 12px);
  }
  .divisions-grid {
    grid-template-columns: 1fr;
  }
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image-main img {
    height: 380px;
  }
  .about-experience-badge {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
  .logistics-split {
    grid-template-columns: 1fr;
  }
  .strength-grid {
    grid-template-columns: 1fr;
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }
  .top-bar .container {
    justify-content: center;
  }
  .nav-menu,
  .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-section {
    min-height: auto;
    padding: 60px 0 80px;
  }
  .capability-card {
    width: 100%;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid-4 {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .services-checklist {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .model-connections {
    display: none;
  }
  .model-branches {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .model-central-node::after {
    content: "↓";
    display: block;
    margin-top: 10px;
    font-size: 20px;
    color: var(--gold);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .services-grid-4 {
    grid-template-columns: 1fr;
  }
  .strength-visual {
    grid-template-columns: 1fr;
  }
  .strength-connector {
    display: none;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .contact-form-container {
    padding: 24px 16px;
  }
}

/* --------------------------------------------------------------------------
   26. WHATSAPP FLOATING WIDGET
   -------------------------------------------------------------------------- */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.whatsapp-btn {
  width: 54px;
  height: 54px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #ffffff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

.whatsapp-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-label {
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-floating-widget:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .whatsapp-floating-widget {
    bottom: 20px;
    left: 20px;
  }
  .whatsapp-btn {
    width: 48px;
    height: 48px;
  }
  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-label {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   27. VIDEO SHOWCASE SECTION
   -------------------------------------------------------------------------- */
.section-video-showcase {
  padding: 100px 0;
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.video-container-wrapper {
  max-width: 1000px;
  margin: 45px auto 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.video-container-wrapper video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.video-overlay-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(17, 24, 39, 0.85);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 2;
}


/* --------------------------------------------------------------------------
   28. CORPORATE ORGANISATIONAL STRUCTURE
   -------------------------------------------------------------------------- */
.section-org-structure {
  padding: 110px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.org-chart-tree {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.org-root-card {
  background: var(--navy-dark);
  color: var(--white);
  padding: 28px 36px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 680px;
  width: 100%;
  position: relative;
}

.org-root-card h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 6px;
}

.org-root-card .org-role {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.org-root-card p {
  color: #c0d3e2;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.org-divisions-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  width: 100%;
}

.org-division-column {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.org-division-column.concrete {
  border-top-color: var(--gold);
}

.org-division-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 4px;
}

.org-division-header .div-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.org-division-header h4 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}

.org-division-header span {
  font-size: 13px;
  color: var(--text-muted);
}

.org-role-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.org-role-card:hover {
  transform: translateX(4px);
  border-left-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.org-role-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.org-role-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.org-subteam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 992px) {
  .org-divisions-container {
    grid-template-columns: 1fr;
  }
  .org-subteam-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   29. ADVANCED RESPONSIVE & MOBILE POLISH (320px to 1920px)
   ========================================================================== */

/* Global Overflow & Mobile Reset */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* Fluid Headings */
h1, .hero-title, .page-hero-title {
  font-size: clamp(1.85rem, 5vw, 3.4rem);
  line-height: 1.15;
  word-wrap: break-word;
}

h2, .section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.25;
  word-wrap: break-word;
}

h3 {
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  line-height: 1.3;
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.35;
}

/* Call To Action Box Styling */
.section-cta {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 56px);
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  width: 100%;
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-box p {
  font-size: clamp(14px, 1.1vw, 16.5px);
  color: #c4d7e6;
  max-width: 680px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Button Touch Target Fix */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
}

/* Fleet Card & Spec List Wrap */
.fleet-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.fleet-spec-label {
  font-size: 13px;
  color: var(--text-muted);
}

.fleet-spec-val {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

/* Logistics Highlight Banner */
.logistics-highlight-banner {
  background: var(--navy-dark);
  color: var(--white);
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.logistics-highlight-banner h5 {
  color: var(--gold-light);
  font-size: 15px;
  margin-bottom: 4px;
}

.logistics-highlight-banner p {
  color: #c0d3e2;
  font-size: 13px;
  margin: 0;
  line-height: 1.45;
}

/* Services Checklist */
.services-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-top: 24px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-dark);
}

.checklist-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   MOBILE BREAKPOINTS SPECIFIC FIXES (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* Hide Top Bar on Mobile */
  .top-bar {
    display: none !important;
  }

  /* Mobile Header Sizing & Prominent Logo */
  .site-header {
    height: auto !important;
    padding: 0 16px !important;
  }

  .navbar {
    height: 74px !important;
    padding: 0 !important;
  }

  .brand-logo img {
    height: 54px !important;
    max-height: 54px !important;
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain !important;
  }

  .mobile-toggle {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    display: flex !important;
  }

  /* Logistics Page Mobile Fixes */
  .logistics-split {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .logistics-image-side img {
    height: 280px !important;
    object-fit: cover !important;
  }

  .logistics-highlight-banner {
    position: static !important;
    margin-top: 14px !important;
    width: 100% !important;
  }

  .services-checklist {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* Home Hero Mobile Background Positioning */
  .hero-section {
    min-height: auto !important;
    padding: 64px 0 70px !important;
    background-position: 65% center !important;
  }

  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .cta-actions {
    flex-direction: column !important;
    width: 100% !important;
  }

  .cta-actions .btn {
    width: 100% !important;
  }

  /* Float Widgets Mobile Spacing */
  .whatsapp-floating-widget {
    bottom: 20px !important;
    left: 16px !important;
    z-index: 990 !important;
  }

  .back-to-top {
    bottom: 20px !important;
    right: 16px !important;
    width: 44px !important;
    height: 44px !important;
    z-index: 990 !important;
  }
}

/* Extremely Small Mobile Screens (320px - 414px) */
@media (max-width: 414px) {
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .brand-logo img {
    height: 48px !important;
    max-height: 48px !important;
    max-width: 180px !important;
  }

  .cta-box {
    padding: 28px 14px !important;
  }

  .products-grid,
  .industries-grid,
  .fleet-grid,
  .values-grid,
  .locations-grid {
    grid-template-columns: 1fr !important;
  }

  .location-phones {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .phone-link {
    width: 100% !important;
    justify-content: flex-start !important;
  }
}


/* ==========================================================================
   30. DEDICATED LOGISTICS SECTION RESPONSIVENESS (All Mobile & Tablet Screens)
   ========================================================================== */

/* Medium Devices & Tablets (<= 992px) */
@media (max-width: 992px) {
  .section-logistics {
    padding: 60px 0 !important;
  }

  .logistics-split {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .logistics-image-side {
    max-width: 100% !important;
  }

  .logistics-image-side img {
    height: 360px !important;
  }
}

/* Tablets & Large Phones (<= 768px) */
@media (max-width: 768px) {
  .section-logistics {
    padding: 50px 0 !important;
  }

  .logistics-split {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* Separate image and banner on mobile for zero visual clipping */
  .logistics-image-side {
    position: relative !important;
    overflow: visible !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .logistics-image-side img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    display: block !important;
  }

  .logistics-highlight-banner {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 14px !important;
    width: 100% !important;
    background: var(--navy-dark) !important;
    padding: 16px 18px !important;
    border-radius: var(--radius-sm) !important;
    border-left: 4px solid var(--gold) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
  }

  .logistics-highlight-banner h5 {
    font-size: 13.5px !important;
    color: var(--gold-light) !important;
    margin-bottom: 4px !important;
    letter-spacing: 0.04em !important;
  }

  .logistics-highlight-banner p {
    font-size: 12.5px !important;
    color: #cfdbe6 !important;
    line-height: 1.45 !important;
  }

  .services-checklist {
    grid-template-columns: 1fr !important;
    gap: 11px !important;
    margin: 22px 0 28px !important;
  }

  .checklist-item {
    font-size: 14px !important;
    line-height: 1.4 !important;
    padding: 2px 0 !important;
  }

  .logistics-content-side .btn {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 14px 18px !important;
    font-size: 13px !important;
    letter-spacing: 0.02em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .logistics-content-side .btn span {
    white-space: normal !important;
    text-align: center !important;
  }
}

/* Small Phones (320px to 480px: iPhone SE, Galaxy, Pixel, etc.) */
@media (max-width: 480px) {
  .section-logistics {
    padding: 40px 0 !important;
  }

  .logistics-split {
    gap: 22px !important;
  }

  .logistics-image-side img {
    height: 220px !important;
  }

  .logistics-highlight-banner {
    margin-top: 10px !important;
    padding: 13px 15px !important;
  }

  .logistics-highlight-banner h5 {
    font-size: 13px !important;
  }

  .logistics-highlight-banner p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .logistics-content-side .section-eyebrow {
    font-size: 11.5px !important;
    margin-bottom: 8px !important;
  }

  .logistics-content-side .section-title {
    font-size: clamp(20px, 6vw, 25px) !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  .logistics-content-side .section-desc {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 16px !important;
  }

  .services-checklist {
    gap: 9px !important;
    margin: 16px 0 24px !important;
  }

  .checklist-item {
    font-size: 13px !important;
    gap: 8px !important;
  }

  .checklist-icon {
    width: 16px !important;
    height: 16px !important;
    margin-top: 1px !important;
  }

  .logistics-content-side .btn {
    padding: 12px 14px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }
}


/* ==========================================================================
   31. PHOTO GALLERY & LIGHTBOX SYSTEM
   ========================================================================== */
.gallery-section {
  padding: 80px 0 110px;
  background: var(--off-white);
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
}

.gallery-filter-btn {
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--navy-dark);
  color: var(--gold-light);
  border-color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #D1D5DB;
}

.gallery-img-box {
  width: 100%;
  height: 310px;
  overflow: hidden;
  position: relative;
  background: #111827;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.gallery-card:hover .gallery-img-box img {
  transform: scale(1.06);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.gallery-card:hover .gallery-zoom-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Descriptions & headings hidden as requested */
.gallery-overlay-badge,
.gallery-overlay-title,
.gallery-card-footer,
.lightbox-title {
  display: none !important;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.96);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 1050px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-meta {
  margin-top: 14px;
  text-align: center;
  color: var(--white);
}

.lightbox-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.lightbox-counter {
  font-size: 13px;
  color: #a7bbcc;
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10002;
}

.lightbox-close-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10001;
}

.lightbox-nav-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.lightbox-prev-btn {
  left: 24px;
}

.lightbox-next-btn {
  right: 24px;
}

/* Gallery Responsive Breakpoints */
@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .gallery-img-box {
    height: 240px;
  }
  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev-btn {
    left: 10px;
  }
  .lightbox-next-btn {
    right: 10px;
  }
}


/* ==========================================================================
   32. OUR PORTFOLIO / OUR WORK CAROUSEL (HOME PAGE)
   ========================================================================== */
.section-portfolio {
  padding: 100px 0;
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}

.portfolio-nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.portfolio-ctrl-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.portfolio-ctrl-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  transform: scale(1.05);
}

.portfolio-carousel-container {
  position: relative;
  width: 100%;
}

.portfolio-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 24px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.portfolio-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.portfolio-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.portfolio-img-box {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: var(--navy-dark);
}

.portfolio-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.portfolio-card:hover .portfolio-img-box img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-zoom-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.portfolio-card:hover .portfolio-zoom-icon {
  transform: scale(1);
}

.portfolio-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(17, 24, 39, 0.88);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.04em;
}

.portfolio-info {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
}

.portfolio-desc {
  font-size: 13.5px;
  color: #a7bbcc;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.portfolio-view-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.portfolio-view-link:hover {
  color: var(--white);
  transform: translateX(4px);
}

.portfolio-dots-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.portfolio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.portfolio-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 6px;
}

/* ==========================================================================
   33. COMPANY PROFILE PDF DOWNLOAD CARDS
   ========================================================================== */
.section-pdf-downloads {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pdf-download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 36px;
}

.pdf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pdf-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #D1D5DB;
  border-top-color: var(--navy);
}

.pdf-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(75, 46, 131, 0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pdf-card-body h4 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 6px;
}

.pdf-card-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.pdf-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: #7b8f9f;
  margin-bottom: 18px;
}

.pdf-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-pdf {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-pdf-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-pdf-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-pdf-secondary {
  background: rgba(0, 0, 0, 0.04);
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn-pdf-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 992px) {
  .portfolio-card {
    flex: 0 0 calc(50% - 12px);
  }
  .pdf-download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .portfolio-card {
    flex: 0 0 100%;
    min-width: 260px;
  }
  .pdf-card {
    flex-direction: column;
    padding: 24px 20px;
  }
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Leadership Section Responsive */
@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .leader-photo-wrap {
    width: 210px;
    height: 210px;
  }
}

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 460px;
    margin: 40px auto 0;
  }
  .leader-card {
    padding: 36px 24px 30px;
  }
  .leader-photo-wrap {
    width: 210px;
    height: 210px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .leadership-grid {
    gap: 24px;
    max-width: 100%;
    margin-top: 32px;
  }
  .leader-card {
    padding: 32px 18px 26px;
  }
  .leader-photo-wrap {
    width: 200px;
    height: 200px;
    margin-bottom: 18px;
  }
  .leader-name {
    font-size: 20px;
  }
}

/* Portfolio & Work Carousel Mobile Refinements */
@media (max-width: 768px) {
  .section-portfolio {
    padding: 70px 0;
  }
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }
  .portfolio-nav-controls {
    width: 100%;
    justify-content: space-between;
  }
  .portfolio-ctrl-btn {
    width: 44px;
    height: 44px;
  }
  .portfolio-track {
    gap: 16px;
    padding-bottom: 16px;
  }
  .portfolio-card {
    flex: 0 0 88%;
    min-width: 260px;
  }
  .portfolio-img-box {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .portfolio-card {
    flex: 0 0 94%;
    min-width: 240px;
  }
  .portfolio-img-box {
    height: 240px;
  }
}

/* Company Profile PDF Downloads Responsive Refinements */
@media (max-width: 768px) {
  .section-pdf-downloads {
    padding: 60px 0;
  }
  .pdf-download-grid {
    gap: 20px;
    margin-top: 26px;
  }
}

@media (max-width: 480px) {
  .section-pdf-downloads {
    padding: 45px 0;
  }
  .pdf-card {
    padding: 20px 16px;
    gap: 16px;
  }
  .pdf-icon-box {
    width: 52px;
    height: 52px;
  }
  .pdf-icon-box svg {
    width: 28px;
    height: 28px;
  }
  .pdf-card-body h4 {
    font-size: 17px;
  }
  .pdf-card-body p {
    font-size: 13px;
  }
  .pdf-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .btn-pdf {
    width: 100%;
    justify-content: center;
  }
}

/* Footer Logo Badge */
.footer-logo-badge {
  display: inline-block;
  background: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.footer-logo-badge img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
}
