.lw-partner-logo-name {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  color: #1a2737;
  margin-top: 13px;
  letter-spacing: 1.2px;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 1px 0 #fff, 0 2px 8px rgba(15,90,145,0.06);
  min-height: 1.3em;
  word-break: break-word;
}
/* ============================================================
   LAWASCO — Public Website Theme
   Brand: #0f5a91 (blue) | #22c55e (green accent)
   ============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --lw-blue:       #0f5a91;
  --lw-blue-dark:  #0b4673;
  --lw-blue-light: #e8f1f8;
  --lw-green:      #b99e43;
  --lw-green-dark: #957a54;
  --lw-text:       #1f2937;
  --lw-muted:      #6b7280;
  --lw-border:     #e5e7eb;
  --lw-bg:         #f8fafc;
  --lw-white:      #ffffff;
  --lw-shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --lw-shadow:     0 4px 16px rgba(0,0,0,0.08);
  --lw-shadow-lg:  0 10px 40px rgba(0,0,0,0.12);
  --lw-radius:     12px;
  --lw-radius-sm:  8px;
  --lw-radius-lg:  20px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--lw-text);
  background: var(--lw-white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

a { color: var(--lw-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--lw-blue-dark); }

img { max-width: 100%; }

/* ---------- Spinner ---------- */
#lw-spinner {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--lw-white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s;
}
#lw-spinner.hide { opacity: 0; pointer-events: none; }
.lw-spinner-ring {
  width: 50px; height: 50px;
  border: 4px solid var(--lw-blue-light);
  border-top-color: var(--lw-blue);
  border-radius: 50%;
  animation: lw-spin .8s linear infinite;
}
@keyframes lw-spin { to { transform: rotate(360deg); } }

/* ---------- Topbar ---------- */
.lw-topbar {
  background: var(--lw-blue);
  padding: 9px 0;
  font-size: 13px;
}
.lw-topbar a { color: rgba(255,255,255,0.85); }
.lw-topbar a:hover { color: #fff; }
.lw-topbar-info {
  display: flex; align-items: center; gap: 20px;
  color: rgba(255,255,255,0.85);
}
.lw-topbar-info span { display: flex; align-items: center; gap: 7px; }
.lw-topbar-social { display: flex; align-items: center; gap: 8px; }
.lw-topbar-social a {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  transition: background .2s, color .2s;
}
.lw-topbar-social a:hover { background: var(--lw-green); color: #fff; }

/* ---------- Navbar ---------- */
.lw-navbar {
  background: #fff;
  border-bottom: 1px solid rgba(15,90,145,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.lw-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(15,90,145,0.14);
  background: rgba(255,255,255,0.97);
  border-bottom-color: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lw-navbar .navbar-brand {
  display: flex; align-items: center; gap: 0;
  padding: 10px 0;
}
.lw-navbar .navbar-brand img {
  height: 50px; width: auto; object-fit: contain;
  margin-right: 12px;
}
.lw-brand-divider {
  width: 1px;
  height: 36px;
  background: rgba(15,90,145,0.18);
  margin-right: 12px;
  flex-shrink: 0;
}
.lw-brand-text { line-height: 1.2; }
.lw-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--lw-blue);
  display: block; letter-spacing: 0.5px;
}
.lw-brand-sub {
  font-size: 0.67rem; color: var(--lw-muted);
  display: block; letter-spacing: 0.3px;
  text-transform: uppercase;
}
.lw-navbar .nav-link {
  font-weight: 600; font-size: 0.875rem;
  color: var(--lw-text) !important;
  padding: 28px 13px !important;
  position: relative;
  letter-spacing: 0.3px;
  transition: color .2s;
}
.lw-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--lw-green);
  border-radius: 3px 3px 0 0;
  transition: left .25s ease, right .25s ease;
}
.lw-navbar .nav-link:hover,
.lw-navbar .nav-link.active {
  color: var(--lw-blue) !important;
}
.lw-navbar .nav-link:hover::after,
.lw-navbar .nav-link.active::after {
  left: 13px; right: 13px;
}
/* Active indicator dot for top of active link */
.lw-navbar .nav-link.active::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lw-blue);
}
.lw-navbar .dropdown-toggle::after {
  border: none;
  content: '\F282';
  font-family: 'Bootstrap Icons';
  font-size: 0.7rem;
  vertical-align: middle;
  margin-left: 4px;
}
.lw-navbar .dropdown-menu {
  border: none;
  border-top: 3px solid var(--lw-blue);
  border-radius: 0 0 var(--lw-radius-sm) var(--lw-radius-sm);
  box-shadow: 0 8px 30px rgba(15,90,145,0.15);
  padding: 8px;
  min-width: 200px;
  margin-top: 0;
  animation: lwDropIn .18s ease;
}
@keyframes lwDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lw-navbar .dropdown-item {
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--lw-text);
  transition: background .15s, color .15s, padding-left .15s;
}
.lw-navbar .dropdown-item:hover {
  background: var(--lw-blue-light);
  color: var(--lw-blue);
  padding-left: 20px;
}
.lw-navbar-cta {
  background: var(--lw-green);
  color: #fff !important;
  padding: 13px 28px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  margin-left: 12px;
  font-size: 0.9rem !important;
  display: flex !important; align-items: center; gap: 7px;
  box-shadow: 0 4px 18px rgba(197, 145, 34, 0.35);
  transition: background .2s, box-shadow .2s, transform .15s !important;
}
.lw-navbar-cta::after { display: none !important; }
.lw-navbar-cta::before { display: none !important; }
.lw-navbar-cta:hover {
  background: #b18831 !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(197, 154, 34, 0.45) !important;
  transform: translateY(-2px);
}
.lw-navbar-cta:active { transform: translateY(0); }

/* Mobile nav */
@media (max-width: 991px) {
  .lw-navbar .navbar-collapse {
    border-top: 2px solid var(--lw-blue-light);
    margin-top: 8px;
    padding: 12px 0 16px;
  }
  .lw-navbar .nav-link { padding: 10px 4px !important; }
  .lw-navbar .nav-link::after,
  .lw-navbar .nav-link::before { display: none; }
  .lw-navbar .dropdown-menu {
    border-top: none;
    box-shadow: none;
    padding: 4px 0 4px 16px;
    animation: none;
  }
  .lw-navbar-cta {
    margin: 10px 0 0;
    border-radius: var(--lw-radius-sm) !important;
    display: inline-flex !important;
    box-shadow: none;
  }
  .lw-brand-divider { display: none; }
}

/* ---------- Hero (Carousel) ---------- */
.lw-hero {
  position: relative;
  overflow: hidden;
}
.lw-hero-item {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.lw-hero-item img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.owl-item.active .lw-hero-item img { transform: scale(1); }

/* Multi-directional overlay: strong left + bottom fade */
.lw-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(5,20,45,0.80) 0%,  rgba(5,20,45,0.45) 55%, rgba(5,20,45,0.10) 100%),
    linear-gradient(to top,    rgba(5,20,45,0.60) 0%,  transparent 50%);
  display: flex; align-items: center;
  padding-bottom: 50px;
}

.lw-hero-content {
  max-width: 780px;
  padding-top: 30px;
}

/* Eyebrow */
.lw-hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.lw-hero-eyebrow-text {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.lw-hero-eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.35), transparent);
}

/* Big brand name display */
.lw-hero-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.lw-hero-brand-name::after {
  content: '';
  display: block;
  height: 4px;
  width: 60px;
  background: var(--lw-green);
  border-radius: 2px;
  margin-top: 10px;
}

/* Title */
.lw-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

/* Sub text */
.lw-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 500px;
}

/* Action buttons */
.lw-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.lw-hero-btn-primary {
  background: var(--lw-green);
  color: #fff;
  border-color: var(--lw-green);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  box-shadow: 0 4px 18px rgba(197, 154, 34, 0.35);
  transition: background .2s, box-shadow .2s, transform .15s !important;
}
.lw-hero-btn-primary:hover {
  background: #ac8313; border-color: #bd9c3b; color: #fff;
  box-shadow: 0 6px 24px rgba(203, 179, 38, 0.45);
  transform: translateY(-2px);
}
.lw-hero-btn-ghost {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s, color .2s !important;
}
.lw-hero-btn-ghost:hover {
  background: #fff; color: var(--lw-blue); border-color: #fff;
}

/* Owl nav arrows */
.lw-hero .owl-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  pointer-events: none; padding: 0 20px;
}
.lw-hero .owl-prev,
.lw-hero .owl-next {
  pointer-events: all;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12) !important;
  border: 1.5px solid rgba(255,255,255,0.25) !important;
  border-radius: 50% !important;
  display: flex !important; align-items: center; justify-content: center;
  color: #fff !important; font-size: 1.2rem !important;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s, transform .2s !important;
}
.lw-hero .owl-prev:hover,
.lw-hero .owl-next:hover {
  background: var(--lw-green) !important;
  border-color: var(--lw-green) !important;
  transform: scale(1.1);
}

/* Owl dots */
.lw-hero .owl-dots {
  position: absolute; bottom: 56px; width: 100%; text-align: center;
}
.lw-hero .owl-dot span {
  width: 8px !important; height: 8px !important;
  background: rgba(255,255,255,0.40) !important;
  border-radius: 50% !important;
  margin: 0 4px !important;
  transition: all .25s !important;
}
.lw-hero .owl-dot.active span {
  width: 28px !important;
  border-radius: 4px !important;
  background: var(--lw-green) !important;
}

/* Scroll indicator */
.lw-hero-scroll {
  position: absolute;
  bottom: 62px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-decoration: none;
  z-index: 5;
}
.lw-hero-scroll-dot {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  position: relative;
}
.lw-hero-scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--lw-green);
  border-radius: 2px;
  animation: lw-scroll-bounce 1.6s ease infinite;
}
@keyframes lw-scroll-bounce {
  0%, 100% { top: 6px; opacity: 1; }
  50%       { top: 20px; opacity: 0.4; }
}
.lw-hero-scroll-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}

/* Bottom wave */
.lw-hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0; overflow: hidden;
  z-index: 4;
}
.lw-hero-wave svg {
  display: block; width: 100%; height: 60px;
}

@media (max-width: 768px) {
  .lw-hero-item { height: 520px; }
  .lw-hero-content { padding-top: 0; }
  .lw-hero-badge { font-size: 10px; }
  .lw-hero-scroll { display: none; }
  .lw-hero .owl-dots { bottom: 32px; }
}

/* ---------- Section titles ---------- */
.lw-section-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--lw-green);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.lw-section-label::before {
  content: '';
  width: 28px; height: 3px;
  background: var(--lw-green);
  border-radius: 2px;
  flex-shrink: 0;
}
.lw-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--lw-text);
  margin-bottom: 14px;
  line-height: 1.15;
}
.lw-section-desc {
  color: var(--lw-muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.6;
}

/* ---------- About section ---------- */
.lw-about-img-wrap { position: relative; }
.lw-about-img-main {
  width: 100%; height: 440px;
  object-fit: cover;
  border-radius: var(--lw-radius-lg);
}
.lw-about-img-accent {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 46%;
  border-radius: var(--lw-radius);
  border: 5px solid var(--lw-white);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--lw-shadow-lg);
}
.lw-about-badge {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--lw-green);
  color: #fff;
  padding: 18px 20px;
  border-radius: var(--lw-radius);
  text-align: center;
  box-shadow: var(--lw-shadow);
}
.lw-about-badge strong { font-family: 'Oswald', sans-serif; font-size: 2rem; display: block; line-height: 1; }
.lw-about-badge small { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.lw-about-contact-box {
  background: var(--lw-blue);
  border-radius: var(--lw-radius-sm);
  padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px;
}
.lw-about-contact-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(255,255,255,0.14);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--lw-green);
}
.lw-about-contact-box .contact-email { font-size: 0.84rem; color: rgba(255,255,255,0.8); margin-bottom: 2px; }
.lw-about-contact-box .contact-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem; font-weight: 700; color: #fff;
}

@media (max-width: 768px) {
  .lw-about-img-main { height: 260px; }
  .lw-about-badge { display: none; }
  .lw-about-img-accent { display: none; }
}

/* ---------- Services ---------- */
.lw-service-card {
  background: var(--lw-white);
  border-radius: var(--lw-radius);
  overflow: hidden;
  box-shadow: var(--lw-shadow-sm);
  border: 1px solid var(--lw-border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  height: 100%;
}
.lw-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lw-shadow-lg);
  border-color: var(--lw-blue);
}
.lw-service-img {
  height: 200px; overflow: hidden;
}
.lw-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.lw-service-card:hover .lw-service-img img { transform: scale(1.06); }
.lw-service-body { padding: 22px; }
.lw-service-icon {
  width: 44px; height: 44px;
  background: var(--lw-blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lw-blue); font-size: 1.2rem;
  margin-bottom: 14px;
}
.lw-service-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--lw-text); margin-bottom: 8px;
}
.lw-service-desc { font-size: 0.86rem; color: var(--lw-muted); line-height: 1.6; margin-bottom: 16px; }
.lw-service-link {
  font-size: 0.83rem; font-weight: 700;
  color: var(--lw-blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.lw-service-link:hover { gap: 10px; }

/* ---------- Partners Modern Row ---------- */
.lw-partner-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 18px 0 10px;
  background: #fff;
}
.lw-partner-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 70px;
  padding: 0 8px;
  transition: transform .22s cubic-bezier(.4,1.6,.6,1), box-shadow .22s;
}
.lw-partner-logo-wrap img {
  max-width: 110px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(0.15) brightness(0.98);
  transition: filter .22s, transform .22s;
}
.lw-partner-logo-wrap:hover {
  transform: translateY(-7px) scale(1.08);
  box-shadow: 0 8px 32px rgba(15,90,145,0.10);
  background: #fff;
  border-radius: 12px;
}
.lw-partner-logo-wrap:hover img {
  filter: none;
}

/* ---------- Page Header ---------- */
.lw-page-header {
  background:
    linear-gradient(135deg, rgba(15,90,145,0.82) 0%, rgba(11,70,115,0.90) 100%),
    url('/img/bg.jpg') center / cover no-repeat;
  background-attachment: fixed, fixed;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.lw-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  pointer-events: none;
}
.lw-page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--lw-green);
}
.lw-page-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700; color: #fff;
  margin-bottom: 10px;
}
.lw-page-header .breadcrumb { margin: 0; }
.lw-page-header .breadcrumb-item a { color: rgba(255,255,255,0.75); }
.lw-page-header .breadcrumb-item.active { color: var(--lw-green); }
.lw-page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---------- Cards (tenders / projects / vacancies) ---------- */
.lw-card {
  background: var(--lw-white);
  border-radius: var(--lw-radius);
  border: 1px solid var(--lw-border);
  box-shadow: var(--lw-shadow-sm);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.lw-card:hover { transform: translateY(-4px); box-shadow: var(--lw-shadow); }

.lw-card-header-bar {
  background: var(--lw-blue);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.lw-card-header-bar h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #fff; margin: 0;
}
.lw-card-body { padding: 20px; }
.lw-card-footer-bar {
  padding: 14px 20px;
  border-top: 1px solid var(--lw-border);
  background: var(--lw-bg);
  display: flex; align-items: center; justify-content: space-between;
}

/* ---------- Tenders Section ---------- */
.lw-tenders-section {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, #f0f6fb 0%, #fff 60%);
}
.lw-section-sub {
  font-size: 0.95rem; color: var(--lw-muted);
  max-width: 580px; line-height: 1.7;
}

/* Tender card */
.lw-tender-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--lw-border);
  box-shadow: 0 2px 16px rgba(15,90,145,0.07);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.lw-tender-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(15,90,145,0.14);
}
.lw-tender-card-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--lw-blue) 0%, var(--lw-green) 100%);
}
.lw-tender-card-body {
  padding: 24px 24px 16px;
  flex: 1;
}
.lw-tender-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--lw-blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--lw-blue);
  flex-shrink: 0;
}
.lw-tender-year {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  background: #dcfce7; color: #c6a830;
}
.lw-tender-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--lw-text); line-height: 1.35;
  margin-bottom: 14px;
}
.lw-tender-meta {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.82rem; color: var(--lw-muted);
}
.lw-tender-meta span {
  display: flex; align-items: center; gap: 7px;
}
.lw-tender-meta i { color: var(--lw-blue); }

.lw-tender-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--lw-border);
  background: #f8fafc;
}
.lw-tender-download {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 11px 0;
  background: var(--lw-blue);
  color: #fff; font-weight: 700; font-size: 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 3px 10px rgba(15,90,145,0.20);
}
.lw-tender-download:hover {
  background: var(--lw-green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(34,197,94,0.30);
  transform: translateY(-1px);
}

/* Empty state */
.lw-tender-empty {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 14px;
  border: 2px dashed var(--lw-border);
  max-width: 480px;
  margin: 0 auto;
}
.lw-tender-empty-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--lw-blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--lw-blue);
  margin: 0 auto 20px;
}
.lw-tender-empty h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem; color: var(--lw-text); margin-bottom: 8px;
}
.lw-tender-empty p { font-size: 0.9rem; color: var(--lw-muted); margin: 0; }

.lw-status-badge {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 4px 10px; border-radius: 20px;
}
.lw-status-upcoming  { background: #fef9c3; color: #854d0e; }
.lw-status-ongoing   { background: #dcfce7; color: #c79d1f; }
.lw-status-completed { background: #e8f1f8; color: var(--lw-blue); }

.lw-btn-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: var(--lw-radius-sm);
  font-weight: 700; font-size: 0.8rem;
  transition: all .2s; border: 2px solid transparent;
}
.lw-btn-sm.blue { background: var(--lw-blue); color: #fff; }
.lw-btn-sm.blue:hover { background: var(--lw-blue-dark); color: #fff; }
.lw-btn-sm.brown { background: var(--lw-green); color: #fff; }
.lw-btn-sm.brown:hover { background: var(--lw-green-dark); color: #fff; }
.lw-btn-sm.outline { background: transparent; color: var(--lw-blue); border-color: var(--lw-blue); }
.lw-btn-sm.outline:hover { background: var(--lw-blue); color: #fff; }

/* ---------- Vacancies ---------- */
.lw-vacancy-card {
  background: var(--lw-white);
  border-radius: var(--lw-radius);
  border: 1px solid var(--lw-border);
  padding: 24px;
  box-shadow: var(--lw-shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
  height: 100%;
}
.lw-vacancy-card:hover { transform: translateY(-4px); box-shadow: var(--lw-shadow); border-color: var(--lw-blue); }
.lw-vacancy-avatar {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--lw-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.lw-meta-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--lw-bg);
  border: 1px solid var(--lw-border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.76rem; font-weight: 600;
  color: var(--lw-muted);
}
.lw-salary { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--lw-green-dark); }

/* ---------- FAQ ---------- */
.lw-faq-item {
  border: 1px solid var(--lw-border);
  border-radius: var(--lw-radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.lw-faq-item:hover { box-shadow: var(--lw-shadow-sm); }
.lw-faq-item .accordion-button {
  font-weight: 600; font-size: 0.95rem;
  color: var(--lw-text);
  background: var(--lw-white);
  padding: 18px 20px;
}
.lw-faq-item .accordion-button:not(.collapsed) {
  background: var(--lw-blue-light);
  color: var(--lw-blue);
  box-shadow: none;
}
.lw-faq-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%230f5a91' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}
.lw-faq-item .accordion-body {
  background: var(--lw-white);
  font-size: 0.9rem; color: var(--lw-muted);
  line-height: 1.65;
  padding: 16px 20px 20px;
}
.lw-faq-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--lw-blue-light);
  color: var(--lw-blue);
  font-size: 0.72rem; font-weight: 700;
  flex-shrink: 0; margin-right: 10px;
}

/* ---------- Contact ---------- */
.lw-contact-info-card {
  background: var(--lw-blue);
  border-radius: var(--lw-radius);
  padding: 32px;
  color: #fff;
  height: 100%;
}
.lw-contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.lw-contact-info-item:last-of-type { border-bottom: none; }
.lw-contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--lw-green);
}
.lw-contact-form-card {
  background: var(--lw-white);
  border-radius: var(--lw-radius);
  padding: 32px;
  box-shadow: var(--lw-shadow);
  border: 1px solid var(--lw-border);
}
.lw-input {
  border: 1.5px solid var(--lw-border) !important;
  border-radius: var(--lw-radius-sm) !important;
  padding: 12px 14px !important;
  font-size: 0.88rem !important;
  transition: border-color .2s, box-shadow .2s !important;
}
.lw-input:focus {
  border-color: var(--lw-blue) !important;
  box-shadow: 0 0 0 3px rgba(15,90,145,0.1) !important;
  outline: none !important;
}
.lw-map iframe {
  width: 100%; height: 280px;
  border-radius: var(--lw-radius-sm);
  border: none;
  margin-top: 20px;
}

/* ---------- Gallery ---------- */
.lw-gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--lw-radius-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.lw-gallery-item img,
.lw-gallery-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.lw-gallery-item:hover img,
.lw-gallery-item:hover video { transform: scale(1.07); }
.lw-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(15,90,145,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.lw-gallery-item:hover .lw-gallery-overlay { opacity: 1; }
.lw-gallery-overlay i { font-size: 1.8rem; color: #fff; }
.lw-gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,90,145,0.85), transparent);
  color: #fff; padding: 20px 14px 12px;
  font-size: 0.8rem; font-weight: 600;
  transform: translateY(100%);
  transition: transform .3s;
}
.lw-gallery-item:hover .lw-gallery-caption { transform: translateY(0); }

/* ---------- Footer ---------- */
.lw-footer {
  background: #0a1628;
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
}
.lw-footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  color: #fff; letter-spacing: 0.5px;
}
.lw-footer-brand-sub { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.lw-footer h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #fff; letter-spacing: 0.5px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lw-blue);
  display: inline-block;
}
.lw-footer-divider { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.lw-footer p { font-size: 0.875rem; line-height: 1.65; color: rgba(255,255,255,0.65); }
.lw-footer-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  padding: 5px 0;
  transition: color .2s, gap .2s;
}
.lw-footer-link i { font-size: 0.65rem; color: var(--lw-green); }
.lw-footer-link:hover { color: #fff; gap: 12px; }
.lw-footer-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px; font-size: 0.875rem;
}
.lw-footer-info-item i { color: var(--lw-green); margin-top: 3px; flex-shrink: 0; }
.lw-footer-social { display: flex; gap: 8px; margin-top: 16px; }
.lw-footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
  transition: background .2s, color .2s;
}
.lw-footer-social a:hover { background: var(--lw-blue); color: #fff; border-color: var(--lw-blue); }
.lw-footer-hours-item {
  display: flex; justify-content: space-between;
  font-size: 0.875rem; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lw-footer-hours-item:last-child { border-bottom: none; }
.lw-footer-hours-item .day { color: rgba(255,255,255,0.6); }
.lw-footer-hours-item .hours { color: var(--lw-green); font-weight: 600; }
.lw-footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 18px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.lw-footer-bottom a { color: rgba(255,255,255,0.65); }
.lw-footer-bottom a:hover { color: var(--lw-green); }

/* ---------- Back to top ---------- */
.lw-back-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--lw-blue);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--lw-shadow);
  opacity: 0; visibility: hidden;
  transition: all .25s;
  z-index: 999;
}
.lw-back-top.show { opacity: 1; visibility: visible; }
.lw-back-top:hover { background: var(--lw-blue-dark); color: #fff; }

/* ---------- Breadcrumb active ---------- */
.breadcrumb-item.active { color: var(--lw-green) !important; }

/* ---------- Utility ---------- */
.lw-section { padding: 80px 0; }
.lw-section-sm { padding: 48px 0; }
.lw-bg-light { background: var(--lw-bg); }
.lw-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--lw-green) 0%, #b69121 40%, rgba(34,197,94,0.1) 100%);
  border-radius: 2px;
  margin: 0 0 2rem;
}

/* ---------- Section divider line ---------- */
.lw-section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--lw-blue), var(--lw-green));
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ---------- Body text helper ---------- */
.lw-body-text { font-size: 0.95rem; color: var(--lw-muted); line-height: 1.7; }

/* ---------- Button base ---------- */
.lw-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px;
  border-radius: var(--lw-radius-sm);
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.3px;
  transition: all .2s;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.lw-btn-primary {
  background: var(--lw-blue); color: #fff; border-color: var(--lw-blue);
}
.lw-btn-primary:hover { background: var(--lw-blue-dark); border-color: var(--lw-blue-dark); color: #fff; }
.lw-btn-white { background: #fff; color: var(--lw-blue); border-color: #fff; }
.lw-btn-white:hover { background: var(--lw-blue-light); color: var(--lw-blue); border-color: var(--lw-blue-light); }
.lw-btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.lw-btn-outline-white:hover { background: #fff; color: var(--lw-blue); border-color: #fff; }

/* ---------- Hero: sub-text + action row ---------- */
.lw-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.88); line-height: 1.65; margin-bottom: 28px; max-width: 520px; }
.lw-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Stats bar ---------- */
.lw-stats-bar {
  background: linear-gradient(135deg, #0b3d6b 0%, #0f5a91 50%, #0d4f80 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.lw-stats-bar::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.lw-stats-bar::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(34,197,94,0.06);
  pointer-events: none;
}

/* ---------- Stats grid ---------- */
.lw-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
.lw-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background .25s;
}
.lw-stat-item:last-child { border-right: none; }
.lw-stat-item:hover { background: rgba(255,255,255,0.05); }

.lw-stat-icon-box {
  width: 64px; height: 64px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(206, 186, 12, 0.3);
  border: 1px solid rgba(206, 186, 12, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--lw-green);
  transition: background .25s, transform .25s;
}
.lw-stat-item:hover .lw-stat-icon-box {
  background: var(--lw-green);
  color: #fff;
  transform: scale(1.08);
}

.lw-stat-body { display: flex; flex-direction: column; }
.lw-stat-number {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 6px;
}
.lw-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.lw-stat-plus {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lw-green);
  line-height: 1;
  margin-top: 2px;
}
.lw-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

@media (max-width: 992px) {
  .lw-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lw-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .lw-stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .lw-stat-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .lw-stats-grid { grid-template-columns: 1fr; }
  .lw-stat-item { border-right: none !important; }
  .lw-stat-item:last-child { border-bottom: none; }
}

/* ---------- About badge (dynamic fields) ---------- */
.lw-about-badge-num { font-family: 'Oswald', sans-serif; font-size: 2.2rem; font-weight: 700; display: block; line-height: 1; }
.lw-about-badge-text { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; }

/* ---------- Service card extras ---------- */
.lw-service-img-placeholder {
  width: 100%; height: 200px;
  background: var(--lw-blue-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--lw-blue);
}
.lw-service-body h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--lw-text); margin-bottom: 8px;
}
.lw-service-body p { font-size: 0.86rem; color: var(--lw-muted); line-height: 1.6; }
.lw-service-overlay {
  position: absolute; inset: 0;
  background: rgba(15,90,145,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.lw-service-card:hover .lw-service-overlay { opacity: 1; }
.lw-service-overlay i { font-size: 1.6rem; color: #fff; }

/* ---------- Partners carousel ---------- */
.lw-partner-item img {
  width: 90px; height: 90px; border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--lw-blue-light);
  margin-bottom: 10px;
}
.lw-partner-item p { font-size: 0.85rem; font-weight: 600; color: var(--lw-text); margin: 0; }

/* ---------- Page header extras ---------- */
.lw-page-header-circles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.lw-page-header-circles::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.lw-page-header-circles::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -120px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.lw-page-header-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
  color: var(--lw-green); margin-bottom: 8px;
}
.lw-page-header-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700; color: #fff; margin-bottom: 14px;
}
.lw-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.75); }
.lw-breadcrumb .breadcrumb-item.active { color: var(--lw-green); }
.lw-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---------- Status badges (full set) ---------- */
.lw-badge-active  { background: #dcfce7; color: rgba(206, 186, 12, 0.3); }
.lw-badge-success { background: var(--lw-blue-light); color: var(--lw-blue); }
.lw-badge-pending { background: #fef9c3; color: #854d0e; }

/* ---------- Vacancy card extras ---------- */
.lw-vacancy-type {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px;
  display: inline-block; margin-bottom: 14px;
}
.lw-vacancy-internal { background: #fef9c3; color: #854d0e; }
.lw-vacancy-external { background: #dcfce7; color: rgba(206, 186, 12, 0.3); }
.lw-vacancy-title {
  font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700;
  color: var(--lw-text); margin-bottom: 14px;
}
.lw-vacancy-meta {
  list-style: none; padding: 0; margin: 0 0 14px;
}
.lw-vacancy-meta li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; color: var(--lw-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--lw-border);
}
.lw-vacancy-meta li:last-child { border-bottom: none; }
.lw-vacancy-meta i { color: var(--lw-blue); font-size: 0.9rem; flex-shrink: 0; }
.lw-vacancy-salary {
  font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 700;
  color: var(--lw-green-dark);
  display: flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 12px;
}

/* ---------- FAQ extras ---------- */
.lw-faq-question {
  display: flex; align-items: center; gap: 12px;
  background: var(--lw-white);
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600; font-size: 0.95rem;
  color: var(--lw-text);
  user-select: none;
}
.lw-faq-question[aria-expanded="true"] {
  background: var(--lw-blue-light);
  color: var(--lw-blue);
}
.lw-faq-icon { margin-left: auto; flex-shrink: 0; transition: transform .2s; }
.lw-faq-question[aria-expanded="true"] .lw-faq-icon { transform: rotate(-180deg); }
.lw-faq-answer { background: var(--lw-bg); }
.lw-faq-answer p {
  padding: 16px 20px 20px 56px;
  font-size: 0.9rem; color: var(--lw-muted); line-height: 1.65;
}

/* ---------- Gallery zoom icon ---------- */
.lw-gallery-zoom {
  color: #fff; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  transition: background .2s;
}
.lw-gallery-zoom:hover { background: var(--lw-blue); color: #fff; }

/* ---------- Contact info card (white version) ---------- */
.lw-contact-info-card { background: var(--lw-white); border: 1px solid var(--lw-border); }
.lw-contact-info-card .lw-contact-info-icon { background: var(--lw-blue-light); color: var(--lw-blue); }
.lw-contact-info-item { border-bottom: 1px solid var(--lw-border); }
.lw-contact-info-item:last-of-type { border-bottom: none; }
.lw-contact-info-item h6 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--lw-muted); margin-bottom: 3px; }
.lw-contact-info-item p { color: var(--lw-text); font-size: 0.9rem; margin: 0; }
.lw-contact-info-item a { color: var(--lw-blue); }
.lw-contact-info-item a:hover { color: var(--lw-blue-dark); }

/* ---------- Footer grid + new classes ---------- */
.lw-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 992px) { .lw-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .lw-footer-grid { grid-template-columns: 1fr; } }
.lw-footer-col {}
.lw-footer-brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}
.lw-footer-brand img { height: 44px; width: auto; object-fit: contain; }
.lw-footer-brand span {
  font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 700;
  color: #fff; letter-spacing: 0.5px;
}
.lw-footer-desc { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px; }
.lw-footer-heading {
  font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--lw-blue);
  display: inline-block;
}
.lw-footer-links { list-style: none; padding: 0; margin: 0; }
.lw-footer-links li { margin-bottom: 8px; }
.lw-footer-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  transition: color .2s, gap .2s;
}
.lw-footer-links a i { font-size: 0.7rem; color: var(--lw-green); }
.lw-footer-links a:hover { color: #fff; gap: 12px; }
.lw-footer-hours { list-style: none; padding: 0; margin: 0; }
.lw-footer-hours li {
  display: flex; flex-direction: column;
  font-size: 0.875rem; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
}
.lw-footer-hours li:last-child { border-bottom: none; }
.lw-hours-time { color: var(--lw-green); font-weight: 600; font-size: 0.84rem; }
.lw-hours-closed { color: #f87171; font-weight: 600; font-size: 0.84rem; }
.lw-footer-contact { list-style: none; padding: 0; margin: 0; }
.lw-footer-contact li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lw-footer-contact li:last-child { border-bottom: none; }
.lw-footer-contact li i { color: var(--lw-green); margin-top: 3px; flex-shrink: 0; }
.lw-footer-contact a { color: rgba(255,255,255,0.65); transition: color .2s; }
.lw-footer-contact a:hover { color: var(--lw-green); }
