/* ==========================================================================
   LUQMAN PETROLEUM / LUQMAN ENERGIES - MASTER CORPORATE STYLESHEET
   Refined, High-Performance, Mobile-First Corporate Energy Design System
   ========================================================================== */

:root {
  /* Brand Color System */
  --brand-blue: #0072CE;
  --brand-blue-hover: #005FA8;
  --brand-blue-dark: #00457C;
  --brand-blue-light: #EBF4FC;
  --brand-blue-glow: rgba(0, 114, 206, 0.15);

  --brand-orange: #F26522;
  --brand-orange-hover: #D94E0E;
  --brand-orange-light: #FEF3EC;
  --brand-orange-glow: rgba(242, 101, 34, 0.18);

  /* Deep Corporate Dark Surfaces */
  --navy-950: #070D1E;
  --navy-900: #0B132B;
  --navy-850: #0F1A3A;
  --navy-800: #152248;
  --navy-700: #1E2E5D;

  /* Neutrals & Surfaces */
  --surface-white: #FFFFFF;
  --surface-light: #F8FAFC;
  --surface-card: #FFFFFF;
  --surface-muted: #F1F5F9;
  --surface-border: #E2E8F0;
  --surface-border-dark: #233360;

  /* Text & Typography */
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  /* Functional Colors */
  --color-success: #10B981;
  --color-success-bg: #ECFDF5;
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1EBE5B;
  --color-warning: #F59E0B;
  --color-danger: #EF4444;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.10), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-glow-blue: 0 12px 30px rgba(0, 114, 206, 0.22);
  --shadow-glow-orange: 0 12px 30px rgba(242, 101, 34, 0.22);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s ease;
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--surface-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-blue-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.2rem;
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Containers & Grid */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container-narrow {
  max-width: 860px;
}

.container-fluid {
  max-width: 1400px;
}

/* Helper Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-brand-blue { color: var(--brand-blue); }
.text-brand-orange { color: var(--brand-orange); }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }

.bg-white { background-color: var(--surface-white); }
.bg-light { background-color: var(--surface-light); }
.bg-navy { background-color: var(--navy-900); color: var(--text-white); }
.bg-navy-dark { background-color: var(--navy-950); color: var(--text-white); }

.hide-mobile { display: block; }
.hide-tablet { display: block; }
.hide-desktop { display: none; }

@media (max-width: 991px) {
  .hide-tablet { display: none !important; }
}

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
  .hide-desktop { display: block !important; }
}

/* Typography Scale */
.display-1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.display-2 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-body);
}

.lead-text-dark {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #CBD5E1;
}

/* Badges & Chips */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
}

.badge-primary {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  border: 1px solid rgba(0, 114, 206, 0.2);
}

.badge-accent {
  background-color: var(--brand-orange-light);
  color: var(--brand-orange);
  border: 1px solid rgba(242, 101, 34, 0.2);
}

.badge-dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: #F8FAFC;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.badge-success {
  background-color: var(--color-success-bg);
  color: var(--color-success);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-primary {
  background-color: var(--brand-blue);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 114, 206, 0.3);
}

.btn-primary:hover {
  background-color: var(--brand-blue-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
}

.btn-accent {
  background-color: var(--brand-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(242, 101, 34, 0.3);
}

.btn-accent:hover {
  background-color: var(--brand-orange-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.btn-outline-primary:hover {
  background-color: var(--brand-blue);
  color: #FFFFFF;
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}

.btn-outline-white:hover {
  background-color: #FFFFFF;
  color: var(--navy-900);
  border-color: #FFFFFF;
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-blue);
  transition: all var(--transition-fast);
}

.link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.link-arrow:hover {
  color: var(--brand-blue-hover);
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

.link-arrow-accent {
  color: var(--brand-orange);
}

.link-arrow-accent:hover {
  color: var(--brand-orange-hover);
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */

.top-bar {
  background-color: var(--navy-950);
  color: #94A3B8;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--surface-border-dark);
  padding: 0.45rem 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-item a {
  color: #CBD5E1;
}

.top-item a:hover {
  color: #FFFFFF;
}

.top-icon {
  width: 14px;
  height: 14px;
  color: var(--brand-orange);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-pulse {
  width: 7px;
  height: 7px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.top-socials a {
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.top-socials a:hover {
  color: var(--brand-orange);
}

.top-socials svg {
  width: 15px;
  height: 15px;
}

/* Main Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(11, 19, 43, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(11, 19, 43, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: #E2E8F0;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: var(--brand-orange);
}

.dropdown-icon {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu Styling */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background-color: var(--navy-900);
  border: 1px solid var(--surface-border-dark);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  color: #E2E8F0;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  transform: translateX(4px);
}

.menu-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: rgba(0, 114, 206, 0.15);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-item:hover .menu-icon-box {
  background-color: var(--brand-orange);
  color: #FFFFFF;
}

.menu-icon-box svg {
  width: 18px;
  height: 18px;
}

.menu-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

.menu-sub {
  font-size: 0.75rem;
  color: #94A3B8;
  line-height: 1.3;
}

/* Megamenu */
.dropdown-wide .dropdown-menu {
  width: 580px;
  padding: 1rem;
}

.megamenu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.megamenu-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
  padding: 0.4rem 0.75rem;
  margin-bottom: 0.2rem;
}

.megamenu-footer {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--surface-border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #94A3B8;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 38px;
  padding: 9px 7px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (max-width: 1080px) {
  .nav-desktop { display: none; }
  .mobile-toggle { display: flex; }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background-color: var(--navy-900);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right var(--transition-slow);
  overflow-y: auto;
}

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

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 13, 30, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--surface-border-dark);
}

.mobile-close {
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 0.4rem;
}

.mobile-close svg {
  width: 24px;
  height: 24px;
}

.mobile-drawer-body {
  padding: 1.2rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.mobile-link {
  display: block;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #E2E8F0;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-link:hover, .mobile-link.active {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--brand-orange);
}

.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: #E2E8F0;
  cursor: pointer;
  border-radius: var(--radius-sm);
  text-align: left;
}

.mobile-accordion-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.mobile-accordion.open .mobile-accordion-toggle svg {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  display: none;
  padding-left: 1.2rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.mobile-accordion.open .mobile-accordion-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-accordion-content a {
  display: block;
  font-size: 0.9rem;
  color: #94A3B8;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
}

.mobile-accordion-content a:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
}

.mobile-contact-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface-border-dark);
}

.mobile-contact-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
  margin-bottom: 0.8rem;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #CBD5E1;
  margin-bottom: 0.6rem;
}

.mobile-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.mobile-btn-group {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

.hero-home {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--navy-950);
  background-image: linear-gradient(135deg, rgba(7, 13, 30, 0.92) 0%, rgba(11, 19, 43, 0.84) 100%), url('../images/Luqman-Mlolongo-Station-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: var(--text-white);
  padding: 5rem 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge-wrap {
  margin-bottom: 1.4rem;
}

.hero-title {
  color: #FFFFFF;
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--brand-orange);
  position: relative;
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  line-height: 1.68;
  color: #E2E8F0;
  margin-bottom: 2.2rem;
  max-width: 680px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Hero Stats Strip */
.hero-stats-strip {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-number span {
  color: var(--brand-orange);
}

.stat-label {
  font-size: 0.86rem;
  color: #94A3B8;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .hero-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }
}

/* Page Inner Hero */
.page-hero {
  background-color: var(--navy-950);
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  padding: 4.5rem 0 3.8rem;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 13, 30, 0.92) 0%, rgba(15, 26, 58, 0.85) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 1.2rem;
}

.breadcrumbs a {
  color: #CBD5E1;
}

.breadcrumbs a:hover {
  color: #FFFFFF;
}

.breadcrumbs svg {
  width: 14px;
  height: 14px;
}

.page-hero-title {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: 1.15rem;
  color: #CBD5E1;
  max-width: 720px;
  line-height: 1.65;
}

/* ==========================================================================
   SECTIONS & GRIDS
   ========================================================================== */

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-header {
  margin-bottom: 3.2rem;
}

.section-header.text-center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.68;
}

/* Cards & Components */
.card {
  background-color: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 114, 206, 0.3);
}

.card-img-top {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: -2rem -2rem 1.5rem -2rem;
  position: relative;
}

.card-img-top img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* Business Area Grid */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.business-card {
  background-color: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.business-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 114, 206, 0.4);
}

.business-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.business-card:hover .business-card-img img {
  transform: scale(1.06);
}

.business-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.business-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.business-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.business-card-icon svg {
  width: 22px;
  height: 22px;
}

.business-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.business-card-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 1.2rem;
  flex: 1;
}

/* Feature Split Sections */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse > * {
  direction: ltr;
}

.split-img-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.split-img-box img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
}

.split-floating-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: rgba(11, 19, 43, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  color: #FFFFFF;
  max-width: 280px;
}

.split-floating-card h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.split-floating-card p {
  font-size: 0.8rem;
  color: #CBD5E1;
  margin: 0;
}

@media (max-width: 991px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Pillars / Values Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.pillar-card {
  background-color: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
}

.pillar-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.pillar-card:nth-child(even) .pillar-icon-wrap {
  background-color: var(--brand-orange-light);
  color: var(--brand-orange);
}

.pillar-icon-wrap svg {
  width: 26px;
  height: 26px;
}

/* ==========================================================================
   STATIONS LOCATOR
   ========================================================================== */

.locator-controls {
  background-color: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.locator-search-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrap svg {
  position: absolute;
  left: 1rem;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background-color: var(--surface-light);
  transition: border-color var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  background-color: #FFFFFF;
}

.country-tabs {
  display: flex;
  gap: 0.4rem;
  background-color: var(--surface-muted);
  padding: 0.3rem;
  border-radius: var(--radius-md);
}

.country-tab {
  padding: 0.55rem 1.2rem;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.country-tab.active {
  background-color: #FFFFFF;
  color: var(--brand-blue);
  box-shadow: var(--shadow-xs);
}

.service-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--surface-border);
}

.service-filter-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 0.4rem;
}

.filter-pill {
  padding: 0.35rem 0.8rem;
  background-color: var(--surface-light);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill:hover, .filter-pill.active {
  background-color: var(--brand-blue);
  color: #FFFFFF;
  border-color: var(--brand-blue);
}

@media (max-width: 767px) {
  .locator-search-row {
    grid-template-columns: 1fr;
  }
}

/* Station Cards Grid */
.stations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.6rem;
}

.station-card {
  background-color: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.station-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue);
}

.station-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.station-country-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
}

.station-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-success);
}

.station-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.station-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.station-address svg {
  width: 16px;
  height: 16px;
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.station-services-wrap {
  margin-bottom: 1.4rem;
  flex: 1;
}

.services-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-tag {
  font-size: 0.75rem;
  background-color: var(--surface-muted);
  color: var(--text-body);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.station-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--surface-border);
}

/* ==========================================================================
   LPG GAS SOLUTIONS
   ========================================================================== */

.cylinder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.cylinder-card {
  background-color: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
}

.cylinder-card.popular {
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-lg);
}

.cylinder-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.cylinder-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem auto;
}

.cylinder-icon-box svg {
  width: 38px;
  height: 38px;
}

.cylinder-size {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.cylinder-target {
  font-size: 0.95rem;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.cylinder-specs {
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 1.2rem 0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  color: var(--text-body);
}

.spec-item span:first-child {
  color: var(--text-muted);
}

/* LPG Safety Steps */
.safety-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.safety-step-card {
  background-color: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: relative;
}

.safety-step-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 0.8rem;
}

/* ==========================================================================
   FUEL CARD B2B SECTION
   ========================================================================== */

.fuel-card-showcase {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-850) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.fuel-card-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.card-mockup-wrap {
  text-align: center;
  position: relative;
}

.card-mockup-wrap img {
  max-width: 380px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}

@media (max-width: 991px) {
  .fuel-card-showcase {
    padding: 2rem 1.5rem;
  }
  .fuel-card-showcase-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Comparison Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.custom-table th {
  background-color: var(--navy-900);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1.1rem 1.4rem;
  text-align: left;
}

.custom-table td {
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--surface-border);
  font-size: 0.92rem;
  color: var(--text-body);
}

.custom-table tr:last-child td {
  border-bottom: none;
}

.custom-table tr:hover td {
  background-color: var(--surface-light);
}

/* ==========================================================================
   CSR & COMMUNITY SECTION
   ========================================================================== */

.csr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.csr-card {
  background-color: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.csr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.csr-card-img {
  height: 220px;
  overflow: hidden;
}

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

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

.csr-card-body {
  padding: 1.5rem;
}

/* ==========================================================================
   NEWS & ARTICLES
   ========================================================================== */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.news-card {
  background-color: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.news-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.news-card-title {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.news-card-title a {
  color: var(--text-dark);
}

.news-card-title a:hover {
  color: var(--brand-blue);
}

.news-card-summary {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 1.2rem;
  flex: 1;
}

/* Single Article Layout */
.article-header {
  margin-bottom: 2.5rem;
}

.article-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.article-hero-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.article-content {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-body);
}

.article-content h2, .article-content h3 {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}

.article-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

/* ==========================================================================
   FORMS & CONTACT
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
}

.contact-card-box {
  background-color: var(--surface-white);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background-color: #FFFFFF;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 114, 206, 0.15);
}

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

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

.contact-info-card {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #FFFFFF;
}

.contact-info-item {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-text h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-info-text p, .contact-info-text a {
  color: #CBD5E1;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.contact-info-text a:hover {
  color: var(--brand-orange);
}

@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   PRE-FOOTER & FOOTER
   ========================================================================== */

.prefooter-cta {
  background-color: var(--surface-light);
  padding: 2rem 0 0;
  position: relative;
  z-index: 10;
  transform: translateY(3rem);
}

.prefooter-box {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-950) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: var(--shadow-xl);
  color: #FFFFFF;
}

.prefooter-text h2 {
  color: #FFFFFF;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.prefooter-text p {
  color: #CBD5E1;
  font-size: 1rem;
  max-width: 600px;
  margin: 0;
}

.prefooter-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .prefooter-box {
    flex-direction: column;
    text-align: center;
    padding: 2.2rem 1.8rem;
  }
  .prefooter-actions {
    width: 100%;
    flex-direction: column;
  }
  .prefooter-actions .btn {
    width: 100%;
  }
}

/* Site Footer */
.site-footer {
  background-color: var(--navy-950);
  color: #94A3B8;
  padding-top: 6rem;
  position: relative;
  border-top: 1px solid var(--surface-border-dark);
}

.footer-top {
  padding-bottom: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.4fr;
  gap: 3rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #94A3B8;
  margin-bottom: 1.4rem;
}

.footer-cert {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #CBD5E1;
  background-color: rgba(255, 255, 255, 0.06);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
}

.cert-pill svg {
  width: 14px;
  height: 14px;
  color: var(--brand-orange);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.4rem;
}

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

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.88rem;
}

.contact-item {
  display: flex;
  gap: 0.65rem;
  line-height: 1.45;
  color: #CBD5E1;
}

.contact-item a {
  color: #CBD5E1;
}

.contact-item a:hover {
  color: var(--brand-orange);
}

.c-icon {
  width: 18px;
  height: 18px;
  color: var(--brand-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social-wrap {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--surface-border-dark);
}

.social-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  margin-bottom: 0.6rem;
}

.social-icons {
  display: flex;
  gap: 0.6rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background-color: var(--brand-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid var(--surface-border-dark);
  padding: 1.4rem 0;
  font-size: 0.84rem;
  color: #64748B;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links-inline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-links-inline a {
  color: #94A3B8;
}

.footer-links-inline a:hover {
  color: #FFFFFF;
}

.developer-credit {
  color: #94A3B8;
}

.developer-credit a {
  color: var(--brand-orange);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.developer-credit a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

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

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--brand-blue);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 990;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--brand-orange);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   BRAND-LED LIGHT THEME REFINEMENT
   A spacious blue, orange and white presentation built around Luqman colours.
   ========================================================================== */
:root {
  --brand-blue: #0072CE;
  --brand-blue-hover: #005FA8;
  --brand-blue-dark: #005FA8;
  --brand-blue-light: #EAF5FD;
  --brand-blue-glow: rgba(0, 114, 206, 0.16);
  --brand-orange: #F26522;
  --brand-orange-hover: #D9571A;
  --brand-orange-light: #FFF1E9;
  --brand-orange-glow: rgba(242, 101, 34, 0.18);

  /* Retained variable names now resolve to bright brand tones, not dark surfaces. */
  --navy-950: #0072CE;
  --navy-900: #087CC9;
  --navy-850: #1689D2;
  --navy-800: #2C96D8;
  --navy-700: #5BAFE4;

  --surface-light: #F7FBFE;
  --surface-muted: #EDF7FD;
  --surface-border: #D5EAF8;
  --surface-border-dark: rgba(255, 255, 255, 0.36);
  --text-dark: #0B5789;
  --text-body: #365D76;
  --text-muted: #6B879A;
  --text-light: #8BA8BA;

  --shadow-sm: 0 6px 16px rgba(0, 114, 206, 0.07);
  --shadow-md: 0 12px 30px rgba(0, 114, 206, 0.10);
  --shadow-lg: 0 18px 42px rgba(0, 114, 206, 0.13);
  --shadow-xl: 0 24px 56px rgba(0, 114, 206, 0.16);
}

/* A wider framework and more breathing room across every page. */
.container {
  max-width: 1440px;
  padding-left: clamp(1.5rem, 3vw, 3.5rem);
  padding-right: clamp(1.5rem, 3vw, 3.5rem);
}

.container-narrow { max-width: 960px; }
.container-fluid { max-width: 1540px; }

.section { padding: clamp(5rem, 8vw, 7.5rem) 0; }
.section-sm { padding: clamp(3.75rem, 5vw, 5rem) 0; }
.section-header { margin-bottom: clamp(2.75rem, 4vw, 4.25rem); }
.section-intro { max-width: 700px; }
.section-header.text-center { max-width: 790px; }
.split-grid { gap: clamp(3rem, 6vw, 5.5rem); }
.business-grid, .pillars-grid, .news-grid, .csr-gallery-grid, .cylinder-grid { gap: 2rem; }

.bg-light { background-color: #F7FBFE; }
.bg-navy,
.bg-navy-dark {
  background: linear-gradient(118deg, var(--brand-blue) 0%, #1187D2 67%, var(--brand-orange) 150%);
  color: var(--text-white);
}

/* Header: crisp white navigation with a comfortable corporate layout. */
.top-bar {
  background: linear-gradient(100deg, var(--brand-blue) 0%, #1689D2 76%, var(--brand-orange) 125%);
  color: rgba(255, 255, 255, 0.9);
  border-bottom: none;
  padding: 0.7rem 0;
}

.top-bar-left,
.top-bar-right { gap: 1.7rem; }

.top-item a,
.top-socials a { color: #FFFFFF; }
.top-item a:hover,
.top-socials a:hover { color: #FFF1E9; }
.top-icon { color: #FFE2D2; }
.status-badge {
  background: rgba(255, 255, 255, 0.17);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.27rem 0.72rem;
}
.status-pulse { background-color: #FFFFFF; }

.site-header,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #D5EAF8;
  box-shadow: 0 8px 28px rgba(0, 114, 206, 0.08);
}
.header-inner {
  height: 98px;
  gap: 1.75rem;
}
.brand-logo { flex-shrink: 0; }
.brand-logo img { height: 58px; }
.nav-list { gap: 0.12rem; }
.nav-link {
  color: var(--brand-blue-dark);
  padding: 0.78rem 0.58rem;
  font-size: 0.86rem;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--brand-orange);
  background-color: var(--brand-orange-light);
}
.header-actions { gap: 0.65rem; flex-shrink: 0; }

.dropdown-menu {
  background-color: #FFFFFF;
  border: 1px solid #D5EAF8;
  box-shadow: 0 20px 48px rgba(0, 114, 206, 0.16);
  border-radius: 14px;
  padding: 0.75rem;
}
.dropdown-item { color: var(--text-body); padding: 0.75rem 0.8rem; }
.dropdown-item:hover {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
}
.menu-icon-box { background-color: var(--brand-blue-light); color: var(--brand-blue); }
.dropdown-item:hover .menu-icon-box { background-color: var(--brand-orange); color: #FFFFFF; }
.menu-title { color: var(--text-dark); }
.menu-sub { color: var(--text-muted); }
.megamenu-heading { color: var(--brand-orange); }
.megamenu-footer { border-top-color: #D5EAF8; color: var(--text-muted); }

.mobile-toggle {
  background-color: var(--brand-blue-light);
  border-color: #C7E4F8;
}
.hamburger-bar { background-color: var(--brand-blue); }

/* Bright mobile drawer instead of a dark overlay panel. */
.mobile-drawer {
  background-color: #FFFFFF;
  box-shadow: -10px 0 32px rgba(0, 114, 206, 0.18);
}
.mobile-backdrop { background-color: rgba(0, 114, 206, 0.32); }
.mobile-drawer-header { border-bottom-color: #D5EAF8; }
.mobile-logo img { height: 46px; width: auto; }
.mobile-close { color: var(--brand-blue); }
.mobile-link,
.mobile-accordion-toggle { color: var(--brand-blue-dark); }
.mobile-link:hover,
.mobile-link.active,
.mobile-accordion-toggle:hover {
  background-color: var(--brand-orange-light);
  color: var(--brand-orange);
}
.mobile-accordion-content a { color: var(--text-body); }
.mobile-accordion-content a:hover { color: var(--brand-blue); background-color: var(--brand-blue-light); }
.mobile-contact-block { border-top-color: #D5EAF8; }
.mobile-contact-title { color: var(--brand-orange); }
.mobile-contact-item { color: var(--text-body); }
.mobile-contact-item a { color: var(--text-body); }
.mobile-contact-item svg { color: var(--brand-blue); }

/* Brand-blue, orange-accented visual treatment for all hero moments. */
.hero-home {
  min-height: 86vh;
  padding: 6.5rem 0;
  background-color: var(--brand-blue);
  background-image: linear-gradient(106deg, rgba(0, 114, 206, 0.95) 0%, rgba(0, 114, 206, 0.88) 55%, rgba(242, 101, 34, 0.72) 125%), url('../images/Luqman-Mlolongo-Station-scaled.jpg');
}
.hero-content { max-width: 830px; }
.hero-desc,
.lead-text-dark { color: rgba(255, 255, 255, 0.92); }
.hero-stats-strip { margin-top: 4.75rem; padding-top: 2.75rem; }
.stat-label { color: rgba(255, 255, 255, 0.80); }
.badge-dark {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-white { background-color: rgba(255, 255, 255, 0.15); }
.btn-outline-white:hover { color: var(--brand-blue); }

.page-hero {
  background-color: var(--brand-blue);
  padding: 5.25rem 0 4.5rem;
}
.page-hero::before {
  background: linear-gradient(106deg, rgba(0, 114, 206, 0.94) 0%, rgba(13, 132, 211, 0.87) 62%, rgba(242, 101, 34, 0.64) 135%);
}
.breadcrumbs,
.page-hero-desc { color: rgba(255, 255, 255, 0.84); }
.breadcrumbs a { color: #FFFFFF; }
.breadcrumbs a:hover { color: #FFF1E9; }

/* Spacious, softly elevated content modules. */
.card,
.pillar-card { padding: 2.25rem; }
.business-card-body { padding: 1.9rem; }
.station-card { padding: 2rem; }
.locator-controls { padding: 1.8rem; }
.split-floating-card {
  background-color: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.95);
  color: var(--text-body);
  box-shadow: 0 12px 30px rgba(0, 114, 206, 0.16);
}
.split-floating-card h4 { color: var(--brand-blue-dark); }
.split-floating-card p { color: var(--text-body); }

/* Brand colour panels replace all former near-black feature panels. */
.fuel-card-showcase {
  background: linear-gradient(120deg, var(--brand-blue) 0%, #148BD5 68%, var(--brand-orange) 160%);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  box-shadow: 0 24px 50px rgba(0, 114, 206, 0.18);
}
.card-mockup-wrap img { box-shadow: 0 20px 40px rgba(0, 114, 206, 0.25); }
.custom-table th { background-color: var(--brand-blue); }
.contact-info-card {
  background: linear-gradient(145deg, var(--brand-blue) 0%, #1187D2 100%);
  padding: 3rem;
  box-shadow: 0 18px 40px rgba(0, 114, 206, 0.16);
}
.contact-info-icon {
  background-color: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 6px 14px rgba(0, 87, 154, 0.14);
}

.prefooter-box {
  background: linear-gradient(110deg, var(--brand-blue) 0%, #138AD5 65%, var(--brand-orange) 160%);
  border-color: rgba(255, 255, 255, 0.30);
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: 0 20px 48px rgba(0, 114, 206, 0.17);
}
.site-footer {
  background: linear-gradient(125deg, var(--brand-blue) 0%, #0C82CE 72%, #1490D7 100%);
  border-top: 4px solid var(--brand-orange);
}
.footer-desc,
.footer-links a,
.footer-bottom,
.developer-credit,
.social-label { color: rgba(255, 255, 255, 0.80); }
.footer-links a:hover,
.footer-links-inline a:hover,
.developer-credit a:hover { color: #FFF1E9; }
.footer-heading,
.contact-item,
.contact-item a { color: #FFFFFF; }
.cert-pill,
.social-icons a { background-color: rgba(255, 255, 255, 0.14); color: #FFFFFF; }
.footer-social-wrap,
.footer-bottom { border-top-color: rgba(255, 255, 255, 0.28); }
.footer-links-inline a { color: rgba(255, 255, 255, 0.84); }
.developer-credit a { color: #FFF1E9; }

/* Keep the branded reliability panel legible with its existing inline content. */
#why-luqman p[style*="color"],
.fuel-card-showcase li[style*="color"] { color: rgba(255, 255, 255, 0.91) !important; }

@media (max-width: 1240px) {
  .nav-desktop { display: none; }
  .mobile-toggle { display: flex; }
  .header-inner { height: 90px; }
}

@media (max-width: 767px) {
  .top-bar { padding: 0.56rem 0; }
  .top-bar-left,
  .top-bar-right { gap: 0.65rem; }
  .header-inner { height: 78px; gap: 1rem; }
  .brand-logo img { height: 46px; }
  .hero-home { min-height: auto; padding: 5.25rem 0; }
  .hero-stats-strip { margin-top: 3.25rem; padding-top: 1.8rem; }
  .section { padding: 4.25rem 0; }
  .section-sm { padding: 3.25rem 0; }
  .split-grid { gap: 2.5rem; }
  .card,
  .pillar-card,
  .station-card { padding: 1.5rem; }
  .business-card-body { padding: 1.5rem; }
  .contact-info-card { padding: 2rem; }
}

/* ==========================================================================
   LAYOUT, IMAGERY AND FOOTER FINISHING PASS
   ========================================================================== */

/* Give adjacent content areas a deliberate rhythm, without visual crowding. */
.main-content > .section:first-child { padding-top: clamp(5.5rem, 8vw, 7.5rem); }
.main-content > .page-hero + .section { padding-top: clamp(5rem, 7vw, 7rem); }
.section-header + .split-grid,
.section-header + .business-grid,
.section-header + .news-grid,
.section-header + .pillars-grid,
.section-header + .stations-grid { margin-top: 0.25rem; }

/* Soften photography very slightly while retaining detail and authenticity. */
.split-img-box > img,
.business-card-img img,
.csr-card-img img,
.news-card-img img,
.card-img-top img,
.article-hero-img img {
  opacity: 0.94;
  filter: saturate(0.92) contrast(0.99);
}

/* The blue overlay is now lighter, allowing the original hero photography to read through. */
.hero-home {
  background-image: linear-gradient(106deg, rgba(0, 114, 206, 0.88) 0%, rgba(0, 114, 206, 0.78) 55%, rgba(242, 101, 34, 0.58) 125%), url('../images/Luqman-Mlolongo-Station-scaled.jpg');
}
.page-hero::before {
  background: linear-gradient(106deg, rgba(0, 114, 206, 0.87) 0%, rgba(13, 132, 211, 0.78) 62%, rgba(242, 101, 34, 0.53) 135%);
}

/* Remove the former overlap and give the closing CTA its own generous space. */
.prefooter-cta {
  background-color: #F7FBFE;
  padding: clamp(4rem, 6vw, 5.5rem) 0;
  transform: none;
}
.prefooter-box { margin: 0; }

/* Recommended footer: a calm white information area with a clear blue signature bar.
   It makes the original blue-and-orange logo fully visible and improves contrast. */
.site-footer {
  background: #FFFFFF;
  color: var(--text-body);
  border-top: 5px solid var(--brand-orange);
  padding-top: 0;
}
.footer-top { padding: clamp(4rem, 6vw, 5.5rem) 0 clamp(3rem, 5vw, 4.5rem); }
.footer-grid { gap: clamp(2.5rem, 4.5vw, 5rem); }
.footer-logo {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  margin-bottom: 1.3rem;
}
.footer-logo img {
  height: 56px;
  width: auto;
  margin: 0;
  opacity: 1;
  filter: none;
}
.footer-desc { color: var(--text-body); }
.footer-heading { color: var(--brand-blue-dark); }
.footer-links a { color: var(--text-body); }
.footer-links a:hover { color: var(--brand-orange); }
.cert-pill {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue-dark);
  border: 1px solid #D5EAF8;
}
.cert-pill svg { color: var(--brand-orange); }
.contact-item,
.contact-item a { color: var(--text-body); }
.contact-item a:hover { color: var(--brand-orange); }
.c-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  padding: 7px;
  margin-top: 0;
  border-radius: 50%;
  background: var(--brand-orange-light);
  color: var(--brand-orange);
}
.footer-social-wrap { border-top-color: #D5EAF8; }
.social-label { color: var(--brand-blue-dark); }
.social-icons a {
  width: 38px;
  height: 38px;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  border: 1px solid #D5EAF8;
  border-radius: 10px;
}
.social-icons a:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #FFFFFF;
  transform: translateY(-3px);
}
.social-icon-svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}
.social-icon-dot { fill: currentColor; stroke: none; }
.top-socials .social-icon-svg {
  width: 15px;
  height: 15px;
}
.footer-bottom {
  background: var(--brand-blue);
  color: rgba(255, 255, 255, 0.92);
  border-top: 0;
  padding: 1.35rem 0;
}
.footer-links-inline a,
.developer-credit { color: rgba(255, 255, 255, 0.90); }
.footer-links-inline a:hover,
.developer-credit a:hover { color: #FFFFFF; }
.developer-credit a { color: #FFF1E9; }

@media (max-width: 991px) {
  .prefooter-cta { padding: 3.75rem 0; }
  .footer-grid { gap: 3rem; }
}

@media (max-width: 767px) {
  .main-content > .section:first-child { padding-top: 4.5rem; }
  .prefooter-cta { padding: 3.25rem 0; }
  .footer-top { padding: 3.5rem 0; }
  .footer-logo img { height: 52px; }
  .c-icon { width: 30px; height: 30px; min-width: 30px; padding: 6px; }
}

/* ==========================================================================
   UX AND ACCESSIBILITY REFINEMENT
   ========================================================================== */
html {
  scroll-padding-top: 124px;
}

::selection {
  color: #FFFFFF;
  background: var(--brand-blue);
}

body.menu-open {
  overflow: hidden;
}

/* The skip link remains out of sight until a keyboard user requests it. */
.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 50%;
  z-index: 5000;
  transform: translate(-50%, -180%);
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--brand-orange);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast);
}
.skip-link:focus {
  transform: translate(-50%, 0);
  color: #FFFFFF;
}

:focus-visible {
  outline: 3px solid rgba(242, 101, 34, 0.72);
  outline-offset: 3px;
}

button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.mobile-link:focus-visible,
.dropdown-item:focus-visible,
.footer-links a:focus-visible {
  outline-offset: 2px;
}

.main-content:focus { outline: none; }

/* Clear desktop keyboard path into dropdowns. */
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.dropdown:focus-within .dropdown-icon {
  transform: rotate(180deg);
}

/* Increased hierarchy and more deliberate content rhythm. */
.section-title {
  max-width: 850px;
  text-wrap: balance;
}
.section-intro {
  text-wrap: pretty;
}
.lead-text,
.page-hero-desc {
  text-wrap: pretty;
}

.section-header.text-center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons provide a clearer operational state on touch, keyboard and loading. */
.btn {
  min-height: 44px;
  line-height: 1.2;
}
.btn:active {
  transform: translateY(0);
}
.btn[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}
.btn-lg { min-height: 50px; }

/* Surface styles make related content easier to scan without visual noise. */
.card,
.business-card,
.pillar-card,
.station-card,
.news-card,
.csr-card,
.cylinder-card {
  overflow: hidden;
}

.business-card,
.news-card,
.station-card {
  border-color: rgba(0, 114, 206, 0.14);
}
.business-card:focus-within,
.news-card:focus-within,
.station-card:focus-within,
.card:focus-within,
.pillar-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 114, 206, 0.48);
  box-shadow: var(--shadow-lg);
}
.business-card-body,
.news-card-body {
  gap: 0;
}
.business-card-body .link-arrow,
.news-card-body .link-arrow {
  margin-top: auto;
  padding-top: 0.35rem;
}

/* Filters are a compact control group rather than a row of unrelated buttons. */
.locator-controls {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-color: #CDE6F7;
}
.search-input {
  min-height: 48px;
  border-color: #CDE6F7;
}
.search-input:hover,
.form-control:hover { border-color: rgba(0, 114, 206, 0.52); }
.search-input:focus,
.form-control:focus {
  box-shadow: 0 0 0 4px rgba(0, 114, 206, 0.12);
}
.country-tabs {
  min-height: 48px;
  align-items: center;
}
.country-tab,
.filter-pill {
  min-height: 36px;
}
.country-tab:focus-visible,
.filter-pill:focus-visible { outline-offset: 1px; }
.filter-pill {
  background-color: #FFFFFF;
  border-color: #D5EAF8;
}
.filter-pill:hover,
.filter-pill.active {
  box-shadow: 0 4px 12px rgba(0, 114, 206, 0.14);
}

.locator-results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.results-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}
.results-summary strong { color: var(--brand-blue); }
.locator-live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-success);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.locator-live-status .status-pulse {
  box-shadow: none;
  animation: none;
}
.clear-filters {
  background: transparent;
  border: 0;
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.clear-filters:hover { color: var(--brand-orange); }
.station-card[hidden] { display: none !important; }
.station-name { color: var(--brand-blue-dark); }
.service-tag {
  background-color: var(--brand-blue-light);
  color: var(--brand-blue-dark);
}

/* Forms are easier to complete and their feedback is persistent and announced. */
.form-label {
  color: var(--brand-blue-dark);
  margin-bottom: 0.55rem;
}
.form-control {
  min-height: 48px;
  border-color: #CDE6F7;
  color: var(--text-dark);
}
textarea.form-control {
  min-height: 132px;
  resize: vertical;
}
.form-control::placeholder { color: #91A8B8; }
.form-control.is-invalid,
.form-control[aria-invalid="true"] {
  border-color: var(--brand-orange);
  background-color: #FFF9F6;
}
.form-feedback {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}
.form-feedback svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 0.1rem; }
.form-feedback-success {
  color: #075B46;
  background: #ECFDF5;
  border-color: #A7F3D0;
}
.form-feedback-error {
  color: #9A3412;
  background: #FFF7ED;
  border-color: #FED7AA;
}

/* Small responsive safeguards preserve scanning and tap targets. */
@media (max-width: 767px) {
  html { scroll-padding-top: 96px; }
  .locator-search-row { gap: 0.75rem; }
  .country-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0.32rem;
  }
  .country-tab { white-space: nowrap; }
  .service-filter-row {
    align-items: flex-start;
    padding-top: 0.9rem;
  }
  .service-filter-label {
    flex-basis: 100%;
    margin-bottom: 0.1rem;
  }
  .locator-results-toolbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 1.25rem;
  }
  .locator-live-status { white-space: normal; }
  .station-actions { gap: 0.5rem; }
  .station-actions .btn { padding-left: 0.65rem; padding-right: 0.65rem; }
  .form-row { gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-required { color: var(--brand-orange); }

/* Official social marks use local Simple Icons masks, so they remain visible without a third-party icon font. */
.brand-social-icon {
  display: block;
  width: 17px;
  height: 17px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.brand-social-facebook { -webkit-mask-image: url('../icons/facebook.svg'); mask-image: url('../icons/facebook.svg'); }
.brand-social-x { -webkit-mask-image: url('../icons/x.svg'); mask-image: url('../icons/x.svg'); }
.brand-social-tiktok { -webkit-mask-image: url('../icons/tiktok.svg'); mask-image: url('../icons/tiktok.svg'); }
.brand-social-linkedin { -webkit-mask-image: url('../icons/linkedin.svg'); mask-image: url('../icons/linkedin.svg'); }
.brand-social-instagram { -webkit-mask-image: url('../icons/instagram.svg'); mask-image: url('../icons/instagram.svg'); }
.brand-social-whatsapp { -webkit-mask-image: url('../icons/whatsapp.svg'); mask-image: url('../icons/whatsapp.svg'); }

.top-socials {
  gap: 0.45rem;
}
.top-socials a {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.13);
}
.top-socials a:hover {
  color: var(--brand-blue);
  background: #FFFFFF;
  transform: translateY(-1px);
}
.top-socials .brand-social-icon {
  width: 13px;
  height: 13px;
}

.article-share-icons {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.article-share-icons .share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #FFFFFF;
  box-shadow: 0 5px 12px rgba(0, 114, 206, 0.14);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.article-share-icons .share-button:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 9px 18px rgba(0, 114, 206, 0.22);
}
.article-share-icons .brand-social-icon { width: 18px; height: 18px; }
.share-whatsapp { background: #25D366; }
.share-x { background: #111111; }
.share-linkedin { background: #0A66C2; }
.share-facebook { background: #1877F2; }

/* The KEBS quality mark now has a high-contrast, dedicated treatment on the blue reliability panel. */
.reliability-item {
  display: flex;
  gap: 1rem;
}
.reliability-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reliability-icon svg {
  width: 21px;
  height: 21px;
}
.reliability-quality .reliability-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  box-shadow: none;
}
.reliability-customer .reliability-icon {
  background: rgba(242, 101, 34, 0.23);
  color: #FFE1D2;
}
.reliability-regional .reliability-icon {
  background: rgba(16, 185, 129, 0.22);
  color: #A7F3D0;
}

@media (max-width: 600px) {
  .article-share-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* Floating WhatsApp contact replaces the header CTA and remains clear of the back-to-top control. */
.btn-whatsapp .brand-social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.floating-whatsapp {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 989;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #FFFFFF;
  background: #25D366;
  border: 2px solid #FFFFFF;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.32);
  transition: bottom var(--transition-normal), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  z-index: -1;
  border: 2px solid rgba(37, 211, 102, 0.55);
  border-radius: inherit;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}
.floating-whatsapp .brand-social-icon {
  width: 25px;
  height: 25px;
}
.floating-whatsapp:hover {
  color: #FFFFFF;
  background: #1EBE5B;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.38);
}
.floating-whatsapp.lifted {
  bottom: 80px;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(0.86); opacity: 0.8; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 767px) {
  .top-bar-right { display: none; }
  .top-bar-inner { justify-content: flex-start; }
  .floating-whatsapp {
    left: 17px;
    bottom: 17px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp .brand-social-icon { width: 23px; height: 23px; }
  .floating-whatsapp.lifted { bottom: 72px; }
}

/* The back-to-top control is dynamically raised above the copyright bar at page end. */
.back-to-top {
  bottom: var(--back-to-top-bottom, 24px);
}

@media (max-width: 767px) {
  .back-to-top {
    --back-to-top-bottom: 17px;
  }
}

/* Compact station contact controls remain inside every locator card. */
.station-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--surface-border);
}
.station-quick-link {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.45rem 0.72rem;
  border: 1px solid #CDE6F7;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
}
.station-quick-link svg {
  width: 15px;
  height: 15px;
}
.station-quick-link:hover {
  color: #FFFFFF;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

/* Alternating blue and orange service-card pattern, shared by homepage and services grids.
   Each card's exploration link intentionally uses the opposite accent from its icon. */
.business-grid > .business-card:nth-child(odd) .business-card-icon {
  background-color: var(--brand-blue-light) !important;
  color: var(--brand-blue) !important;
}
.business-grid > .business-card:nth-child(even) .business-card-icon {
  background-color: var(--brand-orange-light) !important;
  color: var(--brand-orange) !important;
}
.business-grid > .business-card:nth-child(odd) .link-arrow {
  color: var(--brand-orange);
}
.business-grid > .business-card:nth-child(odd) .link-arrow:hover {
  color: var(--brand-orange-hover);
}
.business-grid > .business-card:nth-child(even) .link-arrow {
  color: var(--brand-blue);
}
.business-grid > .business-card:nth-child(even) .link-arrow:hover {
  color: var(--brand-blue-hover);
}
