/* ==========================================================================
   01. VARIABLES (ROOT)
   ========================================================================== */
:root {
  /* Colors */
  --bg-main: #0c0d0f;
  --bg-section: #001432;
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --text-gray: #64748b;
  --text-dark-gray: #61646c;

  --accent-blue: #00a2ff;
  --accent-cyan: #00bfff;
  --btn-primary-bg: #0000ff;
  --btn-primary-hover: #0000cc;

  /* Liquid Glass Effect Variables */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-bg-active: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-border-hover: rgba(255, 255, 255, 0.3);
  --glass-border-light: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(16px);

  /* Utilities */
  --transition-smooth: all 0.3s ease;
  --container-max: 1200px;
  --container-xl: 1600px;
}

/* ==========================================================================
   02. FONTS & BASE RESET
   ========================================================================== */
@font-face {
  font-family: "Peyda";
  src: url("../fonts/Peyda-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Peyda", system-ui, sans-serif;
}

body {
  background-color: var(--bg-main);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
}

/* ==========================================================================
   03. GLOBAL UTILITIES (DRY PRINCIPLE)
   ========================================================================== */
/* Container & Layout */
.section-wrapper {
  background-color: var(--bg-section);
  padding: 80px 24px;
  width: 100%;
  direction: rtl;
  display: flex;
  justify-content: center;
}

.nav-link.active {
  color: var(--accent-blue);
  font-weight: 600;
}

.container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
}

/* Section Headers (Used in Services, Features, FAQ) */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-light);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-badge svg,
.section-badge img {
  width: 16px;
  height: 16px;
  color: #cbd5e1;
}
.section-badge span {
  color: #cbd5e1;
  font-size: 0.85rem;
}

.section-title {
  color: var(--text-white);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Liquid Glass Panels */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

/* Glowing Horizontal Divider */
.glowing-divider {
  position: relative;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.glowing-divider::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 65%;
  height: 120px;
  background: radial-gradient(
    ellipse at bottom,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
}

/* Base Buttons */
.btn {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--glass-border);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn:hover {
  background-color: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

.btn-hero {
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
  gap: 10px;
}

.btn-primary {
  background-color: var(--btn-primary-bg);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 255, 0.35);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 255, 0.5);
}

.btn-liquid-glass {
  background: var(--glass-bg);
  color: var(--text-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.btn-liquid-glass:hover {
  background: var(--glass-bg-active);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   04. HEADER & NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 24px;
  z-index: 1000;
  transition: var(--transition-smooth);
}
.site-header.scrolled {
  padding-top: 12px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* اعمال افکت شیشه ای دقیقاً مشابه بقیه کارت‌ها */
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 60px;
  padding: 10px 24px;
  width: 75%;
  max-width: 1800px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  width: 30px;
  height: 30px;
}
.menu-toggle svg line {
  transition: var(--transition-smooth);
}
.menu-toggle:hover .line-middle {
  x1: 4;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo svg {
  width: 28px;
  height: 28px;
}
.brand-name {
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
}
.nav-item {
  position: relative;
  padding: 14px 0;
}
.nav-link {
  color: #a1a1aa;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.nav-item:hover .nav-link {
  color: var(--text-white);
}
.has-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dropdown-icon {
  width: 12px;
  height: 12px;
  fill: none;
  color: #a1a1aa;
  transition: var(--transition-smooth);
}
.nav-item:hover .dropdown-icon {
  color: var(--text-white);
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 67px;
  right: -20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 10px;
  min-width: 180px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.submenu::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  display: block;
  padding: 10px 16px;
  color: #e2e8f0;
  font-size: 0.9rem;
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.submenu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  padding-right: 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-auth {
  padding: 12px 26px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
}
.lang-wrapper {
  position: relative;
}
.btn-lang {
  width: 44px;
  height: 44px;
}
.btn-lang svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-white);
  stroke-width: 1.5;
  fill: none;
}

.lang-dropdown {
  position: absolute;
  top: 67px;
  left: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 8px;
  min-width: 130px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.lang-dropdown::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li a {
  display: block;
  padding: 8px 14px;
  color: #e2e8f0;
  font-size: 0.9rem;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition-smooth);
}

.lang-dropdown li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

/* Mobile Drawer Elements */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 290px;
  height: 100vh;
  /* افکت شیشه ای برای منوی کناری موبایل */
  background: rgba(
    12,
    13,
    15,
    0.65
  ); /* کمی تیره تر برای خوانایی بهتر متون در موبایل */
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-left: 1px solid var(--glass-border);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}
.mobile-drawer.open {
  transform: translateX(0);
}
.drawer-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--glass-border-light);
}
.drawer-close {
  background: transparent;
  border: none;
  color: #a1a1aa;
  width: 32px;
  height: 32px;
}
.drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}
.mobile-menu li {
  margin-bottom: 14px;
}
.mobile-menu li a,
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: #a1a1aa;
  font-size: 1rem;
  border-radius: 10px;
}
.mobile-menu li a:hover,
.mobile-dropdown-toggle:hover {
  background-color: var(--glass-bg-hover);
  color: var(--text-white);
}
.mobile-submenu-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-out;
}
.mobile-submenu {
  overflow: hidden;
  padding-right: 14px;
}
.mobile-has-dropdown.active .mobile-submenu-wrapper {
  grid-template-rows: 1fr;
}
.mobile-submenu li a {
  font-size: 0.9rem;
  padding: 10px;
}
.mobile-has-dropdown.active .arrow-icon {
  transform: rotate(180deg);
}
.arrow-icon {
  width: 16px;
  height: 16px;
  transition: var(--transition-smooth);
}
.mobile-actions {
  margin-top: 30px;
  border-top: 1px solid var(--glass-border-light);
  padding-top: 24px;
}
.mobile-lang-section p {
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.mobile-lang-buttons {
  display: flex;
  gap: 8px;
}
.mobile-lang-buttons .btn {
  flex: 1;
  padding: 8px;
  font-size: 0.8rem;
  border-color: var(--glass-border-light);
}
.mobile-lang-buttons .btn.active {
  background-color: var(--text-white);
  color: #000000;
}
.w-100 {
  width: 100%;
}

/* ==========================================================================
   05. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 24px 40px 24px;
  text-align: center;
  overflow: hidden;
}
.bg-media-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-container {
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}
.hero-title {
  color: var(--text-white);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  max-width: 900px;
  margin-bottom: 24px;
}
.hero-title-sub {
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
}
.hero-description {
  color: #a1a1aa;
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
  width: 100%;
}
.btn-arrow {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  margin-right: 0;
  position: relative;
  right: 7px;
  top: 1px;
}

.hero-brands {
  width: 100%;
  border-top: 1px solid var(--glass-border-light);
  padding-top: 40px;
}
.brands-title {
  color: var(--text-dark-gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}
.brand-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  filter: grayscale(1);
  transition: opacity 0.2s ease;
}
.brand-item:hover {
  color: rgba(255, 255, 255, 0.5);
}

.brand-item img {
  width: 100px;
}

/* ==========================================================================
   06. STORIES SECTION
   ========================================================================== */
.stories-section {
  width: 100%;
  padding: 20px 0 50px 0;
  background-color: var(--bg-section);
}
.stories-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.stories-container {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  max-width: 100%;
  overflow-x: auto;
  padding: 10px 24px;
  scrollbar-width: none;
}
.stories-container::-webkit-scrollbar {
  display: none;
}
.story-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  flex-shrink: 0;
}
.story-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  background: radial-gradient(circle, #0a1f3d 0%, #020c1b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.15);
  transition: var(--transition-smooth);
  padding: 3px;
}
.story-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-btn:hover .story-ring {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}
.story-icon {
  width: 24px;
  height: 24px;
  color: var(--text-white);
}
.story-title {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* Story Modal */
.story-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.story-modal.active {
  opacity: 1;
  visibility: visible;
}
.story-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
}
.story-modal-content {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: radial-gradient(circle, #0e233f 0%, #030b18 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.story-progress-container {
  display: flex;
  gap: 4px;
  padding: 12px 12px 0 12px;
  position: relative;
  z-index: 10;
}
.story-progress-bar {
  flex: 1;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
}
.story-progress-fill {
  height: 100%;
  width: 0%;
  background-color: var(--text-white);
  transition: width 0.1s linear;
}
.story-progress-bar.completed .story-progress-fill {
  width: 100%;
}
.story-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  position: relative;
  z-index: 10;
}
.story-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.story-author-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.story-author-ring svg {
  width: 20px;
  height: 20px;
}
.story-author-name {
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 500;
}
.story-close-btn {
  background: transparent;
  border: none;
  color: var(--text-white);
  width: 32px;
  height: 32px;
}
.story-nav-zone {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: 5;
  cursor: pointer;
}
.zone-right {
  right: 0;
}
.zone-left {
  left: 0;
}
.story-viewer {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 20px;
  text-align: center;
}
.story-icon-large svg {
  width: 100px;
  height: 100px;
  stroke: var(--accent-cyan);
  fill: none;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.4));
  margin-bottom: 24px;
}
.story-main-title {
  color: var(--text-white);
  font-size: 1.6rem;
  font-weight: 700;
}

/* ==========================================================================
   07. SERVICES SECTION
   ========================================================================== */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
  align-items: stretch;
}
.services-list-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  cursor: pointer;
}
.service-list-item:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255, 255, 255, 0.25);
}
.service-list-item.active {
  background: var(--glass-bg-active);
  border-color: rgba(0, 162, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.item-icon-box {
  width: 48px;
  height: 48px;
  background: var(--glass-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8892b0;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}
.item-icon-box img {
  width: 25px;
}
.service-list-item.active .item-icon-box {
  background: rgba(0, 162, 255, 0.15);
  color: var(--accent-blue);
}

.item-text-wrapper {
  text-align: right;
}
.item-text-wrapper h4 {
  color: var(--text-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  transition: var(--transition-smooth);
}
.service-list-item.active .item-text-wrapper h4 {
  color: var(--accent-blue);
}
.item-text-wrapper p {
  color: #8892b0;
  font-size: 0.85rem;
  line-height: 1.7;
}

.service-detail-card {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: none;
  flex-direction: column;
}
.service-detail-card.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--glass-bg);
  border: 1px solid rgba(0, 162, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}
.card-icon img {
  width: 24px;
  height: 24px;
}
.card-title-box {
  text-align: right;
}
.card-title-box h3 {
  color: var(--text-white);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card-link {
  color: var(--accent-blue);
  font-size: 0.9rem;
}
.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 30px;
  text-align: justify;
}

.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.9rem;
}
.feature-item .check-icon {
  width: 18px;
  height: 18px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 2.5;
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-light);
  border-radius: 16px;
  padding: 16px 24px;
}
.footer-text {
  color: #cbd5e1;
  font-size: 0.95rem;
}
.card-footer .btn-hero {
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: 10px;
}

/* ==========================================================================
   08. STATS SECTION (FIXED ALIGNMENT)
   ========================================================================== */
.stats-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin-bottom: 70px;
}

.stats-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stats-text {
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 32px;
}
.stats-btn {
  padding: 12px 32px;
  font-size: 0.95rem;
}
.stats-btn .btn-arrow {
  margin-left: 8px;
  margin-right: 0;
  position: relative;
  right: 7px;
  transform: scaleX(-1);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 60px;
  margin-bottom: 80px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.stat-title {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 400;
}
.stat-value {
  color: var(--text-white);
  font-size: 3.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  direction: ltr;
}

.stat-divider {
  width: 2px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* ==========================================================================
   09. FEATURES SECTION (WHY US)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 80px;
}

.feature-card {
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}
.feature-card:hover .feature-icon {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.feature-title {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ==========================================================================
   10. FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
}
.faq-item.active {
  background: var(--glass-bg-active);
  border-color: rgba(255, 255, 255, 0.35);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: right;
}
.faq-question {
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
}
.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--text-white);
}

.faq-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-content-wrapper {
  grid-template-rows: 1fr;
}
.faq-content {
  overflow: hidden;
}
.faq-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  padding: 0 32px 24px 32px;
  text-align: justify;
}

/* ==========================================================================
   11. GLOBAL RESPONSIVE MEDIA QUERIES
   ========================================================================== */
/* 2K / 4K Screens */
@media (min-width: 2000px) {
  .hero-container {
    max-width: var(--container-xl);
  }
  .hero-title {
    font-size: 4rem;
  }
  .hero-title-sub {
    font-size: 3.5rem;
  }
  .hero-description {
    font-size: 1.4rem;
    max-width: 900px;
  }
  .section-title {
    font-size: 2.8rem;
  }
  .stats-text {
    font-size: 1.4rem;
    max-width: 900px;
  }
  .stat-value {
    font-size: 4.5rem;
  }
  .stat-title {
    font-size: 1.1rem;
  }
  .features-grid {
    gap: 32px;
  }
  .feature-card {
    padding: 40px 32px;
  }
  .feature-title,
  .faq-question {
    font-size: 1.3rem;
  }
  .feature-desc,
  .faq-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-title-sub {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .navbar {
    width: 95%;
    border-radius: 30px;
    padding: 15px 25px;
    display: flex;
    flex-direction: row-reverse;
  }
  .services-layout {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    gap: 30px;
  }
  .stat-value {
    font-size: 2.8rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stories-wrapper {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .section-wrapper {
    padding: 60px 24px;
  }
  .hero-section {
    padding-top: 120px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-title-sub {
    font-size: 1.5rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .brands-grid {
    gap: 32px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .card-features {
    grid-template-columns: 1fr;
  }
  .card-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .card-title-box h3 {
    font-size: 17px;
  }
  .card-link {
    font-size: 12px;
  }

  .stats-content {
    margin-bottom: 50px;
  }
  .stats-text {
    font-size: 1rem;
    line-height: 1.7;
  }
  .stats-grid {
    flex-direction: column;
    gap: 40px;
  }

  /* Horizontal divider for mobile stats */
  .stat-divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-trigger {
    padding: 20px 24px;
    gap: 16px;
  }
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-content p {
    padding: 0 24px 20px 24px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .btn-hero {
    width: 100%;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-title-sub {
    font-size: 1.3rem;
  }
  .brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .brand-item {
    justify-content: center;
    font-size: 0.9rem;
  }
  .brand-name {
    font-size: 1.1rem;
  }
  .stat-value {
    font-size: 2.5rem;
  }
  .glowing-divider {
    margin-top: -20px;
  }
}

/* ==========================================================================
   12. CUSTOMER REVIEWS (INFINITE AUTOMATIC LOOP)
   ========================================================================== */
.reviews-section {
  overflow: hidden;
}

.reviews-scroll-container {
  width: 100%;
  max-height: 680px;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.reviews-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.masonry-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card {
  padding: 32px 24px;
  border-radius: 20px;
  width: 100%;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 24px;
  text-align: right;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.author-text {
  text-align: right;
}
.author-name {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.author-role {
  color: var(--text-gray);
  font-size: 0.85rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 769px) {
  .masonry-col {
    animation: infiniteScrollUp 24s linear infinite;
  }

  .reviews-masonry .masonry-col:nth-child(1) {
    animation-duration: 26s;
  }
  .reviews-masonry .masonry-col:nth-child(2) {
    animation-duration: 20s;
    margin-top: 60px;
  }
  .reviews-masonry .masonry-col:nth-child(3) {
    animation-duration: 24s;
  }

  .reviews-scroll-container:hover .masonry-col {
    animation-play-state: paused;
  }

  @keyframes infiniteScrollUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-50%);
    }
  }
}

@media (max-width: 992px) {
  .reviews-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-masonry .masonry-col:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .reviews-scroll-container {
    max-height: 550px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .reviews-masonry {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .masonry-col {
    gap: 16px;
    animation: none !important;
  }
}

/* ==========================================================================
   13. BLOG SECTION (LATEST NEWS)
   ========================================================================== */
.blog-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  width: 100%;
}

.blog-header-left-aligned {
  align-items: flex-start;
  text-align: right;
  margin-bottom: 0;
  max-width: 650px;
}

.btn-view-all {
  padding: 12px 24px;
  font-size: 0.95rem;
  border-radius: 12px;
  gap: 10px;
}

.btn-view-all svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
  transform: translateX(-4px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card:hover .blog-image-inner img {
  transform: scale(1.08);
}

.blog-card:hover .blog-link {
  color: var(--text-white);
}

.blog-card:hover .blog-link svg {
  transform: translateX(-5px);
}

.blog-image-box {
  padding: 16px;
  border-radius: 24px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.blog-image-inner {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.blog-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.blog-meta svg {
  width: 16px;
  height: 16px;
}

.blog-title {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: right;
}

.blog-footer {
  margin-top: auto;
  border-top: 1px solid var(--glass-border-light);
  padding-top: 16px;
  display: flex;
}

.blog-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.blog-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ==========================================================================
   14. CONTACT SECTION
   ========================================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 100px;
}

.contact-container-about {
  padding-bottom: 0px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  margin-bottom: 110px;
}

.contact-content .section-badge {
  margin-bottom: 24px;
}

.contact-content .section-title {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact-content .section-subtitle {
  line-height: 1.9;
  color: var(--text-muted);
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group label {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-gray);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.02);
}

.form-group textarea {
  resize: none;
  height: 90px;
}

.submit-btn {
  align-self: flex-end;
  padding: 14px 40px;
  margin-top: 8px;
}

@media (min-width: 2000px) {
  .contact-content .section-title {
    font-size: 3rem;
  }
  .form-group input,
  .form-group textarea {
    padding: 20px;
    font-size: 1.1rem;
  }
  .form-group textarea {
    height: 200px;
  }
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-container-about {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-content {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-content .section-title {
    font-size: 1.8rem;
  }
  .submit-btn {
    width: 100%;
    align-self: center;
  }
}

/* ==========================================================================
   15. FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: var(--bg-section);
  padding: 80px 24px 24px 24px;
  width: 100%;
  direction: rtl;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 100px;
  background: radial-gradient(
    ellipse at top,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.footer-logo {
  color: var(--text-white);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.vertical-separator {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links a {
  color: var(--text-muted);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.social-links a:hover {
  color: var(--text-white);
  transform: translateY(-3px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 40px;
  max-width: 450px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-list li span:first-child {
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-link-col h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-link-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-link-col ul li a:hover {
  color: var(--text-white);
  padding-right: 6px;
}

.footer-glowing-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  margin: 50px 0 24px 0;
  position: relative;
}

.footer-glowing-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 24px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.7rem;
}

.footer-bottom strong {
  color: var(--text-light);
  font-weight: 500;
  padding: 0 3px 0 3px;
}

.credits {
  display: flex;
  gap: 24px;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .credits {
    flex-direction: column;
    gap: 8px;
  }
  .footer-logo-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .vertical-separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
    ABOUT PAGE STYLES
   ========================================================================== */

/* ==========================================================================
    16. TIMELINE SECTION
   ========================================================================== */

.timeline-section {
  position: relative;
  overflow: hidden;
}

.timeline-layout {
  display: grid;
  grid-template-columns: 0.5fr 1.1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: start;
}

.timeline-nav-col {
  width: 100%;
}

.timeline-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.timeline-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 2vw, 26px) 24px clamp(16px, 2vw, 26px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.timeline-step:last-child {
  border-bottom: none;
}

.step-text {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  text-align: right;
  transition: var(--transition-smooth);
}

.step-year {
  color: var(--text-muted);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.step-dot {
  position: absolute;
  right: -3.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.timeline-step.active .step-text,
.timeline-step.active .step-year {
  color: var(--text-white);
  font-weight: 700;
}

.timeline-step.active .step-dot {
  background: var(--text-white);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  transform: translateY(-50%) scale(1.4);
}

.timeline-display-col {
  width: 100%;
}

.timeline-card {
  display: flex;
  flex-direction: column;
  height: clamp(460px, 45vw, 520px);
  padding: clamp(20px, 3vw, 36px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.card-badge-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.card-year-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 30px;
}

.card-year-badge span {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
}

.card-year-badge svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.timeline-card-title {
  color: var(--text-white);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: right;
}

.timeline-card-desc {
  color: var(--text-muted);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 2;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.timeline-image-wrapper {
  margin-top: auto;
  width: 100%;
  height: clamp(180px, 20vw, 240px);
  border-radius: 12px;
  overflow: hidden;
}

.timeline-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 2000px) {
  .timeline-layout {
    gap: 120px;
  }
}

@media (max-width: 992px) {
  .timeline-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .timeline-nav-col {
    order: 2;
  }
  .timeline-display-col {
    order: 1;
  }
  .timeline-card {
    height: 480px;
  }
}

@media (max-width: 480px) {
  .timeline-step {
    padding: 18px 16px 18px 0;
  }
  .timeline-card {
    height: auto;
    min-height: 450px;
  }
}

/* ==========================================================================
    17. STORY SECTION
   ========================================================================== */

.story-goals-layout {
  display: grid;
  grid-template-columns: 1.9fr minmax(170px, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

.story-content-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.5vw, 40px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.story-image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: clamp(12px, 1.5vw, 16px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  display: flex;
}

.story-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.story-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: auto;
  padding-top: 32px;
}

.story-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-feature-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-blue);
  flex-shrink: 0;
}

.story-feature-item span {
  color: var(--text-light);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
}

.story-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 100px);
  margin-top: 80px;
}

.stat-item-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-title-mini {
  color: var(--text-muted);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 400;
}

.stat-value-mini {
  color: var(--text-white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  direction: ltr;
}

.stat-vertical-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
}

@media (min-width: 2000px) {
  .story-goals-layout {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
  }
}

@media (max-width: 992px) {
  .story-goals-layout {
    grid-template-columns: 1fr;
  }
  .story-image-box {
    max-width: 500px;
    margin: 0 auto;
  }
  .story-stats-row {
    flex-wrap: wrap;
    gap: 40px;
  }
  .stat-vertical-divider {
    display: none;
  }
  .stat-item-mini {
    width: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .story-features-grid {
    grid-template-columns: 1fr;
  }
  .story-stats-row {
    flex-direction: column;
    gap: 32px;
  }
  .stat-item-mini {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
  }
  .stat-item-mini:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ==========================================================================
    18. GALLERY SECTION
   ========================================================================== */

.gallery-loop-section {
  overflow: hidden;
  width: 100%;
  padding: 60px 0;
}

.gallery-master-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 24px);
  width: 100%;
}

.gallery-track-row {
  overflow: hidden;
  width: 100%;
  display: flex;
  user-select: none;
}

.gallery-track-inner {
  display: flex;
  gap: clamp(12px, 1.5vw, 24px);
  width: max-content;
}

.gallery-item {
  width: clamp(240px, 22vw, 380px);
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-light);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (min-width: 769px) {
  .gallery-track-inner {
    animation: infiniteScrollLeft 30s linear infinite;
  }

  .gallery-master-wrapper:hover .gallery-track-inner {
    animation-play-state: paused;
  }

  .gallery-track-row:nth-child(1) .gallery-track-inner {
    animation-duration: 25s;
  }

  .gallery-track-row:nth-child(2) .gallery-track-inner {
    animation-duration: 35s;
  }

  .gallery-track-row:nth-child(3) .gallery-track-inner {
    animation-duration: 28s;
  }

  @keyframes infiniteScrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(50% + calc(clamp(12px, 1.5vw, 24px) / 2)));
    }
  }
}

@media (max-width: 768px) {
  .gallery-track-row {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 20px;
  }

  .gallery-track-row::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    width: 220px;
  }
}

/* ==========================================================================
   19. BLOG ARCHIVE PAGE
   ========================================================================== */
.blog-archive-section {
  padding-top: 180px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.blog-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.filter-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  background: var(--glass-bg-hover);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
  background-color: var(--btn-primary-bg);
  color: var(--text-white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 255, 0.3);
}

.blog-archive-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  width: 100%;
}

.archive-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.archive-col:nth-child(2) {
  justify-content: center;
}

.blog-archive-grid .blog-footer {
  margin-top: 0;
}

.archive-card-large {
  height: auto;
}

.archive-card-large .blog-image-inner {
  aspect-ratio: 3/4;
  height: auto;
}

.blog-archive-grid .blog-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (min-width: 2000px) {
  .blog-archive-section {
    padding-top: 220px;
  }
}

@media (max-width: 1200px) {
  .blog-archive-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
  }
}

@media (max-width: 992px) {
  .blog-archive-section {
    padding-top: 140px;
  }
  .blog-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .archive-col:nth-child(2) {
    grid-column: 1 / -1;
    order: -1;
  }
  .archive-card-large .blog-image-inner {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .blog-archive-grid {
    grid-template-columns: 1fr;
  }
  .archive-col {
    order: 0;
    gap: 32px;
  }
  .archive-card-large .blog-image-inner {
    aspect-ratio: 4/3;
  }
  .blog-filters {
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   20. SINGLE BLOG PAGE
   ========================================================================== */
.single-blog-section {
  padding-top: 180px;
  padding-bottom: 40px;
  min-height: 100vh;
}

.single-blog-container {
  max-width: 1000px;
  margin: 0 auto;
}

.single-blog-header {
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.single-blog-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 2.1;
  max-width: 900px;
  margin-top: 24px;
}

.single-blog-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.single-image-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
}

.single-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.single-image-wrapper:hover img {
  transform: scale(1.05);
}

.single-blog-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.single-blog-block {
  display: flex;
  flex-direction: column;
}

.single-blog-block h3 {
  color: var(--text-white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: right;
}

.single-blog-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 2.2;
  text-align: justify;
}

.single-blog-share {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 80px;
  margin-bottom: 40px;
}

.single-blog-share a {
  color: var(--text-gray);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-blog-share a:hover {
  color: var(--text-white);
  transform: translateY(-4px);
}

.single-blog-share svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 2000px) {
  .single-blog-section {
    padding-top: 220px;
  }
  .single-blog-container {
    max-width: 1200px;
  }
  .single-blog-intro {
    font-size: 1.15rem;
  }
  .single-blog-block h3 {
    font-size: 1.5rem;
  }
  .single-blog-block p {
    font-size: 1.15rem;
  }
  .single-blog-share svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 992px) {
  .single-blog-section {
    padding-top: 140px;
  }
}

@media (max-width: 768px) {
  .single-blog-images {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .single-blog-header .section-title {
    font-size: 1.6rem;
  }
  .single-blog-block h3 {
    font-size: 1.15rem;
  }
  .single-blog-block p {
    font-size: 0.9rem;
    text-align: right;
  }
}

/* ==========================================================================
   21. SERVICES HERO SECTION
   ========================================================================== */
.services-hero-section {
  position: relative;
  width: 100%;
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 180px 24px 150px 24px;
  background-color: var(--bg-section);
  background-image: radial-gradient(
      circle at 25% 55%,
      rgba(255, 255, 255, 0.09) 0%,
      transparent 45%
    ),
    linear-gradient(180deg, transparent 75%, rgba(0, 0, 0, 0.35) 100%);
  overflow: hidden;
}

.services-hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.services-hero-content {
  flex: 1;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.9rem;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  flex-direction: row;
}

.btn-section {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition-smooth);
  outline: none;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
  gap: 10px;
  flex-direction: row-reverse;
}

.section-badge svg {
  width: 18px;
  height: 18px;
  color: var(--text-light);
}

.services-hero-content .hero-title {
  text-align: right;
  font-size: 2.4rem;
  margin-bottom: 24px;
  line-height: 1.6;
  color: var(--text-white);
}

.services-hero-content .hero-description {
  text-align: justify;
  max-width: 100%;
  font-size: 1.05rem;
  line-height: 2.1;
  margin-bottom: 48px;
  color: var(--text-muted);
}

.hero-actions-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  color: var(--text-white);
  transition: var(--transition-smooth);
  outline: none;
}

.hero-actions-right .btn-primary {
  padding: 14px 48px;
  border-radius: 12px;
  background-color: var(--btn-primary-bg);
}

.hero-actions-right .btn-primary:hover {
  background-color: var(--btn-primary-hover);
}

.hero-actions-right .btn-liquid-glass {
  padding: 14px 32px;
  border-radius: 12px;
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.hero-actions-right .btn-liquid-glass:hover {
  background-color: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

.services-hero-image {
  flex: 1;
  max-width: 45%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.services-hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 2000px) {
  .services-hero-section {
    min-height: 55vh;
    padding-top: 280px;
  }
  .services-hero-content {
    max-width: 50%;
  }
  .services-hero-content .hero-title {
    font-size: 3rem;
  }
  .services-hero-content .hero-description {
    font-size: 1.25rem;
  }
}

@media (max-width: 992px) {
  .services-hero-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .services-hero-content {
    max-width: 100%;
    align-items: center;
  }
  .services-hero-content .hero-title,
  .services-hero-content .hero-description {
    text-align: center;
  }
  .hero-actions-right {
    justify-content: center;
  }
  .services-hero-image {
    max-width: 80%;
    justify-content: center;
  }
  .services-hero-section {
    padding-top: 160px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .services-hero-content .hero-title {
    font-size: 1.7rem;
  }
  .services-hero-content .hero-description {
    font-size: 0.95rem;
  }
  .hero-actions-right {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions-right .btn-hero {
    width: 100%;
  }
  .services-hero-image {
    max-width: 100%;
  }
}

/* ==========================================================================
   22. SERVICES ACCORDION GRID
   ========================================================================== */
.services-acc-section {
  padding-top: 150px;
  padding-bottom: 80px;
}

.services-acc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.acc-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-acc-item {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.service-acc-item.active {
  background: var(--glass-bg-active);
  border-color: rgba(255, 255, 255, 0.35);
}

.acc-visible-part {
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acc-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.acc-title {
  color: var(--text-white);
  font-size: 1.15rem;
  font-weight: 700;
}

.acc-arrow {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.service-acc-item.active .acc-arrow {
  transform: rotate(180deg);
  color: var(--text-white);
}

.acc-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  text-align: justify;
}

.service-acc-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-acc-item.active .service-acc-content-wrapper {
  grid-template-rows: 1fr;
}

.service-acc-content {
  overflow: hidden;
}

.acc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 32px 24px 32px;
}

.acc-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.acc-feature .check-icon {
  width: 18px;
  height: 18px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.acc-feature span {
  color: var(--text-light);
  font-size: 0.9rem;
}

@media (min-width: 2000px) {
  .acc-title {
    font-size: 1.3rem;
  }
  .acc-desc {
    font-size: 1.1rem;
  }
  .acc-feature span {
    font-size: 1.05rem;
  }
}

@media (max-width: 992px) {
  .services-acc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .acc-features {
    grid-template-columns: 1fr;
  }
  .acc-visible-part {
    padding: 20px 24px;
  }
  .acc-features {
    padding: 0 24px 20px 24px;
  }
}

/* ==========================================================================
   SERVICES ACCORDION ACTION BOX (LIQUID GLASS)
   ========================================================================== */
.acc-glass-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 32px 32px 32px;
  padding: 16px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  gap: 16px;
}

.acc-action-text {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
}

.acc-glass-action .btn-primary {
  padding: 12px 32px;
  border-radius: 12px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .acc-glass-action {
    margin: 0 24px 24px 24px;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .acc-glass-action .btn-primary {
    width: 100%;
  }
}

/* ==========================================================================
   23. PROCESS TIMELINE SECTION
   ========================================================================== */
.process-section {
  padding-top: 80px;
  padding-bottom: 40px;
}

.process-timeline-container {
  position: relative;
  margin-top: 60px;
  width: 100%;
}

.process-line {
  position: absolute;
  top: 32px;
  left: 8.33%;
  right: 8.33%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.process-step:hover .step-number {
  color: var(--text-white);
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-active);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.step-title {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 140px;
}

@media (min-width: 2000px) {
  .step-number {
    width: 80px;
    height: 80px;
    font-size: 1.4rem;
  }
  .process-line {
    top: 40px;
  }
  .step-title {
    font-size: 1.25rem;
  }
  .step-desc {
    font-size: 1.05rem;
    max-width: 200px;
  }
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
  }
  .process-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-timeline-container {
    padding-right: 16px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .process-line {
    display: block;
    width: 1px;
    height: calc(100% - 64px);
    top: 32px;
    right: 40px;
    left: auto;
  }

  .advantages-grid-wrapper {
    display: flex;
    flex-direction: row !important;
  }
  .process-step {
    align-items: flex-start;
    text-align: right;
    gap: 24px;
  }
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    margin-bottom: 0;
    flex-shrink: 0;
    z-index: 2;
  }
  .step-title {
    margin-top: 4px;
  }
  .step-desc {
    max-width: 100%;
  }
}

/* ==========================================================================
   24. MINIMAL ADVANTAGES GRID (STAT-DIVIDER STYLE FIXED)
   ========================================================================== */
.minimal-advantages-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.advantages-grid-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.adv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.adv-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  flex: 1;
}

.adv-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.adv-item:hover .adv-icon-box {
  color: var(--text-white);
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-active);
  transform: translateY(-4px);
}

.adv-icon-box svg {
  width: 26px;
  height: 26px;
}

.adv-title {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 500;
}

.adv-vertical-divider {
  width: 2px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  flex-shrink: 0;
}

.adv-row-dividers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.adv-horizontal-divider {
  height: 1px;
  flex: 1;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.adv-spacer {
  width: 2px;
  flex-shrink: 0;
}

@media (min-width: 2000px) {
  .adv-title {
    font-size: 1.25rem;
  }
  .adv-icon-box {
    width: 76px;
    height: 76px;
  }
  .adv-icon-box svg {
    width: 32px;
    height: 32px;
  }
  .adv-vertical-divider {
    height: 150px;
  }
}

@media (max-width: 992px) {
  .adv-row {
    flex-wrap: wrap;
    gap: 40px;
  }
  .adv-vertical-divider,
  .adv-row-dividers {
    display: none;
  }
  .adv-item {
    min-width: calc(50% - 20px);
    flex: unset;
  }
}

@media (max-width: 768px) {
  .adv-row {
    flex-direction: column;
    gap: 40px;
  }
  .adv-item {
    width: 100%;
  }
}

/* ==========================================================================
   25. CONTACT SECTION
   ========================================================================== */

.contact-hero-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 180px 24px 0 24px;
  background: var(--bg-section);
  overflow: hidden;
}

.contact-hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-hero-section .section-header {
  margin-bottom: 70px;
}

.contact-hero-section .hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-white);
  text-align: center;
}

.contact-hero-section .hero-description {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 800px;
  line-height: 2;
  text-align: center;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 80px;
}

.info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 220px;
  padding: 32px;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
}

.card-icon-top {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  align-self: flex-start;
  transition: var(--transition-smooth);
}

.info-card:hover .card-icon-top {
  background: var(--glass-bg-hover);
  transform: scale(1.05);
}

.card-icon-top svg {
  width: 22px;
  height: 22px;
}

.card-text-bottom {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-text-bottom h3 {
  font-size: 1.1rem;
  color: var(--text-white);
  font-weight: 700;
}

.card-text-bottom p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (min-width: 2000px) {
  .contact-hero-section .hero-title {
    font-size: 3rem;
  }
  .contact-hero-section .hero-description {
    font-size: 1.2rem;
    max-width: 1000px;
  }
  .contact-info-cards {
    max-width: 1400px;
    gap: 32px;
  }
  .info-card {
    height: 260px;
    padding: 40px;
  }
  .card-icon-top {
    width: 64px;
    height: 64px;
  }
  .card-icon-top svg {
    width: 28px;
    height: 28px;
  }
  .card-text-bottom h3 {
    font-size: 1.3rem;
  }
  .card-text-bottom p {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding-top: 140px;
  }
  .contact-hero-section .hero-title {
    font-size: 1.6rem;
  }
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .info-card {
    height: 190px;
  }
}

/* ==========================================================================
   26. MAP SECTION
   ========================================================================== */

.map-wrapper-section {
  padding-top: 20px;
  padding-bottom: 100px;
}

.map-box {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(15%) contrast(105%);
}

.custom-map-overlay {
  position: absolute;
  top: 45%;
  left: 35%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.pin-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.4));
}

.pin-tooltip {
  background-color: #0b1221;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
  min-width: 200px;
}

.pin-tooltip h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pin-tooltip p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.8;
}

@media (min-width: 2000px) {
  .map-box {
    height: 550px;
  }
  .pin-tooltip {
    padding: 18px 28px;
  }
  .pin-tooltip h4 {
    font-size: 1.1rem;
  }
  .pin-tooltip p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .map-box {
    height: 350px;
  }
  .custom-map-overlay {
    top: 50%;
    left: 50%;
  }
}

/* ==========================================================================
   26. SINGLE-SERVICE HERO SECTION
   ========================================================================== */

.services-hero-section.service-detail-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 300px 24px 120px 24px;
  background: none;
  overflow: hidden;
}

.service-detail-hero .bg-media-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.service-detail-hero .bg-media-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-hero-content-center {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
  bottom: 50px;
}

.services-hero-content-center .section-badge {
  margin-bottom: 32px;
}

.services-hero-content-center .hero-title {
  color: var(--text-white);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: center;
}

.services-hero-content-center .hero-title strong {
  color: var(--text-white);
  font-weight: 700;
}

.hero-title-sub-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 48px;
  text-align: center;
}

.hero-actions-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.hero-actions-center .btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  color: var(--text-white);
  transition: var(--transition-smooth);
  outline: none;
}

.hero-actions-center .btn-primary {
  padding: 14px 44px;
  border-radius: 12px;
  background-color: var(--btn-primary-bg);
}

.hero-actions-center .btn-primary:hover {
  background-color: var(--btn-primary-hover);
}

.hero-actions-center .btn-liquid-glass {
  padding: 14px 32px;
  border-radius: 12px;
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.hero-actions-center .btn-liquid-glass:hover {
  background-color: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

@media (min-width: 2000px) {
  .services-hero-section.service-detail-hero {
    min-height: 60vh;
    padding-top: 260px;
  }
  .services-hero-content-center {
    max-width: 1200px;
  }
  .services-hero-content-center .hero-title {
    font-size: 2.8rem;
  }
  .hero-title-sub-text {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .services-hero-section.service-detail-hero {
    padding-top: 180px;
    min-height: auto;
  }
  .services-hero-content-center .hero-title {
    font-size: 1.9rem;
  }
  .hero-title-sub-text {
    font-size: 1.35rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .services-hero-content-center .hero-title {
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .hero-title-sub-text {
    font-size: 1.15rem;
    line-height: 1.7;
  }
  .hero-actions-center {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions-center .btn-hero {
    width: 100%;
  }
  .services-hero-content-center {
    bottom: 0;
  }
}

/* ==========================================================================
   27. SINGLE-SERVICE BLOCK SECTION
   ========================================================================== */

.service-details-blocks-section {
  position: relative;
  background-color: var(--bg-section);
  padding: 80px 24px;
}

.details-blocks-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.detail-block-row {
  display: flex;
  align-items: stretch;
  gap: 32px;
  width: 100%;
}

.detail-block-row.reversed {
  flex-direction: row-reverse;
}

.detail-text-box {
  flex: 1.8;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.block-inner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 24px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.block-inner-badge svg {
  width: 16px;
  height: 16px;
  color: var(--text-light);
}

.detail-title {
  color: var(--text-white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.detail-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 2.1;
  text-align: justify;
  margin-bottom: 32px;
}

.detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  margin-top: auto;
  margin-bottom: 32px;
}

.detail-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-feature-item .check-icon {
  width: 18px;
  height: 18px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.detail-feature-item span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.detail-image-box {
  flex: 1;
  padding: 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.detail-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@media (min-width: 2000px) {
  .detail-text-box {
    padding: 50px;
  }
  .detail-title {
    font-size: 1.7rem;
  }
  .detail-desc {
    font-size: 1.1rem;
  }
  .detail-feature-item span {
    font-size: 1.05rem;
  }
}

@media (max-width: 992px) {
  .detail-block-row {
    flex-direction: column;
  }
  .detail-block-row.reversed {
    flex-direction: column;
  }
  .detail-text-box {
    order: 2;
  }
  .detail-image-box {
    order: 1;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .detail-features {
    grid-template-columns: 1fr;
  }
  .detail-text-box {
    padding: 24px;
  }
}

/* ==========================================================================
   28. LOGIN PAGE SECTION
   ========================================================================== */

.auth-section {
  width: 100%;
  min-height: 113vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background-color: var(--bg-section);
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.auth-form-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.auth-header {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.auth-toggle-wrapper {
  display: inline-flex;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 4px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.auth-toggle-btn {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 10px 32px;
  border-radius: 36px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.auth-toggle-btn.active {
  background-color: var(--btn-primary-bg);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(0, 0, 255, 0.2);
}

.auth-toggle-btn:hover:not(.active) {
  color: var(--text-light);
}

.auth-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.auth-form-wrapper {
  padding: 40px;
  border-radius: 24px;
}

.auth-form-wrapper-otp {
  padding: 40px;
  border-radius: 24px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group-glass {
  position: relative;
  width: 100%;
}

.form-group-glass input {
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 18px 20px;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group-glass.has-icon input {
  padding-left: 55px;
}

.form-group-glass input::placeholder {
  color: var(--text-gray);
}

.form-group-glass input:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--glass-bg-active);
}

.toggle-password {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.toggle-password:hover svg {
  color: var(--text-light);
}

.btn-primary-glass {
  width: 100%;
  background-color: var(--btn-primary-bg);
  color: var(--text-white);
  border: none;
  border-radius: 12px;
  padding: 18px;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary-glass:hover {
  background-color: var(--btn-primary-hover);
  transform: translateY(-2px);
}

.auth-image-col {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-image-col img {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .auth-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .auth-image-col {
    order: 2;
  }
  .auth-form-col {
    order: 1;
  }
  .auth-header {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .auth-form-wrapper {
    padding: 24px;
  }
  .form-group-glass input {
    padding: 16px;
  }
  .auth-form-wrapper-otp {
    padding: 24px;
  }
}

@media (max-width: 400px) {
  .auth-form-wrapper-otp {
    padding: 14px;
  }
}

/* ==========================================================================
   29. DASHBOARD PAGE SECTION
   ========================================================================== */

.dashboard-body {
  background-color: var(--bg-section);
  display: flex;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

.mobile-dash-header {
  display: none;
  width: 100%;
  padding: 16px 24px;
  background-color: var(--bg-section);
  border-bottom: 1px solid var(--glass-border);
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 990;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.2rem;
}

.mobile-logo svg {
  width: 24px;
  height: 24px;
}

.mobile-user {
  color: var(--text-white);
}

.mobile-user svg {
  width: 24px;
  height: 24px;
}

.sidebar {
  width: 280px;
  background-color: var(--bg-section);
  border-left: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 100;
}

@media (min-width: 993px) {
  .sidebar.mobile-drawer {
    transform: translateX(0) !important;
    position: sticky !important;
  }
}

.sidebar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 0;
  color: var(--text-white);
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid var(--glass-border-light);
}

.sidebar-logo svg {
  width: 28px;
  height: 28px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  gap: 8px;
  overflow-y: auto;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--text-muted);
  border-radius: 12px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.nav-item svg {
  width: 20px;
  height: 20px;
}

.nav-item:hover:not(.active) {
  background-color: var(--glass-bg);
  color: var(--text-light);
}

.nav-item.active {
  color: var(--text-white);
  font-weight: 500;
}

.sidebar-footer {
  padding: 24px 16px;
  border-top: 1px solid var(--glass-border-light);
}

.user-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 16px;
  flex-direction: row-reverse;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-white);
  flex-direction: row-reverse;
}

.user-info svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

.user-name {
  font-size: 0.95rem;
  font-weight: 500;
}

.logout-icon {
  width: 20px;
  height: 20px;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.logout-icon:hover {
  color: var(--text-white);
}

.dash-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px;
  gap: 32px;
  overflow-y: auto;
}

.dash-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dash-header-titles {
  text-align: right;
}

.dash-header-titles h1 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.dash-header-titles p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.dash-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 30px;
  flex: 0 1 400px;
}

.dash-search-box svg {
  width: 18px;
  height: 18px;
  color: var(--text-gray);
}

.dash-search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  width: 100%;
  font-size: 0.9rem;
}

.dash-search-box input::placeholder {
  color: var(--text-gray);
}

.dash-user-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  cursor: pointer;
}

.action-btn svg {
  width: 20px;
}

.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--text-white);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  font-size: 0.95rem;
  cursor: pointer;
}

.user-profile-btn svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 24px;
  border-radius: 16px;
  gap: 16px;
}

.stat-val {
  color: var(--text-white);
  font-size: 1.8rem;
  font-weight: 700;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
}

.dash-middle-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
}

.recent-shipments,
.recent-activities {
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.panel-header h2 {
  color: var(--text-white);
  font-size: 1.15rem;
}

.view-all {
  color: var(--accent-blue);
  font-size: 0.9rem;
}

.shipments-list {
  display: flex;
  flex-direction: column;
}

.shipment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--glass-border-light);
}

.shipment-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.shipment-info {
  text-align: right;
}

.shipment-info h3 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 6px;
}

.shipment-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.status-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-light);
}

.timeline-list {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 24px;
  padding-right: 12px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 18px;
  width: 1px;
  background: var(--glass-border);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.timeline-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.timeline-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent-blue);
}

.timeline-content {
  text-align: right;
}

.timeline-content h4 {
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.timeline-content p {
  color: var(--text-gray);
  font-size: 0.8rem;
}

.dash-support-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 20px;
  gap: 32px;
}

.support-text-content {
  flex: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.support-badge svg {
  width: 16px;
  height: 16px;
}

.support-text-content h2 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.support-text-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 500px;
}

.support-actions {
  display: flex;
  gap: 16px;
}

.support-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  color: var(--text-white);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.support-btn:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

.support-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-icon svg {
  width: 20px;
  height: 20px;
  color: var(--text-light);
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (min-width: 2000px) {
  .dash-main-content {
    max-width: var(--container-xl);
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .dash-middle-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .dashboard-body {
    flex-direction: column;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 1000;
    transform: translateX(100%) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sidebar.open {
    transform: translateX(0) !important;
  }
  .mobile-dash-header {
    display: flex;
  }
  .dash-main-content {
    padding-top: 100px;
  }
  .dash-top-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .dash-search-box {
    width: 100%;
    flex: unset;
  }
  .dash-user-actions {
    display: none;
  }
  .dash-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-support-banner {
    flex-direction: column;
  }
  .support-text-content {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .dash-stats-grid {
    grid-template-columns: 1fr;
  }
  .support-actions {
    flex-direction: column;
    width: 100%;
  }
  .support-btn {
    width: 100%;
    height: 80px;
    flex-direction: row;
  }
  .recent-shipments,
  .recent-activities {
    padding: 20px;
  }
  .shipment-item,
  .panel-header {
    display: block;
  }
  .shipment-info {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .panel-header h2 {
    padding-bottom: 20px;
  }
}

/* ==========================================================================
   30. DASHBOARD PAGE TABLE SECTION
   ========================================================================== */

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: 20px;
  padding: 0;
}

.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: var(--glass-border-hover);
  border-radius: 8px;
}

.data-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  text-align: right;
}

.data-table th {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 24px;
  border-bottom: 1px solid var(--glass-border-light);
  background: rgba(255, 255, 255, 0.02);
}

.data-table td {
  color: var(--text-white);
  font-size: 0.95rem;
  padding: 24px;
  border-bottom: 1px solid var(--glass-border-light);
  vertical-align: middle;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr {
  transition: var(--transition-smooth);
}

.data-table tbody tr:hover {
  background: var(--glass-bg-hover);
}

.action-link {
  color: var(--accent-cyan);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.action-link:hover {
  color: var(--accent-blue);
}

.status-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-light);
  white-space: nowrap;
}

.status-badge.transit {
  border-color: rgba(0, 162, 255, 0.4);
  background: rgba(0, 162, 255, 0.05);
  color: var(--text-white);
}

.status-badge.customs {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
}

.status-badge.loading {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
}

/* ==========================================================================
   31. DASHBOARD PAGE TRACKING SECTION
   ========================================================================== */

.tracking-search-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  padding-top: 40px;
}

.tracking-search-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.tracking-search-badge svg {
  width: 18px;
  height: 18px;
}

.tracking-search-title {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 16px;
  font-weight: 700;
}

.tracking-search-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.tracking-form-box {
  width: 100%;
  max-width: 900px;
  padding: 40px;
  border-radius: 20px;
}

.tracking-type-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.tracking-tab-label {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tracking-tab-label.active {
  background: var(--btn-primary-bg);
  color: var(--text-white);
  border-color: var(--btn-primary-bg);
  box-shadow: 0 4px 16px rgba(0, 0, 255, 0.25);
}

.tracking-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 8px;
}

.tracking-input-wrapper .search-icon {
  width: 24px;
  height: 24px;
  color: var(--text-gray);
  margin: 0 16px;
}

.tracking-input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1rem;
  outline: none;
  padding: 8px 0;
}

.tracking-input-wrapper input::placeholder {
  color: var(--text-gray);
}

.tracking-submit-btn {
  background: var(--btn-primary-bg);
  color: var(--text-white);
  border: none;
  border-radius: 12px;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-right: 8px;
}

.tracking-submit-btn:hover {
  background: var(--btn-primary-hover);
}

.tracking-results-area {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tracking-summary-panel,
.tracking-progress-panel,
.tracking-details {
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.panel-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.panel-title-group {
  text-align: right;
}

.panel-title-group h2 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.panel-title-group p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.status-badge-custom {
  padding: 8px 20px;
  border-radius: 30px;
  color: var(--text-light);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.summary-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summary-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-cyan);
}

.summary-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.summary-label {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.summary-val {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 500;
}

.progress-container-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 10px 0;
}

.progress-timeline-wrapper {
  display: flex;
  justify-content: space-between;
  min-width: 800px;
  margin-top: 20px;
}

.progress-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 16px;
}

.progress-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: calc(50% + 25px);
  width: calc(100% - 50px);
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.progress-step.completed:not(:last-child)::after {
  background: var(--accent-cyan);
}

.progress-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  z-index: 2;
}

.progress-step.completed .progress-circle {
  background: rgba(0, 191, 255, 0.15);
  border-color: var(--accent-cyan);
  color: var(--text-white);
}

.progress-step.current .progress-circle {
  background: transparent;
  border-color: var(--accent-cyan);
  color: var(--text-white);
}

.progress-text {
  text-align: center;
}

.progress-text h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 500;
}

.progress-text p {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.tracking-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.details-list {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--glass-border-light);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.detail-value {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .tracking-bottom-grid {
    grid-template-columns: 1fr;
  }
  .panel-header-split {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .tracking-search-title {
    font-size: 1.8rem;
  }
  .tracking-form-box {
    padding: 24px;
  }
  .tracking-type-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  .tracking-input-wrapper {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }
  .tracking-input-wrapper .search-icon {
    display: none;
  }
  .tracking-input-wrapper input {
    width: 100%;
    text-align: center;
  }
  .tracking-submit-btn {
    width: 100%;
    margin-right: 0;
  }
  .summary-grid {
    grid-template-columns: 1fr;
  }
  .tracking-summary-panel,
  .tracking-progress-panel,
  .tracking-details {
    padding: 24px;
  }
  .summary-card {
    padding: 16px;
  }
}

/* ==========================================================================
   32. DASHBOARD PAGE NEW REQUEST SECTION
   ========================================================================== */

.req-stepper-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 20px auto 40px auto;
  position: relative;
  direction: rtl;
}

.req-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 16px;
}

.req-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  right: calc(50% + 25px);
  width: calc(100% - 50px);
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.req-step.completed:not(:last-child)::after {
  background: var(--accent-cyan);
}

.req-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.req-step.completed .req-circle {
  background: rgba(0, 191, 255, 0.15);
  border-color: var(--accent-cyan);
  color: var(--text-white);
}

.req-step.current .req-circle {
  background: rgba(0, 191, 255, 0.3);
  border-color: var(--accent-cyan);
  color: var(--text-white);
}

.req-title {
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: var(--transition-smooth);
}

.req-step.current .req-title,
.req-step.completed .req-title {
  color: var(--text-white);
}

.req-content-panel {
  padding: 40px;
  border-radius: 24px;
  min-height: 500px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.step-content {
  display: none;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  animation: fadeInStep 0.4s ease;
}

.step-content.active {
  display: flex;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.req-panel-header {
  text-align: right;
  width: 100%;
}

.req-panel-header h2 {
  color: var(--text-white);
  font-size: 1.25rem;
  font-weight: 700;
}

.req-panel-subtitle {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-top: 12px;
}

.transport-options-grid,
.services-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.transport-card,
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  padding: 32px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.transport-card:hover,
.service-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.15);
}

.transport-card.selected,
.service-card.selected {
  background: rgba(0, 162, 255, 0.05);
  border-color: var(--accent-blue);
  box-shadow: inset 0 0 15px rgba(0, 162, 255, 0.1);
}

.transport-icon,
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.transport-card.selected .transport-icon,
.service-card.selected .service-icon {
  background: var(--accent-blue);
}

.transport-icon img {
  width: 24px;
  height: 24px;
  transition: var(--transition-smooth);
  filter: invert(0.6);
}

.transport-card.selected .transport-icon img {
  filter: invert(1) brightness(2);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.service-card.selected .service-icon svg {
  color: var(--text-white);
}

.transport-card h3,
.service-card h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.transport-card p,
.service-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.step-2-grid,
.step-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.step-2-grid-personal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.form-group-req {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.form-group-req.full-width {
  width: 100%;
  margin-top: 8px;
}

.form-group-req label {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-group-req input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition-smooth);
  outline: none;
}

.form-group-req input:focus {
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.05);
}

.form-group-req input::placeholder {
  color: var(--text-gray);
}

.form-group-req input[dir="ltr"] {
  text-align: right;
}

.form-group-req textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition-smooth);
  outline: none;
  resize: none;
  height: 120px;
}

.form-group-req textarea:focus {
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.05);
}

.form-group-req textarea::placeholder {
  color: var(--text-gray);
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.req-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--text-gray);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition-smooth);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.req-select:focus {
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

.req-select option {
  background-color: var(--bg-section);
  color: var(--text-white);
}

.custom-select-wrapper svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-gray);
  pointer-events: none;
}

.req-panel-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  gap: 16px;
  padding-top: 24px;
}

.btn-primary-rect {
  background-color: var(--btn-primary-bg);
  color: var(--text-white);
  border: none;
  border-radius: 8px;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 24px rgba(0, 0, 255, 0.4);
}

.btn-primary-rect:hover {
  background-color: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 255, 0.5);
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.review-summary-box {
  padding: 24px 32px;
  border-radius: 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.review-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.review-value {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
}

.personal-details-section {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-sub-title {
  color: var(--text-white);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: right;
}

.info-banner-blue {
  background: rgba(0, 80, 120, 0.4);
  border: 1px solid rgba(0, 162, 255, 0.3);
  border-radius: 12px;
  padding: 24px;
  text-align: right;
  margin-top: 16px;
}

.info-banner-title {
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.info-banner-desc {
  color: var(--text-gray);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .req-stepper-container {
    overflow-x: auto;
    justify-content: space-between;
    padding-bottom: 16px;
  }
  .req-step {
    min-width: 120px;
  }
  .req-step:last-child {
    min-width: 120px;
  }
  .step-2-grid,
  .step-3-grid {
    grid-template-columns: 1fr;
  }
  .step-2-grid-personal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .transport-options-grid,
  .services-options-grid {
    grid-template-columns: 1fr;
  }
  .req-content-panel {
    padding: 24px;
  }
  .transport-card,
  .service-card {
    padding: 24px;
  }
  .req-panel-header {
    text-align: center;
  }
  .req-panel-footer {
    flex-direction: column;
    justify-content: center;
  }
  .next-step-btn,
  .prev-step-btn,
  .submit-request-btn {
    width: 100%;
  }
  .review-summary-box {
    padding: 20px;
  }
}

/* ==========================================================================
   33. DASHBOARD PAGE notifications SECTION
   ========================================================================== */

.notifications-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.notification-date-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notif-date-title {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
}

.notifications-panel {
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.notif-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.notif-item:last-child {
  border-bottom: none;
}

.notif-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.notif-text-content {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notif-text-content h4 {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 500;
}

.notif-text-content span {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.notif-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .notif-item {
    padding: 20px 24px;
  }
  .notif-text-content h4 {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* ==========================================================================
   34. DASHBOARD PAGE SUPPORT SECTION
   ========================================================================== */

.support-page-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.ticket-form-col {
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
}

.ticket-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.ticket-form .form-group-req.flex-1 {
  flex: 1;
}

.ticket-form textarea {
  height: 100%;
  min-height: 160px;
}

.full-width-btn {
  width: 100%;
  margin-top: auto;
  padding: 16px;
  font-size: 1.05rem;
}

.contact-methods-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 0 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  cursor: pointer;
  flex: 1;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrapper svg {
  width: 24px;
  height: 24px;
  color: var(--text-light);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.contact-text h3 {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-text p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .support-page-grid {
    grid-template-columns: 1fr;
  }
  .ticket-form-col {
    order: 1;
  }
  .contact-methods-col {
    order: 2;
    height: auto;
  }
  .contact-card {
    padding: 24px 32px;
    flex: none;
  }
}

@media (max-width: 768px) {
  .ticket-form-col {
    padding: 24px;
  }
  .contact-card {
    padding: 20px;
  }
}

/* ==========================================================================
   35. DASHBOARD PAGE PROFILE SECTION
   ========================================================================== */

.profile-panel {
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.profile-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.profile-panel-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

@media (max-width: 992px) {
  .profile-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .profile-panel {
    padding: 24px;
  }
  .profile-form-grid {
    grid-template-columns: 1fr;
  }
  .profile-panel-footer {
    justify-content: center;
  }
  .profile-panel-footer .btn-primary-rect {
    width: 100%;
  }
}

/* ==========================================================================
   36. BLOG LOAD MORE SECTION
   ========================================================================== */

.load-more-wrapper {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.glowing-divider-load-more {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glowing-divider-load-more::before,
.glowing-divider-load-more::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
}

.glowing-divider-load-more::after {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.glowing-divider-load-more .load-more-text {
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.glowing-divider-load-more:hover .load-more-text {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.glowing-divider-load-more.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* ==========================================================================
   37. OTP SECTION
   ========================================================================== */

.otp-inputs-wrapper {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 16px);
  margin-bottom: 24px;
  direction: ltr;
  width: 100%;
}

.otp-inputs-wrapper input {
  width: clamp(45px, 12vw, 60px);
  height: clamp(45px, 12vw, 60px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-align: center;
  color: var(--text-white);
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.otp-inputs-wrapper input:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--glass-bg-active);
  box-shadow: 0 0 10px rgba(0, 162, 255, 0.2);
}

.resend-code-text {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  margin-bottom: 32px;
}

.resend-code-text a {
  color: var(--text-white);
  margin-right: 6px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.resend-code-text a:hover {
  color: var(--accent-blue);
}

@media (max-width: 480px) {
  .otp-inputs-wrapper input {
    border-radius: 8px;
  }
}

/* ==========================================================================
   UPLOADED DOC WRAPPER (مشاهده فایل + جایگزینی)
   ========================================================================== */

.uploaded-doc-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.uploaded-doc-wrapper .action-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-blue);
  background: rgba(0, 162, 255, 0.08);
  border: 1px solid rgba(0, 162, 255, 0.25);
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.uploaded-doc-wrapper .action-link:hover {
  background: rgba(0, 162, 255, 0.15);
  border-color: rgba(0, 162, 255, 0.5);
  color: var(--accent-cyan);
}

.btn-upload-replace {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: "Peyda", system-ui, sans-serif;
  color: var(--text-muted);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-light);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-upload-replace:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border);
  color: var(--text-white);
  transform: translateY(-1px);
}

.btn-upload-replace:active {
  transform: translateY(0);
}

/* ==========================================================================
   UPLOAD DOC BUTTON
   ========================================================================== */

.btn-upload-doc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: "Peyda", system-ui, sans-serif;
  color: var(--text-white);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-upload-doc:hover {
  background: var(--glass-bg-active);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 162, 255, 0.2);
}

.btn-upload-doc:active {
  transform: translateY(0);
}

/* ==========================================================================
   MODAL OVERLAY
   ========================================================================== */

.hormoz-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  direction: rtl;
}

/* ==========================================================================
   MODAL INNER (از glass-panel ارث می‌بره + override)
   ========================================================================== */

.hormoz-modal-inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.hormoz-modal-inner h3 {
  color: var(--text-white);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: right;
}

/* ==========================================================================
   MODAL CLOSE BUTTON
   ========================================================================== */

.hormoz-modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.hormoz-modal-close:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border);
  color: var(--text-white);
}

.hormoz-modal-close svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   UPLOAD HINT
   ========================================================================== */

.upload-hint {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: right;
  line-height: 1.7;
  margin-top: -8px;
}

/* ==========================================================================
   UPLOAD MESSAGE (success / error)
   ========================================================================== */

#uploadMessage {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border-light);
  text-align: right;
  line-height: 1.6;
}

/* ==========================================================================
   DROP AREA
   ========================================================================== */

.upload-drop-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 36px 24px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.upload-drop-area:hover,
.upload-drop-area.drag-over {
  border-color: var(--accent-blue);
  background: rgba(0, 162, 255, 0.05);
}

.upload-drop-area svg {
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.upload-drop-area:hover svg,
.upload-drop-area.drag-over svg {
  color: var(--accent-blue);
}

.upload-drop-area p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.upload-drop-area p #uploadBrowseBtn {
  background: transparent;
  border: none;
  color: var(--accent-blue);
  font-family: "Peyda", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-smooth);
}

.upload-drop-area p #uploadBrowseBtn:hover {
  color: var(--accent-cyan);
}

#uploadFileName {
  color: var(--text-light);
  font-size: 0.82rem;
  word-break: break-all;
  max-width: 100%;
}

/* ==========================================================================
   SUBMIT BUTTON
   ========================================================================== */

.btn-primary-glass {
  width: 100%;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Peyda", system-ui, sans-serif;
  color: var(--text-white);
  background: var(--btn-primary-bg);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(0, 0, 255, 0.3);
}

.btn-primary-glass:hover:not(:disabled) {
  background: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 255, 0.5);
}

.btn-primary-glass:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 480px) {
  .hormoz-modal-inner {
    padding: 32px 20px 24px;
    border-radius: 16px;
  }

  .upload-drop-area {
    padding: 28px 16px;
  }
}
