:root {
  --bg: #060403;
  --bg-soft: #0b0807;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --gold: #d6a941;
  --gold-bright: #f6dd9a;
  --gold-deep: #a9802f;
  --gold-dark: #6f5018;
  --champagne: #ece0c4;
  --silver: #cdcdd0;
  --silver-dim: #95979c;
  --white: #f8f5ee;
  --muted: #b9b2a4;
  --blue: #2bb7ff;
  --blue-soft: rgba(43, 183, 255, 0.2);
  --line: rgba(214, 169, 65, 0.26);
  --line-strong: rgba(214, 169, 65, 0.5);
  --line-silver: rgba(255, 255, 255, 0.1);
  --hairline: rgba(246, 221, 154, 0.4);
  --foil: linear-gradient(135deg, #fbeec0 0%, #e7c878 26%, #d6a941 50%, #9a7026 74%, #f3d98a 100%);
  --foil-soft: linear-gradient(135deg, #f6dd9a, #d6a941 60%, #8a6420);
  --shadow-gold: 0 0 30px rgba(214, 169, 65, 0.2);
  --shadow-blue: 0 0 34px rgba(43, 183, 255, 0.16);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.55);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display-en: "Cormorant Garamond", "El Messiri", Georgia, serif;
  --display-ar: "El Messiri", "Cairo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -12%, rgba(214, 169, 65, 0.16), transparent 34rem),
    radial-gradient(circle at 84% 18%, rgba(43, 183, 255, 0.11), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #020202 48%, #070603 100%);
  font-family: "Cairo", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body[dir="ltr"],
html[dir="ltr"] body {
  font-family: "Inter", "Cairo", system-ui, sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

body::selection {
  background: rgba(214, 169, 65, 0.35);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: -100px;
  inset-inline-start: 14px;
  z-index: 120;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--gold-bright);
  color: #120c03;
  font-weight: 800;
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 14px;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(214, 169, 65, 0.12), transparent 60%),
    #030303;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
  /* Failsafe: if JS never runs, the preloader still fades out on its own. */
  animation: preloaderFailsafe 2.5s forwards;
}

.preloader.done {
  animation: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloaderFailsafe {
  0%, 70% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

.preloader-inner {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.preloader-logo {
  width: 116px;
  height: 116px;
  border-radius: 26px;
  padding: 8px;
  border: 1px solid rgba(214, 169, 65, 0.3);
  box-shadow: var(--shadow-gold);
  animation: floatLogo 3.2s ease-in-out infinite;
}

.preloader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--blue));
  animation: loadBar 1.5s var(--ease) forwards;
}

.preloader-tagline {
  margin: 0;
  color: var(--gold-bright);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.85;
}

@keyframes loadBar {
  0% { width: 0; }
  70% { width: 82%; }
  100% { width: 100%; }
}

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

/* ---------- Scroll progress + cursor ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  height: 3px;
  width: 0;
  z-index: 90;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--blue));
  box-shadow: 0 0 16px rgba(214, 169, 65, 0.55);
  transition: width 0.1s linear;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 80;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(214, 169, 65, 0.12), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow.active { opacity: 1; }
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.aurora {
  position: fixed;
  width: 48rem;
  height: 48rem;
  border-radius: 999px;
  filter: blur(84px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -2;
  will-change: transform;
}

.aurora-gold {
  top: -19rem;
  inset-inline-start: -12rem;
  background: rgba(214, 169, 65, 0.14);
  animation: drift 22s ease-in-out infinite;
}

.aurora-blue {
  top: 13rem;
  inset-inline-end: -14rem;
  background: rgba(43, 183, 255, 0.11);
  animation: drift 26s ease-in-out infinite reverse;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 40px); }
}

/* ---------- Navbar ---------- */
.navbar {
  width: min(calc(100% - 28px), var(--max));
  position: sticky;
  top: 14px;
  z-index: 50;
  margin: 14px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line-silver);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-color: rgba(214, 169, 65, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: contain;
  border: 1px solid rgba(214, 169, 65, 0.28);
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s var(--ease);
}

.brand:hover img {
  transform: rotate(-4deg) scale(1.05);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.brand small,
.footer-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  position: relative;
  color: var(--silver);
  font-size: 0.93rem;
  padding: 10px 13px;
  border-radius: 999px;
  transition: 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-bright);
  background: rgba(214, 169, 65, 0.1);
}

.nav-links a.active {
  color: var(--gold-bright);
  background: rgba(214, 169, 65, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switch,
.nav-cta {
  border: 1px solid rgba(214, 169, 65, 0.36);
  border-radius: 999px;
  background: rgba(214, 169, 65, 0.09);
  color: var(--gold-bright);
  padding: 10px 14px;
  cursor: pointer;
  transition: 0.25s var(--ease);
}

.language-switch:hover,
.nav-cta:hover,
.language-switch:focus-visible,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  background: rgba(214, 169, 65, 0.16);
  box-shadow: var(--shadow-gold);
}

.nav-cta {
  color: #120c03;
  font-weight: 800;
  background: linear-gradient(135deg, #fff1b3, var(--gold), #8a6420);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-silver);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-bright);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Sections ---------- */
.section {
  width: min(calc(100% - 34px), var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  min-height: calc(100svh - 80px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding-top: 60px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow span {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
}

html[dir="ltr"] .eyebrow span {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.eyebrow p {
  margin: 0;
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(3.3rem, 8vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

html[dir="rtl"] .hero h1 {
  letter-spacing: -0.045em;
}

.hero h1 em {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: clamp(1.75rem, 3.65vw, 3.7rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--white), var(--gold-bright) 45%, var(--silver));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}

@keyframes shimmer {
  to { background-position: 220% center; }
}

.hero-subtitle,
.section-heading p,
.about-card p,
.package-card p,
.contact-info p,
.footer p,
.form-note {
  color: var(--muted);
  line-height: 1.95;
}

.hero-subtitle {
  max-width: 710px;
  font-size: clamp(1.05rem, 1.3vw, 1.32rem);
  margin: 0 0 28px;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
  cursor: pointer;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: inset-inline-start 0.6s var(--ease);
}

.btn:hover::after,
.btn:focus-visible::after {
  inset-inline-start: 130%;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #120c03;
  background: linear-gradient(135deg, #fff1bd, var(--gold), #6f5019);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  color: var(--silver);
  border-color: var(--line-silver);
  background: rgba(255, 255, 255, 0.045);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--gold-bright);
  border-color: rgba(214, 169, 65, 0.42);
  background: rgba(214, 169, 65, 0.08);
}

.btn-whatsapp {
  color: var(--white);
  border-color: rgba(43, 183, 255, 0.34);
  background: rgba(43, 183, 255, 0.09);
  box-shadow: var(--shadow-blue);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
}

.trust-strip article {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-silver);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.trust-strip article:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 169, 65, 0.34);
}

.trust-strip strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1.1rem;
}

.trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

/* ---------- Hero visual ---------- */
.hero-visual {
  position: relative;
}

.logo-stage {
  position: relative;
  border-radius: 42px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(214, 169, 65, 0.21), rgba(255, 255, 255, 0.04), rgba(43, 183, 255, 0.14)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(214, 169, 65, 0.26);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 34px 90px rgba(0, 0, 0, 0.56), var(--shadow-gold);
  overflow: hidden;
  transition: transform 0.2s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}

.logo-stage::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 100deg, transparent, rgba(214, 169, 65, 0.22), transparent, rgba(43, 183, 255, 0.17), transparent);
  animation: rotateGlow 16s linear infinite;
}

.logo-stage::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.22), rgba(0, 0, 0, 0.78));
}

.hero-logo {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  object-fit: contain;
  width: 100%;
  aspect-ratio: 1 / 1;
  box-shadow: 0 16px 70px rgba(0, 0, 0, 0.4);
}

.orb {
  position: absolute;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  filter: blur(26px);
  z-index: 3;
  opacity: 0.38;
}

.orb-gold {
  bottom: 6%;
  inset-inline-start: 8%;
  background: var(--gold);
}

.orb-blue {
  top: 12%;
  inset-inline-end: 6%;
  background: var(--blue);
}

@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}

/* ---------- Section headings ---------- */
.section-heading {
  max-width: 810px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.contact-info h2 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--white), var(--gold-bright) 55%, var(--silver));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Cards base ---------- */
.about-grid,
.package-grid,
.why-grid {
  display: grid;
  gap: 16px;
}

.about-grid {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

.about-card,
.package-card,
.why-card,
.contact-card,
.timeline-step,
.faq-item {
  position: relative;
  border: 1px solid var(--line-silver);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.027));
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.about-card::before,
.package-card::before,
.why-card::before,
.timeline-step::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(214, 169, 65, 0.1), transparent 36%, rgba(43, 183, 255, 0.04));
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

.about-card:hover::before,
.package-card:hover::before,
.why-card:hover::before,
.timeline-step:hover::before,
.contact-card:hover::before {
  opacity: 1;
}

.about-card {
  padding: 28px;
  min-height: 240px;
}

.about-card.featured {
  border-color: rgba(214, 169, 65, 0.34);
  background: linear-gradient(145deg, rgba(214, 169, 65, 0.13), rgba(255, 255, 255, 0.04));
}

.about-card span,
.package-card .package-label {
  display: inline-flex;
  color: var(--gold-bright);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 900;
}

.about-card h3,
.package-card h3,
.why-card h3,
.timeline-step h3 {
  margin: 10px 0;
  font-size: 1.28rem;
  color: var(--white);
}

/* ---------- Categories ---------- */



.why-card .icon,
.timeline-step .step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #0c0701;
  font-weight: 900;
  background: linear-gradient(135deg, #fff0b8, var(--gold), #75551b);
  box-shadow: var(--shadow-gold);
}

.why-card p,
.package-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ---------- Detailed services ---------- */









/* ---------- Packages ---------- */
.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-card {
  padding: 24px;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(214, 169, 65, 0.2);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 169, 65, 0.4);
}

.package-card ul {
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.package-card li {
  color: var(--silver);
  line-height: 1.55;
}

.package-card li::before {
  content: "✦";
  color: var(--gold-bright);
  margin-inline-end: 8px;
}

/* ---------- Why ---------- */
.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-card {
  padding: 22px;
  min-height: 190px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 169, 65, 0.34);
}

.why-card .icon {
  margin-bottom: 14px;
}

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  inset-inline: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 169, 65, 0.45), rgba(43, 183, 255, 0.24), transparent);
  z-index: 0;
}

.timeline-step {
  padding: 22px;
  min-height: 190px;
  z-index: 1;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.timeline-step:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 169, 65, 0.34);
}

.timeline-step p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-item {
  padding: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  text-align: start;
  cursor: pointer;
}

.faq-question .faq-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(214, 169, 65, 0.4);
  color: var(--gold-bright);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(214, 169, 65, 0.14);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.9;
}

/* ---------- Contact ---------- */
.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 28px;
  border-color: rgba(214, 169, 65, 0.24);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-methods a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.contact-methods a:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 169, 65, 0.32);
  background: rgba(214, 169, 65, 0.05);
}

.contact-methods strong {
  color: var(--gold-bright);
}

.contact-methods span {
  color: var(--silver);
  direction: ltr;
  unicode-bidi: plaintext;
}

.request-form {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.28);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--silver);
  font-weight: 700;
}

label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  outline: none;
  padding: 13px 14px;
  transition: 0.25s var(--ease);
}

select option {
  color: #111;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(214, 169, 65, 0.52);
  box-shadow: 0 0 0 4px rgba(214, 169, 65, 0.1);
}

input.invalid,
select.invalid,
textarea.invalid {
  border-color: rgba(255, 96, 96, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 96, 96, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 16px;
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.footer {
  width: min(calc(100% - 34px), var(--max));
  margin: 0 auto 22px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--line-silver);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 26px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: contain;
  border: 1px solid rgba(214, 169, 65, 0.28);
}

.footer-main p {
  max-width: 480px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-links h4 {
  margin: 0 0 12px;
  color: var(--gold-bright);
}

.footer-links a {
  display: block;
  color: var(--muted);
  margin: 2px 0;
  padding: 9px 0;
  min-height: 40px;
  line-height: 1.5;
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--gold-bright);
  border: 1px solid rgba(214, 169, 65, 0.24);
  background: rgba(214, 169, 65, 0.08);
  font-weight: 800;
  font-size: 0.74rem;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.socials span:hover {
  transform: translateY(-2px);
  background: rgba(214, 169, 65, 0.16);
}

/* ---------- Floating + back to top ---------- */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #081005;
  background: linear-gradient(135deg, #fff1bd, var(--gold), #2bb7ff);
  box-shadow: 0 0 30px rgba(214, 169, 65, 0.32), 0 0 40px rgba(43, 183, 255, 0.22);
  transition: transform 0.25s var(--ease);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #081005;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(214, 169, 65, 0.45);
  animation: pulseRing 2.4s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(214, 169, 65, 0.3);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-bright);
}

.back-to-top:hover {
  border-color: rgba(214, 169, 65, 0.5);
  background: rgba(214, 169, 65, 0.1);
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  inset-inline: 0;
  bottom: 26px;
  margin: 0 auto;
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.94);
  border: 1px solid rgba(214, 169, 65, 0.4);
  color: var(--gold-bright);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  z-index: 110;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reveal ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .navbar {
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid var(--line-silver);
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(22px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .eyebrow,
  .hero-buttons {
    justify-content: center;
  }

  .hero-subtitle,
  .trust-strip {
    margin-left: auto;
    margin-right: auto;
  }

  .logo-stage {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .navbar {
    width: min(calc(100% - 20px), var(--max));
    padding: 10px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .section {
    width: min(calc(100% - 22px), var(--max));
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero h1 em {
    font-size: clamp(1.45rem, 8vw, 2.25rem);
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-strip,
  .package-grid,
  .why-grid,
  .timeline,
  .form-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

    .contact-card,
  .request-form,
  .footer {
    padding: 20px;
  }

  .contact-methods a {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }

  .back-to-top {
    right: 14px;
    bottom: 76px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .cursor-glow,
  .floating-whatsapp::before {
    display: none !important;
  }
}

/* =====================================================
   v3 refinements — services accordion, mobile type,
   floating buttons, density
   ===================================================== */

/* ---- Services accordion ---- */
.services-accordion {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.svc {
  border: 1px solid var(--line-silver);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}

.svc.open {
  border-color: rgba(214, 169, 65, 0.4);
}

.svc.svc-ai.open {
  border-color: rgba(43, 183, 255, 0.4);
}

.svc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: start;
}

.svc-titles {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.svc-tag {
  color: var(--gold-bright);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.svc-ai .svc-tag {
  color: var(--blue);
}

.svc-title {
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
}

.svc-toggle {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(214, 169, 65, 0.4);
  color: var(--gold-bright);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.svc.open .svc-toggle {
  transform: rotate(45deg);
  background: rgba(214, 169, 65, 0.14);
}

.svc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.svc-panel-inner {
  padding: 0 20px 20px;
}

.svc-desc {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.98rem;
}

.svc-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}

.svc-items li {
  position: relative;
  padding: 11px 14px;
  border-radius: 13px;
  color: var(--silver);
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.07);
  line-height: 1.6;
  font-size: 0.92rem;
}

.svc-items li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-inline-end: 8px;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(214, 169, 65, 0.5);
  vertical-align: middle;
}

.svc-ai .svc-items li::before {
  background: var(--blue);
  box-shadow: 0 0 12px rgba(43, 183, 255, 0.5);
}

.svc-note {
  margin: 0 0 16px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: var(--silver-dim);
  font-size: 0.82rem;
  line-height: 1.7;
}

.svc-cta {
  width: 100%;
}

/* ---- Floating buttons: clean stack, no overlap ---- */
.back-to-top {
  bottom: 90px;
}

/* ---- Density: slightly tighter sections ---- */
.section {
  padding: 78px 0;
}

/* ---- Navbar logo: crisp badge, never squished ---- */
.brand img {
  background: #050505;
  padding: 3px;
}

/* ---- Mobile typography: comfortable, proportional ---- */
@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 40px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 3.4rem);
    line-height: 0.95;
  }

  .hero h1 em {
    font-size: clamp(1.25rem, 6.2vw, 1.7rem);
    line-height: 1.4;
    margin-top: 14px;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.85;
  }

  .section-heading h2,
  .contact-info h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  }

  .section-heading p {
    font-size: 0.96rem;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .svc-items {
    grid-template-columns: 1fr;
  }

  .svc-title {
    font-size: 1.02rem;
  }

  .back-to-top {
    right: 14px;
    bottom: 78px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 16px;
  }

  .trust-strip {
    gap: 8px;
  }

  .trust-strip strong {
    font-size: 1rem;
  }

  .trust-strip span {
    font-size: 0.76rem;
  }
}

/* ---- Very small phones ---- */
@media (max-width: 380px) {
  .hero h1 em {
    font-size: 1.18rem;
  }

  .svc-head {
    padding: 15px 16px;
  }
}

/* keep the (now short) trust stats in a row on mobile */
@media (max-width: 720px) {
  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .trust-strip article {
    padding: 11px 8px;
    text-align: center;
  }
}

/* =====================================================
   Phase 1 — legal modal
   ===================================================== */
.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 2, 0.74);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.modal.show .modal-backdrop { opacity: 1; }

.modal-card {
  position: relative;
  width: min(640px, 100%);
  max-height: 84vh;
  overflow-y: auto;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214, 169, 65, 0.3);
  background: linear-gradient(160deg, #0d0c0a, #060606);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), var(--shadow-gold);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.32s var(--ease), opacity 0.32s var(--ease);
}

.modal.show .modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-silver);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-bright);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s var(--ease);
}

.modal-close:hover {
  border-color: rgba(214, 169, 65, 0.5);
  background: rgba(214, 169, 65, 0.1);
}

.modal-title {
  margin: 0 36px 16px 0;
  font-size: 1.5rem;
  color: var(--white);
}

html[dir="ltr"] .modal-title { margin: 0 0 16px 36px; }

.modal-body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.95;
  font-size: 0.96rem;
}

.modal-body p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .modal-card { padding: 22px; max-height: 88vh; }
  .modal-title { font-size: 1.3rem; }
}

/* Phase 2 — per-service delivery note */
.svc-delivery {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.84rem;
  line-height: 1.7;
  opacity: 0.9;
}
.svc-delivery span {
  margin-inline-end: 6px;
}

/* =====================================================
   Phase 3 — work gallery, guarantees, form actions, socials
   ===================================================== */

/* Work gallery */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.work-tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 150px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-silver);
  background:
    radial-gradient(circle at 20% 0%, rgba(214, 169, 65, 0.12), transparent 60%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  justify-content: space-between;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.work-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 169, 65, 0.4);
}

.work-icon {
  font-size: 1.8rem;
  color: var(--gold-bright);
  line-height: 1;
}

.work-label {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--white);
}

.work-cta {
  margin-top: 22px;
  text-align: center;
}

/* Guarantees */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.guarantee-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-silver);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.guarantee-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 169, 65, 0.34);
}

.guarantee-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.guarantee-card h3 {
  margin: 12px 0 8px;
  font-size: 1.12rem;
  color: var(--white);
}

.guarantee-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.94rem;
}

/* Testimonials (shown only when data exists) */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.testimonial-card {
  margin: 0;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-silver);
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-card blockquote {
  margin: 0 0 12px;
  color: var(--silver);
  line-height: 1.85;
}

.testimonial-card figcaption {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Form actions row + copy button */
.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.form-actions .form-submit { flex: 2; margin-top: 0; }
.form-actions .form-copy { flex: 1; margin-top: 0; }

/* Footer socials as functional links */
.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--gold-bright);
  border: 1px solid rgba(214, 169, 65, 0.28);
  background: rgba(214, 169, 65, 0.08);
  font-weight: 800;
  font-size: 0.82rem;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.socials a:hover {
  transform: translateY(-2px);
  background: rgba(214, 169, 65, 0.18);
}

@media (max-width: 1080px) {
  .work-grid, .guarantee-grid, .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .work-grid, .guarantee-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .form-actions { flex-direction: column; }
  .form-actions .form-submit, .form-actions .form-copy { flex: none; width: 100%; }
}

/* Phase 4 — required marker, inline field errors, inert panels */
label.req > span[data-i18n]::after {
  content: " *";
  color: var(--gold-bright);
}

.field-error {
  display: block;
  margin-top: 2px;
  color: #ff8585;
  font-size: 0.8rem;
  font-weight: 600;
}

/* inert panels are visually collapsed already; ensure no interaction */
.svc-panel[inert],
.faq-answer[inert] {
  pointer-events: none;
}

/* =====================================================
   ELEVATION LAYER — couture refinement (visual only)
   Spend boldness on the hero plaque; keep all else quiet.
   ===================================================== */

/* ---- Warmer, deeper atmosphere ---- */
body {
  background:
    radial-gradient(circle at 50% -10%, rgba(214, 169, 65, 0.14), transparent 36rem),
    radial-gradient(circle at 86% 16%, rgba(43, 183, 255, 0.08), transparent 30rem),
    radial-gradient(circle at 50% 120%, rgba(214, 169, 65, 0.06), transparent 40rem),
    linear-gradient(180deg, #080605 0%, #050403 50%, #0a0705 100%);
}

/* Film grain + vignette for depth (very subtle, behind content) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 38%, transparent 52%, rgba(0, 0, 0, 0.55) 100%);
}

/* ---- Display typography (restraint: hero + section titles + modal only) ---- */
.hero h1 {
  font-family: var(--display-en);
  font-weight: 600;
  letter-spacing: -0.02em;
}

html[dir="rtl"] .hero h1 em,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .contact-info h2,
html[dir="rtl"] .modal-title {
  font-family: var(--display-ar);
  font-weight: 600;
}

html[dir="ltr"] .hero h1 em,
html[dir="ltr"] .section-heading h2,
html[dir="ltr"] .contact-info h2,
html[dir="ltr"] .modal-title {
  font-family: var(--display-en);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.section-heading h2,
.contact-info h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.1rem);
  line-height: 1.08;
}

/* Gold-foil heading treatment */
.hero h1 em,
.section-heading h2,
.contact-info h2 {
  background: var(--foil);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foilShift 9s linear infinite;
}

@keyframes foilShift {
  to { background-position: 200% center; }
}

/* "MarkPlus" wordmark in hero stays bright ivory for contrast */
.hero h1 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

/* ---- Refined eyebrows / kickers ---- */
.eyebrow,
.section-kicker {
  font-family: "Inter", "Cairo", sans-serif;
  letter-spacing: 0.32em;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--champagne);
}

.eyebrow span,
.section-kicker::before {
  background: linear-gradient(90deg, transparent, var(--hairline));
}

/* ---- THE SIGNATURE: hero logo presented as a gold-foil plaque ---- */
.logo-stage {
  border-radius: 26px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(20, 15, 8, 0.9), rgba(6, 5, 4, 0.96));
  border: 1px solid rgba(246, 221, 154, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(246, 221, 154, 0.12),
    inset 0 0 60px rgba(0, 0, 0, 0.7),
    0 40px 90px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(214, 169, 65, 0.12);
}

/* inner double gold rule */
.logo-stage .hero-logo {
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(246, 221, 154, 0.5),
    0 0 0 7px rgba(8, 6, 4, 0.9),
    0 0 0 8px rgba(246, 221, 154, 0.22),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

/* corner ticks — couture certificate detail */
.logo-stage::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  background: none;
  border: 0;
  pointer-events: none;
  z-index: 4;
  animation: none;
  box-shadow: none;
  background-image:
    linear-gradient(var(--hairline), var(--hairline)), linear-gradient(var(--hairline), var(--hairline)),
    linear-gradient(var(--hairline), var(--hairline)), linear-gradient(var(--hairline), var(--hairline)),
    linear-gradient(var(--hairline), var(--hairline)), linear-gradient(var(--hairline), var(--hairline)),
    linear-gradient(var(--hairline), var(--hairline)), linear-gradient(var(--hairline), var(--hairline));
  background-repeat: no-repeat;
  background-size: 18px 1px, 1px 18px, 18px 1px, 1px 18px, 18px 1px, 1px 18px, 18px 1px, 1px 18px;
  background-position:
    left top, left top, right top, right top,
    left bottom, left bottom, right bottom, right bottom;
}

/* slow gold light sweep across the plaque */
.logo-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  z-index: 3;
  background: linear-gradient(115deg, transparent 38%, rgba(246, 221, 154, 0.14) 50%, transparent 62%);
  background-size: 280% 100%;
  animation: plaqueSweep 7s ease-in-out infinite;
}

@keyframes plaqueSweep {
  0% { background-position: 180% 0; }
  60%, 100% { background-position: -80% 0; }
}

.orb-gold, .orb-blue { opacity: 0.26; filter: blur(34px); }

/* ---- Buttons: foil primary, hairline ghost ---- */
.btn {
  font-family: "Inter", "Cairo", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
}

.btn-primary {
  color: #1a1206;
  background: var(--foil);
  background-size: 180% auto;
  box-shadow: 0 10px 30px rgba(214, 169, 65, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: background-position 0.5s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(214, 169, 65, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-secondary {
  border-color: rgba(246, 221, 154, 0.28);
  background: rgba(246, 221, 154, 0.03);
  color: var(--champagne);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(246, 221, 154, 0.55);
  background: rgba(246, 221, 154, 0.07);
  color: var(--gold-bright);
}

/* quiet the old diagonal shine so it reads refined, not flashy */
.btn::after { opacity: 0.5; }

/* ---- Cards: crisp hairline, refined hover, corner accent on featured ---- */
.about-card,
.guarantee-card,
.work-tile,
.package-card,
.why-card,
.timeline-step,
.faq-item,
.svc,
.contact-card {
  border-color: rgba(246, 221, 154, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}

.about-card.featured,
.svc.open {
  border-color: rgba(246, 221, 154, 0.4);
}

/* hairline top accent that brightens on hover (quiet, consistent) */
.about-card::after,
.guarantee-card::after,
.work-tile::after,
.package-card::after,
.why-card::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  opacity: 0.35;
  transition: opacity 0.3s var(--ease);
}

.about-card:hover::after,
.guarantee-card:hover::after,
.work-tile:hover::after,
.package-card:hover::after,
.why-card:hover::after {
  opacity: 1;
}

.about-card:hover,
.guarantee-card:hover,
.work-tile:hover,
.package-card:hover,
.why-card:hover,
.timeline-step:hover {
  border-color: rgba(246, 221, 154, 0.34);
}

/* icons & step numbers in foil */
.work-icon,
.guarantee-icon,
.step-number {
  color: var(--gold-bright);
}

.step-number {
  background: var(--foil) !important;
  color: #1a1206 !important;
}

/* ---- Navbar: refined glass + foil CTA ---- */
.navbar {
  border-radius: 999px;
  border-color: rgba(246, 221, 154, 0.12);
  background: rgba(8, 6, 5, 0.66);
}

.navbar.scrolled {
  border-color: rgba(246, 221, 154, 0.2);
  background: rgba(8, 6, 5, 0.9);
}

.nav-cta {
  background: var(--foil);
  color: #1a1206;
}

.brand strong {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--champagne);
  letter-spacing: 0.04em;
}

/* ---- Accordion + delivery line refinement ---- */
.svc-title {
  font-weight: 700;
}

.svc-delivery {
  color: var(--champagne);
}

/* ---- Trust strip: refined ---- */
.trust-strip article {
  border-color: rgba(246, 221, 154, 0.14);
  border-radius: 16px;
}

.trust-strip strong {
  font-family: var(--display-en);
  font-weight: 700;
  font-size: 1.3rem;
  background: var(--foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Section rhythm: a touch more air ---- */
.section-heading {
  margin-bottom: 40px;
}

/* ---- Floating WhatsApp: refined foil ring ---- */
.floating-whatsapp {
  background: var(--foil);
}

/* ---- Reduced motion: stop the ambient animations ---- */
@media (prefers-reduced-motion: reduce) {
  .hero h1 em,
  .section-heading h2,
  .contact-info h2,
  .trust-strip strong,
  .logo-stage::after {
    animation: none !important;
  }
}

/* Keep LTR contact details (phone/email) reading correctly inside RTL layout */
html[dir="rtl"] .footer-links a[dir="ltr"] {
  text-align: right;
  unicode-bidi: plaintext;
}
.contact-methods span[dir="ltr"] {
  unicode-bidi: plaintext;
}
