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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ================= VARIABLES ================= */
:root {
  --primary: #e6324b;
  --primary-glow: rgba(230, 50, 75, 0.25);
  --dark: #0a0a0a;
  --surface: #111113;
  --surface-light: #18181b;
  --border: rgba(255, 255, 255, 0.06);
  --text: #e0e0e0;
  --text-muted: #999;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ================= GLOBAL ================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 90px 0;
}

.section.light {
  background: var(--surface);
}

h1,
h2,
h3 {
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

p {
  color: var(--text-muted);
  font-size: 16px;
}

/* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0 10px;
  max-width: 1400px;
  width: 95%;
  margin: auto;
}

.logo {
  margin-bottom: 8px;
}

.logo img {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
}

nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

nav a.active {
  color: var(--primary);
  background: rgba(230, 50, 75, 0.1);
}

.btn-shop {
  background: transparent !important;
  color: var(--primary) !important;
  padding: 7px 18px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  border: 1.5px solid var(--primary) !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.btn-shop:hover {
  background: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px var(--primary-glow);
  transform: translateY(-1px);
}

.btn-nav {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 12px var(--primary-glow);
}

.btn-nav:hover {
  background: #ff4d63 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--primary-glow);
}
.system-section {
  padding: 80px 0;
  background: #0d0d0f;
  text-align: center;
}

.system-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.system-card {
  background: #151518;
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s;
}

.system-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.system-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.system-card p {
  color: #aaa;
  font-size: 14px;
}

.system-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0,255,200,0.2);
}

@media (max-width: 768px) {
  .system-cards {
    grid-template-columns: 1fr;
  }
}

/* ================= MOBILE MENU ================= */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 8px;
  transition: background 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.50) 0%,
      rgba(0, 0, 0, 0.70) 60%,
      rgba(10, 10, 10, 1) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 700px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.btn-main {
  background: var(--primary);
  color: #fff;
  padding: 14px 38px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-main:hover {
  background: #ff4d63;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

/* ================= ABOUT ================= */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-box {
  background: var(--surface-light);
  padding: 28px;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-box li {
  margin-bottom: 12px;
  list-style: none;
  color: var(--text);
  font-size: 15px;
}

/* ================= CARDS ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface-light);
  padding: 32px;
  border-radius: var(--radius);
  transition: all 0.35s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 50, 75, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
  background: var(--primary);
}

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

.card p {
  font-size: 15px;
  line-height: 1.6;
}

.card ul {
  list-style: none;
}

.card li {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 15px;
}

/* ================= IMAGES ================= */
img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

.local-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.local-images img,
.local-images video {
  transition: transform 0.3s ease;
}

.local-images img:hover,
.local-images video:hover {
  transform: scale(1.02);
}

/* Make the video match the exact box size of the photo next to it */
.local-video,
.local-photo {
  width: 100%;
  aspect-ratio: 1018 / 927;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
/* ================= DISTRIBUTION ================= */

.distribution-section {
  position: relative;
  overflow: hidden;
}


/* ================= CONTAINER ================= */

.fleet-container {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  align-items: center;

  gap: 80px;

  margin-top: 55px;
}


/* ================= IMAGE ================= */

.fleet-image {
  position: relative;

  width: 100%;
  height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 24px;

  background: #111;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.35);
}

.fleet-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  padding: 10px;

  display: block;

  transition: transform 0.5s ease;
}

.fleet-image:hover img {
  transform: scale(1.02);
}


/* ================= CONTENT ================= */

.fleet-content {
  max-width: 480px;

  margin: auto 0;
}

.fleet-accent {
  width: 45px;
  height: 4px;

  margin-bottom: 22px;

  background: #e6324b;

  border-radius: 10px;
}


.fleet-content h3 {
  margin: 0 0 22px;

  font-size: 42px;

  line-height: 1.1;

  font-weight: 800;

  letter-spacing: -1.5px;

  color: #fff;
}

.fleet-content h3 span {
  display: block;

  color: #e6324b;
}


.fleet-content p {
  max-width: 460px;

  margin: 0;

  color: #888;

  font-size: 14px;

  line-height: 1.9;
}


/* ================= BOTTOM ================= */

.fleet-bottom {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 28px;

  padding-top: 22px;

  border-top: 1px solid rgba(255,255,255,0.08);
}

.fleet-bottom i {
  width: 36px;
  height: 36px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(230,50,75,0.1);

  color: #e6324b;

  font-size: 14px;
}

.fleet-bottom span {
  color: #aaa;

  font-size: 12px;

  font-weight: 500;
}


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

@media (max-width: 900px) {

  .fleet-container {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .fleet-image {
    height: 380px;
  }

  .fleet-content {
    max-width: 600px;

    margin: 0 auto;

    text-align: center;
  }

  .fleet-accent {
    margin: 0 auto 22px;
  }

  .fleet-content h3 {
    font-size: 36px;
  }

  .fleet-content p {
    margin: auto;
  }

  .fleet-bottom {
    justify-content: center;
  }
}


@media (max-width: 600px) {

  .fleet-image {
    height: 270px;

    border-radius: 18px;
  }

  .fleet-image img {
    padding: 5px;
  }

  .fleet-content h3 {
    font-size: 30px;
  }

  .fleet-content p {
    font-size: 13px;

    line-height: 1.8;
  }
}
/* ================= MAN POWER ================= */

.manpower-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px 0;
}

/* Background Glow */

.manpower-section::before {
  content: "";
  position: absolute;

  width: 450px;
  height: 450px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  background: rgba(230, 50, 75, 0.08);

  filter: blur(100px);

  border-radius: 50%;

  pointer-events: none;
}


/* Content */

.manpower-wrap {
  position: relative;

  max-width: 750px;

  margin: 45px auto 0;

  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Icon */

.manpower-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  background: rgba(230, 50, 75, 0.10);

  border: 1px solid rgba(230, 50, 75, 0.22);

  border-radius: 18px;

  color: var(--primary);

  font-size: 25px;

  box-shadow: 0 10px 35px rgba(230, 50, 75, 0.12);
}


/* Number */

.manpower-number {
  color: #fff;

  font-size: clamp(70px, 10vw, 120px);

  font-weight: 800;

  line-height: 0.95;

  letter-spacing: -5px;

  text-shadow:
    0 10px 40px rgba(0, 0, 0, 0.35);
}

.manpower-number span {
  color: var(--primary);

  font-size: 0.55em;

  vertical-align: top;

  margin-left: 5px;
}


/* Label */

.manpower-label {
  max-width: 650px;

  margin: 25px auto 0;

  color: var(--text-muted);

  font-size: 15px;

  line-height: 1.9;
}


/* Bottom Line */

.manpower-wrap::after {
  content: "";

  width: 80px;
  height: 3px;

  margin-top: 30px;

  background: var(--primary);

  border-radius: 10px;

  box-shadow: 0 0 20px var(--primary-glow);
}


/* ================= MOBILE ================= */

@media (max-width: 650px) {

  .manpower-section {
    padding: 70px 0;
  }

  .manpower-section h2 {
    font-size: 30px;
  }

  .manpower-wrap {
    margin-top: 35px;
  }

  .manpower-icon {
    width: 58px;
    height: 58px;

    font-size: 22px;

    border-radius: 15px;
  }

  .manpower-number {
    font-size: 75px;

    letter-spacing: -3px;
  }

  .manpower-label {
    padding: 0 20px;

    font-size: 13px;

    line-height: 1.8;
  }

}
/* ================= PARTNERS & CUSTOMERS ================= */

.partners {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 38px;
}

/* Our Partners = 6 per row */
.partners-6 {
  grid-template-columns: repeat(6, 1fr);
}

/* Our Customers = 7 per row */
.partners-7 {
  grid-template-columns: repeat(7, 1fr);
}

/* Logos */
.partners img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 5px;
}


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

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

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

@media (max-width: 700px) {
  .partners-6,
  .partners-7 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .partners-6,
  .partners-7 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ================= DISTRIBUTION / FLEET ================= */
.distribution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.fleet-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ================= FOUNDER (PREMIUM) ================= */
.founder-section {
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.founder-image-wrap {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 380px;
  margin-bottom: 34px;
}

.founder-image-frame {
  position: relative;
  padding: 10px;
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(160deg, #d4af37 0%, rgba(212, 175, 55, 0.15) 45%, rgba(230, 50, 75, 0.45) 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.founder-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.founder-badge {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  padding: 10px 28px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.founder-badge-title {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.founder-badge-role {
  display: block;
  color: #d4af37;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.founder-content {
  position: relative;
  padding-top: 10px;
}

.founder-quote-mark {
  position: absolute;
  top: -46px;
  left: -6px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 130px;
  line-height: 1;
  color: rgba(212, 175, 55, 0.18);
  pointer-events: none;
  user-select: none;
}

.founder-lead {
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 18px;
}

.founder-content p {
  margin-bottom: 16px;
}

.founder-signature {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-signature-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 24px;
  color: #d4af37;
  letter-spacing: 0.03em;
}

.founder-signature-title {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

  .founder-quote-mark {
    display: none;
  }
}
/* ================= COVERAGE ================= */

.manpower-section {
  position: relative;
  overflow: hidden;
}

/* Soft background glow */
.manpower-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(230, 50, 75, 0.08);
  filter: blur(120px);
  border-radius: 50%;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.coverage-card {
  position: relative;
  max-width: 850px;
  margin: 50px auto 0;
  padding: 45px 60px;
  display: flex;
  align-items: center;
  gap: 35px;

  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Icon */

.coverage-icon {
  width: 75px;
  height: 75px;
  min-width: 75px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: rgba(230, 50, 75, 0.1);
  border: 1px solid rgba(230, 50, 75, 0.25);

  color: #e6324b;
  font-size: 30px;
}

/* Content */

.coverage-content {
  flex: 1;
}

.coverage-number {
  font-size: 72px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  color: #fff;
}

.coverage-number span {
  color: #e6324b;
  font-size: 55px;
  margin-left: 3px;
}

.coverage-title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.coverage-content p {
  margin: 7px 0 0;
  color: #888;
  font-size: 14px;
}

/* Divider */

.coverage-line {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
}

/* Badge */

.coverage-badge {
  padding: 10px 18px;
  border-radius: 30px;

  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;

  color: #e6324b;
  background: rgba(230, 50, 75, 0.08);
  border: 1px solid rgba(230, 50, 75, 0.2);
}


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

@media (max-width: 700px) {

  .coverage-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
    gap: 20px;
  }

  .coverage-number {
    font-size: 58px;
  }

  .coverage-number span {
    font-size: 42px;
  }

  .coverage-title {
    font-size: 17px;
  }

  .coverage-line {
    width: 80px;
    height: 1px;
  }
}
/* =====================================================
   LRT MAINTENANCE APP - DARK THEME
===================================================== */

.lrt-maintenance {
  width: 100%;
  padding: 90px 0;
  background: #000000;
  overflow: hidden;
}

.lrt-maintenance-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 70px;
}


/* =====================================================
   CONTENT
===================================================== */

.lrt-maintenance-content {
  width: 52%;
  text-align: left;
}


/* LABEL */

.lrt-maintenance-label {
  display: inline-block;

  padding: 7px 14px;
  margin-bottom: 18px;

  background: rgba(230, 50, 75, 0.12);

  color: #e6324b !important;

  border: 1px solid rgba(230, 50, 75, 0.25);

  border-radius: 30px;

  font-size: 11px !important;
  font-weight: 700 !important;

  letter-spacing: 1.2px;
  text-transform: uppercase;
}


/* =====================================================
   TITLE
===================================================== */

.lrt-maintenance-content h2 {
  margin: 0 0 20px !important;

  max-width: 570px;

  color: #ffffff !important;

  font-size: 44px !important;
  font-weight: 700 !important;

  line-height: 1.15 !important;

  letter-spacing: -0.5px;
}

.lrt-maintenance-content h2 span {
  display: block;

  color: #e6324b !important;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.lrt-maintenance-text {
  max-width: 540px;

  margin: 0 0 32px !important;

  color: #a7a7a7 !important;

  font-size: 15px !important;

  font-weight: 400 !important;

  line-height: 1.8 !important;
}


/* =====================================================
   FEATURES
===================================================== */

.lrt-maintenance-list {
  width: 100%;
  max-width: 570px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 24px 35px;

  margin-bottom: 32px;
}


.lrt-maintenance-item {
  display: flex;

  align-items: flex-start;

  gap: 12px;
}


/* CHECK */

.lrt-check {
  flex-shrink: 0;

  width: 27px;
  height: 27px;

  margin-top: 2px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #e6324b;

  color: #ffffff !important;

  border-radius: 50%;

  font-size: 13px !important;

  font-weight: 700 !important;

  box-shadow: 0 0 15px rgba(230, 50, 75, 0.25);
}


/* FEATURE TITLE */

.lrt-maintenance-item h3 {
  margin: 0 0 5px !important;

  color: #ffffff !important;

  font-size: 14px !important;

  font-weight: 700 !important;

  line-height: 1.4 !important;
}


/* FEATURE DESCRIPTION */

.lrt-maintenance-item p {
  margin: 0 !important;

  color: #858585 !important;

  font-size: 12px !important;

  font-weight: 400 !important;

  line-height: 1.55 !important;
}


/* =====================================================
   BUTTON
===================================================== */

.lrt-maintenance-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 13px 26px;

  background: #e6324b !important;

  color: #ffffff !important;

  border-radius: 7px;

  text-decoration: none !important;

  font-size: 13px !important;

  font-weight: 600 !important;

  transition: all 0.3s ease;

  box-shadow: 0 8px 25px rgba(230, 50, 75, 0.18);
}

.lrt-maintenance-button:hover {
  background: #c9253d !important;

  color: #ffffff !important;

  transform: translateY(-2px);
}


/* =====================================================
   IMAGE
===================================================== */

.lrt-maintenance-visual {
  width: 43%;

  min-height: 480px;

  display: flex;

  align-items: center;
  justify-content: center;

  position: relative;
}


/* RED GLOW */

.lrt-maintenance-circle {
  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  background: rgba(230, 50, 75, 0.08);

  filter: blur(5px);

  z-index: 0;
}


/* IMAGE */

.lrt-maintenance-visual img {
  position: relative;

  z-index: 2;

  display: block;

  width: auto;

  max-width: 330px;

  max-height: 500px;

  object-fit: contain;

  border-radius: 20px;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.6);

  transition: transform 0.3s ease;
}

.lrt-maintenance-visual img:hover {
  transform: translateY(-6px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .lrt-maintenance-container {
    flex-direction: column;

    gap: 50px;
  }

  .lrt-maintenance-content {
    width: 100%;

    text-align: center;
  }

  .lrt-maintenance-content h2 {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lrt-maintenance-text {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lrt-maintenance-list {
    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }

  .lrt-maintenance-visual {
    width: 100%;

    min-height: auto;
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .lrt-maintenance {
    padding: 65px 0;
  }

  .lrt-maintenance-container {
    width: 88%;
  }

  .lrt-maintenance-content h2 {
    font-size: 32px !important;
  }

  .lrt-maintenance-text {
    font-size: 14px !important;
  }

  .lrt-maintenance-list {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .lrt-maintenance-visual img {
    max-width: 270px;

    max-height: 420px;
  }

  .lrt-maintenance-circle {
    width: 300px;
    height: 300px;
  }
}
/* ================= COVERAGE SECTION ================= */

/* Summary Stat Cards */
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(230, 50, 75, 0.08) 0%, rgba(230, 50, 75, 0.02) 100%);
  border: 1px solid rgba(230, 50, 75, 0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(230, 50, 75, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(230, 50, 75, 0.1);
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Table Wrapper */
.coverage-table-wrapper {
  background: var(--surface-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Table Header */
.coverage-table-header {
  display: grid;
  grid-template-columns: 56px 1fr 1.5fr 90px;
  align-items: center;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #c41e3a 100%);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}

.cth-count {
  text-align: right;
}

/* Table Body */
.coverage-table-body {
  max-height: 620px;
  overflow-y: auto;
}

/* Custom Scrollbar */
.coverage-table-body::-webkit-scrollbar {
  width: 6px;
}

.coverage-table-body::-webkit-scrollbar-track {
  background: transparent;
}

.coverage-table-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.coverage-table-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Table Row */
.coverage-row {
  display: grid;
  grid-template-columns: 56px 1fr 1.5fr 90px;
  align-items: center;
  padding: 13px 24px;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
  position: relative;
}

.coverage-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.25s ease;
  border-radius: 0 2px 2px 0;
}

.coverage-row:hover {
  background: rgba(230, 50, 75, 0.04);
}

.coverage-row:hover::before {
  background: var(--primary);
}

.coverage-row:last-child {
  border-bottom: none;
}

/* Rank Badge */
.cr-rank {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.coverage-row:nth-child(1) .cr-rank {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.3);
}

.coverage-row:nth-child(2) .cr-rank {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.15), rgba(192, 192, 192, 0.05));
  color: #c0c0c0;
  border-color: rgba(192, 192, 192, 0.3);
}

.coverage-row:nth-child(3) .cr-rank {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.15), rgba(205, 127, 50, 0.05));
  color: #cd7f32;
  border-color: rgba(205, 127, 50, 0.3);
}

/* Governorate Name */
.cr-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

/* Progress Bar */
.cr-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 16px;
}

.cr-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #ff6b7a 100%);
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.cr-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  animation: barShine 2.5s ease-in-out infinite;
}

@keyframes barShine {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }
}

/* Outlet Count */
.cr-count {
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

/* Responsive Coverage */
@media (max-width: 700px) {
  .coverage-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .stat-number {
    font-size: 24px;
    margin-bottom: 0;
    order: 2;
  }

  .stat-label {
    order: 1;
  }

  .coverage-table-header,
  .coverage-row {
    grid-template-columns: 40px 1fr 70px;
  }

  .cth-bar,
  .cr-bar {
    display: none;
  }

  .coverage-table-header {
    padding: 12px 16px;
  }

  .coverage-row {
    padding: 11px 16px;
  }
}
/* =====================================================
   LRT MAINTENANCE APP - DARK THEME
===================================================== */

.lrt-maintenance {
  width: 100%;
  padding: 90px 0;
  background: #000000;
  overflow: hidden;
}

.lrt-maintenance-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 70px;
}


/* =====================================================
   CONTENT
===================================================== */

.lrt-maintenance-content {
  width: 52%;
  text-align: left;
}


/* LABEL */

.lrt-maintenance-label {
  display: inline-block;

  padding: 7px 14px;
  margin-bottom: 18px;

  background: rgba(230, 50, 75, 0.12);

  color: #e6324b !important;

  border: 1px solid rgba(230, 50, 75, 0.25);

  border-radius: 30px;

  font-size: 11px !important;
  font-weight: 700 !important;

  letter-spacing: 1.2px;
  text-transform: uppercase;
}


/* =====================================================
   TITLE
===================================================== */

.lrt-maintenance-content h2 {
  margin: 0 0 20px !important;

  max-width: 570px;

  color: #ffffff !important;

  font-size: 44px !important;
  font-weight: 700 !important;

  line-height: 1.15 !important;

  letter-spacing: -0.5px;
}

.lrt-maintenance-content h2 span {
  display: block;

  color: #e6324b !important;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.lrt-maintenance-text {
  max-width: 540px;

  margin: 0 0 32px !important;

  color: #a7a7a7 !important;

  font-size: 15px !important;

  font-weight: 400 !important;

  line-height: 1.8 !important;
}


/* =====================================================
   FEATURES
===================================================== */

.lrt-maintenance-list {
  width: 100%;
  max-width: 570px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 24px 35px;

  margin-bottom: 32px;
}


.lrt-maintenance-item {
  display: flex;

  align-items: flex-start;

  gap: 12px;
}


/* CHECK */

.lrt-check {
  flex-shrink: 0;

  width: 27px;
  height: 27px;

  margin-top: 2px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #e6324b;

  color: #ffffff !important;

  border-radius: 50%;

  font-size: 13px !important;

  font-weight: 700 !important;

  box-shadow: 0 0 15px rgba(230, 50, 75, 0.25);
}


/* FEATURE TITLE */

.lrt-maintenance-item h3 {
  margin: 0 0 5px !important;

  color: #ffffff !important;

  font-size: 14px !important;

  font-weight: 700 !important;

  line-height: 1.4 !important;
}


/* FEATURE DESCRIPTION */

.lrt-maintenance-item p {
  margin: 0 !important;

  color: #858585 !important;

  font-size: 12px !important;

  font-weight: 400 !important;

  line-height: 1.55 !important;
}


/* =====================================================
   BUTTON
===================================================== */

.lrt-maintenance-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 13px 26px;

  background: #e6324b !important;

  color: #ffffff !important;

  border-radius: 7px;

  text-decoration: none !important;

  font-size: 13px !important;

  font-weight: 600 !important;

  transition: all 0.3s ease;

  box-shadow: 0 8px 25px rgba(230, 50, 75, 0.18);
}

.lrt-maintenance-button:hover {
  background: #c9253d !important;

  color: #ffffff !important;

  transform: translateY(-2px);
}


/* =====================================================
   IMAGE
===================================================== */

.lrt-maintenance-visual {
  width: 43%;

  min-height: 480px;

  display: flex;

  align-items: center;
  justify-content: center;

  position: relative;
}


/* RED GLOW */

.lrt-maintenance-circle {
  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  background: rgba(230, 50, 75, 0.08);

  filter: blur(5px);

  z-index: 0;
}


/* IMAGE */

.lrt-maintenance-visual img {
  position: relative;

  z-index: 2;

  display: block;

  width: auto;

  max-width: 330px;

  max-height: 500px;

  object-fit: contain;

  border-radius: 20px;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.6);

  transition: transform 0.3s ease;
}

.lrt-maintenance-visual img:hover {
  transform: translateY(-6px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .lrt-maintenance-container {
    flex-direction: column;

    gap: 50px;
  }

  .lrt-maintenance-content {
    width: 100%;

    text-align: center;
  }

  .lrt-maintenance-content h2 {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lrt-maintenance-text {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lrt-maintenance-list {
    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }

  .lrt-maintenance-visual {
    width: 100%;

    min-height: auto;
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .lrt-maintenance {
    padding: 65px 0;
  }

  .lrt-maintenance-container {
    width: 88%;
  }

  .lrt-maintenance-content h2 {
    font-size: 32px !important;
  }

  .lrt-maintenance-text {
    font-size: 14px !important;
  }

  .lrt-maintenance-list {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .lrt-maintenance-visual img {
    max-width: 270px;

    max-height: 420px;
  }

  .lrt-maintenance-circle {
    width: 300px;
    height: 300px;
  }
}
/* ================= PROMOTER ================= */

#promoter {
  position: relative;
  overflow: hidden;
}

/* Background decoration */
#promoter::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  background: rgba(230, 50, 75, 0.06);

  filter: blur(120px);

  border-radius: 50%;

  left: 10%;
  top: 30%;

  pointer-events: none;
}


/* ================= GRID ================= */

#promoter .distribution-grid {
  position: relative;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;

  margin-top: 45px;
}


/* ================= TEXT ================= */

#promoter .distribution-grid > div:first-child {
  padding-right: 20px;
}

#promoter p {
  margin: 0;

  max-width: 560px;

  color: #666;

  font-size: 15px;

  line-height: 1.9;
}


/* Small accent before text */

#promoter .distribution-grid > div:first-child::before {
  content: "";

  display: block;

  width: 45px;
  height: 3px;

  background: #e6324b;

  margin-bottom: 25px;

  border-radius: 5px;
}


/* ================= IMAGE ================= */

#promoter .fleet-image {
  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius: 18px;

  border: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15);
}

#promoter .fleet-image img {
  display: block;

  width: 100%;

  height: 470px;

  object-fit: cover;

  transition: transform 0.6s ease;
}

#promoter .fleet-image:hover img {
  transform: scale(1.03);
}


/* Image overlay */

#promoter .fleet-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.35),
    transparent 45%
  );

  pointer-events: none;
}


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

@media (max-width: 900px) {

  #promoter .distribution-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  #promoter .distribution-grid > div:first-child {
    padding-right: 0;
  }

  #promoter p {
    max-width: 100%;
  }

  #promoter .fleet-image img {
    height: 400px;
  }
}


@media (max-width: 600px) {

  #promoter p {
    font-size: 13px;

    line-height: 1.8;
  }

  #promoter .fleet-image img {
    height: 300px;
  }
}
/* ================= ABOUT ================= */

#about {
  position: relative;
  overflow: hidden;
}

#about::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  background: rgba(230, 50, 75, 0.06);

  filter: blur(120px);

  border-radius: 50%;

  left: 5%;
  top: 25%;

  pointer-events: none;
}


/* ================= GRID ================= */

#about .about-grid {
  position: relative;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 70px;

  align-items: center;

  margin-top: 50px;
}


/* ================= CONTENT ================= */

.about-content {
  position: relative;
}

.about-tag {
  display: inline-block;

  color: #e6324b;

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 15px;
}

.about-content h3 {
  max-width: 600px;

  margin: 0 0 22px;

  font-size: 42px;

  line-height: 1.1;

  font-weight: 800;

  color: #fff;

  letter-spacing: -1px;
}

.about-content h3 span {
  display: block;

  color: #e6324b;
}

.about-content p {
  max-width: 600px;

  margin-bottom: 18px;

  color: #929292;

  font-size: 14px;

  line-height: 1.9;
}


/* ================= FEATURES ================= */

.about-features {
  display: flex;

  gap: 25px;

  margin-top: 30px;

  padding-top: 25px;

  border-top: 1px solid rgba(255,255,255,0.08);
}

.about-feature {
  display: flex;

  align-items: center;

  gap: 10px;

  flex: 1;
}

.about-feature > span {
  width: 30px;
  height: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(230,50,75,0.1);

  border: 1px solid rgba(230,50,75,0.2);

  color: #e6324b;

  font-size: 13px;
}

.about-feature strong {
  display: block;

  color: #fff;

  font-size: 12px;
}

.about-feature small {
  display: block;

  margin-top: 3px;

  color: #777;

  font-size: 10px;
}


/* ================= IMAGE ================= */

.about-image {
  position: relative;

  overflow: hidden;

  border-radius: 20px;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 25px 70px rgba(0,0,0,0.4);
}

.about-image img {
  display: block;

  width: 100%;

  height: 500px;

  object-fit: cover;

  transition: transform 0.6s ease;
}

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


/* Image overlay */

.about-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    transparent 55%
  );

  pointer-events: none;
}


/* ================= IMAGE BADGE ================= */

.about-image-badge {
  position: absolute;

  left: 25px;
  bottom: 25px;

  z-index: 2;

  display: flex;

  flex-direction: column;

  gap: 5px;
}

.about-image-badge strong {
  color: #fff;

  font-size: 28px;

  font-weight: 800;
}

.about-image-badge span {
  color: #ccc;

  font-size: 11px;
}


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

@media (max-width: 900px) {

  #about .about-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .about-content h3 {
    font-size: 36px;
  }

  .about-image img {
    height: 400px;
  }
}

@media (max-width: 600px) {

  .about-content h3 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 13px;
  }

  .about-features {
    flex-direction: column;

    gap: 15px;
  }

  .about-image img {
    height: 320px;
  }
}
/* ================= CONTACT SECTION ================= */
.contact-section {
  background: var(--dark);
  text-align: center;
}

.contact-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: -8px;
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px 32px;
  text-decoration: none;
  display: block;
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
  cursor: pointer;
}

.contact-card:hover {
  border-color: rgba(230, 50, 75, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230, 50, 75, 0.12), rgba(230, 50, 75, 0.04));
  border: 1px solid rgba(230, 50, 75, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: var(--primary);
  transition: all 0.35s ease;
}

.contact-card:hover .contact-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 24px var(--primary-glow);
  transform: scale(1.1);
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-arrow {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateX(4px);
}
/* ================= MAINTENANCE SECTION ================= */

.maintenance-section {
  position: relative;
  background: #101012;
  overflow: hidden;
}

.maintenance-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  right: -150px;
  background: rgba(230, 50, 75, 0.07);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.maintenance-section .container {
  position: relative;
  z-index: 2;
}


/* ================= MAINTENANCE ================= */

.maintenance-header {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.maintenance-header h2 {
  margin-bottom: 18px;
  color: #c41e3a;
}

.maintenance-header p {
  max-width: 750px;
  margin: auto;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
}

.maintenance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.maintenance-info h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 18px;
}

.maintenance-info > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 15px;
}

.maintenance-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.maintenance-feature {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px;
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.maintenance-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 50, 75, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 50, 75, 0.1);
  border: 1px solid rgba(230, 50, 75, 0.18);
  border-radius: 10px;
  color: var(--primary);
  font-size: 17px;
}

.maintenance-feature h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.maintenance-feature p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}


/* ================= VIDEO ================= */

.maintenance-video-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 500px;
  margin: 0 auto;

  overflow: hidden;

  background: #111113;
  border: 1px solid var(--border);
  border-radius: 20px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maintenance-video-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.maintenance-video {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center;

  background: #111;
}


/* ================= VIDEO LABEL ================= */

.video-label {
  position: absolute;
  left: 16px;
  bottom: 16px;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 9px 14px;

  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;

  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.video-label i {
  color: var(--primary);
}


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

@media (max-width: 1000px) {

  .maintenance-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .maintenance-info {
    max-width: 800px;
    margin: auto;
  }

  .maintenance-video-container {
    max-width: 700px;
    height: 500px;
  }

}

@media (max-width: 650px) {

  .maintenance-header {
    margin-bottom: 40px;
  }

  .maintenance-header h2 {
    font-size: 30px;
  }

  .maintenance-header p {
    font-size: 14px;
  }

  .maintenance-info h3 {
    font-size: 24px;
  }

  .maintenance-features {
    grid-template-columns: 1fr;
  }

  .maintenance-video-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
  }

  .video-label {
    left: 12px;
    bottom: 12px;
    font-size: 11px;
  }

}

/* ================= RETAIL BRANCH ================= */

.retail-header {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.retail-header h2 {
  margin-bottom: 18px;
}

.retail-header p {
  max-width: 750px;
  margin: auto;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
}


/* ================= RETAIL CONTENT ================= */

.retail-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
  align-items: center;
}


/* ================= BRANCH IMAGE ================= */

.retail-media {
  position: relative;
  height: 500px;
  overflow: hidden;

  border-radius: 20px;
  background: #111113;
  border: 1px solid var(--border);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.retail-media img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center;

  transition: transform 0.6s ease;
}

.retail-media:hover img {
  transform: scale(1.04);
}


/* ================= BRANCH BADGE ================= */

.retail-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 10px 16px;

  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;

  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.retail-badge i {
  color: var(--primary);
}


/* ================= RETAIL INFO ================= */

.retail-info h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 18px;
}

.retail-info > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 15px;
}


/* ================= RETAIL FEATURES ================= */

.retail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.retail-feature {
  display: flex;
  align-items: flex-start;
  gap: 13px;

  padding: 17px;

  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);

  transition: all 0.3s ease;
}

.retail-feature:hover {
  transform: translateY(-4px);

  border-color: rgba(230, 50, 75, 0.35);

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.retail-icon {
  flex-shrink: 0;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(230, 50, 75, 0.1);

  border: 1px solid rgba(230, 50, 75, 0.18);

  border-radius: 10px;

  color: var(--primary);
  font-size: 17px;
}

.retail-feature h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.retail-feature p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}


/* ================= BUTTON ================= */

.retail-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 28px;
  padding: 13px 20px;

  background: var(--primary);
  color: #fff;

  border-radius: 10px;

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.retail-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 30px var(--primary-glow);
}

.retail-btn i {
  transition: transform 0.3s ease;
}

.retail-btn:hover i {
  transform: translateX(4px);
}


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

@media (max-width: 1000px) {

  .retail-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .retail-media {
    max-width: 800px;
    width: 100%;
    margin: auto;
  }

  .retail-info {
    max-width: 800px;
    margin: auto;
  }

}


@media (max-width: 650px) {

  .retail-header {
    margin-bottom: 40px;
  }

  .retail-header h2 {
    font-size: 30px;
  }

  .retail-header p {
    font-size: 14px;
  }

  .retail-media {
    height: 350px;
    border-radius: 15px;
  }

  .retail-info h3 {
    font-size: 24px;
  }

  .retail-features {
    grid-template-columns: 1fr;
  }

  .retail-btn {
    width: 100%;
    justify-content: center;
  }

}
/* =========================================================
   E-COMMERCE SECTION
========================================================= */

.ecommerce-header {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.ecommerce-header h2 {
  font-size: 42px;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.ecommerce-header p {
  max-width: 720px;
  margin: auto;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 15px;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.ecommerce-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}


/* =========================================================
   DIGITAL COMMERCE SCREEN
========================================================= */

.ecommerce-visual {
  display: flex;
  justify-content: center;
}

.ecommerce-screen {
  width: 100%;
  max-width: 620px;
  height: 440px;

  position: relative;
  overflow: hidden;

  border-radius: 24px;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(230, 50, 75, 0.18),
      transparent 40%
    ),
    #111113;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   BROWSER TOP
========================================================= */

.screen-top {
  height: 42px;

  display: flex;
  align-items: center;

  gap: 7px;

  padding: 0 18px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-top span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #555;
}


/* =========================================================
   SCREEN CONTENT
========================================================= */

.screen-content {
  padding: 35px;
}

.screen-logo {
  color: #fff;

  font-size: 22px;
  font-weight: 800;

  letter-spacing: 2px;
}


.screen-title {
  margin-top: 55px;
}

.screen-title span {
  display: block;

  color: var(--primary);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 10px;
}

.screen-title strong {
  color: #fff;

  font-size: 36px;
  line-height: 1.1;

  letter-spacing: -1px;
}


/* =========================================================
   PRODUCT CATEGORIES
========================================================= */

.product-row {
  display: flex;

  gap: 12px;

  margin-top: 45px;
}

.product-card {
  flex: 1;

  min-width: 0;

  padding: 17px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.07);

  border-radius: 12px;

  display: flex;
  align-items: center;

  justify-content: center;

  gap: 10px;

  text-align: center;

  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: rgba(230, 50, 75, 0.35);

  background: rgba(230, 50, 75, 0.06);

  transform: translateY(-3px);
}

.product-card i {
  flex-shrink: 0;

  color: var(--primary);

  font-size: 16px;
}

.product-card span {
  display: block;

  color: #ddd;

  font-size: 11px;

  line-height: 1.3;

  white-space: nowrap;
}


/* =========================================================
   INFORMATION
========================================================= */

.ecommerce-info {
  position: relative;
}

.ecommerce-number {
  color: var(--primary);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 3px;
}

.ecommerce-info h3 {
  margin-top: 12px;
  margin-bottom: 20px;

  color: #fff;

  font-size: 36px;
  line-height: 1.15;

  letter-spacing: -1px;
}

.ecommerce-info > p {
  color: var(--text-muted);

  font-size: 15px;
  line-height: 1.9;

  margin-bottom: 14px;
}


/* =========================================================
   E-COMMERCE POINTS
========================================================= */

.ecommerce-points {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

  margin-top: 30px;
}

.ecommerce-points div {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 13px 15px;

  border-bottom: 1px solid var(--border);
}

.ecommerce-points i {
  color: var(--primary);

  font-size: 14px;

  flex-shrink: 0;
}

.ecommerce-points span {
  color: #ddd;

  font-size: 12px;
}


/* =========================================================
   STATS
========================================================= */

.ecommerce-stats {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  margin-top: 75px;

  border-top: 1px solid var(--border);

  border-bottom: 1px solid var(--border);
}

.ecommerce-stats div {
  padding: 28px 20px;

  text-align: center;

  border-right: 1px solid var(--border);
}

.ecommerce-stats div:last-child {
  border-right: none;
}

.ecommerce-stats strong {
  display: block;

  color: #fff;

  font-size: 18px;

  margin-bottom: 7px;
}

.ecommerce-stats span {
  color: var(--text-muted);

  font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .ecommerce-content {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .ecommerce-visual {
    order: 1;
  }

  .ecommerce-info {
    order: 2;
  }

  .ecommerce-screen {
    max-width: 700px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .ecommerce-header {
    margin-bottom: 45px;
  }

  .ecommerce-header h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .ecommerce-header p {
    font-size: 14px;
  }


  /* Screen */

  .ecommerce-screen {
    height: 390px;

    border-radius: 18px;
  }

  .screen-content {
    padding: 24px;
  }


  /* Logo */

  .screen-logo {
    font-size: 19px;
  }


  /* Title */

  .screen-title {
    margin-top: 38px;
  }

  .screen-title strong {
    font-size: 28px;
  }


  /* Product Row */

  .product-row {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 8px;

    margin-top: 32px;
  }


  /* Product Card */

  .product-card {
    min-height: 72px;

    padding: 9px 4px;

    flex-direction: column;

    justify-content: center;

    gap: 7px;

    text-align: center;
  }

  .product-card i {
    font-size: 17px;
  }

  .product-card span {
    display: block;

    font-size: 9px;

    line-height: 1.2;

    white-space: normal;
  }


  /* Info */

  .ecommerce-info h3 {
    font-size: 28px;

    line-height: 1.2;
  }


  /* Points */

  .ecommerce-points {
    grid-template-columns: 1fr;
  }


  /* Stats */

  .ecommerce-stats {
    grid-template-columns: 1fr 1fr;

    margin-top: 50px;
  }

  .ecommerce-stats div {
    padding: 22px 10px;

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
  }

  .ecommerce-stats div:nth-child(2n) {
    border-right: none;
  }

}
/* =========================================================
   TRADING - DISTRIBUTION - LOGISTICS
========================================================= */

.trading-logistics-section {
  position: relative;
  overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.trading-logistics-header {
  max-width: 850px;
  margin: 0 auto 65px;
  text-align: center;
}

.trading-logistics-header .section-tag {
  display: inline-block;
  margin-bottom: 12px;

  color: var(--primary);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.trading-logistics-header h2 {
  margin: 0 0 18px;

  color: #fff;

  font-size: 42px;
  font-weight: 700;

  line-height: 1.15;
}

.trading-logistics-header p {
  max-width: 720px;
  margin: 0 auto;

  color: var(--text-muted);

  font-size: 15px;
  line-height: 1.9;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.trading-logistics-content {
  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  gap: 65px;

  align-items: center;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.trading-logistics-info {
  max-width: 600px;
}

.trading-number {
  display: block;

  margin-bottom: 10px;

  color: var(--primary);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 3px;
}

.trading-logistics-info h3 {
  margin: 0 0 22px;

  color: #fff;

  font-size: 38px;
  font-weight: 700;

  line-height: 1.15;

  letter-spacing: -1px;
}

.trading-logistics-info > p {
  margin: 0 0 15px;

  color: var(--text-muted);

  font-size: 15px;

  line-height: 1.9;
}


/* =========================================================
   FEATURES
========================================================= */

.business-features {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 13px;

  margin-top: 30px;
}

.business-feature {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  min-height: 78px;

  padding: 15px;

  background: var(--surface-light);

  border: 1px solid var(--border);

  border-radius: 13px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.business-feature:hover {
  transform: translateY(-4px);

  border-color: rgba(230, 50, 75, 0.35);

  background: rgba(230, 50, 75, 0.035);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.25);
}


/* Feature Icon */

.business-feature > i {
  flex-shrink: 0;

  width: 40px;
  height: 40px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: var(--primary);

  background: rgba(230, 50, 75, 0.10);

  border: 1px solid rgba(230, 50, 75, 0.20);

  border-radius: 10px;

  font-size: 15px;
}


/* Feature Text */

.business-feature strong {
  display: block;

  margin-bottom: 5px;

  color: #fff;

  font-size: 13px;
  font-weight: 700;
}

.business-feature span {
  display: block;

  color: var(--text-muted);

  font-size: 11px;

  line-height: 1.55;
}


/* =========================================================
   RIGHT MEDIA AREA
========================================================= */

.business-media {
  position: relative;

  width: 100%;

  height: 520px;
}


/* =========================================================
   MAIN LRT IMAGE
========================================================= */

.business-media-main {
  position: absolute;

  top: 0;
  right: 0;

  width: 72%;
  height: 450px;

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #08090c;

  border: 1px solid var(--border);

  border-radius: 22px;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.45);

  z-index: 1;
}


/* Image itself */

.business-media-main img {
  width: 100%;
  height: 100%;

  display: block;

  /*
    contain = الصورة تظهر كاملة
    ومفيش Crop
  */
  object-fit: contain;

  object-position: center;

  background: #08090c;

  transition: transform 0.6s ease;
}

.business-media-main:hover img {
  transform: scale(1.02);
}


/* Dark Gradient */

.business-media-main::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.20) 50%,
      rgba(0, 0, 0, 0) 75%
    );

  pointer-events: none;

  z-index: 2;
}


/* =========================================================
   MAIN IMAGE LABEL
========================================================= */

.business-media-label {
  position: absolute;

  left: 25px;
  bottom: 25px;

  display: flex;

  flex-direction: column;

  z-index: 3;
}

.business-media-label span {
  margin-bottom: 3px;

  color: var(--primary);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 3px;
}

.business-media-label strong {
  color: #fff;

  font-size: 23px;
  font-weight: 700;
}

.business-media-label small {
  margin-top: 5px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 11px;
}


/* =========================================================
   FLEET IMAGE
========================================================= */

.business-media-small {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 48%;
  height: 300px;

  overflow: hidden;

  background: #111;

  border: 5px solid #101012;

  border-radius: 20px;

  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.50);

  z-index: 4;
}

.business-media-small img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transition: transform 0.6s ease;
}

.business-media-small:hover img {
  transform: scale(1.05);
}


/* =========================================================
   FLEET LABEL
========================================================= */

.fleet-label {
  position: absolute;

  left: 15px;
  bottom: 15px;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 9px 14px;

  background: rgba(10, 10, 10, 0.82);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 50px;

  color: #fff;

  font-size: 12px;
  font-weight: 600;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fleet-label i {
  color: var(--primary);
}


/* =========================================================
   LOGISTICS BOTTOM
========================================================= */

.logistics-bottom {
  display: flex;

  align-items: center;

  gap: 22px;

  margin-top: 70px;

  padding: 28px 30px;

  background:
    linear-gradient(
      135deg,
      rgba(230, 50, 75, 0.07),
      rgba(255, 255, 255, 0.02)
    );

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.20);
}


/* Logistics Icon */

.logistics-bottom-icon {
  flex-shrink: 0;

  width: 55px;
  height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: rgba(230, 50, 75, 0.10);

  border: 1px solid rgba(230, 50, 75, 0.22);

  border-radius: 15px;

  color: var(--primary);

  font-size: 21px;
}


/* Logistics Text */

.logistics-bottom h3 {
  margin: 0 0 7px;

  color: #fff;

  font-size: 20px;
  font-weight: 700;
}

.logistics-bottom p {
  margin: 0;

  color: var(--text-muted);

  font-size: 13px;

  line-height: 1.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .trading-logistics-content {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .trading-logistics-info {
    max-width: 800px;

    margin: 0 auto;
  }

  .business-media {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    height: 520px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .trading-logistics-header {
    margin-bottom: 45px;
  }

  .trading-logistics-header h2 {
    font-size: 30px;
  }

  .trading-logistics-header p {
    padding: 0 10px;

    font-size: 14px;
  }


  /* LEFT */

  .trading-logistics-info h3 {
    font-size: 29px;
  }

  .trading-logistics-info > p {
    font-size: 14px;
  }


  /* FEATURES */

  .business-features {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .business-feature {
    min-height: auto;
  }


  /* MEDIA */

  .business-media {
    height: 390px;
  }

  .business-media-main {
    width: 78%;
    height: 330px;

    border-radius: 18px;
  }

  .business-media-main img {
    object-fit: contain;
  }


  .business-media-small {
    width: 48%;
    height: 220px;

    border-width: 4px;

    border-radius: 16px;
  }


  /* LABEL */

  .business-media-label {
    left: 18px;
    bottom: 18px;
  }

  .business-media-label strong {
    font-size: 18px;
  }


  .fleet-label {
    left: 10px;
    bottom: 10px;

    padding: 8px 11px;

    font-size: 11px;
  }


  /* LOGISTICS */

  .logistics-bottom {
    align-items: flex-start;

    gap: 15px;

    margin-top: 50px;

    padding: 22px;
  }

  .logistics-bottom-icon {
    width: 45px;
    height: 45px;

    font-size: 17px;
  }

  .logistics-bottom h3 {
    font-size: 17px;
  }

  .logistics-bottom p {
    font-size: 12px;
  }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {

  .business-media {
    height: 350px;
  }

  .business-media-main {
    width: 80%;
    height: 295px;
  }

  .business-media-small {
    width: 50%;
    height: 190px;
  }

  .business-media-label strong {
    font-size: 16px;
  }

  .logistics-bottom {
    padding: 18px;
  }

}
/* ================= FOOTER ================= */
.site-footer {
  background: #030305;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 72px 0 56px;
}

.footer-logo {
  height: 55px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

/* Footer Columns */
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 14px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
  display: inline-block;
}

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

/* Footer Contact List */
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-contact-list li i {
  color: var(--primary);
  font-size: 14px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-list a:hover {
  color: var(--primary);
  transform: none;
}

.footer-contact-list span {
  color: var(--text-muted);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

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

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* Footer Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 48px 0 40px;
  }
}

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

  .contact-card {
    padding: 28px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ================= SCROLL ANIMATIONS ================= */
.section {
  animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Large screens – shrink nav further if needed */
@media(max-width: 1300px) {
  nav a {
    font-size: 12px;
    padding: 5px 7px;
  }

  nav ul {
    gap: 3px;
  }
}

@media(max-width: 1100px) {
  nav a {
    font-size: 11.5px;
    padding: 5px 6px;
  }

  nav ul {
    gap: 2px;
  }
}

@media(max-width: 1000px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 0;
  }

  .logo {
    margin-bottom: 0;
  }

  .logo img {
    height: 55px;
  }

  .menu-toggle {
    display: block;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    display: none;
    padding: 16px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }

  nav ul.active {
    display: flex;
  }

  nav a {
    font-size: 15px;
    padding: 10px 14px;
    display: block;
    border-radius: 10px;
  }

  nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .btn-nav {
    text-align: center !important;
    margin-top: 8px;
  }
}

@media(max-width: 900px) {

  .about-grid,
  .distribution-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 30px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
    letter-spacing: 2px;
  }
}

@media(max-width: 500px) {
  .section {
    padding: 60px 0;
  }

  h2 {
    font-size: 26px;
  }

  .hero h1 {
    font-size: 28px;
  }
}
