:root {
  --primary-dark: #002b28;
  --primary-light: #004d47;
  --accent-teal: #e57e3a;
  --accent-gold: #e87e38;
  --text-white: #ffffff;
  --text-dim: #aebdbb;
  --glass-bg: rgb(74 76 79 / 80%);
  --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: "Cairo", sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-white);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
}

/* Sidebar (Same as about.css) */
.sidebar {
  width: 4%;
  background: #001f1d;
  height: 80%;
  position: absolute;
  top: 10%;
  inset-inline-start: 6px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-inline-end: 1px solid var(--border-color);
  z-index: 100;
  padding: 5px 0;
}

.logo-area {
  /* display: flex; */
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-area img {
  height: 30px;
}

.back-home-btn {
  margin-top: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.back-home-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.back-home-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Content Area */
.content-area {
  flex: 1;
  /* position: relative; */
  padding: 40px;
  background: radial-gradient(circle at top right,
      #0b3d39,
      var(--primary-dark));
}

.content-area-services {
  background: url(../images/bg/services-bg1.png) !important;
  background-size: cover !important;
  /* margin: 0 auto; */
}

.content-section {
  position: absolute;
  inset: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  padding-inline-start: 10px;
}

.content-section.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  padding: 60px 70px 0 10px;
  height: 90%;
}

.content-section::-webkit-scrollbar {
  width: 6px;
}

.content-section::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.content-section::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px;
}

/* Headers */
.header-box {
  margin-bottom: 10px;
  /* border-bottom: 1px solid var(--border-color); */
  padding-bottom: 0px;
}

.header-box h1 {
  font-size: 26px;
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.header-box p {
  color: var(--text-dim);
  font-size: 16px;
}

/* Overview Grid */
.services-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.services-overview-grid>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3));
}

.overview-card {
  background: rgba(47, 49, 51, 0.7);
  padding: 5px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid transparent;
}

.overview-card:hover {
  border-color: #ffa25a;
  transform: translateY(-5px);
}

.overview-card .card-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.overview-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.overview-card p {
  color: var(--text-dim);
  font-size: 14px;
}

/* Features Section */
.features-section {
  background: rgba(47, 49, 51, 0.3);
  padding: 17px;
  border-radius: 20px;
}

.features-section h2 {
  color: var(--accent-gold);
  margin-bottom: 25px;
  text-align: center;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.features-grid>* {
  flex: 0 0 calc(25.0000% - (20px * 3 / 4));
  max-width: calc(25.0000% - (20px * 3 / 4));
  min-width: calc(25.0000% - (20px * 3 / 4));
}

.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

.feature-item h4 {
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 12px;
  color: var(--text-dim);
}

/* Service Detail Layout */
.service-detail-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-detail-layout>*:nth-child(2) {
  flex: 1.5;
}

.service-detail-layout>*:nth-child(1) {
  flex: 1;
}

.detail-image {
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.fuel-bg {
  background-image: url("../images/pump4.png");
}

.detail-content h2 {
  color: #f37521;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 12px;
  color: #b5b7ba;
  margin-bottom: 8px;
  background: rgba(47, 49, 51, 0.7);
  border-radius: 8px;
  border-inline-start: 3px solid var(--accent-teal);
}

.service-list strong {
  color: #e87e38;
}

.price-banner {
  background: rgba(47, 49, 51, 0.4);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  color: #b5b7ba;
  border: 1px solid rgba(47, 49, 51);
}

.price-banner h3 {
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: #b5b7ba;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
  color: var(--accent-teal);
  font-weight: bold;
}

/* Products Grid */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.products-grid>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3));
}

.product-category {
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.products-grid.logos-only .product-category {
  display: flex;
  flex-wrap: wrap;
  place-items: center;
  padding: 18px;
  border-radius: 16px;
  background: #2f3133cf;
  /* غيّرها لو تبي كروت */
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* اختياري */
}

.products-grid.logos-only .cat-logo {
  width: 50%;
  /* تحكم بحجم الشعار */
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.product-category:hover {
  background: rgba(156, 235, 200, 0.05);
}

.cat-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Restaurant Cards */
.restaurant-types {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.restaurant-types>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3));
}

.rest-card {
  background: rgb(74 76 79 / 80%);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.rest-card:hover {
  transform: translateY(-5px);
}

.rest-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.rest-info {
  padding: 20px;
}

.cuisine {
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.rest-hours {
  margin-top: 15px;
  font-size: 12px;
  color: var(--accent-teal);
}

/* Cafe Menu */
.cafe-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.cafe-menu>* {
  flex: 0 0 calc(33.3333% - (30px * 2 / 3));
  max-width: calc(33.3333% - (30px * 2 / 3));
  min-width: calc(33.3333% - (30px * 2 / 3));
}

.menu-column {
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
}

.menu-column h3 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cafe-feature {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  color: var(--primary-dark);
}

.cafe-feature h3 {
  margin-bottom: 15px;
}

.cafe-feature p {
  font-weight: bold;
  margin: 5px 0;
}

/* Wash Packages */
.wash-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.wash-packages>* {
  flex: 0 0 calc(33.3333% - (25px * 2 / 3));
  max-width: calc(33.3333% - (25px * 2 / 3));
  min-width: calc(33.3333% - (25px * 2 / 3));
}

.package-card {
  background: rgb(74 76 79 / 80%);
  padding: 30px 25px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: 0.3s;
  position: relative;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card.basic:hover {
  border-color: #95a5a6;
}

.package-card.premium:hover {
  border-color: var(--accent-gold);
}

.package-card.vip:hover {
  border-color: var(--accent-teal);
}

.ribbon {
  position: absolute;
  top: 15px;
  inset-inline-start: -10px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 5px 15px;
  font-size: 11px;
  font-weight: bold;
  border-radius: 5px;
}

.package-header {
  text-align: center;
  margin-bottom: 20px;
}

.package-price {
  font-size: 32px;
  color: var(--accent-teal);
  font-weight: bold;
  margin-top: 10px;
}

.package-features {
  list-style: none;
  padding: 0;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.package-time {
  text-align: center;
  margin-top: 20px;
  color: var(--accent-gold);
  font-weight: bold;
}

/* Maintenance Services */
.maintenance-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.maintenance-services>* {
  flex: 0 0 calc(33.3333% - (10px * 2 / 3));
  max-width: calc(33.3333% - (10px * 2 / 3));
  min-width: calc(33.3333% - (10px * 2 / 3));
}

.maint-card {
  background: rgba(47, 49, 51, .7);
  padding: 8px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.maint-card:hover {
  background: rgba(156, 235, 200, 0.05);
}

.maint-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.maint-card h3 {
  font-size: 20px;
}

.maint-card p {
  font-size: 14px;
}

.maint-price {
  margin-top: 15px;
  color: var(--accent-teal);
  font-weight: bold;
}

/* Rest Facilities */
.rest-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.rest-facilities>* {
  flex: 0 0 calc(50.0000% - (30px * 1 / 2));
  max-width: calc(50.0000% - (30px * 1 / 2));
  min-width: calc(50.0000% - (30px * 1 / 2));
}

.facility-card {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
}

.facility-card h3 {
  color: var(--accent-teal);
  margin-bottom: 15px;
}

.facility-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.facility-card li {
  padding: 8px 0;
  padding-inline-start: 20px;
  position: relative;
}

.facility-card li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent-teal);
}

.facility-price {
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
}

/* EV Content */
.ev-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.ev-content>* {
  flex: 1;
}

.ev-info h3 {
  color: var(--accent-teal);
  margin-bottom: 15px;
}

.ev-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.ev-stat {
  background: rgba(47, 49, 51, .7);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
}

.stat-num {
  font-size: 36px;
  color: var(--accent-teal);
  font-weight: bold;
}

.stat-label {
  color: var(--text-dim);
  font-size: 12px;
}

.ev-chargers {
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
}

.charger-type {
  margin: 20px 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.charger-price {
  display: block;
  margin-top: 10px;
  color: var(--accent-gold);
  font-weight: bold;
}

/* Prayer Features */
.prayer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.prayer-features>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3));
}

.prayer-item {
  background: rgb(47 49 51 / 70%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.prayer-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Loyalty Content */
.loyalty-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.loyalty-content>* {
  flex: 0 0 calc(50% - (30px / 2));
  max-width: calc(50% - (30px / 2));
}

.how-it-works {
  background: rgb(47 49 51 / 70%);
  padding: 30px;
  border-radius: 15px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent-teal);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.loyalty-tiers {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
}

.loyalty-tiers h3 {
  margin-bottom: 20px;
}

.tier {
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  border-inline-start: 4px solid;
}

.tier.bronze {
  border-color: #cd7f32;
  background: rgba(205, 127, 50, 0.1);
}

.tier.silver {
  border-color: #c0c0c0;
  background: rgba(192, 192, 192, 0.1);
}

.tier.gold {
  border-color: var(--accent-gold);
  background: rgba(207, 181, 59, 0.1);
}

.tier.platinum {
  border-color: var(--accent-teal);
  background: rgba(156, 235, 200, 0.1);
}

.tier span {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  color: var(--accent-teal);
}

/* Digital Services */
.digital-services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.digital-services>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3));
}

.digital-card {
  background: rgb(47 49 51 / 70%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.digital-card:hover {
  transform: translateY(-5px);
  background: rgba(156, 235, 200, 0.05);
}

.digital-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.app-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.badge-btn {
  background: var(--accent-teal);
  color: var(--primary-dark);
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  transition: 0.3s;
}

.badge-btn:hover {
  background: var(--text-white);
}

@media (min-width: 1400px) {
  .sidebar {
    top: 9%;
  }
}

@media (max-width: 1024px) {
  .services-overview-grid {}

  .services-overview-grid>* {
    flex: 0 0 calc(50% - (25px / 2));
    max-width: calc(50% - (25px / 2));
  }

  .features-grid {}

  .features-grid>* {
    flex: 0 0 calc(50% - (25px / 2));
    max-width: calc(50% - (25px / 2));
  }

  .products-grid {}

  .products-grid>* {
    flex: 0 0 calc(50% - (25px / 2));
    max-width: calc(50% - (25px / 2));
  }

  .restaurant-types {}

  .restaurant-types>* {
    flex: 1 1 auto;
  }

  .cafe-menu {}

  .cafe-menu>* {
    flex: 1 1 auto;
  }

  .wash-packages {}

  .wash-packages>* {
    flex: 1 1 auto;
  }

  .digital-services {}

  .digital-services>* {
    flex: 0 0 calc(50% - (25px / 2));
    max-width: calc(50% - (25px / 2));
  }
}

/* ===== BOTTOM NAV EXTENDED (10 Items) ===== */
.bottom-nav-extended {
  position: fixed;
  bottom: 0;
  inset-inline-end: 0;
  inset-inline-start: 0;
  background: rgba(81, 76, 82, 0.7) !important;
  backdrop-filter: blur(10px);
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 8px 5px;
  border-top: 1px solid rgba(229, 126, 58, 0.2);
  z-index: 1000;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.bottom-nav-extended>* {
  flex: 0 0 calc(10.0000% - (2px * 9 / 10));
  max-width: calc(10.0000% - (2px * 9 / 10));
  min-width: calc(10.0000% - (2px * 9 / 10));
}

.nav-item-ext {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: var(--text-dim);
  position: relative;
}

.nav-item-ext:hover {
  background: rgba(156, 235, 200, 0.1);
  color: var(--accent-teal);
  transform: translateY(-2px);
}

.nav-item-ext.active {
  background: rgba(156, 235, 200, 0.15);
  color: var(--accent-teal);
}

.nav-item-ext svg {
  flex-shrink: 0;
}

.nav-item-ext span {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

/* زر المزيد مع مؤشر */
.nav-item-ext.nav-more::after {
  content: "";
  position: absolute;
  top: 6px;
  inset-inline-start: 6px;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ===== EXTENDED MENU POPUP ===== */
.extended-menu-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.extended-menu-popup.active {
  pointer-events: auto;
  opacity: 1;
}

.extended-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.extended-menu-content {
  position: absolute;
  bottom: 60px;
  inset-inline-end: 0;
  inset-inline-start: 0;
  max-height: 75vh;
  background: var(--primary-dark);
  border-radius: 25px 25px 0 0;
  padding: 25px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.extended-menu-popup.active .extended-menu-content {
  transform: translateY(0);
}

.extended-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(229, 126, 58, 0.2);
}

.extended-menu-header h3 {
  color: var(--accent-teal);
  font-size: 20px;
  font-weight: bold;
}

.close-extended-menu {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}

.close-extended-menu:hover {
  background: var(--accent-teal);
  color: var(--primary-dark);
  transform: rotate(90deg);
}

.extended-menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.extended-menu-grid>* {
  flex: 0 0 calc(50.0000% - (20px * 1 / 2));
  max-width: calc(50.0000% - (20px * 1 / 2));
  min-width: calc(50.0000% - (20px * 1 / 2));
}

.extended-menu-section h4 {
  color: var(--accent-teal);
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.extended-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-white);
  transition: all 0.3s;
  border: 1px solid transparent;
  margin-bottom: 8px;
}

.extended-menu-link:hover {
  background: rgba(156, 235, 200, 0.1);
  border-color: var(--accent-teal);
  transform: translateX(-3px);
}

.extended-menu-link .link-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.extended-menu-link span:last-child {
  font-size: 14px;
  font-weight: 500;
}

.extended-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.extended-quick-actions>* {
  flex: 0 0 calc(50.0000% - (10px * 1 / 2));
  max-width: calc(50.0000% - (10px * 1 / 2));
  min-width: calc(50.0000% - (10px * 1 / 2));
}

.quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--accent-teal);
  color: var(--primary-dark);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s;
}

.quick-action-btn:hover {
  background: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(156, 235, 200, 0.3);
}

/* Scrollbar */
.extended-menu-content::-webkit-scrollbar {
  width: 6px;
}

.extended-menu-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.extended-menu-content::-webkit-scrollbar-thumb {
  background: var(--accent-teal);
  border-radius: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bottom-nav-extended {}

  .bottom-nav-extended>* {
    flex: 0 0 calc(20.0000% - (25px * 4 / 5));
    max-width: calc(20.0000% - (25px * 4 / 5));
    min-width: calc(20.0000% - (25px * 4 / 5));
  }

  .nav-item-ext:nth-child(n + 6) {
    display: none;
  }

  .nav-item-ext.nav-more {
    display: flex;
  }
}

@media (max-width: 768px) {
  .bottom-nav-extended {
    padding: 6px 3px;
  }

  .bottom-nav-extended>* {
    flex: 0 0 calc(20.0000% - (25px * 4 / 5));
    max-width: calc(20.0000% - (25px * 4 / 5));
    min-width: calc(20.0000% - (25px * 4 / 5));
  }

  .nav-item-ext {
    padding: 6px 2px;
  }

  .nav-item-ext span {
    font-size: 9px;
  }

  .nav-item-ext svg {
    width: 18px;
    height: 18px;
  }

  .extended-menu-grid {}

  .extended-menu-grid>* {
    flex: 1 1 auto;
  }

  .extended-menu-content {
    padding: 20px 15px;
    max-height: 80vh;
  }

  .extended-quick-actions {}

  .extended-quick-actions>* {
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  .bottom-nav-extended {}

  .bottom-nav-extended>* {
    flex: 0 0 calc(20.0000% - (25px * 4 / 5));
    max-width: calc(20.0000% - (25px * 4 / 5));
    min-width: calc(20.0000% - (25px * 4 / 5));
  }

  .nav-item-ext span {
    font-size: 8px;
  }

  .extended-menu-header h3 {
    font-size: 18px;
  }

  .extended-menu-link {
    padding: 10px;
  }

  .quick-action-btn {
    font-size: 12px;
    padding: 10px;
  }
}

/* إخفاء القائمة القديمة على الصفحات الفرعية */
.bottom-nav {
  display: none;
}

/* تحسينات إضافية للقائمة الموسعة */

.extended-menu-note {
  background: rgba(156, 235, 200, 0.1);
  border: 1px solid rgba(156, 235, 200, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  text-align: center;
}

.extended-menu-note p {
  color: var(--accent-teal);
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}

/* تمييز العناصر في القائمة المنبثقة */
.extended-menu-link.main-page {
  background: rgba(156, 235, 200, 0.08);
  border: 1px solid rgba(229, 126, 58, 0.2);
}

/* تحسين عرض الأيقونات في الموبايل */
@media (max-width: 768px) {
  .nav-item-ext span {
    font-size: 8.5px;
    max-width: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .overview-card .card-icon img,
  .feature-icon img,
  .maint-icon img,
  .prayer-icon img {
    height: 40px;
  }

  .overview-card h3,
  .feature-item h4 {
    font-size: 16px;
  }

  .overview-card p,
  .feature-item p {
    font-size: 12px;
  }

  .service-detail-layout,
  .products-grid,
  .maintenance-services,
  .ev-content,
  .prayer-features,
  .loyalty-content,
  .digital-services {}

  .service-detail-layout>*,
  .products-grid>*,
  .maintenance-services>*,
  .ev-content>*,
  .prayer-features>*,
  .loyalty-content>*,
  .digital-services>* {
    flex: 1 1 auto;
  }

  .step h4 {
    font-size: 16px;
  }

  .step p {
    font-size: 13px;
  }
}

/* تحسين العرض على الشاشات الصغيرة جداً */
@media (max-width: 380px) {
  .bottom-nav-extended {
    padding: 5px 2px;
  }

  .bottom-nav-extended>* {
    flex: 0 0 calc(20.0000% - (25px * 4 / 5));
    max-width: calc(20.0000% - (25px * 4 / 5));
    min-width: calc(20.0000% - (25px * 4 / 5));
  }

  .nav-item-ext {
    padding: 5px 1px;
  }

  .nav-item-ext svg {
    width: 16px;
    height: 16px;
  }

  .nav-item-ext span {
    font-size: 7.5px;
  }

  /* إخفاء بعض العناصر على الشاشات الصغيرة جداً */
  .nav-item-ext:nth-child(n + 6):not(.nav-more) {
    display: none;
  }
}

/* تأثير خاص للعناصر الرئيسية */
.nav-item-ext:nth-child(-n + 9) {
  position: relative;
}

.nav-item-ext:nth-child(-n + 9):hover::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--accent-teal);
  border-radius: 2px;
}

/* تحسين ترتيب العناصر في التابلت */
@media (max-width: 1024px) and (min-width: 769px) {
  .bottom-nav-extended {}

  .bottom-nav-extended>* {
    flex: 0 0 calc(20.0000% - (25px * 4 / 5));
    max-width: calc(20.0000% - (25px * 4 / 5));
    min-width: calc(20.0000% - (25px * 4 / 5));
  }

  /* إظهار أول 4 عناصر + المزيد */
  .nav-item-ext:nth-child(n + 6):not(.nav-more) {
    display: none;
  }

  .nav-item-ext.nav-more {
    display: flex;
  }
}

/* تحسين الظهور على الشاشات العريضة */
@media (min-width: 1400px) {
  .bottom-nav-extended {
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
    inset-inline-end: 50%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
  }

  .nav-item-ext {
    padding: 10px 8px;
  }

  .nav-item-ext span {
    font-size: 11px;
  }
}

/* ===== تحديث متغيرات الألوان الرئيسية ===== */

:root {
  /* ألوان مستوحاة من الشعار */
  --primary-dark: #4a4a4a;
  /* اللون الرمادي من الشعار */
  --primary-medium: #5a5a5a;
  --primary-light: #6a6a6a;
  --accent-orange: #ff8c42;
  /* اللون البرتقالي من الشعار */
  --accent-orange-light: #ffad70;
  --accent-orange-dark: #e67530;
  --text-white: #ffffff;
  --text-gray: #d1d1d1;
  --text-dim: #b0b0b0;
  --glass-bg: rgba(74, 74, 74, 0.05);
  --border-color: rgba(255, 140, 66, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.3);
}

/* ===== الخلفية الرئيسية ===== */
body {
  font-family: "Cairo", sans-serif;
  background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
  color: var(--text-white);
  margin: 0;
  padding: 0;
}

.main-header {
  background: transparent !important;
  border-bottom: none !important;
  padding: 0 5px;
}

/* ===== SIDEBAR ===== */
.map-sidebar {
  background: rgba(74, 74, 74, 0.95);
  backdrop-filter: blur(10px);
  border-inline-end: 2px solid var(--accent-orange);
}

.sidebar-title {
  color: var(--accent-orange);
  font-size: 24px;
  font-weight: bold;
}

.sidebar-subtitle {
  color: var(--text-dim);
}

/* ===== SEARCH BAR ===== */
.search-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.search-input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.2);
}

/* ===== FILTERS ===== */
.filter-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.filter-chip:hover {
  background: rgba(255, 140, 66, 0.2);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.filter-chip.active {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

/* ===== STATION CARD ===== */
.station-card {
  background: rgba(74, 74, 74, 0.6);
  border: 1px solid rgba(255, 140, 66, 0.2);
  transition: all 0.3s;
}

.station-card:hover {
  background: rgba(74, 74, 74, 0.8);
  border-color: var(--accent-orange);
  transform: translateX(-5px);
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.2);
}

.station-card.active {
  background: rgba(255, 140, 66, 0.15);
  border-color: var(--accent-orange);
  border-width: 2px;
}

.station-name {
  color: var(--text-white);
}

.station-location {
  color: var(--text-dim);
}

.station-status {
  background: var(--accent-orange);
  color: white;
}

.station-status.closed {
  background: #e74c3c;
}

.action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.action-btn:hover {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

/* ===== MAP CONTROLS ===== */
.map-control-btn {
  background: rgba(74, 74, 74, 0.95);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.map-control-btn:hover {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}

/* ===== CUSTOM MAP MARKERS ===== */
.custom-marker {
  background: var(--accent-orange);
  border: 3px solid white;
  box-shadow: 0 3px 15px rgba(255, 140, 66, 0.5);
}

.custom-marker:hover {
  box-shadow: 0 5px 25px rgba(255, 140, 66, 0.7);
}

/* ===== MAP POPUP ===== */
.leaflet-popup-content-wrapper {
  background: var(--primary-dark);
  color: white;
  border: 2px solid var(--accent-orange);
}

.leaflet-popup-tip {
  background: var(--primary-dark);
}

.popup-title {
  color: var(--accent-orange);
}

.popup-location {
  color: var(--text-dim);
}

.popup-btn {
  background: var(--accent-orange);
  color: white;
  border: none;
}

.popup-btn:hover {
  background: var(--accent-orange-dark);
}

/* ===== 360 VIEWER ===== */
.viewer-360-modal {
  background: rgba(0, 0, 0, 0.95);
}

.viewer-title {
  color: var(--accent-orange);
}

.close-viewer-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.3);
}

.close-viewer-btn:hover {
  background: var(--accent-orange);
  color: white;
}

.viewer-controls {
  background: rgba(74, 74, 74, 0.95);
  border: 1px solid rgba(255, 140, 66, 0.3);
}

.viewer-control-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.2);
  color: var(--text-white);
}

.viewer-control-btn:hover,
.viewer-control-btn.active {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
}

.scene-thumbnail {
  border: 2px solid transparent;
}

.scene-thumbnail:hover {
  border-color: var(--accent-orange);
}

.scene-thumbnail.active {
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(255, 140, 66, 0.6);
}

/* ===== STATION INFO PANEL ===== */
.station-info-panel {
  background: rgba(74, 74, 74, 0.98);
  border: 2px solid var(--accent-orange);
}

.info-panel-title {
  color: var(--accent-orange);
}

.info-panel-location {
  color: var(--text-dim);
}

.info-row {
  border-bottom: 1px solid rgba(255, 140, 66, 0.2);
}

.info-label {
  color: var(--text-dim);
}

.panel-action-btn {
  background: var(--accent-orange);
  color: white;
}

.panel-action-btn:hover {
  background: var(--accent-orange-dark);
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.panel-action-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-orange);
  border: 1px solid var(--accent-orange);
}

.panel-action-btn.secondary:hover {
  background: rgba(255, 140, 66, 0.2);
}

/* ===== CHATBOT ===== */
.chatbot-toggle {
  background: linear-gradient(135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-dark) 100%);
  box-shadow: 0 8px 30px rgba(255, 140, 66, 0.4);
}

.chatbot-toggle:hover {
  box-shadow: 0 12px 40px rgba(255, 140, 66, 0.6);
}

.chatbot-header {
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--primary-medium) 100%);
  border-bottom: 2px solid var(--accent-orange);
}

.bot-info h3 {
  color: var(--accent-orange);
}

.status-dot {
  background: var(--accent-orange);
}

.quick-action:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: white;
}

.bot-message .message-bubble {
  background: rgba(74, 74, 74, 0.8);
  color: white;
  border: 1px solid rgba(255, 140, 66, 0.3);
}

.user-message .message-bubble {
  background: linear-gradient(135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-dark) 100%);
  color: white;
}

.send-btn {
  background: linear-gradient(135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-dark) 100%);
  color: white;
}

.send-btn:hover {
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

.message-button {
  background: var(--accent-orange);
  color: white;
}

.message-button:hover {
  background: var(--accent-orange-dark);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

/* ===== SCROLLBAR ===== */
.stations-list::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
}

.chatbot-input::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
}

/* ===== LOADING ===== */
.loading-spinner {
  border: 4px solid rgba(255, 140, 66, 0.2);
  border-top-color: var(--accent-orange);
}

/* ===== NOTIFICATIONS ===== */
.update-banner {
  background: linear-gradient(135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-dark) 100%);
  color: white;
}

.notification-prompt {
  background: rgba(74, 74, 74, 0.98);
  border: 2px solid var(--accent-orange);
}

.prompt-text h3 {
  color: var(--accent-orange);
}

.btn-enable {
  background: var(--accent-orange);
  color: white;
}

.btn-enable:hover {
  background: var(--accent-orange-dark);
  box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.install-prompt {
  background: linear-gradient(135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-dark) 100%);
}

.btn-install {
  background: var(--primary-dark);
  color: var(--accent-orange);
}

.btn-install:hover {
  background: var(--primary-medium);
}

/* ===== FOOTER (إذا وجد) ===== */
.footer {
  background: var(--primary-dark);
  border-top: 2px solid var(--accent-orange);
  color: var(--text-white);
}

.footer-title {
  color: var(--accent-orange);
}

.footer a {
  color: var(--text-dim);
}

.footer a:hover {
  color: var(--accent-orange);
}

/* ===== BUTTONS العامة ===== */
button:not(.header-btn):not(.action-btn):not(.send-btn) {
  background: var(--accent-orange);
  color: white;
  border: none;
}

button:not(.header-btn):not(.action-btn):not(.send-btn):hover {
  background: var(--accent-orange-dark);
}

/* ===== LINKS العامة ===== */
a {
  color: var(--accent-orange);
  text-decoration: none;
}

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

/* ===== GRADIENTS الإضافية ===== */
.gradient-orange {
  background: linear-gradient(135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-dark) 100%);
}

.gradient-gray {
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--primary-medium) 100%);
}

/* ===== SHADOWS ===== */
.shadow-orange {
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.3);
}

.shadow-orange-hover:hover {
  box-shadow: 0 8px 30px rgba(255, 140, 66, 0.5);
}

/* ===== تحديث شعار SVG ===== */
.logo-icon svg path:first-child {
  fill: var(--primary-dark);
  /* الجزء الرمادي */
}

.logo-icon svg path:last-child {
  fill: var(--accent-orange);
  /* الجزء البرتقالي */
}

/* ===== ANIMATIONS ===== */
@keyframes glow-orange {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 140, 66, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 140, 66, 0.8);
  }
}

.glow-animation {
  animation: glow-orange 2s infinite;
}

/* ===== HOVER EFFECTS ===== */
.hover-orange:hover {
  color: var(--accent-orange);
  transition: color 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* ===== BORDERS ===== */
.border-orange {
  border: 2px solid var(--accent-orange);
}

.border-gray {
  border: 1px solid rgba(255, 140, 66, 0.2);
}

/* ===== BACKGROUNDS ===== */
.bg-dark {
  background: var(--primary-dark);
}

.bg-orange {
  background: var(--accent-orange);
}

.bg-orange-light {
  background: rgba(255, 140, 66, 0.1);
}

/* ===== TEXT COLORS ===== */
.text-orange {
  color: var(--accent-orange);
}

.text-gray {
  color: var(--text-gray);
}

.text-dim {
  color: var(--text-dim);
  --primary-dark: #002b28;
  --primary-light: #004d47;
  --accent-teal: #e57e3a;
  --accent-gold: #e87e38;
  --text-white: #ffffff;
  --text-dim: #aebdbb;
  --glass-bg: rgb(74 76 79 / 80%);
  --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: "Cairo", sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-white);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
}

.sidebar {
  width: 4%;
  background: #001f1d;
  height: 80%;
  position: absolute;
  top: 10%;
  inset-inline-start: 6px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-inline-end: 1px solid var(--border-color);
  z-index: 100;
  padding: 5px 0;
}

.logo-area {
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-area img {
  height: 30px;
}

.back-home-btn {
  margin-top: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.back-home-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.back-home-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.content-area {
  flex: 1;
  padding: 40px;
  background: radial-gradient(circle at top right,
      #0b3d39,
      var(--primary-dark));
}

.content-area-services {
  background: url(../images/bg/services-bg1.png) !important;
  background-size: cover !important;
}

.content-section {
  position: absolute;
  inset: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  padding-inline-start: 10px;
}

.content-section.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  padding: 60px 70px 0 10px;
  height: 90%;
}

.content-section::-webkit-scrollbar {
  width: 6px;
}

.content-section::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.content-section::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px;
}

.header-box {
  margin-bottom: 10px;
  padding-bottom: 0px;
}

.header-box h1 {
  font-size: 26px;
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.header-box p {
  color: var(--text-dim);
  font-size: 16px;
}

.services-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.services-overview-grid>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3));
}

.overview-card {
  background: rgba(47, 49, 51, 0.7);
  padding: 5px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid transparent;
}

.overview-card:hover {
  border-color: #ffa25a;
  transform: translateY(-5px);
}

.overview-card .card-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.overview-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.overview-card p {
  color: var(--text-dim);
  font-size: 14px;
}

.features-section {
  background: rgba(47, 49, 51, 0.3);
  padding: 17px;
  border-radius: 20px;
}

.features-section h2 {
  color: var(--accent-gold);
  margin-bottom: 25px;
  text-align: center;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.features-grid>* {
  flex: 0 0 calc(25.0000% - (20px * 3 / 4));
  max-width: calc(25.0000% - (20px * 3 / 4));
  min-width: calc(25.0000% - (20px * 3 / 4));
}

.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

.feature-item h4 {
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 12px;
  color: var(--text-dim);
}

.service-detail-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-detail-layout>*:nth-child(2) {
  flex: 1.5;
}

.service-detail-layout>*:nth-child(1) {
  flex: 1;
}

.detail-image {
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.fuel-bg {
  background-image: url("../images/pump4.png");
}

.detail-content h2 {
  color: #f37521;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 12px;
  color: #b5b7ba;
  margin-bottom: 8px;
  background: rgba(47, 49, 51, 0.7);
  border-radius: 8px;
  border-inline-start: 3px solid var(--accent-teal);
}

.service-list strong {
  color: #e87e38;
}

.price-banner {
  background: rgba(47, 49, 51, 0.4);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  color: #b5b7ba;
  border: 1px solid rgba(47, 49, 51);
}

.price-banner h3 {
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: #b5b7ba;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
  color: var(--accent-teal);
  font-weight: bold;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.products-grid>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3));
}

.product-category {
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.products-grid.logos-only .product-category {
  display: flex;
  flex-wrap: wrap;
  place-items: center;
  padding: 18px;
  border-radius: 16px;
  background: #2f3133cf;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.products-grid.logos-only .cat-logo {
  width: 50%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.product-category:hover {
  background: rgba(156, 235, 200, 0.05);
}

.cat-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.restaurant-types {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.restaurant-types>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3));
}

.rest-card {
  background: rgb(74 76 79 / 80%);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.rest-card:hover {
  transform: translateY(-5px);
}

.rest-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.rest-info {
  padding: 20px;
}

.cuisine {
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.rest-hours {
  margin-top: 15px;
  font-size: 12px;
  color: var(--accent-teal);
}

.cafe-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.cafe-menu>* {
  flex: 0 0 calc(33.3333% - (30px * 2 / 3));
  max-width: calc(33.3333% - (30px * 2 / 3));
  min-width: calc(33.3333% - (30px * 2 / 3));
}

.menu-column {
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
}

.menu-column h3 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cafe-feature {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  color: var(--primary-dark);
}

.cafe-feature h3 {
  margin-bottom: 15px;
}

.cafe-feature p {
  font-weight: bold;
  margin: 5px 0;
}

.wash-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.wash-packages>* {
  flex: 0 0 calc(33.3333% - (25px * 2 / 3));
  max-width: calc(33.3333% - (25px * 2 / 3));
  min-width: calc(33.3333% - (25px * 2 / 3));
}

.package-card {
  background: rgb(74 76 79 / 80%);
  padding: 30px 25px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: 0.3s;
  position: relative;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card.basic:hover {
  border-color: #95a5a6;
}

.package-card.premium:hover {
  border-color: var(--accent-gold);
}

.package-card.vip:hover {
  border-color: var(--accent-teal);
}

.ribbon {
  position: absolute;
  top: 15px;
  inset-inline-start: -10px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 5px 15px;
  font-size: 11px;
  font-weight: bold;
  border-radius: 5px;
}

.package-header {
  text-align: center;
  margin-bottom: 20px;
}

.package-price {
  font-size: 32px;
  color: var(--accent-teal);
  font-weight: bold;
  margin-top: 10px;
}

.package-features {
  list-style: none;
  padding: 0;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.package-time {
  text-align: center;
  margin-top: 20px;
  color: var(--accent-gold);
  font-weight: bold;
}

.maintenance-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.maintenance-services>* {
  flex: 0 0 calc(33.3333% - (10px * 2 / 3));
  max-width: calc(33.3333% - (10px * 2 / 3));
  min-width: calc(33.3333% - (10px * 2 / 3));
}

.maint-card {
  background: rgba(47, 49, 51, 0.7);
  padding: 8px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.maint-card:hover {
  background: rgba(156, 235, 200, 0.05);
}

.maint-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.maint-card h3 {
  font-size: 20px;
}

.maint-card p {
  font-size: 14px;
}

.maint-price {
  margin-top: 15px;
  color: var(--accent-teal);
  font-weight: bold;
}

.rest-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.rest-facilities>* {
  flex: 0 0 calc(50.0000% - (30px * 1 / 2));
  max-width: calc(50.0000% - (30px * 1 / 2));
  min-width: calc(50.0000% - (30px * 1 / 2));
}

.facility-card {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
}

.facility-card h3 {
  color: var(--accent-teal);
  margin-bottom: 15px;
}

.facility-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.facility-card li {
  padding: 8px 0;
  padding-inline-start: 20px;
  position: relative;
}

.facility-card li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent-teal);
}

.facility-price {
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
}

.ev-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.ev-content>* {
  flex: 1;
}

.ev-info h3 {
  color: var(--accent-teal);
  margin-bottom: 15px;
}

.ev-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.ev-stat {
  background: rgba(47, 49, 51, 0.7);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
}

.stat-num {
  font-size: 36px;
  color: var(--accent-teal);
  font-weight: bold;
}

.stat-label {
  color: var(--text-dim);
  font-size: 12px;
}

.ev-chargers {
  background: rgb(74 76 79 / 80%);
  padding: 25px;
  border-radius: 15px;
}

.charger-type {
  margin: 20px 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.charger-price {
  display: block;
  margin-top: 10px;
  color: var(--accent-gold);
  font-weight: bold;
}

.prayer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.prayer-features>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3));
}

.prayer-item {
  background: rgb(47 49 51 / 70%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.prayer-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.loyalty-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.loyalty-content>* {
  flex: 0 0 calc(50% - (30px / 2));
  max-width: calc(50% - (30px / 2));
}

.how-it-works {
  background: rgb(47 49 51 / 70%);
  padding: 30px;
  border-radius: 15px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent-teal);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.loyalty-tiers {
  background: rgb(74 76 79 / 80%);
  padding: 30px;
  border-radius: 15px;
}

.loyalty-tiers h3 {
  margin-bottom: 20px;
}

.tier {
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  border-inline-start: 4px solid;
}

.tier.bronze {
  border-color: #cd7f32;
  background: rgba(205, 127, 50, 0.1);
}

.tier.silver {
  border-color: #c0c0c0;
  background: rgba(192, 192, 192, 0.1);
}

.tier.gold {
  border-color: var(--accent-gold);
  background: rgba(207, 181, 59, 0.1);
}

.tier.platinum {
  border-color: var(--accent-teal);
  background: rgba(156, 235, 200, 0.1);
}

.tier span {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  color: var(--accent-teal);
}

.digital-services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.digital-services>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3));
}

.digital-card {
  background: rgb(47 49 51 / 70%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.digital-card:hover {
  transform: translateY(-5px);
  background: rgba(156, 235, 200, 0.05);
}

.digital-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.app-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.badge-btn {
  background: var(--accent-teal);
  color: var(--primary-dark);
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  transition: 0.3s;
}

.badge-btn:hover {
  background: var(--text-white);
}

@media (min-width: 1400px) {
  .sidebar {
    top: 9%;
  }
}

@media (max-width: 1024px) {
  .services-overview-grid {}

  .services-overview-grid>* {
    flex: 0 0 calc(50% - (25px / 2));
    max-width: calc(50% - (25px / 2));
  }

  .features-grid {}

  .features-grid>* {
    flex: 0 0 calc(50% - (25px / 2));
    max-width: calc(50% - (25px / 2));
  }

  .products-grid {}

  .products-grid>* {
    flex: 0 0 calc(50% - (25px / 2));
    max-width: calc(50% - (25px / 2));
  }

  .restaurant-types {}

  .restaurant-types>* {
    flex: 1 1 auto;
  }

  .cafe-menu {}

  .cafe-menu>* {
    flex: 1 1 auto;
  }

  .wash-packages {}

  .wash-packages>* {
    flex: 1 1 auto;
  }

  .digital-services {}

  .digital-services>* {
    flex: 0 0 calc(50% - (25px / 2));
    max-width: calc(50% - (25px / 2));
  }
}

.bottom-nav-extended {
  position: fixed;
  bottom: 0;
  inset-inline-end: 0;
  inset-inline-start: 0;
  background: rgba(0, 43, 40, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 8px 5px;
  border-top: 1px solid rgba(229, 126, 58, 0.2);
  z-index: 1000;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.bottom-nav-extended>* {
  flex: 0 0 calc(10.0000% - (2px * 9 / 10));
  max-width: calc(10.0000% - (2px * 9 / 10));
  min-width: calc(10.0000% - (2px * 9 / 10));
}

.nav-item-ext {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: var(--text-dim);
  position: relative;
}

.nav-item-ext:hover {
  background: rgba(156, 235, 200, 0.1);
  color: var(--accent-teal);
  transform: translateY(-2px);
}

.nav-item-ext.active {
  background: rgba(156, 235, 200, 0.15);
  color: var(--accent-teal);
}

.nav-item-ext svg {
  flex-shrink: 0;
}

.nav-item-ext span {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-item-ext.nav-more::after {
  content: "";
  position: absolute;
  top: 6px;
  inset-inline-start: 6px;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.extended-menu-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.extended-menu-popup.active {
  pointer-events: auto;
  opacity: 1;
}

.extended-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.extended-menu-content {
  position: absolute;
  bottom: 60px;
  inset-inline-end: 0;
  inset-inline-start: 0;
  max-height: 75vh;
  background: var(--primary-dark);
  border-radius: 25px 25px 0 0;
  padding: 25px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.extended-menu-popup.active .extended-menu-content {
  transform: translateY(0);
}

.extended-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(229, 126, 58, 0.2);
}

.extended-menu-header h3 {
  color: var(--accent-teal);
  font-size: 20px;
  font-weight: bold;
}

.close-extended-menu {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}

.close-extended-menu:hover {
  background: var(--accent-teal);
  color: var(--primary-dark);
  transform: rotate(90deg);
}

.extended-menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.extended-menu-grid>* {
  flex: 0 0 calc(50.0000% - (20px * 1 / 2));
  max-width: calc(50.0000% - (20px * 1 / 2));
  min-width: calc(50.0000% - (20px * 1 / 2));
}

.extended-menu-section h4 {
  color: var(--accent-teal);
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.extended-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-white);
  transition: all 0.3s;
  border: 1px solid transparent;
  margin-bottom: 8px;
}

.extended-menu-link:hover {
  background: rgba(156, 235, 200, 0.1);
  border-color: var(--accent-teal);
  transform: translateX(-3px);
}

.extended-menu-link .link-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.extended-menu-link span:last-child {
  font-size: 14px;
  font-weight: 500;
}

.extended-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.extended-quick-actions>* {
  flex: 0 0 calc(50.0000% - (10px * 1 / 2));
  max-width: calc(50.0000% - (10px * 1 / 2));
  min-width: calc(50.0000% - (10px * 1 / 2));
}

.quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--accent-teal);
  color: var(--primary-dark);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s;
}

.quick-action-btn:hover {
  background: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(156, 235, 200, 0.3);
}

.extended-menu-content::-webkit-scrollbar {
  width: 6px;
}

.extended-menu-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.extended-menu-content::-webkit-scrollbar-thumb {
  background: var(--accent-teal);
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .bottom-nav-extended {}

  .bottom-nav-extended>* {
    flex: 0 0 calc(20.0000% - (25px * 4 / 5));
    max-width: calc(20.0000% - (25px * 4 / 5));
    min-width: calc(20.0000% - (25px * 4 / 5));
  }

  .nav-item-ext:nth-child(n + 6) {
    display: none;
  }

  .nav-item-ext.nav-more {
    display: flex;
  }
}

@media (max-width: 768px) {
  .bottom-nav-extended {
    padding: 6px 3px;
  }

  .bottom-nav-extended>* {
    flex: 0 0 calc(20.0000% - (25px * 4 / 5));
    max-width: calc(20.0000% - (25px * 4 / 5));
    min-width: calc(20.0000% - (25px * 4 / 5));
  }

  .nav-item-ext {
    padding: 6px 2px;
  }

  .nav-item-ext span {
    font-size: 9px;
  }

  .nav-item-ext svg {
    width: 18px;
    height: 18px;
  }

  .extended-menu-grid {}

  .extended-menu-grid>* {
    flex: 1 1 auto;
  }

  .extended-menu-content {
    padding: 20px 15px;
    max-height: 80vh;
  }

  .extended-quick-actions {}

  .extended-quick-actions>* {
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  .bottom-nav-extended {}

  .bottom-nav-extended>* {
    flex: 0 0 calc(20.0000% - (25px * 4 / 5));
    max-width: calc(20.0000% - (25px * 4 / 5));
    min-width: calc(20.0000% - (25px * 4 / 5));
  }

  .nav-item-ext span {
    font-size: 8px;
  }

  .extended-menu-header h3 {
    font-size: 18px;
  }

  .extended-menu-link {
    padding: 10px;
  }

  .quick-action-btn {
    font-size: 12px;
    padding: 10px;
  }
}

.bottom-nav {
  display: none;
}

.extended-menu-note {
  background: rgba(156, 235, 200, 0.1);
  border: 1px solid rgba(156, 235, 200, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  text-align: center;
}

.extended-menu-note p {
  color: var(--accent-teal);
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}

.extended-menu-link.main-page {
  background: rgba(156, 235, 200, 0.08);
  border: 1px solid rgba(229, 126, 58, 0.2);
}

@media (max-width: 768px) {
  .nav-item-ext span {
    font-size: 8.5px;
    max-width: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .overview-card .card-icon img,
  .feature-icon img,
  .maint-icon img,
  .prayer-icon img {
    height: 40px;
  }

  .overview-card h3,
  .feature-item h4 {
    font-size: 16px;
  }

  .overview-card p,
  .feature-item p {
    font-size: 12px;
  }

  .service-detail-layout,
  .products-grid,
  .maintenance-services,
  .ev-content,
  .prayer-features,
  .loyalty-content,
  .digital-services {}

  .service-detail-layout>*,
  .products-grid>*,
  .maintenance-services>*,
  .ev-content>*,
  .prayer-features>*,
  .loyalty-content>*,
  .digital-services>* {
    flex: 1 1 auto;
  }

  .step h4 {
    font-size: 16px;
  }

  .step p {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .bottom-nav-extended {
    padding: 5px 2px;
  }

  .bottom-nav-extended>* {
    flex: 0 0 calc(20.0000% - (25px * 4 / 5));
    max-width: calc(20.0000% - (25px * 4 / 5));
    min-width: calc(20.0000% - (25px * 4 / 5));
  }

  .nav-item-ext {
    padding: 5px 1px;
  }

  .nav-item-ext svg {
    width: 16px;
    height: 16px;
  }

  .nav-item-ext span {
    font-size: 7.5px;
  }

  .nav-item-ext:nth-child(n + 6):not(.nav-more) {
    display: none;
  }
}

.nav-item-ext:nth-child(-n + 9) {
  position: relative;
}

.nav-item-ext:nth-child(-n + 9):hover::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--accent-teal);
  border-radius: 2px;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .bottom-nav-extended {}

  .bottom-nav-extended>* {
    flex: 0 0 calc(20.0000% - (25px * 4 / 5));
    max-width: calc(20.0000% - (25px * 4 / 5));
    min-width: calc(20.0000% - (25px * 4 / 5));
  }

  .nav-item-ext:nth-child(n + 6):not(.nav-more) {
    display: none;
  }

  .nav-item-ext.nav-more {
    display: flex;
  }
}

@media (min-width: 1400px) {
  .bottom-nav-extended {
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
    inset-inline-end: 50%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
  }

  .nav-item-ext {
    padding: 10px 8px;
  }

  .nav-item-ext span {
    font-size: 11px;
  }
}

:root {
  --primary-dark: #4a4a4a;
  --primary-medium: #5a5a5a;
  --primary-light: #6a6a6a;
  --accent-orange: #ff8c42;
  --accent-orange-light: #ffad70;
  --accent-orange-dark: #e67530;
  --text-white: #ffffff;
  --text-gray: #d1d1d1;
  --text-dim: #b0b0b0;
  --glass-bg: rgba(74, 74, 74, 0.05);
  --border-color: rgba(255, 140, 66, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.3);
}

body {
  font-family: "Cairo", sans-serif;
  background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
  color: var(--text-white);
  margin: 0;
  padding: 0;
}

.main-header {
  background: transparent !important;
  border-bottom: none !important;
  padding: 0 5px;
}

.map-sidebar {
  background: rgba(74, 74, 74, 0.95);
  backdrop-filter: blur(10px);
  border-inline-end: 2px solid var(--accent-orange);
}

.sidebar-title {
  color: var(--accent-orange);
  font-size: 24px;
  font-weight: bold;
}

.sidebar-subtitle {
  color: var(--text-dim);
}

.search-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.search-input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.2);
}

.filter-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.filter-chip:hover {
  background: rgba(255, 140, 66, 0.2);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.filter-chip.active {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.station-card {
  background: rgba(74, 74, 74, 0.6);
  border: 1px solid rgba(255, 140, 66, 0.2);
  transition: all 0.3s;
}

.station-card:hover {
  background: rgba(74, 74, 74, 0.8);
  border-color: var(--accent-orange);
  transform: translateX(-5px);
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.2);
}

.station-card.active {
  background: rgba(255, 140, 66, 0.15);
  border-color: var(--accent-orange);
  border-width: 2px;
}

.station-name {
  color: var(--text-white);
}

.station-location {
  color: var(--text-dim);
}

.station-status {
  background: var(--accent-orange);
  color: white;
}

.station-status.closed {
  background: #e74c3c;
}

.action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.action-btn:hover {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.map-control-btn {
  background: rgba(74, 74, 74, 0.95);
  border: 1px solid rgba(255, 140, 66, 0.3);
  color: var(--text-white);
}

.map-control-btn:hover {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}

.custom-marker {
  background: var(--accent-orange);
  border: 3px solid white;
  box-shadow: 0 3px 15px rgba(255, 140, 66, 0.5);
}

.custom-marker:hover {
  box-shadow: 0 5px 25px rgba(255, 140, 66, 0.7);
}

.leaflet-popup-content-wrapper {
  background: var(--primary-dark);
  color: white;
  border: 2px solid var(--accent-orange);
}

.leaflet-popup-tip {
  background: var(--primary-dark);
}

.popup-title {
  color: var(--accent-orange);
}

.popup-location {
  color: var(--text-dim);
}

.popup-btn {
  background: var(--accent-orange);
  color: white;
  border: none;
}

.popup-btn:hover {
  background: var(--accent-orange-dark);
}

.viewer-360-modal {
  background: rgba(0, 0, 0, 0.95);
}

.viewer-title {
  color: var(--accent-orange);
}

.close-viewer-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.3);
}

.close-viewer-btn:hover {
  background: var(--accent-orange);
  color: white;
}

.viewer-controls {
  background: rgba(74, 74, 74, 0.95);
  border: 1px solid rgba(255, 140, 66, 0.3);
}

.viewer-control-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 140, 66, 0.2);
  color: var(--text-white);
}

.viewer-control-btn:hover,
.viewer-control-btn.active {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
}

.scene-thumbnail {
  border: 2px solid transparent;
}

.scene-thumbnail:hover {
  border-color: var(--accent-orange);
}

.scene-thumbnail.active {
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(255, 140, 66, 0.6);
}

.station-info-panel {
  background: rgba(74, 74, 74, 0.98);
  border: 2px solid var(--accent-orange);
}

.info-panel-title {
  color: var(--accent-orange);
}

.info-panel-location {
  color: var(--text-dim);
}

.info-row {
  border-bottom: 1px solid rgba(255, 140, 66, 0.2);
}

.info-label {
  color: var(--text-dim);
}

.panel-action-btn {
  background: var(--accent-orange);
  color: white;
}

.panel-action-btn:hover {
  background: var(--accent-orange-dark);
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.panel-action-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-orange);
  border: 1px solid var(--accent-orange);
}

.panel-action-btn.secondary:hover {
  background: rgba(255, 140, 66, 0.2);
}

.chatbot-toggle {
  background: linear-gradient(135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-dark) 100%);
  box-shadow: 0 8px 30px rgba(255, 140, 66, 0.4);
}

.chatbot-toggle:hover {
  box-shadow: 0 12px 40px rgba(255, 140, 66, 0.6);
}

.chatbot-header {
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--primary-medium) 100%);
  border-bottom: 2px solid var(--accent-orange);
}

.bot-info h3 {
  color: var(--accent-orange);
}

.status-dot {
  background: var(--accent-orange);
}

.quick-action:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: white;
}

.bot-message .message-bubble {
  background: rgba(74, 74, 74, 0.8);
  color: white;
  border: 1px solid rgba(255, 140, 66, 0.3);
}

.user-message .message-bubble {
  background: linear-gradient(135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-dark) 100%);
  color: white;
}

.send-btn {
  background: linear-gradient(135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-dark) 100%);
  color: white;
}

.send-btn:hover {
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

.message-button {
  background: var(--accent-orange);
  color: white;
}

.message-button:hover {
  background: var(--accent-orange-dark);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.stations-list::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
}

.chatbot-input::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
}

.loading-spinner {
  border: 4px solid rgba(255, 140, 66, 0.2);
  border-top-color: var(--accent-orange);
}

.update-banner {
  background: linear-gradient(135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-dark) 100%);
  color: white;
}

.notification-prompt {
  background: rgba(74, 74, 74, 0.98);
  border: 2px solid var(--accent-orange);
}

.prompt-text h3 {
  color: var(--accent-orange);
}

.btn-enable {
  background: var(--accent-orange);
  color: white;
}

.btn-enable:hover {
  background: var(--accent-orange-dark);
  box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.install-prompt {
  background: linear-gradient(135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-dark) 100%);
}

.btn-install {
  background: var(--primary-dark);
  color: var(--accent-orange);
}

.btn-install:hover {
  background: var(--primary-medium);
}

.footer {
  background: var(--primary-dark);
  border-top: 2px solid var(--accent-orange);
  color: var(--text-white);
}

.footer-title {
  color: var(--accent-orange);
}

.footer a {
  color: var(--text-dim);
}

.footer a:hover {
  color: var(--accent-orange);
}

button:not(.header-btn):not(.action-btn):not(.send-btn) {
  background: var(--accent-orange);
  color: white;
  border: none;
}

button:not(.header-btn):not(.action-btn):not(.send-btn):hover {
  background: var(--accent-orange-dark);
}

a {
  color: var(--accent-orange);
  text-decoration: none;
}

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

.gradient-orange {
  background: linear-gradient(135deg,
      var(--accent-orange) 0%,
      var(--accent-orange-dark) 100%);
}

.gradient-gray {
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--primary-medium) 100%);
}

.shadow-orange {
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.3);
}

.shadow-orange-hover:hover {
  box-shadow: 0 8px 30px rgba(255, 140, 66, 0.5);
}

.logo-icon svg path:first-child {
  fill: var(--primary-dark);
}

.logo-icon svg path:last-child {
  fill: var(--accent-orange);
}

@keyframes glow-orange {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 140, 66, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 140, 66, 0.8);
  }
}

.glow-animation {
  animation: glow-orange 2s infinite;
}

.hover-orange:hover {
  color: var(--accent-orange);
  transition: color 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.border-orange {
  border: 2px solid var(--accent-orange);
}

.border-gray {
  border: 1px solid rgba(255, 140, 66, 0.2);
}

.bg-dark {
  background: var(--primary-dark);
}

.bg-orange {
  background: var(--accent-orange);
}

.bg-orange-light {
  background: rgba(255, 140, 66, 0.1);
}

.text-orange {
  color: var(--accent-orange);
}

.text-gray {
  color: var(--text-gray);
}

.text-dim {
  color: var(--text-dim);
}