/* ==========================================================
   CHINEX – China Visa Assistance Services
   Main Stylesheet — v2 (multilingual / animated)
   ========================================================== */

/* =====================
   CSS CUSTOM PROPERTIES
===================== */
:root {
  /* Brand palette */
  --chx-red:        #b8141c;   /* primary red – China flag red          */
  --chx-red-deep:   #8c0f15;   /* darker red for hover / depth          */
  --chx-red-bright: #d81324;   /* bright red accent                     */
  --chx-gold:       #b8842a;   /* warm gold accent                      */
  --chx-gold-light: #d4a24e;   /* lighter gold for gradients / hover    */
  --chx-dark:       #17140f;   /* near-black base                       */
  --chx-dark-soft:  #221d15;   /* slightly lighter dark for cards       */
  --chx-whatsapp:   #25d366;   /* WhatsApp green                        */
  --chx-light:      #faf8f5;   /* warm off-white page background        */
  --chx-light-2:    #f3efe8;   /* secondary warm background             */
  --chx-text:       #1c1814;   /* body text                             */
  --chx-muted:      #6b6358;   /* secondary / muted text                */
  --chx-border:     #e8e0d4;   /* subtle border                         */
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* =====================
   BASE
===================== */
html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 84px;
}

.chinex-site {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--chx-text);
  background: var(--chx-light);
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}

.chinex-site h1,
.chinex-site h2,
.chinex-site h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* RTL: Arabic typography */
html[lang="ar"] .chinex-site,
html[lang="ar"] .chinex-site h1,
html[lang="ar"] .chinex-site h2,
html[lang="ar"] .chinex-site h3 {
  font-family: 'Noto Kufi Arabic', 'Inter', sans-serif;
}

html[dir="rtl"] body {
  text-align: right;
}

/* i18n visibility toggles */
[data-ar] { display: none; }
html[lang="ar"] [data-en] { display: none !important; }
html[lang="ar"] [data-ar] { display: inline !important; }
html[lang="ar"] li[data-ar],
html[lang="ar"] p[data-ar],
html[lang="ar"] div[data-ar],
html[lang="ar"] span.tag[data-ar] { display: block !important; }
html[lang="ar"] .hero-highlights li[data-ar],
html[lang="ar"] .checklist-item[data-ar] { display: flex !important; align-items: flex-start; }

/* =====================
   AMBIENT BACKGROUND EFFECTS
   (floating dots / soft gradients / particles)
===================== */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-fx .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.bg-fx .blob-1 {
  width: 42vw; height: 42vw;
  max-width: 620px; max-height: 620px;
  top: -12%; left: -10%;
  background: radial-gradient(circle, rgba(184,20,28,0.10), transparent 70%);
  animation: blobFloat 22s ease-in-out infinite;
}

.bg-fx .blob-2 {
  width: 38vw; height: 38vw;
  max-width: 560px; max-height: 560px;
  bottom: -10%; right: -8%;
  background: radial-gradient(circle, rgba(184,132,42,0.12), transparent 70%);
  animation: blobFloat 26s ease-in-out infinite reverse;
}

.bg-fx .blob-3 {
  width: 26vw; height: 26vw;
  max-width: 380px; max-height: 380px;
  top: 45%; left: 60%;
  background: radial-gradient(circle, rgba(184,20,28,0.06), transparent 70%);
  animation: blobFloat 18s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, -4%) scale(1.08); }
}

/* Floating dots layer */
.bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184,132,42,0.18) 1px, transparent 1.5px);
  background-size: 34px 34px;
  opacity: 0.45;
  animation: dotsDrift 60s linear infinite;
}

@keyframes dotsDrift {
  0% { background-position: 0 0; }
  100% { background-position: 220px 160px; }
}

/* Light particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,162,78,0.9), rgba(212,162,78,0));
  opacity: 0;
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-90vh) translateX(20px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-fx .blob,
  .bg-dots,
  .particle,
  .plane-fx,
  .flight-path-fx { animation: none !important; }
}

/* =====================
   BRAND / LOGO
===================== */
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  line-height: 1;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--chx-red), var(--chx-red-deep));
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(184, 20, 28, 0.35);
  position: relative;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-text .name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}

html[lang="ar"] .brand-text .name {
  font-family: 'Noto Kufi Arabic', sans-serif;
  letter-spacing: 0;
}

.brand-text .tag {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--chx-gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

html[lang="ar"] .brand-text .tag {
  letter-spacing: 0;
  text-transform: none;
}

/* =====================
   TOP UTILITY BAR
===================== */
.chinex-topbar {
  background: rgba(23, 20, 15, 0.97);
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(184, 132, 42, 0.15);
  position: relative;
  z-index: 1050;
}

.chinex-topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chinex-topbar a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color .2s;
}

.chinex-topbar a:hover {
  color: var(--chx-gold-light);
}

.topbar-contacts {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.topbar-contacts .sep {
  opacity: 0.4;
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  overflow: hidden;
}

.lang-switch button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.28rem 0.85rem;
  transition: all .2s;
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--chx-gold);
  color: #fff;
}
/* ==========================================================
   STICKY SCROLL ARCHITECTURE
   ========================================================== */

.header-scroll-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.chinex-topbar {
  height: 40px;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  opacity: 1;
  visibility: visible;
}

.chinex-navbar {
  position: relative;
  top: 0;
}

.header-scroll-wrapper.scrolled {
  transform: translateY(-40px); 
  box-shadow: 0 10px 30px rgba(23, 20, 15, 0.12);
}

.header-scroll-wrapper.scrolled .chinex-topbar {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .chinex-topbar {
    height: auto; 
    min-height: 40px;
    padding: 6px 0;
  }
  
  /* Pulls up by the exact height of the top bar dynamically, removing the gap */
  .header-scroll-wrapper.scrolled {
    transform: translateY(-100%);
  }
  
  /* Keeps the navbar visible and pushed back down into view */
  .header-scroll-wrapper.scrolled .chinex-navbar {
    transform: translateY(100%);
  }
}
/* =====================
   NAVBAR
===================== */
.chinex-navbar {
  background: rgba(23, 20, 15, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(184, 132, 42, 0.15);
  top: 0;
}

.chinex-navbar.fixed-below-topbar {
  position: fixed;
  width: 100%;
}

.chinex-navbar .nav-link {
  color: #e8ddd0 !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: color 0.2s;
}

.chinex-navbar .nav-link:hover {
  color: var(--chx-gold-light) !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

html[dir="rtl"] .navbar-nav {
  text-align: right;
}

/* =====================
   BUTTONS
===================== */
.btn-chinex-primary {
  background: linear-gradient(135deg, var(--chx-red) 0%, var(--chx-red-deep) 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(184, 20, 28, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-chinex-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 20, 28, 0.5);
  color: #fff;
}

.btn-chinex-gold {
  background: linear-gradient(135deg, var(--chx-gold) 0%, var(--chx-gold-light) 100%);
  border: none;
  color: var(--chx-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(184, 132, 42, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-chinex-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 132, 42, 0.5);
  color: var(--chx-dark);
}

.btn-chinex-outline {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 500;
  transition: all .2s;
}

.btn-chinex-outline:hover {
  border-color: var(--chx-gold-light);
  color: var(--chx-gold-light);
  background: rgba(255,255,255,0.06);
}

/* =====================
   HERO
===================== */
.hero-section {
  position: relative;
  overflow: visible; /* content (How It Works card) is allowed to spill past the section edge */
  background: linear-gradient(150deg, var(--chx-dark) 0%, var(--chx-dark-soft) 55%, #2a1012 100%);
  padding-top: 1px;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  overflow: hidden; /* clips background image / scene / overlay only */
  z-index: 0;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2;
}
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Skyline silhouette replacing the photographic hero image */
.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  opacity: 0;
  pointer-events: none;
}

.hero-skyline svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-skyline .sky-fill {
  fill: rgba(212, 162, 78, 0.16);
}

.hero-skyline .sky-fill-2 {
  fill: rgba(216, 19, 36, 0.10);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(23, 20, 15, 0.92) 0%,
    rgba(23, 20, 15, 0.78) 50%,
    rgba(184, 20, 28, 0.28) 100%
  );
  z-index: 1;
}

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

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184, 132, 42, 0.15);
  border: 1px solid rgba(184, 132, 42, 0.5);
  color: var(--chx-gold-light);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

html[lang="ar"] .badge-gold {
  letter-spacing: 0;
  text-transform: none;
}

.badge-gold .pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--chx-red-bright);
  box-shadow: 0 0 0 0 rgba(216,19,36,0.6);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(216,19,36,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(216,19,36,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,19,36,0); }
}

.text-gold {
  color: var(--chx-gold-light);
}

.hero-title {
  line-height: 1.12;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

html[lang="ar"] .hero-title {
  line-height: 1.4;
  font-size: 2.4rem !important;
}

.hero-title .text-gold-grad {
  background: linear-gradient(120deg, var(--chx-red-bright), var(--chx-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: #d9cfc4;
  max-width: 640px;
  font-size: 1.12rem;
}

.hero-highlights {
  color: #e0d6cc;
  font-size: 0.97rem;
}

/* ==========================================================
   HERO — "HOW IT WORKS" GLASSMORPHISM CARD
   ========================================================== */
.hero-row {
  position: relative;
}

/* Below 992px the card stacks under the text within the same row
   (Bootstrap's align-items-center still applies to the row as a whole).
   Centering a much taller stacked row inside min-vh-100 pushed the
   text column up underneath the fixed header, so we align to the
   start instead — the row's natural top-down flow is what we want
   once the two columns are no longer side by side. We also add
   explicit top padding sized to the fixed topbar+navbar height so
   content reliably clears it regardless of how tall the stacked
   card makes the row, rather than relying on vh-centering luck. */
@media (max-width: 991px) {
  .hero-row {
    align-items: flex-start !important;
    padding-top: 150px !important;
  }
}

@media (max-width: 575px) {
  .hero-row {
    padding-top: 220px !important;
  }
}

.hero-card-col {
  position: relative;
  z-index: 3;
}

.how-it-works-card {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.035) 100%);
  border: 1px solid rgba(212, 162, 78, 0.28);
  border-radius: 26px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 2.1rem 2rem 1.9rem;
  backdrop-filter: blur(5px) saturate(150%);
  -webkit-backdrop-filter: blur(5px) saturate(150%);

  overflow: hidden;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.how-it-works-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 162, 78, 0.45);
  
}

/* On large screens the card is pinned to the bottom of the hero section
   itself (not just the row), so it reliably spills past the hero/About
   seam regardless of how tall the min-vh-100 hero ends up being. The
   text column stays in normal centered flow. */
@media (min-width: 992px) {
  .hero-card-col {
    position: absolute;
    top: auto;
    bottom: -48px;
    right: 0;
    width: 41.6666%; /* matches col-lg-5 */
    max-width: 41.6666%;
  }
  html[dir="rtl"] .hero-card-col {
    right: auto;
    left: 0;
  }
  /* Reserve the visual space the absolutely-positioned card would have
     taken, so the text column doesn't render as if it owns the full row. */
  .hero-row > .col-lg-7 {
    max-width: 56%;
    flex: 0 0 56%;
  }
}

.hiw-card-glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(216, 19, 36, 0.22), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.hiw-card-head {
  position: relative;
  z-index: 1;
  margin-bottom: 1.4rem;
}

.hiw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(216, 19, 36, 0.16);
  border: 1px solid rgba(216, 19, 36, 0.32);
  color: #ffb4ba;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

html[lang="ar"] .hiw-eyebrow {
  letter-spacing: 0;
  text-transform: none;
}

.hiw-eyebrow i {
  font-size: 0.78rem;
  color: var(--chx-gold-light);
}

.hiw-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

html[lang="ar"] .hiw-title {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 1.35rem;
}

.hiw-sub {
  color: #c9bfb3;
  font-size: 0.88rem;
  margin-bottom: 0;
}

.hiw-steps {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0.6rem;
  border-radius: 14px;
  margin: 0 -0.6rem;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hiw-step + .hiw-step {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.hiw-step:hover {
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(4px);
}

html[dir="rtl"] .hiw-step:hover {
  transform: translateX(-4px);
}

.hiw-step-num {
  flex-shrink: 0;
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(212, 162, 78, 0.55);
  letter-spacing: 0.04em;
  width: 22px;
  padding-top: 0.55rem;
}

.hiw-step-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(216, 19, 36, 0.22), rgba(184, 132, 42, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--chx-gold-light);
  font-size: 1.05rem;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), background 0.35s ease, color 0.35s ease;
}

.hiw-step:hover .hiw-step-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(140deg, var(--chx-red-bright), var(--chx-gold));
  color: #fff;
}

.hiw-step-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.1rem;
}

.hiw-step-text strong {
  color: #fff;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.3;
}

.hiw-step-desc {
  color: #b9ad9f;
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .hero-card-col {
    margin-top: 2.5rem;
  }
  .how-it-works-card {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .how-it-works-card {
    padding: 1.7rem 1.4rem 1.5rem;
    border-radius: 20px;
  }
  .hiw-title {
    font-size: 1.32rem;
  }
  .hiw-step-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .hero-card-col {
    margin-top: 2rem;
  }
  .hiw-step-num {
    display: none;
  }
  .hiw-step {
    gap: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-it-works-card,
  .how-it-works-card:hover,
  .hiw-step,
  .hiw-step:hover,
  .hiw-step-icon,
  .hiw-step:hover .hiw-step-icon {
    transition: none !important;
    transform: none !important;
  }
}

/* ===== Travel-themed decorative elements in hero ===== */
.plane-fx {
  position: absolute;
  width: 46px;
  height: 46px;
  opacity: 0.85;
  z-index: 1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}

.plane-fx svg {
  width: 100%;
  height: 100%;
  fill: var(--chx-gold-light);
}

.plane-1 {
  top: 18%;
  left: -5%;
  animation: flyAcross 26s linear infinite;
}

.plane-2 {
  top: 62%;
  left: -8%;
  width: 30px; height: 30px;
  opacity: 0.55;
  animation: flyAcross 34s linear infinite;
  animation-delay: 6s;
}

@keyframes flyAcross {
  0%   { transform: translate(0, 0) rotate(8deg); opacity: 0; }
  6%   { opacity: 0.85; }
  92%  { opacity: 0.85; }
  100% { transform: translate(115vw, -6vh) rotate(8deg); opacity: 0; }
}

html[dir="rtl"] .plane-fx {
  transform: scaleX(-1);
}

html[dir="rtl"] .plane-1,
html[dir="rtl"] .plane-2 {
  left: auto;
  right: -5%;
  animation-name: flyAcrossRTL;
}

@keyframes flyAcrossRTL {
  0%   { transform: scaleX(-1) translate(0, 0) rotate(8deg); opacity: 0; }
  6%   { opacity: 0.85; }
  92%  { opacity: 0.85; }
  100% { transform: scaleX(-1) translate(115vw, -6vh) rotate(8deg); opacity: 0; }
}

.flight-path-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

.flight-path-fx path {
  fill: none;
  stroke: var(--chx-gold-light);
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
  stroke-linecap: round;
  animation: dashFlow 5s linear infinite;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -200; }
}

.globe-fx {
  position: absolute;
  right: 4%;
  top: 8%;
  width: 220px;
  height: 220px;
  opacity: 0.10;
  z-index: 1;
  animation: globeSpin 50s linear infinite;
}

html[dir="rtl"] .globe-fx {
  right: auto;
  left: 4%;
}

.globe-fx svg { width: 100%; height: 100%; stroke: var(--chx-gold-light); }

@keyframes globeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pin-fx {
  position: absolute;
  width: 22px;
  z-index: 1;
  opacity: 0.7;
  animation: pinBob 3.4s ease-in-out infinite;
}

.pin-fx svg { width: 100%; fill: var(--chx-red-bright); }

@keyframes pinBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =====================
   SECTION UTILITIES
===================== */
.py-lg-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

@media (max-width: 991px) {
  .py-lg-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

.bg-light-soft {
  background: var(--chx-light);
  position: relative;
}

.bg-dark-brand {
  background: linear-gradient(135deg, var(--chx-dark), var(--chx-dark-soft));
  position: relative;
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--chx-red);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

html[lang="ar"] .eyebrow {
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--chx-red);
  box-shadow: 0 0 8px 2px rgba(184,20,28,0.35);
  flex-shrink: 0;
}

.eyebrow-gold {
  color: var(--chx-gold-light);
}

.eyebrow-gold::before {
  background: var(--chx-gold-light);
  box-shadow: 0 0 8px 2px rgba(212,162,78,0.4);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--chx-dark);
  margin-bottom: 1rem;
}

html[lang="ar"] .section-title {
  font-size: 2rem;
}

.bg-dark-brand .section-title {
  color: #fff;
}

.title-rule {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--chx-red), var(--chx-gold));
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

/* =====================
   STAT CARDS
===================== */
.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 0.5rem;
  box-shadow: 0 8px 24px rgba(23, 20, 15, 0.07);
  border: 1px solid var(--chx-border);
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(23,20,15,0.12);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--chx-red);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--chx-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

html[lang="ar"] .stat-label {
  letter-spacing: 0;
  text-transform: none;
}

/* =====================
   VISA / SERVICE CARDS
===================== */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.25rem 2rem;
  border: 1px solid var(--chx-border);
  box-shadow: 0 10px 30px rgba(23, 20, 15, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--chx-red), var(--chx-gold));
  opacity: 0.8;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(23, 20, 15, 0.12);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--chx-red), var(--chx-red-deep));
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(184, 20, 28, 0.3);
  transition: transform .3s var(--ease);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
}

.service-tag {
  display: inline-block;
  font-family: 'Inter', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chx-gold);
  margin-bottom: 0.4rem;
}

html[lang="ar"] .service-tag {
  letter-spacing: 0;
  text-transform: none;
}

.service-meta {
  display: flex;
  gap: 1.25rem;
  padding-top: 1.1rem;
  margin-top: 1.1rem;
  border-top: 1px dashed var(--chx-border);
  flex-wrap: wrap;
}

.service-meta div {
  font-size: 0.74rem;
  color: var(--chx-muted);
}

.service-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--chx-text);
  font-weight: 700;
}

.link-chinex {
  color: var(--chx-red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.link-chinex:hover {
  color: var(--chx-gold);
}

/* =====================
   PROCESS / STEPS
===================== */
.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  height: 100%;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
  border-color: rgba(184, 132, 42, 0.45);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--chx-gold-light);
  opacity: 0.75;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 132, 42, 0.15);
  color: var(--chx-gold-light);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

/* Connecting dashed flight-path rail behind process steps (desktop) */
.process-rail {
  position: relative;
}

.process-rail::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 0;
  border-top: 1px dashed rgba(212, 162, 78, 0.4);
  z-index: 0;
}

@media (max-width: 991px) {
  .process-rail::before { display: none; }
}

/* =====================
   CHECKLIST
===================== */
.checklist-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  border-left: 4px solid var(--chx-red);
  box-shadow: 0 10px 30px rgba(23, 20, 15, 0.06);
}

html[dir="rtl"] .checklist-card {
  border-left: none;
  border-right: 4px solid var(--chx-red);
}

.checklist-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--chx-red), var(--chx-red-deep));
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.checklist-item {
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--chx-border);
  color: #3d3830;
  display: flex;
  align-items: flex-start;
}

.checklist-item:last-child {
  border-bottom: 0;
}

.text-gold {
  color: var(--chx-gold);
}

/* =====================
   WHY CARDS
===================== */
.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--chx-border);
  box-shadow: 0 6px 20px rgba(23, 20, 15, 0.05);
  transition: all 0.3s;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: var(--chx-red);
  box-shadow: 0 10px 28px rgba(184, 20, 28, 0.1);
}

.why-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff2f2, #fde0e1);
  color: var(--chx-red);
  font-size: 1.3rem;
  transition: transform .3s var(--ease);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-4deg);
}

.why-card p {
  font-size: 0.86rem;
  color: var(--chx-muted);
  margin-bottom: 0;
  margin-top: 0.3rem;
}

/* =====================
   TESTIMONIALS
===================== */
.testi-section {
  position: relative;
  overflow: hidden;
}

.testi-carousel {
  max-width: 760px;
  margin: 0 auto;
}

.testi-track-wrap {
  position: relative;
  min-height: 360px;
}

.testi-slide {
  display: none;
  background: #fff;
  border: 1px solid var(--chx-border);
  border-radius: 22px;
  padding: 2.75rem 2.5rem 2.25rem;
  box-shadow: 0 18px 46px rgba(23, 20, 15, 0.09);
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testi-slide.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: testi-fade-in 0.5s ease;
}

@keyframes testi-fade-in {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.testi-quote-mark {
  display: inline-flex;
  width: 52px;
  height: 40px;
  color: var(--chx-gold-light);
  opacity: 0.55;
  margin-bottom: 0.5rem;
}
.testi-quote-mark svg { width: 100%; height: 100%; }

.testi-stars {
  color: var(--chx-gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.1rem;
}

.testi-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.55;
  color: var(--chx-dark);
  font-weight: 600;
  max-width: 580px;
  margin: 0 auto 1.75rem;
}

html[lang="ar"] .testi-text {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 1.15rem;
}

.testi-person {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-align: left;
}
html[dir="rtl"] .testi-person { text-align: right; }

.testi-avatar-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--chx-gold), var(--chx-red));
  padding: 2.5px;
  flex-shrink: 0;
}

.testi-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--chx-dark), var(--chx-dark-soft));
  color: var(--chx-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.testi-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--chx-dark);
}

.testi-meta {
  font-size: 0.78rem;
  color: var(--chx-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
html[lang="ar"] .testi-meta { text-transform: none; letter-spacing: 0; }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--chx-border);
  background: #fff;
  color: var(--chx-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.testi-arrow:hover {
  background: var(--chx-red);
  border-color: var(--chx-red);
  color: #fff;
  transform: translateY(-2px);
}

.testi-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testi-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--chx-border);
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}

.testi-dot.is-active {
  background: linear-gradient(135deg, var(--chx-red), var(--chx-gold));
  width: 26px;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .testi-slide {
    padding: 2.25rem 1.5rem 1.85rem;
  }
  .testi-text {
    font-size: 1.1rem;
  }
  .testi-track-wrap {
    min-height: 400px;
  }
}


/* ==========================================================
   FAQ GRID & INTERACTIVE CARD ARCHITECTURE (MERGED)
   ========================================================== */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  max-width: 1040px;
  margin: 0 auto;
}

.faq-card {
  background: #fff;
  border: 1px solid var(--chx-border);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(23, 20, 15, 0.05);
  overflow: hidden;
  align-self: start;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s, box-shadow 0.25s;
}

.faq-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-card:hover {
  border-color: rgba(184, 20, 28, 0.3);
  box-shadow: 0 14px 32px rgba(23, 20, 15, 0.09);
}

.faq-card.is-open {
  border-color: var(--chx-gold);
  box-shadow: 0 16px 36px rgba(184, 132, 42, 0.14);
}

.faq-card-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
html[dir="rtl"] .faq-card-head { text-align: right; }

.faq-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff2f2, #fde0e1);
  color: var(--chx-red);
  font-size: 1.25rem;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}

.faq-card.is-open .faq-card-icon {
  background: linear-gradient(135deg, var(--chx-red), var(--chx-red-deep));
  color: #fff;
  transform: scale(1.06);
}

.faq-card-q {
  flex: 1;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--chx-dark);
  line-height: 1.4;
}

.faq-card-chevron {
  flex-shrink: 0;
  color: var(--chx-muted);
  transition: transform 0.3s, color 0.3s;
}

.faq-card.is-open .faq-card-chevron {
  transform: rotate(180deg);
  color: var(--chx-gold);
}

.faq-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-card-body-inner {
  padding: 0 1.4rem 1.5rem 1.4rem;
  margin-left: 62px;
  font-size: 0.92rem;
  color: var(--chx-muted);
  line-height: 1.65;
}
html[dir="rtl"] .faq-card-body-inner {
  margin-left: 0;
  margin-right: 62px;
}

/* ==========================================================
   PREMIUM FAQ CALL-TO-ACTION CARD (MERGED WITH IMAGE OVERLAY)
   ========================================================== */
.faq-card-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(184, 132, 42, 0.35);
  border-radius: 18px; 
  overflow: hidden;

  background: linear-gradient(
    145deg, 
    rgba(23, 20, 15, 0.94) 0%, 
    rgba(140, 15, 21, 0.88) 100%
  ), 
  url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?q=80&w=600&auto=format&fit=crop') no-repeat center center;
  background-size: cover;
}

.faq-card-cta-inner {
  position: relative;
  z-index: 2; /* Ensures texts hover crisply over the multi-background stack */
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.faq-card-cta-inner h3 {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
}
html[lang="ar"] .faq-card-cta-inner h3 {
  font-family: 'Noto Kufi Arabic', sans-serif;
}

.faq-card-cta-inner p {
  color: rgba(255, 255, 255, 0.75) !important; /* Bumped contrast to maintain accessibility scores */
}

.faq-card-cta-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 132, 42, 0.25);
  color: var(--chx-gold-light);
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

/* ==========================================================
   MEDIA QUERIES & ACCESSIBILITY FALLBACKS
   ========================================================== */
@media (max-width: 860px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-card-body-inner {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testi-slide,
  .faq-card {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* =====================
   CONTACT
===================== */
.contact-info-card {
  background: linear-gradient(135deg, var(--chx-dark), var(--chx-dark-soft));
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 18px 40px rgba(23, 20, 15, 0.2);
  border: 1px solid rgba(184, 132, 42, 0.2);
}

.contact-info-card .info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-card .info-item:last-of-type {
  border-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 132, 42, 0.18);
  color: var(--chx-gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

html[lang="ar"] .info-label {
  letter-spacing: 0;
  text-transform: none;
}

.info-value {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.info-value:hover {
  color: var(--chx-gold-light);
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 18px 40px rgba(23, 20, 15, 0.07);
  border: 1px solid var(--chx-border);
}

.contact-form-card .form-label {
  font-weight: 500;
  color: var(--chx-dark);
  font-size: 0.9rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border-radius: 10px;
  border: 1px solid #ddd5c8;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--chx-red);
  box-shadow: 0 0 0 0.2rem rgba(184, 20, 28, 0.15);
}

.radio-pill-group {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.radio-pill {
  border: 1px solid #ddd5c8;
  border-radius: 30px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  background: #fcfaf7;
  color: var(--chx-muted);
}

.radio-pill input { display: none; }

.radio-pill:has(input:checked),
.radio-pill.is-checked {
  background: var(--chx-red);
  border-color: var(--chx-red);
  color: #fff;
}

/* Defensive rule: ensure validation feedback stays hidden until Bootstrap
   applies .was-validated (guards against any CDN load-order flash) */
.invalid-feedback {
  display: none;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback {
  display: block;
}

.form-note-tag {
  font-size: 0.78rem;
  color: var(--chx-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.submit-status {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  display: none;
}

.submit-status.show { display: block; }
.submit-status.success { background: rgba(34,153,84,0.08); color: #1e7e44; border: 1px solid rgba(34,153,84,0.25); }
.submit-status.error { background: rgba(184,20,28,0.08); color: var(--chx-red-deep); border: 1px solid rgba(184,20,28,0.25); }

/* =====================
   FOOTER
===================== */
.footer-section {
  background: var(--chx-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-title {
  color: var(--chx-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

html[lang="ar"] .footer-title {
  letter-spacing: 0;
  text-transform: none;
}

.footer-links li,
.footer-contact li {
  padding: 0.3rem 0;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--chx-gold-light);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 1rem;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  color: #fff;
}

.footer-social a:hover {
  background: var(--chx-red);
  border-color: var(--chx-red);
}

/* =====================
   WHATSAPP FLOAT
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--chx-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1040;
  text-decoration: none;
  animation: wa-pulse 2s infinite;
  transition: transform 0.2s;
}

html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 24px;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
}

@keyframes wa-pulse {
  0%, 100% {
    box-shadow:
      0 8px 24px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow:
      0 8px 24px rgba(37, 211, 102, 0.45),
      0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* =====================
   AOS OVERRIDES (subtle, business-appropriate)
===================== */
[data-aos] {
  pointer-events: auto;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }

  html[lang="ar"] .hero-title {
    font-size: 1.85rem !important;
  }

  .section-title {
    font-size: 1.8rem;
  }

  html[lang="ar"] .section-title {
    font-size: 1.5rem;
  }

  .brand-text .name {
    font-size: 1.15rem;
  }

  .brand-text .tag {
    font-size: 0.58rem;
  }

  .globe-fx { display: none; }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .cta-banner {
    text-align: center;
    padding: 2.25rem 1.5rem;
  }
  .cta-banner .d-flex {
    justify-content: center;
  }
}