/* ==========================================================================
   MAAS IMPEX COMPANY LIMITED - DESIGN SYSTEM & MASTER STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Color Palette */
  --navy-dark: #072240;
  --navy: #0a3b6c;
  --navy-light: #165392;
  --accent-gold: #d4a359;
  --accent-gold-hover: #b88942;
  --ink: #1e293b;
  --muted: #475569;
  --muted-light: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #ffffff;

  /* Typography Scale - Desktop Defaults */
  --font-main:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;

  --fs-hero-h1: 52px;
  --fs-page-h1: 44px;
  --fs-h2: 34px;
  --fs-h3: 24px;
  --fs-body: 17px;
  --fs-nav: 12.5px;
  --fs-btn: 15px;
  --fs-input: 16px;

  --lh-heading: 1.2;
  --lh-body: 1.6;

  /* Layout Constraints */
  --max-width: 1180px;
  --text-max-width: 800px;

  /* Section Spacing */
  --section-py: 80px;
  --section-px: 24px;

  /* Shadows & Effects */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px -2px rgba(10, 59, 108, 0.1);
  --shadow-lg: 0 12px 32px -4px rgba(10, 59, 108, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Mobile Responsive Typography & Spacing Override */
@media (max-width: 768px) {
  :root {
    --fs-hero-h1: 34px;
    --fs-page-h1: 32px;
    --fs-h2: 26px;
    --fs-h3: 21px;
    --fs-body: 16px;
    --fs-nav: 13.5px;
    --fs-btn: 15px;
    --section-py: 56px;
    --section-px: 20px;
  }
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  color: var(--ink);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--navy-dark);
  line-height: var(--lh-heading);
  font-weight: 700;
  margin-top: 0;
}

h1 {
  font-size: var(--fs-page-h1);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-h2);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-h3);
  margin-bottom: 14px;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--navy-light);
}

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

/* --------------------------------------------------------------------------
   3. STICKY / FIXED HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: none;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.35s ease;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  height: 64px;
  max-height: 64px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.site-header .logo-img {
  height: 64px;
  max-height: 64px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header .nav a {
  font-size: var(--fs-nav);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 2px;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: color 0.35s ease;
}

.site-header .nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.site-header .nav a:hover::after,
.site-header .nav a.active::after {
  width: 100%;
}

.site-header .nav a:hover,
.site-header .nav a.active {
  color: var(--accent-gold);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  order: 3;
}

/* --------------------------------------------------------------------------
   LANGUAGE SWITCHER COMPONENT
   -------------------------------------------------------------------------- */
.lang-switcher {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.site-header.is-scrolled .lang-btn {
  background: rgba(10, 37, 64, 0.06);
  border-color: rgba(10, 37, 64, 0.2);
  color: var(--navy);
}

.lang-btn:hover,
.site-header.is-scrolled .lang-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.lang-btn .globe-icon {
  width: 15px;
  height: 15px;
}

.lang-btn .chevron-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.lang-switcher.is-open .chevron-icon {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 165px;
  background: #041427;
  border: 1px solid rgba(212, 163, 89, 0.35);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1001;
}

.lang-switcher.is-open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-option:hover,
.lang-option.active {
  background: rgba(212, 163, 89, 0.15);
  color: var(--accent-gold);
}

.lang-option .flag {
  font-size: 15px;
  line-height: 1;
}

#google_translate_element {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Hide Google Translate Default UI Overlays & Top Banner Bar */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
iframe.skiptranslate,
iframe[id*="goog-gt-tt"],
iframe[class*="skiptranslate"],
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pos,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  z-index: -99999 !important;
  pointer-events: none !important;
}

body {
  top: 0px !important;
  position: static !important;
}

html {
  top: 0px !important;
  margin-top: 0px !important;
  padding-top: 0px !important;
}

.skiptranslate {
  font-size: 0 !important;
}
.skiptranslate * {
  font-size: initial;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  cursor: pointer;
  color: #ffffff;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Scrolled state: Header turns white with dark navigation text */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header.is-scrolled .header-inner {
  padding: 12px var(--section-px);
}

.site-header.is-scrolled .nav a {
  color: var(--ink);
  text-shadow: none;
}

.site-header.is-scrolled .nav a::after {
  background-color: var(--navy);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav a.active {
  color: var(--navy);
}

.site-header.is-scrolled .menu-toggle {
  color: var(--ink);
  border-color: var(--line);
}

/* Mobile Header Layout */
@media (max-width: 992px) {
  .site-header .logo-img {
    height: 52px;
    max-height: 52px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--section-px);
    gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .site-header .nav a,
  .site-header.is-scrolled .nav a {
    color: var(--ink) !important;
    text-shadow: none !important;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid var(--soft);
  }

  .site-header .nav a:hover,
  .site-header .nav a.active,
  .site-header.is-scrolled .nav a:hover,
  .site-header.is-scrolled .nav a.active {
    color: var(--navy) !important;
  }
}

/* --------------------------------------------------------------------------
   4. HERO VIDEO SECTION (HOMEPAGE)
   -------------------------------------------------------------------------- */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 86vh;
  height: 90vh;
  max-height: 980px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy-dark);
}

@media (max-width: 768px) {
  .hero-video-section {
    min-height: 680px;
    height: auto;
  }
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(7, 34, 64, 0.48),
      rgba(15, 23, 42, 0.38));
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px var(--section-px) 60px;
  color: var(--white);
}

.hero-text-block {
  width: 60%;
  max-width: 100%;
}

.hero-text-block .hero-title,
.hero-text-block .hero-subtitle,
.hero-text-block .hero-description {
  max-width: 100%;
}

@media (max-width: 992px) {
  .hero-text-block {
    width: 100%;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  background: rgba(212, 163, 89, 0.15);
  border: 1px solid rgba(212, 163, 89, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: var(--fs-hero-h1);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 860px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 16px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #cbd5e1;
  max-width: 720px;
  margin-bottom: 32px;
}

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

/* --------------------------------------------------------------------------
   5. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-btn);
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--navy);
  color: var(--white) !important;
}

.btn-primary:hover {
  background-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--navy-dark) !important;
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   6. SECTION LAYOUTS & CARDS
   -------------------------------------------------------------------------- */
.section {
  padding: var(--section-py) var(--section-px);
}

.section-alt {
  background-color: var(--soft);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.container-text {
  max-width: var(--text-max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
}

/* Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {

  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 59, 108, 0.3);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(10, 59, 108, 0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  font-size: 16px;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 16px;
}

.card-link:hover {
  gap: 10px;
}

/* Process Step Cards */
.process-card {
  background: var(--white);
  border-top: 4px solid var(--navy);
  border-left: none;
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.process-card h3 {
  text-align: center;
  width: 100%;
}

.process-card p {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.process-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold-hover);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-align: center;
  width: 100%;
}

/* Why MAAS Highlights */
.hero-video-section+.section {
  padding-top: 32px;
}

.hero-video-section+.section .stats-banner {
  margin-top: 0;
}

.stats-banner {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .stats-banner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

.stats-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   7. INTERACTIVE ACCORDION (FAQ) & PORT IMAGE
   -------------------------------------------------------------------------- */
.faq-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .faq-layout-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.faq-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(10, 59, 108, 0.14);
  border: 1px solid rgba(10, 59, 108, 0.1);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy-dark);
}

.faq-port-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 1;
}

.faq-image-card:hover .faq-port-img {
  transform: scale(1.04);
}

.faq-image-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top,
      rgba(10, 59, 108, 0.95) 0%,
      rgba(10, 59, 108, 0.65) 65%,
      rgba(10, 59, 108, 0) 100%);
  padding: 32px 28px 28px;
  color: var(--white);
}

.faq-badge-tag {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.faq-image-overlay h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.faq-image-overlay p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-button {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  fill: var(--navy);
  flex-shrink: 0;
}

.faq-item.is-active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-item.is-active .faq-content {
  max-height: 300px;
  padding: 0 24px 20px;
  transition: max-height 0.3s ease-in-out;
}

/* --------------------------------------------------------------------------
   8. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  text-align: center;
  padding: 64px var(--section-px);
  border-radius: var(--radius-lg);
  margin: var(--section-py) auto 0;
  max-width: var(--max-width);
}

.cta-banner h2 {
  color: var(--white);
  font-size: var(--fs-h2);
  margin-bottom: 16px;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* --------------------------------------------------------------------------
   9. FORM STYLES
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--fs-input);
  font-family: var(--font-main);
  color: var(--ink);
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 59, 108, 0.15);
}

/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #041427;
  color: #94a3b8;
  padding: 64px var(--section-px) 32px;
  border-top: 1px solid #1e293b;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    margin-bottom: 36px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 44px var(--section-px) 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    margin-bottom: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 24px;
    margin-bottom: 4px;
  }

  .footer-brand .footer-logo-img {
    height: 44px;
  }

  .footer-description {
    font-size: 13.5px;
    margin-bottom: 16px;
    line-height: 1.55;
  }

  .footer-heading {
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 13.5px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 24px;
    font-size: 13px;
  }

  .footer-legal-links {
    gap: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 440px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 0;
  }
}

.footer-brand .footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-description {
  color: #94a3b8;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 420px;
}

.footer-heading {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 14.5px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 2px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--navy);
  transform: translateY(-2px);
  color: var(--white);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   11. ABOUT US PAGE COMPONENTS
   -------------------------------------------------------------------------- */
.page-hero,
main>section:first-of-type:not(.hero-video-section) {
  padding-top: 135px !important;
  padding-bottom: 70px !important;
}

@media (max-width: 640px) {

  .page-hero,
  main>section:first-of-type:not(.hero-video-section) {
    padding-top: 115px !important;
    padding-bottom: 50px !important;
  }
}

.page-hero {
  background:
    linear-gradient(rgba(4, 20, 39, 0.75), rgba(10, 37, 64, 0.85)),
    url("../images/about-us-hero.webp") center/cover no-repeat;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle,
      rgba(212, 160, 23, 0.08) 0%,
      transparent 70%);
  pointer-events: none;
}

.page-hero .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

.page-hero p.hero-lead {
  font-size: clamp(17px, 2.5vw, 20px);
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.overview-box {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .overview-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.overview-image-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(10, 59, 108, 0.12);
  border: 1px solid #e2e8f0;
}

.overview-img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.overview-image-card:hover .overview-img {
  transform: scale(1.03);
}

.mission-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0e2e50 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(10, 59, 108, 0.25);
  border-left: 6px solid var(--accent-gold);
}

.mission-banner h2 {
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mission-banner p {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-light);
}

.value-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(10, 59, 108, 0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--gray-600);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}

/* Management Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  position: relative;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(10, 59, 108, 0.15);
  border-color: var(--accent-gold);
}

.team-image-box {
  position: relative;
  width: 100%;
  height: 330px;
  background: linear-gradient(135deg, #0a2540 0%, #041427 100%);
  overflow: hidden;
}

.team-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}

.team-card:hover .team-image-box img {
  transform: scale(1.06);
}

/* Hover Overlay for Send Email Action */
.team-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 20, 39, 0.82);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  padding: 20px;
  z-index: 3;
}

.team-card:hover .team-hover-overlay {
  opacity: 1;
  visibility: visible;
}

.send-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(212, 160, 23, 0.4);
  transition: all 0.3s ease;
}

.send-email-btn:hover {
  background: var(--white);
  color: var(--navy-dark);
  transform: scale(1.05);
}

.send-email-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.team-card-content {
  padding: 20px 16px;
  text-align: center;
  background: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #f1f5f9;
}

.team-card-content h3 {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 6px;
}

.team-card-content .team-role {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  min-height: auto;
  line-height: 1.4;
}

.overview-content p {
  text-align: justify;
}

/* Who We Work With Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition);
}

.partner-item:hover {
  border-color: var(--navy-light);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.partner-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.12);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.partner-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   12. FLOATING WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
}

/* --------------------------------------------------------------------------
   12. FERTILIZER DIVISION COMPONENTS
   -------------------------------------------------------------------------- */
.product-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(10, 59, 108, 0.1);
  border-color: rgba(10, 59, 108, 0.2);
}

.product-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, #0a2540 0%, #041427 100%);
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: rgba(10, 59, 108, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  align-self: flex-start;
  text-transform: uppercase;
}

.product-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 8px;
}

.product-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

.commercial-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .commercial-split-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.commercial-info-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0c335b 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-left: 6px solid var(--accent-gold);
  box-shadow: 0 14px 36px rgba(10, 59, 108, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.commercial-info-box h3 {
  text-align: center;
}

.commercial-banner-notice {
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.spec-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  border-radius: 8px;
  text-align: center;
}

.spec-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 4px;
  text-align: center;
}

.spec-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

.logistics-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(10, 59, 108, 0.14);
  border: 1px solid rgba(10, 59, 108, 0.1);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy-dark);
}

.logistics-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 1;
}

.logistics-image-card:hover .logistics-img {
  transform: scale(1.04);
}

.logistics-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top,
      rgba(10, 59, 108, 0.95) 0%,
      rgba(10, 59, 108, 0.6) 65%,
      rgba(10, 59, 108, 0) 100%);
  padding: 28px 24px 24px;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card-tag.tag-polymer {
  background: rgba(30, 64, 175, 0.12);
  color: #1e3a8a;
  border: 1px solid rgba(30, 64, 175, 0.25);
}

/* --------------------------------------------------------------------------
   SITE PRELOADER
   -------------------------------------------------------------------------- */
.site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.preloader-logo {
  height: 95px;
  width: auto;
  margin-bottom: 24px;
  animation: preloaderPulse 2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

/* Horizontal Progress Line */
.preloader-line-wrapper {
  width: 240px;
  height: 3.5px;
  background: rgba(10, 59, 108, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.preloader-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--navy) 0%, var(--accent-gold) 50%, var(--navy) 100%);
  border-radius: 4px;
  animation: preloaderLineMove 1.4s ease-in-out infinite;
}

@keyframes preloaderLineMove {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}

.preloader-subtext {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy);
}