/* ============================================================
   Tehran → Moscow | Cargo & Logistics
   style.css — Main Stylesheet
   Design: Liquid Glass + Material 3 + Modern Minimal
   ============================================================ */

/* ── Peyda Font ─────────────────────────────────────────── */
@font-face {
  font-family: "Peyda";
  src: url("../fonts/Peyda-Bold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Peyda";
  src: url("../fonts/Peyda-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  /* Palette – Deep Navy × Crimson Gold */
  --clr-bg: #090e1a;
  --clr-bg-2: #0d1422;
  --clr-surface: #111827;
  --clr-surface-2: #1a2236;
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-border-hover: rgba(255, 255, 255, 0.18);

  --clr-primary: #c8102e; /* روسی قرمز */
  --clr-primary-light: #ff2d4f;
  --clr-primary-glow: rgba(200, 16, 46, 0.35);
  --clr-gold: #e8b85a;
  --clr-gold-light: #f5d08a;
  --clr-gold-glow: rgba(232, 184, 90, 0.3);

  --clr-accent: #3b82f6;
  --clr-accent-glow: rgba(59, 130, 246, 0.3);

  --clr-text: #f0f4ff;
  --clr-text-muted: #8898aa;
  --clr-text-subtle: #4a5568;

  /* Liquid Glass */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-hover: rgba(255, 255, 255, 0.22);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --glass-blur: blur(20px) saturate(1.6);

  /* Material 3 elevation shadows */
  --elev-1: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
  --elev-2: 0 1px 2px rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  --elev-3: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.3);
  --elev-4: 0 6px 10px 4px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.3);

  /* Spacing Scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Typography */
  --font-main: "Peyda", Tahoma, "Segoe UI", sans-serif;
  --fz-xs: 0.75rem;
  --fz-sm: 0.875rem;
  --fz-base: 1rem;
  --fz-md: 1.125rem;
  --fz-lg: 1.25rem;
  --fz-xl: 1.5rem;
  --fz-2xl: 2rem;
  --fz-3xl: 2.5rem;
  --fz-4xl: 3rem;
  --fz-5xl: 3.75rem;

  /* Radius */
  --r-sm: 0.5rem;
  --r-md: 0.875rem;
  --r-lg: 1.25rem;
  --r-xl: 1.75rem;
  --r-2xl: 2.5rem;
  --r-full: 9999px;

  /* Transitions */
  --tr-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --tr-normal: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --tr-slow: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  --tr-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Navbar Height */
  --nav-h: 72px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* {
  font-family: "Peyda";
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-primary) var(--clr-bg-2);
}

html[dir="rtl"] {
  direction: rtl;
}

body {
  font-family: var(--font-main);
  font-size: var(--fz-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--clr-bg-2);
}
::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: var(--r-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-primary-light);
}

/* Selection */
::selection {
  background: var(--clr-primary);
  color: #fff;
}

img,
video,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Utility Classes ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section-pad {
  padding-block: var(--sp-24);
}

.section-pad-sm {
  padding-block: var(--sp-16);
}

.text-center {
  text-align: center;
}
.text-start {
  text-align: start;
}

.text-primary {
  color: var(--clr-primary);
}
.text-gold {
  color: var(--clr-gold);
}
.text-muted {
  color: var(--clr-text-muted);
}

.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.gap-4 {
  gap: var(--sp-4);
}

/* ── Glass Card Mixin ─────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow: var(--glass-shadow);
  transition: background var(--tr-normal), border-color var(--tr-normal),
    transform var(--tr-normal), box-shadow var(--tr-normal);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow), 0 0 0 1px var(--glass-border-hover);
}

/* ── Section Heading ──────────────────────────────────────── */
.section-heading {
  margin-bottom: var(--sp-12);
}

.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fz-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-3);
}

.section-heading .eyebrow::before,
.section-heading .eyebrow::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: var(--r-full);
  opacity: 0.6;
}

.section-heading h2 {
  font-size: clamp(var(--fz-2xl), 4vw, var(--fz-4xl));
  font-weight: 800;
  line-height: 1.2;
  color: var(--clr-text);
}

.section-heading h2 span {
  color: var(--clr-primary);
}

.section-heading p {
  margin-top: var(--sp-4);
  color: var(--clr-text-muted);
  font-size: var(--fz-md);
  max-width: 600px;
}

.section-heading.text-center p {
  margin-inline: auto;
}

/* ── Divider Line ─────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
  border-radius: var(--r-full);
  margin-block: var(--sp-4);
}

.divider.center {
  margin-inline: auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.8rem 2rem;
  font-family: var(--font-main);
  font-size: var(--fz-base);
  font-weight: 700;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--tr-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--tr-fast);
}

.btn:hover::after {
  opacity: 1;
}
.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), #a50e26);
  color: #fff;
  box-shadow: 0 4px 20px var(--clr-primary-glow);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px var(--clr-primary-glow),
    0 0 0 2px rgba(200, 16, 46, 0.4);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold), #c9922a);
  color: #0d0d0d;
  box-shadow: 0 4px 20px var(--clr-gold-glow);
}

.btn-gold:hover {
  box-shadow: 0 6px 28px var(--clr-gold-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--glass-border-hover);
  color: var(--clr-text);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--glass-bg-hover);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.btn-ghost {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--clr-text);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

.btn-sm {
  padding: 0.55rem 1.4rem;
  font-size: var(--fz-sm);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--fz-lg);
}

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.25rem 0.75rem;
  font-size: var(--fz-xs);
  font-weight: 700;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
}

.badge-primary {
  background: rgba(200, 16, 46, 0.15);
  color: var(--clr-primary-light);
  border: 1px solid rgba(200, 16, 46, 0.25);
}

.badge-gold {
  background: rgba(232, 184, 90, 0.12);
  color: var(--clr-gold-light);
  border: 1px solid rgba(232, 184, 90, 0.22);
}

.badge-accent {
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.22);
}

/* ── Page Transition Overlay ─────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clr-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fz-xl);
  font-weight: 800;
}

.loader-logo .dot-teh {
  color: var(--clr-primary);
}
.loader-logo .arrow {
  color: var(--clr-gold);
}
.loader-logo .dot-mos {
  color: var(--clr-text);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--clr-surface-2);
  border-radius: var(--r-full);
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
  border-radius: var(--r-full);
  animation: loaderFill 1.4s ease-in-out forwards;
}

@keyframes loaderFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ── Navigation ───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-h);
}

#navbar.scrolled {
  background: rgba(9, 14, 26, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 1px 0 var(--clr-border), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  width: 50px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--clr-primary), #7a0919);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--clr-primary-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text .brand-main {
  font-size: var(--fz-md);
  font-weight: 800;
  color: var(--clr-text);
}

.brand-text .brand-sub {
  font-size: var(--fz-xs);
  color: var(--clr-gold);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Nav Links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-direction: row !important;
}

.nav-link {
  position: relative;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fz-sm);
  font-weight: 500;
  color: var(--clr-text-muted);
  border-radius: var(--r-md);
  transition: color var(--tr-fast), background var(--tr-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  inset-inline-start: -10%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  border-radius: var(--r-full);
  transition: width var(--tr-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-text);
  background: var(--glass-bg-hover);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* Mobile Toggle */
.navbar-toggler {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--r-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: background var(--tr-fast), border-color var(--tr-fast);
}

.navbar-toggler:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

.toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: var(--r-full);
  transition: transform var(--tr-normal), opacity var(--tr-normal),
    width var(--tr-normal);
  transform-origin: center;
}

.navbar-toggler.open .toggler-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler.open .toggler-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.navbar-toggler.open .toggler-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  z-index: 999;
  background: rgba(9, 14, 26, 0.97);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);

  /* حالت بسته */
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--tr-normal), opacity var(--tr-normal),
    visibility var(--tr-normal);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu .nav-link {
  font-size: var(--fz-md);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
}

/* ── Hero Section ─────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Animated background mesh */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 80% 60% at 20% 50%,
      rgba(200, 16, 46, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 50%,
      rgba(232, 184, 90, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 100% 100% at 50% 100%,
      rgba(59, 130, 246, 0.06) 0%,
      transparent 50%
    );
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - var(--nav-h));
  align-items: stretch;
}

/* City Panel */
.city-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 600px;
}

.city-panel-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.city-panel:hover .city-panel-img {
  transform: scale(1.04);
}

.city-panel-overlay {
  position: absolute;
  inset: 0;
}

.panel-tehran .city-panel-img {
  background-image: url("../images/tehran.jpg");
}

.panel-tehran .city-panel-overlay {
  background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(200, 16, 46, 0.1) 60%,
      rgba(200, 16, 46, 0.3) 100%
    ),
    linear-gradient(90deg, rgba(9, 14, 26, 0.1) 0%, transparent 100%);
}

.panel-moscow .city-panel-img {
  background-image: url("../images/moscow.jpg");
}

.panel-moscow .city-panel-overlay {
  background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(232, 184, 90, 0.08) 60%,
      rgba(232, 184, 90, 0.22) 100%
    ),
    linear-gradient(270deg, rgba(9, 14, 26, 0.1) 0%, transparent 100%);
}

.city-panel-info {
  position: relative;
  z-index: 2;
  padding: var(--sp-8);
}

.city-flag {
  font-size: 2.5rem;
  margin-bottom: var(--sp-3);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.city-name {
  font-size: clamp(var(--fz-3xl), 5vw, var(--fz-5xl));
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.panel-tehran .city-name {
  color: #fff;
}
.panel-moscow .city-name {
  color: var(--clr-gold-light);
}

.city-label {
  font-size: var(--fz-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Center Bridge */
.hero-bridge {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  pointer-events: none;
}

.hero-badge-center {
  background: rgba(9, 14, 26, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-hover);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  text-align: center;
  box-shadow: var(--glass-shadow), 0 0 40px rgba(200, 16, 46, 0.15);
  pointer-events: auto;
}

.bridge-icon {
  font-size: 2rem;
  margin-bottom: var(--sp-2);
}

.bridge-title {
  font-size: var(--fz-lg);
  font-weight: 800;
  color: var(--clr-text);
  white-space: nowrap;
}

.bridge-sub {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
  margin-top: var(--sp-1);
}

.bridge-route {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fz-sm);
  color: var(--clr-gold);
  font-weight: 600;
  margin-top: var(--sp-3);
}

.bridge-route .arrow-icon {
  animation: arrowPulse 1.8s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(4px);
    opacity: 1;
  }
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.hero-stat {
  background: rgba(9, 14, 26, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-5);
  text-align: center;
  pointer-events: auto;
}

.hero-stat .stat-val {
  font-size: var(--fz-xl);
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1;
}

.hero-stat .stat-lbl {
  font-size: var(--fz-xs);
  color: var(--clr-text-muted);
  margin-top: 2px;
}

/* Hero bottom CTA */
.hero-cta-strip {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  z-index: 4;
  background: linear-gradient(0deg, rgba(9, 14, 26, 0.9) 0%, transparent 100%);
  padding: var(--sp-8) 0 var(--sp-12);
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--clr-text-muted);
  font-size: var(--fz-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBob 2s ease-in-out infinite;
}

@keyframes scrollBob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-full);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: var(--r-full);
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

#trust-bar {
  background: var(--clr-surface);
  border-block: 1px solid var(--clr-border);
  padding-block: var(--sp-6);
  overflow: hidden;
  direction: ltr;
  white-space: nowrap;
}

.trust-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: trustScroll 60s linear infinite;
}

.trust-track:hover {
  animation-play-state: paused;
}

@keyframes trustScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--clr-text-muted);
  font-size: var(--fz-sm);
  font-weight: 600;
  flex-shrink: 0;
  direction: rtl;
}

.trust-item .trust-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clr-text-subtle);
  margin-inline: 12px;
  flex-shrink: 0;
}

/* ── Services Section ─────────────────────────────────────── */
#services {
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-6);
}

.service-card {
  padding: var(--sp-8);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--clr-primary-glow), transparent);
  opacity: 0;
  transition: opacity var(--tr-normal);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
  transition: transform var(--tr-spring);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.icon-red {
  background: rgba(200, 16, 46, 0.15);
  box-shadow: 0 0 20px rgba(200, 16, 46, 0.15);
}
.icon-gold {
  background: rgba(232, 184, 90, 0.12);
  box-shadow: 0 0 20px rgba(232, 184, 90, 0.12);
}
.icon-blue {
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.12);
}
.icon-green {
  background: rgba(34, 197, 94, 0.12);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.12);
}
.icon-purple {
  background: rgba(168, 85, 247, 0.12);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.12);
}
.icon-orange {
  background: rgba(249, 115, 22, 0.12);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.12);
}
.icon-teal {
  background: rgba(20, 184, 166, 0.12);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.12);
}

.service-card h3 {
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-size: var(--fz-sm);
  font-weight: 600;
  color: var(--clr-primary-light);
  position: relative;
  z-index: 1;
  transition: gap var(--tr-fast);
}

.service-card:hover .service-arrow {
  gap: var(--sp-3);
}

/* Express Badge on card */
.service-card .express-tag {
  position: absolute;
  top: var(--sp-4);
  inset-inline-end: var(--sp-4);
  z-index: 2;
}

/* ── Route Visual ─────────────────────────────────────────── */
#route {
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

.route-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}

.route-city {
  text-align: center;
  padding: var(--sp-8);
}

.route-city-flag {
  font-size: 3rem;
  margin-bottom: var(--sp-4);
}
.route-city-name {
  font-size: var(--fz-3xl);
  font-weight: 800;
  margin-bottom: var(--sp-2);
}

.route-city-details {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
}

.route-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  min-width: 200px;
}

.route-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--clr-primary),
    var(--clr-gold),
    var(--clr-primary)
  );
  border-radius: var(--r-full);
  position: relative;
  overflow: visible;
}

.route-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-gold);
  box-shadow: 0 0 8px var(--clr-gold-glow);
  animation: routeDotMove 3s ease-in-out infinite;
}

@keyframes routeDotMove {
  0% {
    inset-inline-start: 0;
  }
  50% {
    inset-inline-start: calc(100% - 10px);
  }
  100% {
    inset-inline-start: 0;
  }
}

.route-options {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  width: 100%;
}

.route-option {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: var(--fz-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr-normal);
}

.route-option:hover,
.route-option.active {
  background: rgba(200, 16, 46, 0.12);
  border-color: rgba(200, 16, 46, 0.3);
  color: var(--clr-primary-light);
}

.route-option .r-icon {
  font-size: 1.2rem;
}

.route-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.route-info-card {
  padding: var(--sp-6);
  text-align: center;
}

.route-info-card .ri-value {
  font-size: var(--fz-3xl);
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.route-info-card .ri-label {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
}

/* ── Price Calculator ─────────────────────────────────────── */
#calculator {
  background: var(--clr-bg-2);
  position: relative;
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.calc-form-card {
  padding: var(--sp-8);
}

.calc-result-card {
  padding: var(--sp-8);
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-6));
}

/* Form Elements */
.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: var(--fz-sm);
  font-weight: 600;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: var(--fz-base);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast),
    background var(--tr-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-control::placeholder {
  color: var(--clr-text-subtle);
}

.form-control:hover {
  border-color: var(--clr-border-hover);
}

.form-control:focus {
  border-color: var(--clr-primary);
  background: rgba(200, 16, 46, 0.05);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
  color: white;
}

.form-control.is-valid {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.form-control.is-invalid {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238898aa' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-inline-start: 2.5rem;
  cursor: pointer;
}

html[dir="rtl"] select.form-control {
  background-position: left 14px center;
  padding-inline-start: 1.25rem;
  padding-inline-end: 2.5rem;
}

select.form-control option {
  background: var(--clr-surface);
  color: var(--clr-text);
}

/* Transport Mode Selector */
.transport-selector {
  display: flex;
  gap: var(--sp-2);
}

.transport-btn {
  flex: 1;
  padding: var(--sp-3);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 2px solid transparent;
  color: var(--clr-text-muted);
  font-family: var(--font-main);
  font-size: var(--fz-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}

.transport-btn .t-icon {
  font-size: 1.5rem;
}

.transport-btn:hover {
  border-color: var(--glass-border-hover);
  color: var(--clr-text);
}

.transport-btn.active {
  border-color: var(--clr-primary);
  background: rgba(200, 16, 46, 0.1);
  color: var(--clr-primary-light);
  box-shadow: 0 0 12px rgba(200, 16, 46, 0.15);
}

/* URL Input with icon */
.input-with-icon {
  position: relative;
}

.input-with-icon .form-control {
  padding-inline-end: 48px;
}

.input-icon {
  position: absolute;
  inset-inline-end: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-subtle);
  font-size: 1.1rem;
  pointer-events: none;
}

/* Result Panel */
.result-empty {
  text-align: center;
  color: var(--clr-text-muted);
  padding: var(--sp-8) 0;
  font-size: var(--fz-sm);
}

.result-empty .empty-icon {
  font-size: 3rem;
  margin-bottom: var(--sp-4);
  opacity: 0.4;
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.price-row .pr-label {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
}
.price-row .pr-value {
  font-size: var(--fz-base);
  font-weight: 700;
  color: var(--clr-text);
}

.price-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.12),
    rgba(232, 184, 90, 0.08)
  );
  border: 1px solid rgba(200, 16, 46, 0.25);
  margin-top: var(--sp-2);
}

.price-total .pt-label {
  font-size: var(--fz-md);
  font-weight: 700;
  color: var(--clr-text);
}
.price-total .pt-value {
  font-size: var(--fz-2xl);
  font-weight: 800;
  color: var(--clr-gold);
}

/* ── Why Us / Features ────────────────────────────────────── */
#why-us {
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

#why-us::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(232, 184, 90, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.why-features-service {
  grid-template-columns: repeat(3, 1fr);
}

.divider-service {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .why-features-service {
    grid-template-columns: repeat(2, 1fr);
  }
  .divider-service {
    grid-template-columns: repeat(1, 1fr);
  }
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.feature-item {
  padding: var(--sp-6);
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all var(--tr-normal);
}

.feature-item:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-3px);
}

.feature-item .fi-icon {
  font-size: 1.8rem;
  margin-bottom: var(--sp-3);
}

.feature-item h4 {
  font-size: var(--fz-base);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.feature-item p {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* Stats Counter Block */
.stats-big-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.stat-big-card {
  padding: var(--sp-6);
  text-align: center;
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.stat-big-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
}

.stat-big-card .sbc-num {
  font-size: var(--fz-4xl);
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-big-card .sbc-suffix {
  font-size: var(--fz-2xl);
  color: var(--clr-primary);
}

.stat-big-card .sbc-label {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
}

/* ── Testimonials ─────────────────────────────────────────── */
#testimonials {
  background: var(--clr-bg-2);
  overflow: hidden;
}

.testimonials-swiper {
  padding-bottom: var(--sp-12) !important;
}

.testimonial-card {
  padding: var(--sp-8);
  height: auto !important;
}

.t-stars {
  color: var(--clr-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-4);
}

.t-text {
  font-size: var(--fz-md);
  color: var(--clr-text);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
  font-style: italic;
  position: relative;
}

.t-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  inset-inline-start: -5px;
  font-size: 4rem;
  color: var(--clr-primary);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.t-author-info .t-name {
  font-weight: 700;
  font-size: var(--fz-base);
}

.t-author-info .t-role {
  font-size: var(--fz-xs);
  color: var(--clr-text-muted);
  margin-top: 2px;
}

/* Swiper custom styles */
.swiper-pagination-bullet {
  background: var(--clr-text-subtle) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  transition: all var(--tr-normal) !important;
}

.swiper-pagination-bullet-active {
  background: var(--clr-primary) !important;
  width: 24px !important;
  border-radius: var(--r-full) !important;
}

.swiper-button-next,
.swiper-button-prev {
  width: 44px !important;
  height: 44px !important;
  background: var(--glass-bg) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 50% !important;
  color: var(--clr-text) !important;
  transition: all var(--tr-normal) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(200, 16, 46, 0.15) !important;
  border-color: rgba(200, 16, 46, 0.3) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 700 !important;
}

/* ── Blog / News ──────────────────────────────────────────── */
#news {
  background: var(--clr-bg);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.news-card {
  overflow: hidden;
}

.news-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  position: relative;
  background: var(--clr-surface-2);
}

.news-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.news-card:hover .news-thumb-img {
  transform: scale(1.06);
}

.news-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(9, 14, 26, 0.7) 100%
  );
}

.news-thumb-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.news-body {
  padding: var(--sp-6);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.news-date {
  font-size: var(--fz-xs);
  color: var(--clr-text-subtle);
  font-weight: 600;
}

.news-card h3 {
  font-size: var(--fz-md);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--sp-3);
  color: var(--clr-text);
  transition: color var(--tr-fast);
}

.news-card:hover h3 {
  color: var(--clr-primary-light);
}

.news-card p {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read-more {
  font-size: var(--fz-sm);
  font-weight: 700;
  color: var(--clr-primary-light);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  transition: gap var(--tr-fast), color var(--tr-fast);
}

.news-card:hover .news-read-more {
  gap: var(--sp-2);
}

/* ── Contact Section ──────────────────────────────────────── */
#contact {
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-10);
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-block: var(--sp-8);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all var(--tr-normal);
}

.contact-info-item:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

.ci-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(200, 16, 46, 0.12);
  box-shadow: 0 0 12px rgba(200, 16, 46, 0.15);
}

.ci-label {
  font-size: var(--fz-xs);
  color: var(--clr-text-subtle);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ci-value {
  font-size: var(--fz-base);
  color: var(--clr-text);
  font-weight: 600;
  margin-top: 2px;
}

.contact-social {
  display: flex;
  gap: var(--sp-3);
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: all var(--tr-normal);
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(200, 16, 46, 0.12);
  border-color: rgba(200, 16, 46, 0.3);
  color: var(--clr-primary-light);
  transform: translateY(-3px);
}

.contact-form-card {
  padding: var(--sp-8);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  resize: none;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--clr-primary);
  cursor: pointer;
  margin-top: 2px;
}

/* ── FAQ Accordion ────────────────────────────────────────── */
#faq {
  background: var(--clr-bg);
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: border-color var(--tr-normal);
}

.faq-item.open {
  border-color: rgba(200, 16, 46, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  user-select: none;
  gap: var(--sp-4);
}

.faq-question h4 {
  font-size: var(--fz-md);
  font-weight: 600;
  color: var(--clr-text);
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: 1.2rem;
  transition: transform var(--tr-normal), background var(--tr-normal),
    color var(--tr-normal);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(200, 16, 46, 0.15);
  color: var(--clr-primary-light);
  border-color: rgba(200, 16, 46, 0.3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-slow);
}

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-4);
}

/* ── CTA Banner ───────────────────────────────────────────── */
#cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0812 0%, #1a0c1a 50%, #0d0812 100%);
}

#cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    rgba(200, 16, 46, 0.18) 0%,
    transparent 70%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: var(--sp-20);
}

.cta-content h2 {
  font-size: clamp(var(--fz-2xl), 4vw, var(--fz-4xl));
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.cta-content p {
  font-size: var(--fz-md);
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.cta-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.cta-particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100%) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

/* ── Footer ───────────────────────────────────────────────── */
#footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer-brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  width: 50px;
}

.footer-logo .brand-icon {
  width: 40px;
  height: 40px;
}

.footer-desc {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
  max-width: 280px;
}

.footer-col h5 {
  font-size: var(--fz-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-gold);
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-link {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
  transition: color var(--tr-fast), padding-inline-start var(--tr-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer-link:hover {
  color: var(--clr-text);
  padding-inline-start: var(--sp-2);
}

.footer-link::before {
  content: "›";
  color: var(--clr-primary);
  font-size: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
}

.footer-contact-item .fc-icon {
  color: var(--clr-primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-block: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: var(--fz-sm);
  color: var(--clr-text-subtle);
}

.footer-bottom-links {
  display: flex;
  gap: var(--sp-5);
}

.footer-bottom-links a {
  font-size: var(--fz-sm);
  color: var(--clr-text-subtle);
  transition: color var(--tr-fast);
}

.footer-bottom-links a:hover {
  color: var(--clr-text);
}

/* ── Back to Top ──────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  inset-inline-end: var(--sp-8);
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), #a50e26);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--clr-primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-normal);
}

#back-to-top.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--clr-primary-glow);
}

/* ── WhatsApp Float ───────────────────────────────────────── */
#whatsapp-float {
  position: fixed;
  bottom: var(--sp-8);
  inset-inline-start: var(--sp-8);
  z-index: 900;
}
#whatsapp-float img {
  width: 30px;
}

.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--tr-spring), box-shadow var(--tr-normal);
  animation: waPulse 3s ease-in-out infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
      0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* ── Page Header (Inner Pages) ────────────────────────────── */
.page-header {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + var(--sp-16));
  padding-bottom: var(--sp-16);
  background: var(--clr-bg-2);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 100%,
    rgba(200, 16, 46, 0.1) 0%,
    transparent 70%
  );
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(var(--fz-2xl), 5vw, var(--fz-5xl));
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}

.page-header p {
  font-size: var(--fz-md);
  color: var(--clr-text-muted);
  max-width: 600px;
  margin-inline: auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-5);
}

.breadcrumb a {
  color: var(--clr-text-muted);
  transition: color var(--tr-fast);
}

.breadcrumb a:hover {
  color: var(--clr-primary-light);
}
.breadcrumb .bc-sep {
  color: var(--clr-text-subtle);
}
.breadcrumb .bc-current {
  color: var(--clr-gold);
}

/* ── About Page ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.about-img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-4);
  position: relative;
}

.mosaic-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--clr-surface-2);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--clr-text-subtle);
  border: 1px solid var(--clr-border);
}

.mosaic-img.tall {
  grid-row: span 2;
  aspect-ratio: 2/3;
}

.mosaic-badge-over {
  position: absolute;
  bottom: var(--sp-4);
  inset-inline-start: var(--sp-4);
  background: linear-gradient(135deg, var(--clr-primary), #a50e26);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-lg);
  font-weight: 700;
  font-size: var(--fz-sm);
  box-shadow: 0 4px 16px var(--clr-primary-glow);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-6);
}

.team-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-5);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.25);
}

.team-name {
  font-size: var(--fz-md);
  font-weight: 700;
  margin-bottom: var(--sp-1);
}

.team-role {
  font-size: var(--fz-sm);
  color: var(--clr-gold);
  font-weight: 500;
}

/* ── Shop / Products Page ─────────────────────────────────── */
.shop-filters {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
  padding: var(--sp-4);
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.filter-chip {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--clr-text-muted);
  font-family: var(--font-main);
  font-size: var(--fz-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr-normal);
  white-space: nowrap;
}

.filter-chip:hover,
.filter-chip.active {
  background: rgba(200, 16, 46, 0.12);
  border-color: rgba(200, 16, 46, 0.35);
  color: var(--clr-primary-light);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-6);
}

.product-card {
  overflow: hidden;
  cursor: pointer;
}

.product-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--clr-surface-2);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.product-badge {
  position: absolute;
  top: var(--sp-3);
  inset-inline-start: var(--sp-3);
}

.product-body {
  padding: var(--sp-5);
}

.product-name {
  font-size: var(--fz-base);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--clr-text);
}

.product-desc {
  font-size: var(--fz-xs);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
}

.product-price {
  font-size: var(--fz-lg);
  font-weight: 800;
  color: var(--clr-gold);
}

.product-price .price-unit {
  font-size: var(--fz-xs);
  font-weight: 500;
  color: var(--clr-text-muted);
}

/* ── Blog Page ────────────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-10);
  align-items: start;
}

.blog-main-grid {
  display: grid;
  gap: var(--sp-6);
}

.blog-card-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  overflow: hidden;
}

.blog-card-featured .news-thumb {
  border-radius: 0;
  height: 100%;
  min-height: 260px;
}

.blog-card-featured .news-body {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-6));
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.sidebar-card {
  padding: var(--sp-6);
}

.sidebar-card h4 {
  font-size: var(--fz-base);
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
}

.sidebar-search {
  position: relative;
}

.sidebar-search input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  padding-inline-end: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: var(--fz-sm);
  outline: none;
  transition: border-color var(--tr-fast);
}

.sidebar-search input:focus {
  border-color: var(--clr-primary);
}
.sidebar-search input::placeholder {
  color: var(--clr-text-subtle);
}

.sidebar-search-btn {
  position: absolute;
  inset-inline-end: 4px;
  top: 4px;
  bottom: 4px;
  width: 40px;
  border-radius: var(--r-full);
  background: var(--clr-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background var(--tr-fast);
}

.sidebar-search-btn:hover {
  background: var(--clr-primary-light);
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
  transition: all var(--tr-normal);
}

.category-item:hover {
  background: rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.2);
  color: var(--clr-text);
}

.category-count {
  font-size: var(--fz-xs);
  font-weight: 700;
  color: var(--clr-text-subtle);
  background: var(--glass-bg);
  padding: 2px 8px;
  border-radius: var(--r-full);
}

/* ── Animation Classes ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
  display: block !important;
}
.stagger-children.visible > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}
.stagger-children.visible > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.19s;
}
.stagger-children.visible > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.26s;
}
.stagger-children.visible > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.33s;
}
.stagger-children.visible > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}
.stagger-children.visible > *:nth-child(7) {
  opacity: 1;
  transform: none;
  transition-delay: 0.47s;
}
.stagger-children.visible > *:nth-child(8) {
  opacity: 1;
  transform: none;
  transition-delay: 0.54s;
}

/* ── Notification Toast ───────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: var(--sp-8);
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-full);
  font-size: var(--fz-sm);
  font-weight: 600;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid;
  box-shadow: var(--glass-shadow);
  animation: toastIn 0.4s var(--tr-spring), toastOut 0.4s ease 3s forwards;
  pointer-events: auto;
  white-space: nowrap;
}

.toast-success {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.toast-error {
  background: rgba(200, 16, 46, 0.15);
  border-color: rgba(200, 16, 46, 0.3);
  color: var(--clr-primary-light);
}

.toast-info {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
  }
}

/* ── Responsive – Tablet 1024px ──────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --nav-h: 64px;
  }

  .container {
    padding-inline: var(--sp-5);
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-badge-center {
    padding: var(--sp-4) var(--sp-5);
  }

  .bridge-title {
    font-size: var(--fz-base);
  }

  .hero-stats-row {
    gap: var(--sp-2);
  }

  .hero-stat {
    padding: var(--sp-2) var(--sp-4);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .stats-big-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .calc-wrapper {
    grid-template-columns: 1fr;
  }

  .calc-result-card {
    position: static;
  }

  .route-visual {
    grid-template-columns: 1fr auto 1fr;
    gap: var(--sp-4);
  }

  .route-info-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-featured {
    grid-template-columns: 1fr;
  }

  .blog-card-featured .news-thumb {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    min-height: 200px;
  }
}

/* ── Responsive – Mobile 768px ───────────────────────────── */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  /* Nav */
  .navbar-nav {
    display: none;
  }
  .navbar-actions .btn {
    display: none;
  }
  .navbar-toggler {
    display: flex;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh 50vh;
    min-height: unset;
  }

  .hero-bridge {
    display: none;
  }

  .city-panel {
    min-height: unset;
  }

  .city-panel-info {
    padding: var(--sp-5);
  }

  .city-name {
    font-size: var(--fz-3xl) !important;
  }

  .hero-cta-strip {
    position: static;
    background: var(--clr-bg);
    padding: var(--sp-6);
    gap: var(--sp-3);
  }

  .scroll-indicator {
    display: none;
  }

  /* Sections */
  .section-pad {
    padding-block: var(--sp-16);
  }
  .section-pad-sm {
    padding-block: var(--sp-10);
  }

  .section-heading h2 {
    font-size: var(--fz-2xl);
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Route */
  .route-visual {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    text-align: center;
  }

  .route-connector {
    flex-direction: row;
    min-width: unset;
    width: 100%;
  }

  .route-line {
    flex: 1;
  }
  .route-options {
    flex-direction: row;
  }

  .route-info-cards {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  /* Calculator */
  .transport-selector {
    flex-wrap: wrap;
  }

  .transport-btn {
    min-width: calc(50% - var(--sp-1));
    flex: unset;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats-big-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why features */
  .why-features {
    grid-template-columns: 1fr;
  }

  /* News */
  .news-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-question h4 {
    font-size: var(--fz-base);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* CTA */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Back to top / WA */
  #back-to-top {
    bottom: var(--sp-5);
    inset-inline-end: var(--sp-5);
  }
  #whatsapp-float {
    bottom: var(--sp-5);
    inset-inline-start: var(--sp-5);
    width: 20px;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Shop */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-block: var(--sp-3);
  }

  /* Trust bar */
  .trust-item {
    font-size: var(--fz-xs);
  }
}

/* ── Responsive – Small Mobile 480px ────────────────────── */
@media (max-width: 480px) {
  .container {
    padding-inline: var(--sp-4);
  }

  body.light-mode .navbar-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    inset-inline-start: -3%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    border-radius: var(--r-full);
    transition: width var(--tr-normal);
  }
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 44px;
  }

  .hero-inner {
    grid-template-rows: 45vh 45vh;
  }
  .city-name {
    font-size: var(--fz-2xl) !important;
  }

  .section-heading h2 {
    font-size: var(--fz-xl);
  }

  .stats-big-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-big-card .sbc-num {
    font-size: var(--fz-2xl);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .route-options {
    flex-direction: column;
  }

  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: var(--fz-base);
  }

  .contact-social {
    flex-wrap: wrap;
  }

  .hero-cta-strip {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-strip .btn {
    text-align: center;
    justify-content: center;
  }
}

/* ── Print Media ──────────────────────────────────────────── */
@media print {
  #navbar,
  #footer,
  #back-to-top,
  #whatsapp-float,
  #page-loader {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .glass-card {
    border: 1px solid #ccc;
    background: #fff;
  }
}
.plan-select-wrapper .btn {
  width: 210px !important;
}
.whatsapp {
  width: 50px;
}
.icon-social-media {
  width: 20px;
}

.glass-card-shop {
  margin-top: 300px;
}
.face_image {
  border-radius: 30px !important;
}

/* =========================================
   LIGHT MODE STYLES
========================================= */
#theme-toggle {
  background: transparent;
  border: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

#theme-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

body.light-mode {
  --clr-bg: #f4f6f9;
  --clr-bg-2: #ffffff;
  --clr-text: #2c3e50;
  --clr-text-muted: #6c757d;
  --clr-border: #dee2e6;

  background-color: var(--clr-bg);
  color: var(--clr-text);
}

body.light-mode section {
  background-color: transparent;
}

body.light-mode #contact {
  background-color: #e9ecef !important;
}

body.light-mode .glass-card,
body.light-mode .navbar-inner,
body.light-mode .mobile-menu {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  color: var(--clr-text);
  max-width: 100% !important;
}
body.light-mode .navbar-inner {
  padding-right: 150px;
  padding-left: 150px;
}

body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode .stat-val,
body.light-mode .ci-value,
body.light-mode .route-city-name {
  color: #1a252f !important;
}

body.light-mode .form-control {
  background-color: #ffffff;
  color: #2c3e50;
  border: 1px solid #ced4da;
}

body.light-mode .form-control:focus {
  background-color: #fff;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

body.light-mode #theme-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* ── Search Bar ── */
.blog-search-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}
.blog-search-input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 3.25rem;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  color: var(--clr-text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  direction: rtl;
}
.blog-search-input::placeholder {
  color: var(--clr-text-muted);
}
.blog-search-input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}
.blog-search-icon {
  position: absolute;
  left: 2rem;
  top: 35%;
  transform: translateY(-50%);
  color: var(--clr-text-muted);
  pointer-events: none;
  font-size: 1.2rem;
}

/* ── Category Chips ── */
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.blog-cat-chip {
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--clr-border);
  background: transparent;
  color: var(--clr-text-muted);
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.blog-cat-chip:hover,
.blog-cat-chip.active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}

/* ── Featured Article (Hero Card) ── */
.featured-article {
  border-radius: 20px;
  overflow: hidden;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.featured-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .featured-article {
    grid-template-columns: 1fr;
  }
}
.featured-img {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.featured-article:hover .featured-img img {
  transform: scale(1.04);
}
.featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.25) 0%,
    transparent 60%
  );
}
.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--clr-primary);
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.featured-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  flex-wrap: wrap;
}
.featured-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.featured-cat-tag {
  background: rgba(200, 16, 46, 0.12);
  color: var(--clr-primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.featured-body h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.4;
  margin: 0;
  color: var(--clr-text);
}
.featured-body h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.featured-body h2 a:hover {
  color: var(--clr-primary-light);
}
.featured-excerpt {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin: 0;
}
.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-border);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.author-mini {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary) 0%, #ff4d6d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-info {
  font-size: 0.78rem;
}
.author-name {
  font-weight: 600;
  color: var(--clr-text);
}
.author-role {
  color: var(--clr-text-muted);
}

/* ── Blog Grid Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  border-color: rgba(200, 16, 46, 0.25);
}
.blog-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}
.blog-card-cat {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(10, 10, 20, 0.82);
  backdrop-filter: blur(8px);
  color: var(--clr-gold);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
  border: 1px solid rgba(232, 184, 90, 0.25);
}
.blog-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  flex-wrap: wrap;
}
.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.blog-card-meta .material-icons {
  font-size: 0.9rem;
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--clr-text);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.blog-card-title:hover {
  color: var(--clr-primary-light);
}
.blog-card-excerpt {
  font-size: 0.845rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
}
.read-more-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-primary-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
}
.read-more-link:hover {
  gap: 0.5rem;
}
.read-more-link .material-icons {
  font-size: 1rem;
}
.blog-card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.tag-pill {
  font-size: 0.7rem;
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
}

/* ── Sidebar ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    order: -1;
  }
}
.sidebar-widget {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-widget-title .material-icons {
  font-size: 1.1rem;
  color: var(--clr-primary);
}

/* Popular Posts */
.popular-post-item {
  display: flex;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--clr-border);
  text-decoration: none;
  transition: transform 0.2s;
}
.popular-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.popular-post-item:hover {
  transform: translateX(-3px);
}
.popular-post-thumb {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.popular-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-post-info {
  flex: 1;
}
.popular-post-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.3rem;
  transition: color 0.2s;
}
.popular-post-item:hover .popular-post-title {
  color: var(--clr-primary-light);
}
.popular-post-date {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.popular-post-date .material-icons {
  font-size: 0.85rem;
}

/* Tags Cloud */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-cloud-item {
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.tag-cloud-item:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.12) 0%,
    rgba(232, 184, 90, 0.06) 100%
  );
  border: 1px solid rgba(200, 16, 46, 0.25);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.newsletter-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.newsletter-widget h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--clr-text);
}
.newsletter-widget p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.newsletter-input-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.newsletter-input {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  color: var(--clr-text);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  direction: rtl;
  transition: border-color 0.2s;
}
.newsletter-input:focus {
  border-color: var(--clr-primary);
}
.newsletter-input::placeholder {
  color: var(--clr-text-muted);
}

/* Ruble Rate Widget */
.rate-widget {
  background: linear-gradient(
    135deg,
    rgba(232, 184, 90, 0.08) 0%,
    rgba(10, 10, 20, 0) 100%
  );
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.85rem;
}
.rate-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.rate-label {
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.rate-value {
  font-weight: 700;
  color: var(--clr-gold);
}
.rate-change-up {
  color: #22c55e;
  font-size: 0.75rem;
}
.rate-change-down {
  color: #ef4444;
  font-size: 0.75rem;
}
.rate-updated {
  font-size: 0.72rem;
  color: var(--clr-text-subtle);
  text-align: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--clr-border);
}

/* ── Pagination ── */
.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg-2);
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.page-btn:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary-light);
}
.page-btn.active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
  font-weight: 700;
}
.page-btn.page-dots {
  border: none;
  background: none;
  cursor: default;
  color: var(--clr-text-muted);
}
.page-btn.page-dots:hover {
  color: var(--clr-text-muted);
}

/* ── Stats Strip ── */
.blog-stats-strip {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-stat-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.blog-stat-item strong {
  color: var(--clr-gold);
}

/* ── Skeleton loaders (UX) ── */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ── Reading Progress Bar ── */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
  transform-origin: right;
  transform: scaleX(0);
  z-index: 9999;
  transition: transform 0.1s linear;
}

/* ── Highlight Banner ── */
.highlight-banner {
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.08),
    rgba(232, 184, 90, 0.06)
  );
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.highlight-banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.highlight-banner-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.25rem;
}
.highlight-banner-text p {
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  margin: 0;
}
.highlight-banner-cta {
  margin-right: auto;
}

/* ── No results ── */
.no-results {
  text-align: center;
  padding: 4rem 1rem;
  display: none;
}
.no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.no-results h3 {
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}
.no-results p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

/* ── Trending Badge ── */
.trending-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}
.trending-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* ── Mobile reading bar ── */
@media (max-width: 576px) {
  .featured-body {
    padding: 1.5rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ── About Page Extras ─────────────────────────── */

/* Floating route line in hero */
.about-hero-route {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.about-hero-route .route-dot-sm {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-primary);
  flex-shrink: 0;
}
.about-hero-route .route-line-sm {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
  position: relative;
}
.about-hero-route .route-dot-sm.gold {
  background: var(--clr-gold);
}

/* Mission / Vision / Values card */
.mv-card {
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--tr-normal);
}
.mv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
  transform: scaleX(0);
  transition: transform var(--tr-normal);
  transform-origin: center;
}
.mv-card:hover {
  transform: translateY(-5px);
}
.mv-card:hover::after {
  transform: scaleX(1);
}
.mv-card .mv-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.mv-card h3 {
  font-size: var(--fz-lg);
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.mv-card p {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* Timeline */
.timeline {
  position: relative;
  padding-inline-start: 3rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  inset-inline-start: 15px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--clr-primary),
    var(--clr-gold),
    transparent
  );
}
.timeline-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}
.tl-marker {
  position: absolute;
  inset-inline-start: calc(-3rem + 7px);
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--clr-primary);
  border: 3px solid var(--clr-bg);
  box-shadow: 0 0 0 2px var(--clr-primary);
  z-index: 1;
  flex-shrink: 0;
}
.tl-marker.gold {
  background: var(--clr-gold);
  box-shadow: 0 0 0 2px var(--clr-gold);
}
.tl-year {
  font-size: var(--fz-xl);
  font-weight: 800;
  color: var(--clr-gold);
  min-width: 55px;
  line-height: 1.2;
}
.tl-body h4 {
  font-size: var(--fz-md);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.4rem;
}
.tl-body p {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Team card */
.team-card {
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--tr-normal);
}
.team-card:hover {
  transform: translateY(-5px);
}
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  position: relative;
}
.team-avatar::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-gold));
  z-index: -1;
}
.team-avatar-inner {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.team-name {
  font-size: var(--fz-md);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: var(--fz-sm);
  color: var(--clr-gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.team-bio {
  font-size: var(--fz-xs);
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.team-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--tr-fast);
}
.team-social-btn:hover {
  background: rgba(200, 16, 46, 0.12);
  border-color: rgba(200, 16, 46, 0.3);
  color: var(--clr-primary-light);
}

/* Partner logo */
.partner-logo {
  aspect-ratio: 2/1;
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  filter: grayscale(1) opacity(0.45);
  transition: filter var(--tr-normal);
  cursor: pointer;
}
.partner-logo:hover {
  filter: grayscale(0) opacity(1);
}
.partner-logo span {
  font-size: var(--fz-sm);
  font-weight: 700;
  color: var(--clr-text-muted);
  text-align: center;
}

/* Value proposition item */
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all var(--tr-normal);
}
.value-item:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateX(-4px);
}
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.value-item h4 {
  font-size: var(--fz-base);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.value-item p {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Certificate card */
.cert-card {
  padding: 1.5rem;
  text-align: center;
  transition: all var(--tr-normal);
}
.cert-card:hover {
  transform: translateY(-4px);
}
.cert-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.cert-card h4 {
  font-size: var(--fz-sm);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.cert-card p {
  font-size: var(--fz-xs);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Counter section */
.counter-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.counter-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--r-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.counter-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
}
.counter-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.counter-num sup {
  font-size: 1.4rem;
}
.counter-label {
  font-size: var(--fz-sm);
  color: var(--clr-text-muted);
}

/* Swiper testimonial on about page */
.about-testimonial-swiper .swiper-slide {
  height: auto !important;
}

@media (max-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1fr !important;
  }
  .counter-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .counter-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .team-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .mv-grid-3 {
    grid-template-columns: 1fr !important;
  }
  .cert-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .partner-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .timeline {
    padding-inline-start: 2rem;
  }
}
@media (max-width: 480px) {
  .counter-wrap {
    grid-template-columns: 1fr 1fr !important;
  }
  .team-grid-4 {
    grid-template-columns: 1fr !important;
  }
}

/* ── Reading Progress ── */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
  transform-origin: right;
  transform: scaleX(0);
  z-index: 9999;
  transition: transform 0.1s linear;
}

/* ══════════════════════════════════════════
         ARTICLE HERO
      ══════════════════════════════════════════ */
.article-hero {
  margin-top: 75px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.article-hero-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a0a0e 0%,
    #3d0a16 35%,
    #6b1020 60%,
    rgba(200, 16, 46, 0.1) 100%
  );
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  mix-blend-mode: luminosity;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--clr-bg) 0%,
    rgba(10, 10, 20, 0.6) 50%,
    rgba(10, 10, 20, 0.2) 100%
  );
}
/* Decorative orbs */
.hero-orb-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 184, 90, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.article-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 2.5rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.25rem;
  list-style: none;
}
.breadcrumb a {
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--clr-primary-light);
}
.bc-sep {
  color: var(--clr-text-subtle);
  font-size: 0.7rem;
}
.bc-current {
  color: var(--clr-text);
}
.article-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(200, 16, 46, 0.15);
  color: var(--clr-primary-light);
  border: 1px solid rgba(200, 16, 46, 0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.article-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
  max-width: 780px;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.article-hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.article-hero-meta .material-icons {
  font-size: 0.95rem;
}
.trending-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}
.trending-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.article-author-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
}
.author-avatar-lg {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), #ff4d6d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info-lg .author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-text);
}
.author-info-lg .author-role {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
}

/* ── Sticky Article Actions ── */
.article-actions-sticky {
  position: sticky;
  top: 65px;
  z-index: 100;
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  padding: 0.75rem 0;
}
.article-actions-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.article-progress-info {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-actions-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.action-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.action-btn .material-icons {
  font-size: 1rem;
}
.action-btn:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary-light);
}
.action-btn.liked {
  background: rgba(200, 16, 46, 0.12);
  border-color: rgba(200, 16, 46, 0.3);
  color: var(--clr-primary-light);
}
.action-btn.bookmarked {
  background: rgba(232, 184, 90, 0.1);
  border-color: rgba(232, 184, 90, 0.3);
  color: var(--clr-gold);
}

/* ══════════════════════════════════════════
         MAIN LAYOUT: ARTICLE + SIDEBAR
      ══════════════════════════════════════════ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0 4rem;
}
@media (max-width: 992px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    order: -1;
  }
}

/* ── Article Content ── */
.article-content {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.article-content-inner {
  padding: 2.5rem 2.25rem;
}
@media (max-width: 576px) {
  .article-content-inner {
    padding: 1.5rem 1.25rem;
  }
}

/* Typography */
.article-content-inner h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-text);
  margin: 2rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(200, 16, 46, 0.25);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-content-inner h2:first-child {
  margin-top: 0;
}
.article-content-inner h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 1.5rem 0 0.75rem;
}
.article-content-inner p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #c8c8e0;
  margin-bottom: 1.1rem;
}
.article-content-inner ul,
.article-content-inner ol {
  padding-right: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-content-inner li {
  font-size: 0.93rem;
  line-height: 1.75;
  color: #c8c8e0;
  margin-bottom: 0.5rem;
}
.article-content-inner a {
  color: var(--clr-primary-light);
}
.article-content-inner strong {
  color: var(--clr-text);
}

/* Lead paragraph */
.article-lead {
  font-size: 1.05rem !important;
  color: #d8d8f0 !important;
  line-height: 1.9 !important;
  border-right: 3px solid var(--clr-primary);
  padding-right: 1.1rem;
  margin-bottom: 1.75rem !important;
}

/* Info Box */
.info-box {
  background: rgba(232, 184, 90, 0.06);
  border: 1px solid rgba(232, 184, 90, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  margin: 1.75rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-box-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.info-box-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 0.4rem;
}
.info-box-content p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Warning Box */
.warning-box {
  background: rgba(200, 16, 46, 0.06);
  border: 1px solid rgba(200, 16, 46, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  margin: 1.75rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.warning-box-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.warning-box p {
  font-size: 0.85rem;
  color: #ffaaaa;
  margin: 0;
  line-height: 1.6;
}

/* Data Table */
.data-table-wrap {
  overflow-x: auto;
  margin: 1.75rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.data-table thead {
  background: rgba(200, 16, 46, 0.1);
}
.data-table th {
  padding: 0.85rem 1rem;
  text-align: right;
  font-weight: 700;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
  white-space: nowrap;
}
.data-table td {
  padding: 0.75rem 1rem;
  text-align: right;
  color: var(--clr-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.data-table tbody tr:last-child td {
  border-bottom: none;
}
.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.data-table .val-up {
  color: #22c55e;
  font-weight: 700;
}
.data-table .val-down {
  color: #ef4444;
  font-weight: 700;
}
.data-table .val-gold {
  color: var(--clr-gold);
  font-weight: 700;
}

/* Steps */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.step-item:hover {
  border-color: rgba(200, 16, 46, 0.25);
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.step-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.25rem;
}
.step-content p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Pull Quote */
.pull-quote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-right: 4px solid var(--clr-gold);
  background: rgba(232, 184, 90, 0.04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pull-quote p {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--clr-text) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-style: italic;
}
.pull-quote cite {
  display: block;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 0.6rem;
  font-style: normal;
}

/* Image in article */
.article-img-wrap {
  margin: 1.75rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.article-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.article-img-caption {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  text-align: center;
  padding: 0.65rem 1rem;
  background: var(--clr-bg-3);
  border-top: 1px solid var(--clr-border);
}

/* Divider */
.article-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 2rem 0;
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.tag-pill {
  font-size: 0.77rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: all var(--transition);
}
.tag-pill:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}

/* Share section */
.share-section {
  background: var(--clr-bg-3);
  border-top: 1px solid var(--clr-border);
  padding: 1.5rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.share-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text);
}
.share-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--clr-border);
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  background: var(--clr-bg-2);
  color: var(--clr-text-muted);
}
.share-btn:hover {
  transform: translateY(-2px);
}
.share-btn.telegram:hover {
  background: rgba(41, 182, 246, 0.12);
  border-color: rgba(41, 182, 246, 0.4);
  color: #29b6f6;
}
.share-btn.whatsapp:hover {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
  color: #22c55e;
}
.share-btn.twitter:hover {
  background: rgba(29, 161, 242, 0.12);
  border-color: rgba(29, 161, 242, 0.4);
  color: #1da1f2;
}
.share-btn.copy:hover {
  background: rgba(232, 184, 90, 0.12);
  border-color: rgba(232, 184, 90, 0.3);
  color: var(--clr-gold);
}

/* Author Box */
.author-box {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-top: 2rem;
}
.author-box-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--clr-primary), #ff4d6d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
}
.author-box-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-box-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 0.15rem;
}
.author-box-role {
  font-size: 0.78rem;
  color: var(--clr-primary-light);
  font-weight: 600;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.2);
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  margin-bottom: 0.65rem;
}
.author-box-bio {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin: 0;
}
.author-box-social {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.author-social-link {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all var(--transition);
}
.author-social-link:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}

/* Comments */
.comments-section {
  margin-top: 2rem;
}
.comments-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--clr-border);
}
.comments-count {
  background: var(--clr-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
}
.comment-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.comment-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.15rem;
}
.comment-date {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
}
.comment-text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin: 0;
}
.comment-reply-btn {
  background: none;
  border: none;
  font-size: 0.75rem;
  color: var(--clr-primary-light);
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition);
}
.comment-reply-btn:hover {
  gap: 0.4rem;
}

/* Comment Form */
.comment-form {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 1.5rem;
}
.comment-form-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.form-input,
.form-textarea {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  direction: rtl;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: none !important;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-text-subtle);
  resize: none;
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Related Articles */
.related-section {
  margin-top: 3rem;
}
.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--clr-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-heading h2 {
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}
.divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
  border-radius: 2px;
  margin: 0 auto;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.related-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  border-color: rgba(200, 16, 46, 0.25);
}
.related-card-img {
  height: 170px;
  overflow: hidden;
  position: relative;
}
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.related-card:hover .related-card-img img {
  transform: scale(1.06);
}
.related-card-cat {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  background: rgba(10, 10, 20, 0.82);
  backdrop-filter: blur(8px);
  color: var(--clr-gold);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(232, 184, 90, 0.25);
}
.related-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}
.related-card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  flex-wrap: wrap;
}
.related-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.related-card-meta .material-icons {
  font-size: 0.85rem;
}
.related-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text);
  text-decoration: none;
  display: block;
  line-height: 1.45;
  transition: color var(--transition);
}
.related-card-title:hover {
  color: var(--clr-primary-light);
}
.related-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
}
.read-more-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-primary-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition);
}
.read-more-link:hover {
  gap: 0.45rem;
}
.read-more-link .material-icons {
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════
         SIDEBAR
      ══════════════════════════════════════════ */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar-widget {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}
.sidebar-widget-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.sidebar-widget-title .material-icons {
  font-size: 1.05rem;
  color: var(--clr-primary);
}

/* TOC */
.toc-list {
  list-style: none;
  padding: 0;
}
.toc-item {
  padding: 0;
}
.toc-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: all var(--transition);
  border-right: 2px solid transparent;
}
.toc-link:hover,
.toc-link.active {
  color: var(--clr-text);
  background: rgba(200, 16, 46, 0.06);
  border-right-color: var(--clr-primary);
}
.toc-link .material-icons {
  font-size: 0.85rem;
  color: var(--clr-primary);
  flex-shrink: 0;
}

/* Rate Widget */
.rate-widget {
  background: linear-gradient(
    135deg,
    rgba(232, 184, 90, 0.06) 0%,
    rgba(10, 10, 20, 0) 100%
  );
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.84rem;
}
.rate-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.rate-label {
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.rate-value {
  font-weight: 700;
  color: var(--clr-gold);
}
.rate-change-up {
  color: #22c55e;
  font-size: 0.72rem;
}
.rate-change-down {
  color: #ef4444;
  font-size: 0.72rem;
}
.rate-updated {
  font-size: 0.7rem;
  color: var(--clr-text-subtle);
  text-align: center;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--clr-border);
}

/* Popular Posts */
.popular-post-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--clr-border);
  text-decoration: none;
  transition: transform var(--transition);
}
.popular-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.popular-post-item:hover {
  transform: translateX(-3px);
}
.popular-post-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.popular-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-post-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.25rem;
  transition: color var(--transition);
}
.popular-post-item:hover .popular-post-title {
  color: var(--clr-primary-light);
}
.popular-post-date {
  font-size: 0.68rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.popular-post-date .material-icons {
  font-size: 0.8rem;
}

/* Newsletter */
.newsletter-widget {
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.1) 0%,
    rgba(232, 184, 90, 0.05) 100%
  );
  border: 1px solid rgba(200, 16, 46, 0.22);
  text-align: center;
}
.newsletter-icon {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}
.newsletter-widget h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 0.4rem;
}
.newsletter-widget p {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.newsletter-input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-family: inherit;
  outline: none;
  direction: rtl;
  margin-bottom: 0.5rem;
  transition: border-color var(--transition);
}
.newsletter-input:focus {
  border-color: var(--clr-primary);
}
.newsletter-input::placeholder {
  color: var(--clr-text-subtle);
}

/* Tags Cloud */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.tag-cloud-item {
  padding: 0.28rem 0.75rem;
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  font-size: 0.76rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}
.tag-cloud-item:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #9b0d22 100%);
  border: none;
  text-align: center;
}
.cta-widget-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
.cta-widget h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}
.cta-widget p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.btn-white {
  background: #fff;
  color: var(--clr-primary);
  font-weight: 700;
  width: 100%;
  justify-content: center;
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ── Contact Page Extras ────────────────────────── */

/* Animated gradient border on form card */
.contact-form-glow {
  position: relative;
  border-radius: var(--r-2xl);
}
.contact-form-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.5),
    rgba(232, 184, 90, 0.3),
    rgba(59, 130, 246, 0.3),
    rgba(200, 16, 46, 0.5)
  );
  background-size: 300% 300%;
  animation: gradBorder 6s ease infinite;
  z-index: -1;
  filter: blur(2px);
}
@keyframes gradBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Office card hover */
.office-card {
  transition: transform var(--tr-normal), box-shadow var(--tr-normal);
}
.office-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow), 0 0 0 1px rgba(200, 16, 46, 0.25);
}

/* Channel card */
.channel-card {
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  border-radius: var(--r-xl);
  transition: all var(--tr-normal);
}
.channel-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
}
.channel-card .ch-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.channel-card .ch-name {
  font-size: var(--fz-sm);
  font-weight: 700;
  color: var(--clr-text);
}
.channel-card .ch-value {
  font-size: var(--fz-xs);
  color: var(--clr-text-muted);
}
.channel-card .ch-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: var(--r-full);
}

/* Map placeholder */
.map-container {
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface-2);
  position: relative;
}
.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  background: linear-gradient(135deg, var(--clr-surface), var(--clr-surface-2));
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin {
  font-size: 3rem;
  animation: pinBounce 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes pinBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Hours row today highlight */
.hours-row.today {
  background: rgba(232, 184, 90, 0.06);
  border-radius: var(--r-md);
  padding-inline: 0.75rem;
}

/* Field error */
.form-control.is-invalid {
  border-color: var(--clr-primary) !important;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12) !important;
}
.form-control.is-valid {
  border-color: #22c55e !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1) !important;
}
.field-error-msg {
  font-size: 0.75rem;
  color: var(--clr-primary-light);
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Success banner */
.form-success-banner {
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-xl);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #4ade80;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: fadeUpIn 0.35s ease;
}
@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Char counter */
.char-counter {
  font-size: 0.72rem;
  color: var(--clr-text-subtle);
  text-align: end;
  margin-top: 0.2rem;
}
.char-counter.warn {
  color: var(--clr-gold);
}
.char-counter.over {
  color: var(--clr-primary-light);
}

/* Spin keyframe */
@keyframes ctcSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Floating whatsapp pulse */
.wa-pulse {
  animation: waPulse 2.8s ease-in-out infinite;
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
      0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr !important;
  }
  .offices-grid {
    grid-template-columns: 1fr !important;
  }
  .channel-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 540px) {
  .channel-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Reading Progress ── */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
  transform-origin: right;
  transform: scaleX(0);
  z-index: 9999;
  transition: transform 0.1s linear;
}

/* ══════════════════════════════════════════
         PAGE HEADER
      ══════════════════════════════════════════ */
.page-header {
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  text-align: center;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(200, 16, 46, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.header-orb-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.header-orb-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 184, 90, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.header-line {
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 16, 46, 0.4),
    transparent
  );
}
.page-header-content {
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
  list-style: none;
}
.breadcrumb a {
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--clr-primary-light);
}
.bc-sep {
  color: var(--clr-text-subtle);
  font-size: 0.7rem;
}
.bc-current {
  color: var(--clr-text);
}

/* Badge */
.badge-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(200, 16, 46, 0.12);
  color: var(--clr-primary-light);
  border: 1px solid rgba(200, 16, 46, 0.25);
  padding: 0.38rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--clr-text);
  margin-bottom: 1rem;
}
.page-header h1 span {
  color: var(--clr-primary);
}
.page-header p {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── FAQ Search Bar ── */
.faq-search-wrap {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}
.faq-search-input {
  width: 100%;
  padding: 0.9rem 1.25rem 0.9rem 3.5rem;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  color: var(--clr-text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  direction: rtl;
}
.faq-search-input::placeholder {
  color: var(--clr-text-muted);
}
.faq-search-input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}
.faq-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-muted);
  pointer-events: none;
  font-size: 1.2rem;
}
.faq-search-clear {
  position: absolute;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 1rem;
  background: none;
  border: none;
  display: none;
  padding: 0;
  transition: color var(--transition);
}
.faq-search-clear:hover {
  color: var(--clr-primary-light);
}
.faq-search-clear.visible {
  display: block;
}

/* ── Stats Strip ── */
.faq-stats-strip {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.faq-stat-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: var(--clr-text-muted);
}
.faq-stat-item strong {
  color: var(--clr-gold);
}

/* ══════════════════════════════════════════
         CATEGORY TABS (sticky)
      ══════════════════════════════════════════ */
.faq-tabs-wrap {
  position: sticky;
  top: 65px;
  z-index: 90;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  padding: 0.85rem 0;
}
.faq-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.faq-tabs::-webkit-scrollbar {
  display: none;
}
.faq-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--clr-border);
  background: transparent;
  color: var(--clr-text-muted);
  font-size: 0.82rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.faq-tab:hover {
  border-color: rgba(200, 16, 46, 0.35);
  color: var(--clr-text);
}
.faq-tab.active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}
.faq-tab .tab-count {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0 0.45rem;
  font-size: 0.7rem;
  line-height: 1.6;
}
.faq-tab.active .tab-count {
  background: rgba(255, 255, 255, 0.25);
}

/* ══════════════════════════════════════════
         MAIN FAQ LAYOUT
      ══════════════════════════════════════════ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0 4rem;
}
@media (max-width: 992px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    order: -1;
  }
}

/* ── Section Title ── */
.faq-section-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid rgba(200, 16, 46, 0.2);
}
.faq-section-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── FAQ Group ── */
.faq-group {
  margin-bottom: 2.5rem;
}
.faq-group:last-child {
  margin-bottom: 0;
}

/* ── No Results ── */
.faq-no-results {
  text-align: center;
  padding: 4rem 1rem;
  display: none;
}
.faq-no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.faq-no-results h3 {
  color: var(--clr-text);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.faq-no-results p {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
}

/* ══════════════════════════════════════════
         ACCORDION ITEMS
      ══════════════════════════════════════════ */
.faq-item {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover {
  border-color: rgba(200, 16, 46, 0.2);
}
.faq-item.open {
  border-color: rgba(200, 16, 46, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: inherit;
  transition: background var(--transition);
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}
.faq-item.open .faq-question {
  background: rgba(200, 16, 46, 0.04);
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
}
.faq-q-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--clr-primary-light);
}
.faq-item.open .faq-q-num {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}
.faq-q-text {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.45;
  text-align: right;
}
.faq-q-badge {
  font-size: 0.68rem;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.faq-q-badge.new {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.faq-q-badge.popular {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.faq-q-badge.updated {
  background: rgba(232, 184, 90, 0.12);
  color: var(--clr-gold);
  border: 1px solid rgba(232, 184, 90, 0.25);
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}
.faq-toggle .material-icons {
  font-size: 1.1rem;
  transition: transform 0.35s ease;
}
.faq-item.open .faq-toggle {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}
.faq-item.open .faq-toggle .material-icons {
  transform: rotate(45deg);
}

/* Answer Panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}
.faq-answer-inner {
  border-top: 1px solid var(--clr-border);
  margin: 0 1.4rem;
  padding-top: 12px !important;
}
.faq-answer-inner p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}
.faq-answer-inner p:last-child {
  margin-bottom: 0;
}
.faq-answer-inner strong {
  color: var(--clr-text);
}
.faq-answer-inner ul {
  padding-right: 1.25rem;
  margin: 0.5rem 0 0.75rem;
}
.faq-answer-inner li {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.4rem;
  line-height: 1.65;
}
.faq-answer-inner a {
  color: var(--clr-primary-light);
  text-decoration: none;
}
.faq-answer-inner a:hover {
  text-decoration: underline;
}

/* Answer Info Box */
.answer-info {
  background: rgba(232, 184, 90, 0.06);
  border: 1px solid rgba(232, 184, 90, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-top: 0.85rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.answer-info-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.answer-info p {
  font-size: 0.82rem !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* Answer CTA */
.answer-cta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.answer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}
.answer-cta-btn.primary {
  background: var(--clr-primary);
  color: #fff;
}
.answer-cta-btn.primary:hover {
  background: var(--clr-primary-light);
  transform: translateY(-1px);
}
.answer-cta-btn.outline {
  background: transparent;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
}
.answer-cta-btn.outline:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary-light);
}
.answer-cta-btn .material-icons {
  font-size: 0.9rem;
}

/* Answer Rate Table */
.answer-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-top: 0.75rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.answer-table th {
  background: rgba(200, 16, 46, 0.08);
  padding: 0.6rem 0.85rem;
  text-align: right;
  font-weight: 700;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
}
.answer-table td {
  padding: 0.55rem 0.85rem;
  text-align: right;
  color: var(--clr-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.answer-table tr:last-child td {
  border-bottom: none;
}
.answer-table .val-gold {
  color: var(--clr-gold);
  font-weight: 700;
}

/* ══════════════════════════════════════════
         SIDEBAR
      ══════════════════════════════════════════ */
.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar-widget {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}
.sidebar-widget-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.sidebar-widget-title .material-icons {
  font-size: 1.05rem;
  color: var(--clr-primary);
}

/* Quick Nav */
.quick-nav-list {
  list-style: none;
  padding: 0;
}
.quick-nav-item {
  margin-bottom: 0.3rem;
}
.quick-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 9px;
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: all var(--transition);
  border-right: 2px solid transparent;
  cursor: pointer;
}
.quick-nav-link:hover,
.quick-nav-link.active {
  color: var(--clr-text);
  background: rgba(200, 16, 46, 0.06);
  border-right-color: var(--clr-primary);
}
.quick-nav-link .material-icons {
  font-size: 1rem;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.quick-nav-count {
  margin-right: auto;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--clr-border);
  padding: 0.1rem 0.45rem;
  border-radius: 50px;
  color: var(--clr-text-subtle);
}

/* Rate Widget */
.rate-widget {
  background: linear-gradient(
    135deg,
    rgba(232, 184, 90, 0.06) 0%,
    rgba(10, 10, 20, 0) 100%
  );
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.84rem;
}
.rate-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.rate-label {
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.rate-value {
  font-weight: 700;
  color: var(--clr-gold);
}
.rate-change-up {
  color: #22c55e;
  font-size: 0.72rem;
}
.rate-change-down {
  color: #ef4444;
  font-size: 0.72rem;
}
.rate-updated {
  font-size: 0.7rem;
  color: var(--clr-text-subtle);
  text-align: center;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--clr-border);
}

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #9b0d22 100%);
  border: none;
  text-align: center;
}
.cta-widget-icon {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}
.cta-widget h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}
.cta-widget p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.btn-white {
  background: #fff;
  color: var(--clr-primary);
  font-weight: 700;
  width: 100%;
  justify-content: center;
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Widget */
.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  margin-bottom: 0.6rem;
  text-decoration: none;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.02);
}
.contact-method:last-child {
  margin-bottom: 0;
}
.contact-method:hover {
  border-color: rgba(200, 16, 46, 0.3);
  background: rgba(200, 16, 46, 0.04);
}
.contact-method-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-method-info {
  flex: 1;
}
.contact-method-label {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.1rem;
}
.contact-method-val {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--clr-text);
  direction: ltr;
  text-align: right;
}

/* Popular Questions Widget */
.popular-q-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--clr-border);
  cursor: pointer;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}
.popular-q-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.popular-q-item:hover .popular-q-text {
  color: var(--clr-primary-light);
}
.popular-q-text {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.4;
  flex: 1;
}
.popular-q-num {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(200, 16, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--clr-primary-light);
}

/* ══════════════════════════════════════════
         BOTTOM CTA BANNER
══════════════════════════════════════════ */
.bottom-cta {
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.1),
    rgba(232, 184, 90, 0.06)
  );
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 3rem 0;
}
.bottom-cta h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
}
.bottom-cta p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
}
.bottom-cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.comments-section-wrap {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--clr-bg-2, #f8f9fa);
  border-radius: 16px;
  color: var(--clr-text, #ffffff);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.comment-respond {
  width: 100%;
}

.comment-reply-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--clr-text, #ffffff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.comment-reply-title small a {
  font-size: 0.85rem;
  color: var(--clr-primary, #e11d48);
  text-decoration: none;
  font-weight: 600;
}

.comment-notes {
  font-size: 0.85rem;
  color: var(--clr-text-muted, #a1a1aa);
  margin-bottom: 2rem;
}

.comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.comment-form-comment {
  grid-column: 1 / -1;
}

.comment-form-url,
.comment-form-cookies-consent,
.form-submit {
  grid-column: 1 / -1;
}

.comment-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--clr-text, #ffffff);
}

.required {
  color: var(--clr-primary, #e11d48);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--clr-bg-input, rgba(255, 255, 255, 0.06));
  border: 1px solid var(--clr-border, rgba(255, 255, 255, 0.1));
  border-radius: 10px;
  color: var(--clr-text, #ffffff);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  resize: none;
}

.comment-form textarea {
  resize: vertical;
  min-height: 140px;
  resize: none;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--clr-primary, #e11d48);
  background: var(--clr-bg-input-focus, rgba(255, 255, 255, 0.1));
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
  resize: none;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--clr-primary, #e11d48);
  cursor: pointer;
}

.comment-form-cookies-consent label {
  margin-bottom: 0;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.6;
  cursor: pointer;
  color: var(--clr-text-muted, #a1a1aa);
}

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .submit {
  background: var(--clr-primary, #e11d48);
  color: #ffffff;
  border: none;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.form-submit .submit:hover {
  background: var(--clr-primary-dark, #be123c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
}

@media (prefers-color-scheme: light) {
  .comments-section-wrap {
    background: var(--clr-bg-2, #ffffff);
    color: var(--clr-text, #1f2937);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .comment-reply-title,
  .comment-form label {
    color: var(--clr-text, #111827);
  }

  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea {
    background: var(--clr-bg-input, #f9fafb);
    border: 1px solid var(--clr-border, #e5e7eb);
    color: var(--clr-text, #1f2937);
    resize: none;
  }

  .comment-form input[type="text"]:focus,
  .comment-form input[type="email"]:focus,
  .comment-form input[type="url"]:focus,
  .comment-form textarea:focus {
    background: var(--clr-bg-input-focus, #ffffff);
    border-color: var(--clr-primary, #e11d48);
  }

  .comment-notes,
  .comment-form-cookies-consent label {
    color: var(--clr-text-muted, #6b7280);
  }
}

[data-theme="light"] .comments-section-wrap {
  background: var(--clr-bg-2, #ffffff);
  color: var(--clr-text, #1f2937);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .comment-reply-title,
[data-theme="light"] .comment-form label {
  color: var(--clr-text, #111827);
}

[data-theme="light"] .comment-form input[type="text"],
[data-theme="light"] .comment-form input[type="email"],
[data-theme="light"] .comment-form input[type="url"],
[data-theme="light"] .comment-form textarea {
  background: var(--clr-bg-input, #f9fafb);
  border: 1px solid var(--clr-border, #e5e7eb);
  color: var(--clr-text, #1f2937);
  resize: none;
}

[data-theme="light"] .comment-form input[type="text"]:focus,
[data-theme="light"] .comment-form input[type="email"]:focus,
[data-theme="light"] .comment-form input[type="url"]:focus,
[data-theme="light"] .comment-form textarea:focus {
  background: var(--clr-bg-input-focus, #ffffff);
  border-color: var(--clr-primary, #e11d48);
  resize: none;
}

[data-theme="light"] .comment-notes,
[data-theme="light"] .comment-form-cookies-consent label {
  color: var(--clr-text-muted, #6b7280);
}

@media (max-width: 768px) {
  .comments-section-wrap {
    padding: 1.5rem;
  }

  .comment-form {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .form-submit .submit {
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════
   LIGHT MODE — CTA Banner + Footer Overrides
══════════════════════════════════════════════════════════ */

/* ── CTA Banner ───────────────────────────────────────────── */
.light-mode #cta-banner {
  background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 50%, #f5f5f5 100%);
}

.light-mode #cta-banner::before {
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    rgba(200, 16, 46, 0.06) 0%,
    transparent 70%
  );
}

.light-mode .cta-content h2 {
  color: #0d0812;
}

.light-mode .cta-content p {
  color: #4b5563;
}

/* ── Footer Base ──────────────────────────────────────────── */
.light-mode #footer {
  background: #f9fafb;
  border-top: 1px solid #e2e8f0;
}

/* ── Brand Column ─────────────────────────────────────────── */
.light-mode .footer-desc {
  color: #4b5563;
}

.light-mode .brand-main {
  color: #0d0812;
}

.light-mode .brand-sub {
  color: #6b7280;
}

/* ── Column Headings ──────────────────────────────────────── */
.light-mode .footer-col h5 {
  color: #c8102e;
}

/* ── Nav Links ────────────────────────────────────────────── */
.light-mode .footer-link {
  color: #374151;
}

.light-mode .footer-link:hover {
  color: #0d0812;
}

/* ── Contact Items ────────────────────────────────────────── */
.light-mode .footer-contact-item {
  color: #4b5563;
}

.light-mode .footer-contact-item .fc-icon {
  color: #c8102e;
}

/* ── Footer Bottom Bar ────────────────────────────────────── */
.light-mode .footer-bottom {
  border-top: 1px solid #e2e8f0;
}

.light-mode .footer-copy {
  color: #64748b;
}

.light-mode .footer-bottom-links,
.light-mode .footer-bottom-links a {
  color: #64748b;
}

.light-mode .footer-bottom-links a:hover {
  color: #0d0812;
}

/* ════════════════════════════════════════════════════════
   LIGHT MODE — #hero & #trust-bar
   فقط وقتی body کلاس light-mode داشته باشه اعمال میشه
════════════════════════════════════════════════════════ */

body.light-mode .hero-bg-gradient {
  background: radial-gradient(
    ellipse at 50% 40%,
    #f0ecff 0%,
    #e8eaf6 40%,
    #dde1f0 100%
  );
}

body.light-mode .hero-grid-lines {
  background-image: linear-gradient(
      rgba(80, 60, 160, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(80, 60, 160, 0.06) 1px, transparent 1px);
}



body.light-mode .glass-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(90, 70, 180, 0.18);
  box-shadow: 0 4px 24px rgba(80, 60, 160, 0.1);
}

body.light-mode .bridge-title {
  color: #1e1640;
}

body.light-mode .bridge-sub {
  color: #5a4e8a;
}

body.light-mode .bridge-route {
  color: #3d3368;
}

body.light-mode .arrow-icon {
  color: #c07800;
}

body.light-mode .hero-badge-center {
  color: #1e1640;
}

body.light-mode .stat-val {
  color: #7c3f00;
}

body.light-mode .stat-lbl {
  color: #5a4e8a;
}

body.light-mode .hero-stat {
  color: #1e1640;
}

body.light-mode .btn-primary {
  background: #6144b5;
  color: #fff;
  box-shadow: 0 4px 18px rgba(97, 68, 181, 0.25);
}

body.light-mode .btn-primary:hover {
  background: #7a5acc;
}

body.light-mode .btn-gold {
  background: #d4900a;
  color: #fff;
  box-shadow: 0 4px 18px rgba(212, 144, 10, 0.25);
}

body.light-mode .btn-gold:hover {
  background: #e6a817;
  color: #fff;
}

body.light-mode .btn-outline {
  color: #2e2460;
  border-color: rgba(46, 36, 96, 0.35);
}

body.light-mode .btn-outline:hover {
  background: rgba(97, 68, 181, 0.07);
  border-color: rgba(97, 68, 181, 0.5);
}

/* ─── Trust bar ─────────────────────────────────────── */

body.light-mode #trust-bar {
  background: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(90, 70, 180, 0.12);
}

body.light-mode .trust-item {
  color: #2e2460;
}

body.light-mode .trust-icon {
  filter: none;
  opacity: 1;
}

body.light-mode .trust-sep {
  background: rgba(90, 70, 180, 0.15);
}

@media (max-width: 768px) {
  .about-route-dot-anim {
    display: none;
  }
  .route-line-sm {
    overflow: hidden;
  }
  .about-hero-route {
    min-width: 0;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .about-route-dot-anim {
    display: none;
  }
  .about-route-wrap {
    flex-direction: column;
    align-items: center;
  }
  .counter-num {
    font-size: 20px;
  }
}

/* ===== WPForms #wpforms-99 — Light/Dark Styles ===== */

/* Root layout */
#wpforms-99 {
  --wpforms-field-border-color: rgba(90, 70, 180, 0.3) !important;
  --wpforms-field-border-color-spare: rgba(90, 70, 180, 0.3) !important;
  --wpforms-field-text-color: var(--clr-text) !important;
  --wpforms-label-color: var(--clr-text) !important;
  --wpforms-label-sublabel-color: var(--clr-text-muted) !important;
  --wpforms-background-color: transparent !important;
  --wpforms-container-border-width: 0px !important;
  --wpforms-container-padding: 0px !important;
  --wpforms-field-size-input-height: 48px !important;
  --wpforms-field-size-font-size: 15px !important;
  --wpforms-field-size-padding-h: 16px !important;
  --wpforms-button-size-font-size: 16px !important;
  --wpforms-button-size-height: 50px !important;
  --wpforms-button-size-margin-top: 12px !important;
}

/* Field containers */
#wpforms-99 .wpforms-field-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

#wpforms-99 .wpforms-field {
  margin-bottom: 0 !important;
  padding: 0 !important;
}

/* Labels */
#wpforms-99 .wpforms-field-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 8px !important;
  display: block !important;
}

/* All input/textarea */
#wpforms-99 input[type="text"],
#wpforms-99 input[type="email"],
#wpforms-99 textarea {
  width: 100% !important;
  border-radius: 10px !important;
  border: 1.5px solid rgba(90, 70, 180, 0.3) !important;
  background: transparent !important;
  color: inherit !important;
  font-size: 15px !important;
  padding: 12px 16px !important;
  outline: none !important;
  transition: border-color 0.25s, box-shadow 0.25s !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
}

/* Textarea — no resize */
#wpforms-99 textarea {
  resize: none !important;
  min-height: 130px !important;
  line-height: 1.7 !important;
}

/* Focus */
#wpforms-99 input[type="text"]:focus,
#wpforms-99 input[type="email"]:focus,
#wpforms-99 textarea:focus {
  border-color: rgba(90, 70, 180, 0.75) !important;
  box-shadow: 0 0 0 3px rgba(90, 70, 180, 0.12) !important;
}

/* Required star */
#wpforms-99 .wpforms-required-label {
  color: #e05050 !important;
  margin-right: 3px !important;
}

/* Submit button */
#wpforms-99 .wpforms-submit {
  width: 100% !important;
  height: 50px !important;
  border-radius: 10px !important;
  border: none !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  letter-spacing: 0.02em !important;
  transition: opacity 0.2s, transform 0.15s !important;
}

#wpforms-99 .wpforms-submit:hover {
  opacity: 0.88 !important;
  transform: translateY(-1px) !important;
}

#wpforms-99 .wpforms-submit:active {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* Submit container */
#wpforms-99 .wpforms-submit-container {
  margin-top: 4px !important;
}

/* ─── DARK MODE (default / شب) ─── */

#wpforms-99 input[type="text"],
#wpforms-99 input[type="email"],
#wpforms-99 textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #e8e4ff !important;
  border-color: rgba(160, 140, 255, 0.25) !important;
}

#wpforms-99 .wpforms-field-label {
  color: rgba(220, 215, 255, 0.85) !important;
}

#wpforms-99 input::placeholder,
#wpforms-99 textarea::placeholder {
  color: rgba(200, 195, 240, 0.35) !important;
}

#wpforms-99 input[type="text"]:focus,
#wpforms-99 input[type="email"]:focus,
#wpforms-99 textarea:focus {
  border-color: rgba(160, 140, 255, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(140, 110, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.07) !important;
}

#wpforms-99 .wpforms-submit {
  background: linear-gradient(135deg, #6b50d6 0%, #7c5ce8 100%) !important;
  color: #fff !important;
}

/* ─── LIGHT MODE (روز) ─── */

body.light-mode #wpforms-99 input[type="text"],
body.light-mode #wpforms-99 input[type="email"],
body.light-mode #wpforms-99 textarea {
  background: rgba(90, 70, 180, 0.04) !important;
  color: rgba(30, 20, 70, 0.9) !important;
  border-color: rgba(90, 70, 180, 0.25) !important;
}

body.light-mode #wpforms-99 .wpforms-field-label {
  color: rgba(40, 25, 90, 0.85) !important;
}

body.light-mode #wpforms-99 input::placeholder,
body.light-mode #wpforms-99 textarea::placeholder {
  color: rgba(90, 70, 180, 0.35) !important;
}

body.light-mode #wpforms-99 input[type="text"]:focus,
body.light-mode #wpforms-99 input[type="email"]:focus,
body.light-mode #wpforms-99 textarea:focus {
  border-color: rgba(90, 70, 180, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(90, 70, 180, 0.1) !important;
  background: rgba(90, 70, 180, 0.06) !important;
}

body.light-mode #wpforms-99 .wpforms-submit {
  background: linear-gradient(135deg, #5a46b4 0%, #6d54cc 100%) !important;
  color: #fff !important;
}

body.light-mode .trust-sep {
  background: rgba(90, 70, 180, 0.15) !important;
}
