/* ================================================================
   ENGLISH MASTERY — Modern Redesign
   Inspired by: myworldofwork.co.uk
   Aesthetic: Clean editorial, bold typography, violet accent
================================================================ */

:root {
  --violet: #6B21F0;
  --violet-mid: #8B45FF;
  --violet-light: #EDE9FF;
  --violet-pale: #F5F3FF;
  --green: #059669;
  --green-light: #D1FAE5;
  --navy: #0F172A;
  --ink: #1E293B;
  --mid: #475569;
  --muted: #94A3B8;
  --border: #E2E8F0;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-dark: #0F172A;
  --gold: #D97706;
  --gold-light: #FEF3C7;
  --r: 12px;
  --r-lg: 20px;
  --shadow: 0 4px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 16px 48px rgba(15,23,42,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.65; overflow-x: hidden; }

h1, h2, h3 { font-family: 'Outfit', sans-serif; line-height: 1.1; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
em { font-style: normal; color: var(--violet); }
strong { font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
p { color: var(--mid); line-height: 1.7; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); }
.center { text-align: center; }
.section-sub { max-width: 600px; margin: 0 auto 3rem; font-size: 1.05rem; }

/* ---- OVERLINE LABELS ---- */
.overline {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--violet);
  margin-bottom: 0.9rem;
}
.overline.center { display: block; }
.overline--light { color: #a78bfa; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block; background: var(--violet); color: white;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 0.8rem 1.8rem; border-radius: 50px; border: none; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.01em; text-align: center;
}
.btn-primary:hover { background: #5a18d4; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,33,240,0.35); }
.btn-outline {
  display: inline-block; color: var(--ink); font-weight: 600; font-size: 0.95rem;
  padding: 0.8rem 1.8rem; border-radius: 50px; border: 2px solid var(--border);
  transition: all 0.2s; background: white;
}
.btn-outline:hover { border-color: var(--violet); color: var(--violet); }
.full-width { width: 100%; display: block; text-align: center; }

/* ================================================================
   FREE TRIAL BANNER
================================================================ */
.trial-banner {
  position: sticky;
  top: 68px;           /* sits flush below the 68px fixed nav */
  z-index: 999;        /* below nav (z-index 1000) so nav stays on top */
  background: var(--violet);
  padding: 15px 3.5rem 15px 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}
.trial-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
}
.trial-text {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: rgba(255,255,255,0.93);
  text-align: center;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.trial-text strong {
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.trial-badge {
  display: inline-block;
  background: #f0d060;
  color: #1a0a00;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 50px;
  margin: 0 3px;
  vertical-align: middle;
}
.trial-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: white;
  color: var(--violet);
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 9px 22px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}
.trial-cta:hover { background: var(--violet-pale); transform: translateY(-1px); }
.trial-close {
  position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,0.4);
  font-size: 16px; cursor: pointer; line-height: 1; padding: 4px;
  transition: color 0.15s;
}
.trial-close:hover { color: white; }

/* Trial claimed state — shown when user already registered */
.trial-banner--claimed { background: var(--green); }
.trial-banner--claimed .trial-cta { color: var(--green); }

@media (max-width: 600px) {
  .trial-banner { padding: 12px 2.8rem 12px 1.2rem; gap: 0.8rem; }
  .trial-text { font-size: 14.5px; }
  .trial-cta { font-size: 13px; padding: 7px 16px; }
  .trial-icon { display: none; }
}

/* Promo code pill (kept for future use) */
.offer-code {
  display: inline-block;
  background: #1e293b;
  color: #f0d060;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 2px 10px;
  border-radius: 6px;
  margin: 0 2px;
}

/* ================================================================
   PROMO CODE — basket & checkout
================================================================ */
.promo-row {
  margin: 0.5rem 0 0.4rem;
  border-top: 1px solid var(--violet-light);
  padding-top: 0.8rem;
}
.promo-input-wrap { display: flex; gap: 0.5rem; }
.promo-input-wrap input {
  flex: 1; padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: white; color: var(--ink); transition: border-color 0.2s;
}
.promo-input-wrap input:focus {
  outline: none; border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(107,33,240,0.08);
}
.promo-apply-btn {
  background: var(--navy); color: white;
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700;
  padding: 0.6rem 1.1rem; border-radius: 10px; border: none;
  cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.promo-apply-btn:hover { background: #1e3a6e; }
.promo-feedback {
  margin-top: 0.4rem; font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 0.8rem; border-radius: 8px;
}
.promo-feedback.success { background: var(--green-light); color: var(--green); }
.promo-feedback.error   { background: #fee2e2; color: #dc2626; }

/* Discount line in basket */
.summary-discount {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.88rem; color: var(--green); font-weight: 600;
  padding: 0.25rem 0;
}
.discount-amount { font-weight: 800; }
.promo-tag-inline {
  display: inline-block;
  background: var(--green-light); color: var(--green);
  font-family: 'Courier New', monospace; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; padding: 1px 7px; border-radius: 5px;
}
.summary-total--grand {
  border-top: 2px solid var(--violet-light);
  padding-top: 0.6rem; margin-top: 0.15rem;
}
.summary-total--grand strong { color: var(--violet); font-size: 1.6rem; }

/* Checkout amount bar with breakdown */
.co-amount-bar {
  background: var(--navy); border-radius: var(--r);
  padding: 0.9rem 1.3rem; margin-bottom: 1.2rem;
}
.co-amount-lines {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0.6rem; padding-bottom: 0.5rem;
}
.co-amount-line {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  margin-bottom: 0.2rem;
}
.co-amount-line--discount { color: #6EE7B7; }
.co-amount-total-row {
  display: flex; align-items: center; justify-content: space-between;
}
.co-amount-total-row span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.co-amount-total-row strong { font-size: 1.8rem; font-weight: 800; color: #a78bfa; }

/* ================================================================
   NAV
================================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; height: 68px; gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px; background: var(--violet); color: white;
  font-size: 1rem; font-weight: 800; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text { font-size: 1.1rem; font-weight: 500; color: var(--ink); }
.logo-text strong { font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; margin-left: auto; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--mid);
  padding: 0.5rem 0.8rem; border-radius: 8px; transition: all 0.15s;
}
.nav-links a:hover { color: var(--violet); background: var(--violet-pale); }
.nav-cta {
  background: var(--violet) !important; color: white !important;
  padding: 0.5rem 1.2rem !important; border-radius: 50px !important;
  font-weight: 600 !important; margin-left: 0.5rem;
}
.nav-cta:hover { background: #5a18d4 !important; }

/* ── Nav auth area ── */
.nav-auth-area { display: flex; align-items: center; gap: 0.5rem; margin-left: 0.5rem; flex-shrink: 0; }
.nav-login-btn {
  background: none; border: 1.5px solid var(--border); border-radius: 50px;
  padding: 0.4rem 1rem; font-size: 0.85rem; font-weight: 600;
  color: var(--mid); cursor: pointer; transition: all 0.15s;
}
.nav-login-btn:hover { border-color: var(--violet); color: var(--violet); }
.nav-register-btn {
  background: var(--violet); color: white; border: none; border-radius: 50px;
  padding: 0.4rem 1rem; font-size: 0.85rem; font-weight: 700;
  cursor: pointer; transition: background 0.15s;
}
.nav-register-btn:hover { background: #5a18d4; }
.nav-dash-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--violet-pale); border-radius: 50px;
  padding: 0.3rem 0.9rem 0.3rem 0.4rem;
  border: 1.5px solid var(--violet-light); transition: background 0.15s;
}
.nav-dash-btn:hover { background: var(--violet-light); }
.nav-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--violet); color: white;
  font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-username { font-size: 0.82rem; font-weight: 700; color: var(--violet); }
.nav-logout-btn {
  background: none; border: none; font-size: 0.82rem; font-weight: 600;
  color: var(--muted); cursor: pointer; padding: 0.3rem 0.5rem;
  transition: color 0.15s;
}
.nav-logout-btn:hover { color: #dc2626; }

/* ── Auth modal ── */
.auth-modal-content { max-width: 440px; }
.auth-tabs { display: flex; gap: 0.4rem; background: var(--bg-alt); border-radius: 12px; padding: 4px; margin-bottom: 1.5rem; }
.auth-tab {
  flex: 1; padding: 0.55rem; border-radius: 9px; border: none;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; background: transparent; color: var(--muted); transition: all 0.2s;
}
.auth-tab--active { background: white; color: var(--violet); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.pw-rules {
  font-size: 0.75rem; color: var(--muted); background: var(--bg-alt);
  border-radius: 8px; padding: 0.5rem 0.8rem; margin-bottom: 0.8rem; line-height: 1.5;
}
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
  width: 34px; height: 34px;
}
.hamburger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  position: fixed; inset: 0; background: white; z-index: 2000;
  transform: translateX(100%); transition: transform 0.3s ease;
  padding: 1.5rem 2rem; display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mob-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3rem; }
.mobile-close { background: var(--bg-alt); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; cursor: pointer; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu a { display: block; padding: 1.1rem 0; font-size: 1.2rem; font-weight: 600; color: var(--ink); }

/* Language row at bottom of mobile menu */
.mob-lang-row {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mob-lang-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.mob-lang-btn {
  /* Inherits .lang-toggle styles, just slightly larger for touch */
  padding: 0.5rem 1.1rem 0.5rem 0.8rem !important;
}
.mob-lang-btn .lang-flag  { font-size: 1.15rem; }
.mob-lang-btn .lang-label { font-size: 0.92rem; }

/* ================================================================
   HERO
================================================================ */
#hero {
  padding: 10rem 2rem 5rem; /* extra top padding — nav (68px) + banner (~56px) + breathing room */
  max-width: 1180px; margin: 0 auto;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--violet); margin-bottom: 1.5rem;
}
.eyebrow-dot { width: 8px; height: 8px; background: var(--violet); border-radius: 50%; flex-shrink: 0; }

.hero-left h1 { color: var(--navy); margin-bottom: 1.4rem; }
.h1-accent { color: var(--violet); }

.hero-desc { font-size: 1.05rem; margin-bottom: 2.2rem; max-width: 480px; }

.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-chips { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.chip {
  font-size: 0.78rem; font-weight: 600; padding: 0.35rem 0.9rem;
  border-radius: 50px; background: var(--violet-pale); color: var(--violet);
  border: 1px solid var(--violet-light);
}

.hero-right { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: var(--r-lg); overflow: visible;
  height: 480px;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

.hero-badge-float {
  position: absolute; bottom: -1.5rem; left: -2rem;
  background: var(--violet); border-radius: var(--r); padding: 1rem 1.4rem;
  box-shadow: 0 8px 24px rgba(107,33,240,0.35);
}
.badge-inner { display: flex; align-items: center; gap: 0.8rem; }
.badge-num { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: white; line-height: 1; }
.badge-txt { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.8); line-height: 1.3; }

.hero-badge-float2 {
  position: absolute; top: 1.5rem; right: -1.5rem;
  background: white; border-radius: 50px; padding: 0.6rem 1.2rem;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow); white-space: nowrap;
}

/* ================================================================
   STATS BAND
================================================================ */
.stats-band { background: var(--violet); padding: 2rem 0; }
.stats-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem;
}
.sstat { text-align: center; }
.sstat strong { display: block; font-size: 1.8rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 0.3rem; }
.sstat span { font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.sstat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ================================================================
   ABOUT
================================================================ */
#about { background: white; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col--rev .col-media { order: 2; }
.two-col--rev .col-text  { order: 1; }

.stacked-imgs { position: relative; height: 500px; }
.img-main { position: absolute; width: 72%; height: 75%; bottom: 0; left: 0; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.img-float { position: absolute; width: 44%; height: 44%; top: 0; right: 0; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.img-quote-card {
  position: absolute; bottom: 2rem; right: -1.5rem;
  background: white; border-radius: var(--r); padding: 1rem 1.2rem; max-width: 200px;
  box-shadow: var(--shadow-lg); border-left: 3px solid var(--violet);
}
.img-quote-card p { font-size: 0.78rem; color: var(--mid); line-height: 1.5; font-style: italic; }

.col-text h2 { margin-bottom: 1.2rem; }
.col-text p { margin-bottom: 1rem; }

.platform-row { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 2rem; }
.plat-chip {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--r); padding: 0.7rem 1rem;
}
.plat-chip span { font-size: 1.3rem; }
.plat-chip b { display: block; font-size: 0.85rem; color: var(--ink); }
.plat-chip small { font-size: 0.72rem; color: var(--muted); }

/* ================================================================
   QUALIFICATIONS
================================================================ */
#qualifications { }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.qcard {
  background: white; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.8rem; transition: all 0.25s; position: relative; overflow: hidden;
}
.qcard::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--violet-mid));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.qcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.qcard:hover::after { transform: scaleX(1); }
.qcard--dark { background: var(--navy); border-color: var(--navy); }
.qcard--dark h3 { color: white; }
.qcard--dark p { color: rgba(255,255,255,0.65); }
.qcard-icon { font-size: 1.8rem; margin-bottom: 0.9rem; }
.qcard h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--ink); }
.qcard p { font-size: 0.88rem; line-height: 1.6; }
.qcard-tag {
  display: inline-block; margin-top: 1.2rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 50px;
  background: var(--violet-light); color: var(--violet);
}
.qcard--dark .qcard-tag { background: rgba(107,33,240,0.3); color: #c4b5fd; }

/* ================================================================
   SERVICES
================================================================ */
#services { background: white; }
.services-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.services-header h2 { margin-top: 0; }
.price-pill-big {
  display: flex; align-items: center; gap: 1rem;
  background: var(--violet-pale); border: 2px solid var(--violet-light);
  border-radius: var(--r-lg); padding: 1.2rem 2rem; flex-shrink: 0;
}
.price-fig { font-size: 2.5rem; font-weight: 800; color: var(--violet); line-height: 1; }
.price-sub { font-size: 0.82rem; color: var(--violet); font-weight: 600; line-height: 1.4; }
.price-sub small { color: var(--muted); }

.services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.svc-item {
  display: flex; gap: 1.2rem; padding: 1.6rem;
  border: 1px solid var(--border); margin: -1px -1px 0 0;
  transition: background 0.2s;
}
.svc-item:hover { background: var(--violet-pale); }
.svc-icon {
  font-size: 1.8rem; width: 52px; height: 52px; flex-shrink: 0;
  background: var(--violet-pale); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.svc-item h4 { color: var(--ink); margin-bottom: 0.3rem; }
.svc-item p { font-size: 0.88rem; margin: 0; }

.delivery-banner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem 1.5rem;
  background: var(--navy); border-radius: var(--r-lg); padding: 1.4rem 2rem;
  margin-top: 2rem;
}
.db-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; }
.db-sep { color: rgba(255,255,255,0.25); font-size: 1.2rem; }

/* ================================================================
   BRIDGE SECTION
================================================================ */
#bridge-section { padding: 6rem 0 5rem; }
.bridge-text-above { text-align: center; margin-bottom: 3rem; }
.light-h2 { color: white; margin-bottom: 1rem; }
.accent-em { color: #a78bfa !important; }
.bridge-intro { max-width: 640px; margin: 0 auto; color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7; }
.bridge-illustration { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 0 60px rgba(107,33,240,0.15), 0 24px 64px rgba(0,0,0,0.4); border: 1px solid rgba(167,139,250,0.2); }
.bridge-svg { width: 100%; display: block; }
.bridge-pills { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.8rem; pointer-events: none; flex-wrap: wrap; justify-content: center; }
.bpill { font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.9rem; border-radius: 50px; letter-spacing: 0.05em; text-transform: uppercase; backdrop-filter: blur(8px); }
.bpill--uk { background: rgba(74,122,255,0.2); color: #7ab4ff; border: 1px solid rgba(74,122,255,0.4); }
.bpill--us { background: rgba(107,33,240,0.25); color: #c4b5fd; border: 1px solid rgba(107,33,240,0.4); }
.bpill--c  { background: rgba(201,162,39,0.25); color: #f0d060; border: 1px solid rgba(201,162,39,0.4); }
.bpill--me { background: rgba(39,192,112,0.2); color: #6ee7b7; border: 1px solid rgba(39,192,112,0.35); }

/* Bridge curricula comparison cards */
.bridge-curricula {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem;
  margin-top: 3rem;
}
.bc-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 2rem;
  transition: background 0.2s;
}
.bc-card:hover { background: rgba(255,255,255,0.07); }
.bc-card--center {
  background: rgba(107,33,240,0.15); border-color: rgba(107,33,240,0.3);
  text-align: center;
}
.bc-flag { font-size: 2rem; margin-bottom: 1rem; }
.bc-center-icon { font-size: 2rem; color: #a78bfa; margin-bottom: 1rem; }
.bc-card h4 { color: white; font-size: 1rem; margin-bottom: 0.9rem; }
.bc-card ul { list-style: none; }
.bc-card ul li {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 0.5rem;
}
.bc-card ul li::before { content: '✓'; color: #a78bfa; font-weight: 700; font-size: 0.7rem; flex-shrink: 0; }
.bc-card ul li:last-child { border-bottom: none; }
.bc-card--center p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

@media (max-width: 800px) {
  .bridge-curricula { grid-template-columns: 1fr; }
}

/* ================================================================
   RESULTS
================================================================ */
#results { background: white; }
.results-imgs { position: relative; height: 460px; }
.ri-main { position: absolute; width: 70%; height: 65%; top: 0; right: 0; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.ri-float { position: absolute; width: 52%; height: 48%; bottom: 0; left: 0; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.ri-badge {
  position: absolute; bottom: 5rem; right: 0.5rem;
  background: var(--violet); border-radius: var(--r); padding: 1rem 1.5rem; text-align: center;
  box-shadow: 0 8px 24px rgba(107,33,240,0.35); z-index: 2;
}
.ri-badge strong { display: block; font-size: 1.8rem; font-weight: 800; color: white; line-height: 1; }
.ri-badge span { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.05em; }

.results-list { list-style: none; margin: 1.5rem 0 2rem; }
.results-list li { display: flex; align-items: center; gap: 0.7rem; padding: 0.65rem 0; font-size: 0.95rem; color: var(--mid); border-bottom: 1px solid var(--border); }
.results-list li:last-child { border: none; }
.rl-tick { width: 22px; height: 22px; background: var(--green-light); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; flex-shrink: 0; }

/* ================================================================
   CALENDAR / BOOKING
================================================================ */
#booking { }
.calendar-wrapper { max-width: 820px; margin: 0 auto; background: white; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border); }
.calendar-nav { background: var(--navy); padding: 1.4rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.calendar-nav h3 { color: white; font-size: 1.15rem; font-weight: 700; }
.cal-btn { background: rgba(255,255,255,0.12); border: none; color: white; width: 34px; height: 34px; border-radius: 8px; cursor: pointer; font-size: 1rem; transition: background 0.2s; }
.cal-btn:hover { background: rgba(255,255,255,0.25); }

.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; padding: 1.4rem; }
.cal-day-label { text-align: center; font-size: 0.7rem; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 0; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: all 0.15s;
}
.cal-day:hover { background: var(--violet-light); color: var(--violet); }
.cal-day.today { background: var(--navy); color: white; font-weight: 700; }
.cal-day.selected { background: var(--violet); color: white; font-weight: 700; }
.cal-day.past { color: var(--border); cursor: not-allowed; }
.cal-day.empty { cursor: default; }
.cal-day.has-basket { background: var(--violet-pale); color: var(--violet); font-weight: 700; border: 2px solid var(--violet-light); }

.time-picker { padding: 1.5rem 2rem; border-top: 1px solid var(--border); }
.tp-header { margin-bottom: 1rem; }
.tp-header h4 { font-size: 1rem; color: var(--ink); margin-bottom: 0.2rem; }
.tp-header p { font-size: 0.78rem; color: var(--muted); }
#selectedDateLabel { color: var(--violet); }
.time-slots { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.time-slot {
  padding: 0.45rem 1rem; border-radius: 8px; border: 1.5px solid var(--border);
  font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.15s;
  background: white;
}
.time-slot:hover { border-color: var(--violet); color: var(--violet); background: var(--violet-pale); }
.time-slot.in-basket { background: var(--violet); color: white; border-color: var(--violet); font-weight: 600; }
.time-slot.in-basket:hover { background: #c0392b; border-color: #c0392b; }
.time-slot.taken { background: var(--bg-alt); color: var(--border); border-color: var(--border); cursor: not-allowed; text-decoration: line-through; }

.booking-summary { padding: 1.5rem 2rem; border-top: 1px solid var(--border); background: var(--violet-pale); }
.summary-box { }
.summary-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.summary-header h4 { font-size: 1rem; color: var(--ink); }
.slot-count-badge { background: var(--violet); color: white; font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 50px; }
.basket-list { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; max-height: 220px; overflow-y: auto; }
.basket-item { display: flex; align-items: center; justify-content: space-between; background: white; border: 1px solid var(--border); border-radius: 10px; padding: 0.6rem 0.9rem; }
.basket-item-info { display: flex; flex-direction: column; }
.basket-item-date { font-weight: 700; color: var(--ink); font-size: 0.85rem; }
.basket-item-time { color: var(--muted); font-size: 0.78rem; }
.basket-item-price { font-weight: 700; color: var(--violet); font-size: 0.88rem; margin: 0 0.8rem; }
.basket-remove { background: none; border: 1px solid #fca5a5; color: #dc2626; border-radius: 6px; padding: 0.2rem 0.5rem; font-size: 0.72rem; font-weight: 700; cursor: pointer; transition: background 0.15s; }
.basket-remove:hover { background: #fee2e2; }
.summary-total { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--violet-light); padding-top: 0.8rem; margin-bottom: 0.8rem; font-size: 0.88rem; color: var(--mid); }
.summary-total strong { font-size: 1.5rem; font-weight: 800; color: var(--violet); }
.summary-note { font-size: 0.75rem; color: var(--mid); margin-bottom: 1rem; }

.btn-checkout {
  display: block; width: 100%; background: var(--violet); color: white;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 1rem; border-radius: 50px; border: none; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(107,33,240,0.3);
}
.btn-checkout:hover { background: #5a18d4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,33,240,0.4); }

/* ================================================================
   CHECKOUT MODAL
================================================================ */
.modal {
  position: fixed; inset: 0; background: rgba(15,23,42,0.75);
  z-index: 3000; display: flex; align-items: center; justify-content: center;
  padding: 1rem; backdrop-filter: blur(6px);
}
.modal-content {
  background: white; border-radius: var(--r-lg); padding: 2.5rem;
  max-width: 620px; width: 100%; position: relative;
  max-height: 94vh; overflow-y: auto; box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--bg-alt); border: none; width: 32px; height: 32px;
  border-radius: 50%; font-size: 0.95rem; cursor: pointer; color: var(--mid);
  display: flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.modal-close:hover { background: var(--border); }
.modal-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.modal-sub { color: var(--mid); font-size: 0.88rem; margin-bottom: 1.2rem; }

/* Step tracker */
.checkout-steps { display: flex; align-items: center; margin-bottom: 2rem; background: var(--bg-alt); border-radius: 12px; padding: 0.9rem 1.2rem; }
.cstep { display: flex; align-items: center; gap: 0.5rem; flex: 1; }
.cstep-num { width: 24px; height: 24px; border-radius: 50%; background: var(--border); color: var(--muted); font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.cstep-label { font-size: 0.76rem; font-weight: 600; color: var(--muted); transition: color 0.3s; }
.cstep-line { flex: 1; height: 2px; background: var(--border); margin: 0 0.4rem; border-radius: 2px; transition: background 0.3s; }
.cstep.active .cstep-num { background: var(--violet); color: white; }
.cstep.active .cstep-label { color: var(--violet); }
.cstep.done .cstep-num { background: var(--green); color: white; }
.cstep.done .cstep-label { color: var(--green); }
.cstep-line.done { background: var(--green); }

/* Order summary */
.co-order-summary { background: var(--violet-pale); border-radius: var(--r); padding: 1rem 1.2rem; margin-bottom: 1.4rem; border-left: 3px solid var(--violet); }
.co-order-summary p { font-size: 0.86rem; color: var(--mid); margin-bottom: 0.3rem; }
.co-order-summary p strong { color: var(--ink); }
.co-total-line { display: flex; justify-content: space-between; margin-top: 0.6rem; padding-top: 0.6rem; border-top: 1px solid var(--violet-light); font-size: 0.9rem; font-weight: 700; color: var(--violet); }

/* Form */
.reg-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.92rem; transition: border-color 0.2s;
  background: white; color: var(--ink);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(107,33,240,0.08); }
.form-group textarea { resize: vertical; }
.req { color: #dc2626; }
.reg-consent { font-size: 0.74rem; color: var(--muted); text-align: center; margin: 0.5rem 0 1rem; }
.co-error { background: #fee2e2; border: 1px solid #fca5a5; border-radius: 8px; padding: 0.6rem 1rem; font-size: 0.84rem; color: #dc2626; margin-bottom: 0.8rem; }

/* Payment step */
.pay-choose-label { font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.7rem; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.pay-option { border: 2px solid var(--border); border-radius: var(--r); padding: 1rem 1.2rem; cursor: pointer; transition: all 0.2s; text-align: center; }
.pay-option:hover { border-color: var(--violet); }
.pay-option.active { border-color: var(--violet); background: var(--violet-pale); }
.pay-logo { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; color: #003087; margin-bottom: 0.3rem; }
.revolut-logo { color: #191c1f; }
.pay-option p { font-size: 0.76rem; color: var(--muted); margin: 0; }
.pay-section { border-top: 1px solid var(--border); padding-top: 1.2rem; margin-top: 0.5rem; }
.pay-instruction-text { color: var(--mid); font-size: 0.86rem; margin-bottom: 0.9rem; }
.pay-detail-box { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 1rem; }
.pay-detail-row { display: flex; align-items: flex-start; justify-content: space-between; padding: 0.6rem 1rem; border-bottom: 1px solid var(--border); gap: 1rem; }
.pay-detail-row:last-child { border-bottom: none; }
.pay-detail-label { font-size: 0.74rem; font-weight: 700; color: var(--muted); white-space: nowrap; flex-shrink: 0; padding-top: 0.1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.pay-detail-value { font-size: 0.88rem; font-weight: 600; color: var(--ink); text-align: right; }
.pay-detail-value.mono { font-family: 'Courier New', monospace; letter-spacing: 0.06em; }
.pay-detail-value.paypal-handle { color: #003087; font-size: 1rem; }
.pay-detail-value.ref-val { color: var(--violet); font-size: 0.8rem; }
.pay-detail-value.small-text { font-size: 0.76rem; font-weight: 400; color: var(--muted); line-height: 1.5; }
.pay-detail-value.iban-val { font-size: 0.8rem; letter-spacing: 0.06em; }
.revolut-addr { align-items: flex-start; }
.rev-tabs { display: flex; gap: 0.5rem; margin-bottom: 0.8rem; }
.rev-tab { flex: 1; padding: 0.5rem 0.7rem; border-radius: 8px; border: 1.5px solid var(--border); font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 600; cursor: pointer; background: white; color: var(--mid); transition: all 0.2s; }
.rev-tab:hover { border-color: var(--violet); color: var(--violet); }
.rev-tab--active { background: var(--violet); border-color: var(--violet); color: white; }
.rev-panel { animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.intl-notice { background: #fefce8; border: 1px solid #fde68a; border-radius: 8px; padding: 0.6rem 0.9rem; font-size: 0.8rem; font-weight: 500; color: #92400e; margin-bottom: 0.7rem; }
.btn-paypal { display: block; text-align: center; background: #0070ba; color: white; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 0.85rem 2rem; border-radius: 50px; transition: background 0.2s, transform 0.2s; }
.btn-paypal:hover { background: #005ea6; transform: translateY(-1px); }
.btn-back { display: block; background: none; border: none; color: var(--muted); font-size: 0.85rem; cursor: pointer; margin-top: 1rem; padding: 0; transition: color 0.15s; }
.btn-back:hover { color: var(--ink); }

/* Confirmation step */
.confirm-success { text-align: center; }
.confirm-icon-large { font-size: 3.5rem; margin-bottom: 0.8rem; }
.confirm-success h3 { margin-bottom: 0.5rem; }
.confirm-success > p { color: var(--mid); margin-bottom: 1.2rem; }
.confirm-details { background: var(--violet-pale); border-radius: var(--r); padding: 1.2rem 1.4rem; margin-bottom: 1.2rem; text-align: left; border-left: 3px solid var(--violet); }
.confirm-details p { font-size: 0.85rem; color: var(--mid); margin-bottom: 0.3rem; }
.confirm-details p strong { color: var(--ink); }
.confirm-notice { background: var(--green-light); border-radius: var(--r); padding: 1rem 1.2rem; margin-bottom: 1.5rem; text-align: left; }
.confirm-notice p { font-size: 0.82rem; color: #065f46; margin-bottom: 0.4rem; line-height: 1.5; }
.confirm-notice p:last-child { margin-bottom: 0; }

/* ================================================================
   SIGN UP
================================================================ */
#signup { background: var(--navy); }
.signup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.signup-text .overline { color: #a78bfa; }
.signup-text h2 { color: white; margin-bottom: 1rem; }
.signup-text em { color: #a78bfa; }
.signup-text > p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.signup-perks { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.signup-perks li { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

.contact-form { background: white; border-radius: var(--r-lg); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.contact-form h3 { margin-bottom: 1.4rem; }
.form-note { text-align: center; font-size: 0.76rem; color: var(--muted); margin-top: 0.8rem; }

/* ================================================================
   TOAST
================================================================ */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  background: var(--green); color: white; padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; box-shadow: var(--shadow-lg); z-index: 5000;
  white-space: nowrap; animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateX(-50%) translateY(16px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ================================================================
   FOOTER
================================================================ */
footer { background: #050a14; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-logo .logo-mark { background: var(--violet); }
.footer-logo .logo-text { color: white; }
.footer-brand > p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-grid h4 { color: white; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 0.6rem; }
.footer-grid ul a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-grid ul a:hover { color: white; }
.footer-grid > div:last-child p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.9; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .hero-img-wrap { height: 380px; }
  .hero-badge-float { left: 0; }
  .hero-badge-float2 { right: 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col--rev .col-media { order: 1; }
  .two-col--rev .col-text  { order: 2; }
  .stacked-imgs { height: 380px; }
  .results-imgs { height: 380px; }
  .signup-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .lang-toggle { display: flex; }
}

@media (max-width: 700px) {
  section { padding: 4rem 0; }
  #hero { padding: 7rem 1.5rem 4rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .sstat-sep { display: none; }
  .stats-inner { justify-content: center; gap: 2rem; }
  .services-header { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reg-form .form-row { grid-template-columns: 1fr; }
  .payment-options { grid-template-columns: 1fr; }
  .modal-content { padding: 1.8rem 1.4rem; }
  .img-quote-card { display: none; }
  .hero-badge-float2 { display: none; }
  .checkout-steps { padding: 0.7rem 0.8rem; }
  .cstep-label { display: none; }
  .float-contact { right: 1rem; bottom: 1rem; }
  .float-label { display: none; }
  /* Shrink lang toggle on small phones — flag only, no label */
  .lang-label { display: none; }
  .lang-toggle { padding: 0.35rem 0.6rem; }
}

/* ================================================================
   LANGUAGE TOGGLE & RTL SUPPORT
================================================================ */
.lang-toggle {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--violet-pale); border: 1.5px solid var(--violet-light);
  border-radius: 50px; padding: 0.35rem 0.9rem 0.35rem 0.6rem;
  cursor: pointer; transition: all 0.2s; flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
}
.lang-toggle:hover { background: var(--violet-light); border-color: var(--violet); }
.lang-flag  { font-size: 1rem; line-height: 1; }
.lang-label { font-size: 0.82rem; font-weight: 700; color: var(--violet); }

/* RTL layout adjustments */
[dir="rtl"] body { font-family: 'Noto Sans Arabic', 'Tajawal', 'Cairo', 'Outfit', Arial, sans-serif; }
[dir="rtl"] .nav-inner    { flex-direction: row-reverse; }
[dir="rtl"] .nav-links    { flex-direction: row-reverse; }
[dir="rtl"] .hero-inner   { direction: rtl; }
[dir="rtl"] .hero-cta-row { flex-direction: row-reverse; }
[dir="rtl"] .hero-chips   { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .hero-eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .stats-inner  { flex-direction: row-reverse; }
[dir="rtl"] .two-col      { direction: rtl; }
[dir="rtl"] .platform-row { flex-direction: row-reverse; }
[dir="rtl"] .cards-grid   { direction: rtl; }
[dir="rtl"] .services-list { direction: rtl; }
[dir="rtl"] .svc-item     { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .services-header { flex-direction: row-reverse; }
[dir="rtl"] .bridge-text-above { direction: rtl; }
[dir="rtl"] .bridge-curricula { direction: rtl; }
[dir="rtl"] .results-list li  { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .signup-grid { direction: rtl; }
[dir="rtl"] .signup-perks li  { direction: rtl; }
[dir="rtl"] .contact-method-btn { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .contact-method-btn:hover { transform: translateX(-4px); }
[dir="rtl"] .footer-grid  { direction: rtl; }
[dir="rtl"] .footer-contact-list { direction: rtl; }
[dir="rtl"] .footer-contact-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .footer-contact-chips { flex-direction: row-reverse; }
[dir="rtl"] .float-contact { right: auto; left: 1.5rem; }
[dir="rtl"] .float-btn:hover { transform: translateX(4px) scale(1.04); }
[dir="rtl"] .modal-content { direction: rtl; text-align: right; }
[dir="rtl"] .checkout-steps { flex-direction: row-reverse; }
[dir="rtl"] .reg-form .form-row { direction: rtl; }
[dir="rtl"] .payment-options { direction: rtl; }
[dir="rtl"] .co-amount-bar { direction: rtl; }
[dir="rtl"] .co-amount-total-row { flex-direction: row-reverse; }
[dir="rtl"] .co-amount-line { flex-direction: row-reverse; }
[dir="rtl"] .pay-detail-row { flex-direction: row-reverse; }
[dir="rtl"] .summary-header { flex-direction: row-reverse; }
[dir="rtl"] .summary-total  { flex-direction: row-reverse; }
[dir="rtl"] .basket-item    { flex-direction: row-reverse; }
[dir="rtl"] .basket-item-info { text-align: right; }
[dir="rtl"] .promo-input-wrap { flex-direction: row-reverse; }
[dir="rtl"] .offer-banner { flex-direction: row-reverse; }
[dir="rtl"] .offer-banner-close { right: auto; left: 1.2rem; }
[dir="rtl"] .nav-auth-area { flex-direction: row-reverse; }
[dir="rtl"] .auth-tabs { flex-direction: row-reverse; }
[dir="rtl"] .booking-summary { direction: rtl; }
[dir="rtl"] .tp-header h4 { text-align: right; }
[dir="rtl"] .overview-grid  { direction: rtl; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] p { text-align: right; }
[dir="rtl"] .center, [dir="rtl"] .section-sub,
[dir="rtl"] .bridge-text-above p, [dir="rtl"] .bridge-text-above h2 { text-align: center; }
[dir="rtl"] .overline { text-align: right; }
[dir="rtl"] .overline.center { text-align: center; }
[dir="rtl"] .col-text .overline { text-align: right; }

.float-contact {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 50px;
  padding: 0.65rem 1.1rem 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all 0.22s;
  white-space: nowrap;
  text-decoration: none;
}
.float-btn:hover {
  transform: translateX(-4px) scale(1.04);
  box-shadow: 0 10px 28px rgba(0,0,0,0.32);
}
.float-btn--wa  { background: #25D366; }
.float-btn--wa:hover  { background: #1ebe5a; }
.float-btn--tel { background: var(--violet); }
.float-btn--tel:hover { background: #5a18d4; }
.float-label {
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.01em;
}

/* ================================================================
   CONTACT METHODS — signup section
================================================================ */
.contact-methods {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-methods-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.contact-method-btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--r);
  margin-bottom: 0.7rem;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-method-btn:hover {
  transform: translateX(4px);
  border-color: rgba(255,255,255,0.25);
}
.contact-method-btn--wa    { background: rgba(37,211,102,0.15); }
.contact-method-btn--wa:hover { background: rgba(37,211,102,0.25); }
.contact-method-btn--tel   { background: rgba(107,33,240,0.2); }
.contact-method-btn--tel:hover { background: rgba(107,33,240,0.32); }
.contact-method-btn--email { background: rgba(255,255,255,0.07); }
.contact-method-btn--email:hover { background: rgba(255,255,255,0.13); }
.contact-method-btn--wa svg    { color: #25D366; flex-shrink: 0; }
.contact-method-btn--tel svg   { color: #a78bfa; flex-shrink: 0; }
.contact-method-btn--email svg { color: rgba(255,255,255,0.6); flex-shrink: 0; }
.cm-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.cm-number {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  /* Always render phone numbers left-to-right */
  direction: ltr;
  unicode-bidi: isolate;
}

/* Ensure all phone/number spans stay LTR in RTL mode */
[dir="rtl"] .cm-number,
[dir="rtl"] [dir="ltr"],
[dir="rtl"] .footer-contact-item span[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

/* ================================================================
   FOOTER — contact column & chips
================================================================ */
footer .footer-grid { grid-template-columns: 2fr 1fr 1.2fr 1.4fr; }

.footer-contact-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-chip--wa  { background: rgba(37,211,102,0.15); color: #4ade80; border: 1px solid rgba(37,211,102,0.3); }
.footer-chip--wa:hover  { background: rgba(37,211,102,0.28); }
.footer-chip--tel { background: rgba(107,33,240,0.2); color: #c4b5fd; border: 1px solid rgba(107,33,240,0.35); }
.footer-chip--tel:hover { background: rgba(107,33,240,0.35); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  text-decoration: none;
  transition: opacity 0.15s;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.footer-contact-item:hover { opacity: 1; color: white; }
.fci-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fci-wa    { background: rgba(37,211,102,0.2); color: #4ade80; }
.fci-tel   { background: rgba(107,33,240,0.25); color: #a78bfa; }
.fci-email { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }

@media (max-width: 1024px) {
  footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  footer .footer-grid { grid-template-columns: 1fr; }
  .float-label { display: none; }
  .float-btn { padding: 0.75rem; border-radius: 50%; }
}
