/* ══════════════════════════════════════════════
   امیررضا شریفی — Premium Personal Brand
   Design tokens, themes, layout, animations
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Theme: Imperial (default) ── */
:root, [data-theme="imperial"] {
  --bg:        #0A1628;
  --bg2:       #0D1F3C;
  --bg3:       #12284A;
  --bgc:       rgba(255,255,255,0.042);
  --bgch:      rgba(255,255,255,0.075);
  --tx:        #F8F6F2;
  --tx2:       #8AAAC8;
  --tx3:       #3A526A;
  --gold:      #B8963E;
  --goldl:     #D4AF6B;
  --goldd:     #8A7030;
  --bdr:       rgba(184,150,62,0.22);
  --bdrs:      rgba(255,255,255,0.07);
  --shd:       0 28px 70px rgba(0,0,0,0.48);
  --shds:      0 6px 28px rgba(0,0,0,0.28);
  --rad:       18px;
  --rads:      10px;
}

/* ── Theme: Obsidian ── */
[data-theme="obsidian"] {
  --bg:        #05080E;
  --bg2:       #08101C;
  --bg3:       #0D1828;
  --bgc:       rgba(255,255,255,0.03);
  --bgch:      rgba(255,255,255,0.055);
  --tx:        #E2E2EC;
  --tx2:       #556070;
  --tx3:       #2A3444;
  --gold:      #C9A66B;
  --goldl:     #E0C48A;
  --goldd:     #9A7840;
  --bdr:       rgba(201,166,107,0.16);
  --bdrs:      rgba(255,255,255,0.045);
  --shd:       0 28px 70px rgba(0,0,0,0.65);
  --shds:      0 6px 28px rgba(0,0,0,0.4);
}

/* ── Theme: Pearl ── */
[data-theme="pearl"] {
  --bg:        #F2EFE7;
  --bg2:       #EAE7DE;
  --bg3:       #E0DDD4;
  --bgc:       #FFFFFF;
  --bgch:      #FFFFFF;
  --tx:        #0A1628;
  --tx2:       #4A5568;
  --tx3:       #9CA3AF;
  --gold:      #B8963E;
  --goldl:     #C9A84C;
  --goldd:     #8A7030;
  --bdr:       rgba(184,150,62,0.32);
  --bdrs:      rgba(10,22,40,0.1);
  --shd:       0 28px 70px rgba(10,22,40,0.12);
  --shds:      0 6px 28px rgba(10,22,40,0.08);
}

/* ── Base ── */
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Vazirmatn', sans-serif;
  background: var(--bg);
  color: var(--tx);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.5s ease, color 0.5s ease;
}

/* ── Layout ── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section     { padding: 112px 0; }
.section-alt { background: var(--bg2); }
.section-alt2{ background: var(--bg3); }

/* ── Typography ── */
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800; line-height: 1.22;
  color: var(--tx); margin-bottom: 14px;
  text-wrap: pretty;
}

.section-sub {
  font-size: 17px; color: var(--tx2);
  line-height: 1.85; max-width: 560px;
}

.gold-bar {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--goldl));
  border-radius: 3px; margin-bottom: 24px;
}

.gold-text { color: var(--gold); }
.en        { font-family: 'Manrope', sans-serif; }

/* ── Buttons ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--goldl) 100%);
  color: #0A1628; border: none; border-radius: var(--rads);
  font-family: 'Vazirmatn', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background 0.3s ease;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(184,150,62,0.42); }
.btn-gold:hover::after { background: rgba(255,255,255,0.1); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: transparent;
  color: var(--tx); border: 1px solid var(--bdrs);
  border-radius: var(--rads); font-family: 'Vazirmatn', sans-serif;
  font-size: 15px; font-weight: 500; cursor: pointer;
  text-decoration: none; white-space: nowrap; transition: all 0.3s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ── Cards ── */
.card {
  background: var(--bgc); border: 1px solid var(--bdrs);
  border-radius: var(--rad); padding: 36px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: all 0.35s ease; position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--rad);
  background: linear-gradient(135deg, rgba(184,150,62,0.07) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s ease; pointer-events: none;
}
.card:hover { background: var(--bgch); border-color: var(--bdr); transform: translateY(-5px); box-shadow: var(--shd); }
.card:hover::after { opacity: 1; }

/* ── Background Patterns ── */
.bg-dots {
  background-image: radial-gradient(rgba(184,150,62,0.09) 1px, transparent 1px);
  background-size: 28px 28px;
}
[data-theme="pearl"] .bg-dots {
  background-image: radial-gradient(rgba(10,22,40,0.07) 1px, transparent 1px);
}
.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
[data-theme="pearl"] .bg-grid {
  background-image:
    linear-gradient(rgba(10,22,40,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,22,40,0.035) 1px, transparent 1px);
}

/* ── Animations ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(28px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeRight{ from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:translateX(0); } }
@keyframes shimmer  { 0%,100%{opacity:0.5} 50%{opacity:1} }
@keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes pulseBorder { 0%,100%{opacity:0.5} 50%{opacity:1} }
@keyframes slideInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes countUp  { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.72s cubic-bezier(.22,1,.36,1), transform 0.72s cubic-bezier(.22,1,.36,1);
}
.reveal.vis { opacity:1; transform:translateY(0); }

.reveal-l {
  opacity: 0; transform: translateX(26px);
  transition: opacity 0.72s cubic-bezier(.22,1,.36,1), transform 0.72s cubic-bezier(.22,1,.36,1);
}
.reveal-l.vis { opacity:1; transform:translateX(0); }

.reveal-r {
  opacity: 0; transform: translateX(-26px);
  transition: opacity 0.72s cubic-bezier(.22,1,.36,1), transform 0.72s cubic-bezier(.22,1,.36,1);
}
.reveal-r.vis { opacity:1; transform:translateX(0); }

.d1{transition-delay:.1s} .d2{transition-delay:.18s} .d3{transition-delay:.28s}
.d4{transition-delay:.38s} .d5{transition-delay:.48s} .d6{transition-delay:.58s}

/* ══════════════════════════
   NAVIGATION
   ══════════════════════════ */
.nav {
  position: fixed; top: 0; right: 0; left: 0; z-index: 200;
  padding: 22px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--bdrs);
  padding: 14px 0;
  box-shadow: 0 4px 36px rgba(0,0,0,0.3);
}
[data-theme="pearl"] .nav.scrolled {
  background: rgba(242,239,231,0.93);
  border-bottom: 1px solid rgba(10,22,40,0.1);
  box-shadow: 0 4px 36px rgba(10,22,40,0.08);
}
.nav-inner {
  display: flex; align-items: center; gap: 36px;
}
.nav-logo {
  text-decoration: none; margin-left: auto;
  display: flex; flex-direction: column; line-height: 1.25;
}
.nav-logo-fa { font-size: 16px; font-weight: 700; color: var(--tx); }
.nav-logo-fa span { color: var(--gold); }
.nav-logo-en {
  font-family: 'Manrope', sans-serif; font-size: 10px;
  font-weight: 500; color: var(--tx2); letter-spacing: 0.07em;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--tx2);
  text-decoration: none; transition: color 0.25s;
  position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content:''; position:absolute; bottom:-2px; right:0;
  width:0; height:2px; background:var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--tx); }
.nav-link:hover::after { width: 100%; }
.nav-cta { margin-right: auto; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  margin-right: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--tx); border-radius: 2px; transition: all 0.3s;
}

/* ══════════════════════════
   HERO — IMPERIAL
   ══════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 90px 0 60px;
}

.hero-imperial {
  background:
    radial-gradient(ellipse 70% 80% at 15% 50%, rgba(18,50,90,0.85) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(184,150,62,0.07) 0%, transparent 60%),
    linear-gradient(155deg, #0A1628 0%, #060E1C 100%);
}
.hero-obsidian {
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(15,28,55,0.6) 0%, transparent 65%),
    linear-gradient(180deg, #05080E 0%, #08101C 100%);
}
.hero-pearl {
  background:
    radial-gradient(ellipse 75% 65% at 15% 45%, rgba(184,150,62,0.1) 0%, transparent 60%),
    linear-gradient(155deg, #F2EFE7 0%, #E8E5DC 100%);
}

.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; width: 100%;
}
.hero-text { display: flex; flex-direction: column; gap: 26px; }

.hero-h1 {
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 900; line-height: 1.18; text-wrap: pretty;
}
.hero-h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--tx2); line-height: 1.92; max-width: 500px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 4px; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--tx2);
  padding: 6px 14px; background: var(--bgc); border: 1px solid var(--bdrs);
  border-radius: 100px; backdrop-filter: blur(8px);
}
.badge-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  animation: shimmer 2.5s ease infinite; flex-shrink: 0;
}

/* ── Photo Area ── */
.hero-photo-area {
  display: flex; justify-content: center; align-items: flex-end;
  position: relative;
}

/* Imperial: tall oval with gold ring */
.photo-frame-imperial {
  position: relative;
  width: 400px; height: 500px; max-width: 90vw;
}
.photo-frame-imperial .frame-ring {
  position: absolute; inset: -2px; border-radius: 50% 50% 50% 50% / 42% 42% 58% 58%;
  background: conic-gradient(var(--gold), var(--goldl), transparent, var(--gold));
  animation: rotateSlow 8s linear infinite;
  opacity: 0.55;
}
.photo-frame-imperial .frame-inner {
  position: absolute; inset: 2px;
  border-radius: 50% 50% 50% 50% / 42% 42% 58% 58%;
  overflow: hidden; background: var(--bg2); z-index: 2;
}
.photo-frame-imperial img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 5%;
  filter: brightness(0.92) contrast(1.05);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 95%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 95%);
}

/* Obsidian: hexagonal clip */
.photo-frame-obsidian {
  position: relative; width: 380px; height: 420px; max-width: 90vw;
}
.photo-frame-obsidian .frame-hex {
  position: absolute; inset: 0;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  overflow: hidden; background: var(--bg2);
}
.photo-frame-obsidian .frame-hex::before {
  content: ''; position: absolute; inset: -3px;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  background: linear-gradient(135deg, var(--gold), transparent 60%, var(--goldl));
  opacity: 0.4;
}
.photo-frame-obsidian img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 5%;
  filter: brightness(0.88) contrast(1.08) saturate(0.9);
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 50% 45%, black 50%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 75% at 50% 45%, black 50%, transparent 80%);
}

/* Pearl: clean card frame */
.photo-frame-pearl {
  position: relative; width: 380px; height: 480px; max-width: 90vw;
}
.photo-frame-pearl .frame-card {
  position: absolute; inset: 0; border-radius: 24px;
  overflow: hidden; background: #fff;
  box-shadow: 0 32px 80px rgba(10,22,40,0.15);
  border: 1px solid rgba(184,150,62,0.25);
}
.photo-frame-pearl img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 5%;
}
.photo-frame-pearl .gold-corner {
  position: absolute; bottom: -6px; left: -6px; width: 56px; height: 56px;
  border-bottom: 3px solid var(--gold); border-left: 3px solid var(--gold);
  border-radius: 0 0 0 12px;
}
.photo-frame-pearl .gold-corner2 {
  position: absolute; top: -6px; right: -6px; width: 56px; height: 56px;
  border-top: 3px solid var(--gold); border-right: 3px solid var(--gold);
  border-radius: 0 12px 0 0;
}

/* Floating cards */
.float-card {
  position: absolute; z-index: 10;
  display: flex; align-items: center; gap: 10px;
  background: var(--bgc); border: 1px solid var(--bdrs);
  border-radius: 14px; padding: 10px 16px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  font-size: 13px; font-weight: 600; color: var(--tx);
  box-shadow: var(--shds); white-space: nowrap;
}
.float-card-icon { font-size: 18px; }
.fc1 { top: 48px; left: -28px; animation: fadeLeft 0.7s ease 0.7s both; }
.fc2 { bottom: 90px; left: -40px; animation: fadeLeft 0.7s ease 1.0s both; }
.fc3 { top: 38%; right: -20px; animation: fadeRight 0.7s ease 1.3s both; }

/* Obsidian hero variant — full-width above-fold */
.hero-obsidian-layout {
  display: flex; flex-direction: column; gap: 48px; width: 100%;
}
.hero-obs-top {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.hero-obs-stats {
  display: flex; gap: 36px; align-items: center;
  padding: 28px 32px;
  background: var(--bgc); border: 1px solid var(--bdrs);
  border-radius: var(--rad); backdrop-filter: blur(12px);
}
.obs-stat { text-align: center; }
.obs-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--goldl));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.obs-stat-lbl { font-size: 12px; color: var(--tx2); margin-top: 4px; }
.obs-divider  { width: 1px; height: 40px; background: var(--bdrs); }

/* ══════════════════════════
   TRUST METRICS
   ══════════════════════════ */
.trust-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px;
}
.trust-card { text-align: center; padding: 40px 24px; }
.trust-num {
  font-family: 'Manrope', sans-serif; font-size: 54px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--goldl));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
  animation: countUp 0.6s ease both;
}
.trust-lbl  { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.trust-sub  { font-size: 13px; color: var(--tx2); }

/* ══════════════════════════
   SERVICES
   ══════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px;
}
.service-card { padding: 40px; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 15px;
  background: linear-gradient(135deg, rgba(184,150,62,0.18), rgba(184,150,62,0.05));
  border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.svc-problem { font-size: 14px; color: var(--tx2); line-height: 1.85; }
.svc-divider { height: 1px; background: var(--bdrs); margin: 22px 0; }
.svc-outcomes { display: flex; flex-direction: column; gap: 9px; }
.outcome-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--tx2); }
.outcome-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink:0; }

/* ══════════════════════════
   WHY WORK WITH ME
   ══════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px;
}
.why-card { padding: 32px; }
.why-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(184,150,62,0.15), rgba(184,150,62,0.04));
  border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.why-title { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.why-desc  { font-size: 14px; color: var(--tx2); line-height: 1.82; }

/* ══════════════════════════
   CASE STUDIES
   ══════════════════════════ */
.cases-list { display: flex; flex-direction: column; gap: 28px; margin-top: 48px; }
.case-card {
  padding: 44px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 52px; align-items: start;
}
.case-num {
  font-family: 'Manrope', sans-serif; font-size: 80px; font-weight: 800;
  line-height: 0.9; color: var(--gold); opacity: 0.18; margin-bottom: -4px;
}
.case-title { font-size: 23px; font-weight: 700; margin-bottom: 14px; }
.case-desc  { font-size: 14px; color: var(--tx2); line-height: 1.85; margin-bottom: 20px; }
.case-right { display: flex; flex-direction: column; gap: 20px; }
.case-meta-lbl {
  font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.case-meta-txt { font-size: 14px; color: var(--tx2); line-height: 1.75; }
.tech-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.tech-tag {
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 600;
  padding: 4px 12px; background: var(--bgc);
  border: 1px solid var(--bdrs); border-radius: 100px; color: var(--tx2);
}
.outcome-box {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(184,150,62,0.12), rgba(184,150,62,0.04));
  border: 1px solid var(--bdr); border-radius: var(--rads);
}
.outcome-emoji { font-size: 24px; }
.outcome-text  { font-size: 14px; font-weight: 600; }

/* ══════════════════════════
   PROCESS TIMELINE
   ══════════════════════════ */
.process-wrap { position: relative; padding-right: 48px; margin-top: 60px; }
.process-spine {
  position: absolute; right: 20px; top: 0; bottom: 0; width: 2px;
  background: var(--bdrs);
}
.process-spine-fill {
  position: absolute; right: 20px; top: 0; width: 2px; height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--goldl));
  border-radius: 2px; transition: height 0.8s ease;
}
.process-step {
  display: flex; gap: 28px; margin-bottom: 44px;
  position: relative; align-items: flex-start;
}
.process-dot {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg2); border: 2px solid var(--bdrs);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; transition: all 0.35s ease;
  margin-right: -20px;
}
.process-step.active .process-dot {
  border-color: var(--gold); background: linear-gradient(135deg, var(--goldd), var(--gold));
}
.process-dot-n {
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; color: var(--tx2);
}
.process-step.active .process-dot-n { color: #0A1628; }
.process-step-body { flex: 1; padding-top: 6px; }
.process-step-t { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.process-step-d { font-size: 14px; color: var(--tx2); line-height: 1.82; }

/* ══════════════════════════
   TESTIMONIALS
   ══════════════════════════ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px;
}
.testimonial-card { padding: 36px; }
.testi-quote {
  font-family: 'Manrope', sans-serif; font-size: 40px; font-weight: 800;
  color: var(--gold); line-height: 1; opacity: 0.45; margin-bottom: 14px;
}
.testi-text { font-size: 15px; color: var(--tx2); line-height: 1.9; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 2px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--tx2); margin-top: 2px; }
.testi-stars { display: flex; gap: 2px; color: var(--gold); font-size: 12px; margin-bottom: 4px; }

/* ══════════════════════════
   FAQ
   ══════════════════════════ */
.faq-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 48px; max-width: 820px; margin-inline: auto;
}
.faq-item {
  border: 1px solid var(--bdrs); border-radius: var(--rads);
  overflow: hidden; transition: border-color 0.3s ease; background: var(--bgc);
}
.faq-item.open { border-color: var(--bdr); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer;
  font-size: 15px; font-weight: 600; user-select: none;
  transition: color 0.25s ease; gap: 16px;
}
.faq-q:hover { color: var(--gold); }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  transition: transform 0.35s ease; margin-right: auto;
  color: var(--tx2);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.42s ease;
  font-size: 14px; color: var(--tx2); line-height: 1.9;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 350px; padding: 0 24px 22px; }

/* ══════════════════════════
   BOOKING / CONTACT
   ══════════════════════════ */
.booking-bg {
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%, rgba(184,150,62,0.08) 0%, transparent 60%),
    var(--bg2);
}
.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-lbl { font-size: 13px; font-weight: 600; color: var(--tx2); }
.form-input, .form-textarea {
  padding: 13px 16px;
  background: var(--bgc); border: 1px solid var(--bdrs);
  border-radius: var(--rads); font-family: 'Vazirmatn', sans-serif;
  font-size: 15px; color: var(--tx); direction: rtl;
  transition: border-color 0.25s, box-shadow 0.25s; width: 100%;
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--tx3); }
.form-textarea { resize: vertical; min-height: 120px; }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 20px; background: var(--bgc);
  border: 1px solid var(--bdrs); border-radius: var(--rads);
  text-decoration: none; color: var(--tx);
  transition: all 0.3s ease; font-size: 14px; font-weight: 500;
}
.contact-card:hover { border-color: var(--bdr); color: var(--gold); transform: translateX(-4px); box-shadow: var(--shds); }
.cc-icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cc-lbl { font-size: 11px; color: var(--tx2); margin-top: 1px; }
.cc-arrow { margin-right: auto; color: var(--tx3); font-size: 18px; transition: color 0.25s; }
.contact-card:hover .cc-arrow { color: var(--gold); }

/* ══════════════════════════
   FOOTER
   ══════════════════════════ */
.footer {
  background: var(--bg); border-top: 1px solid var(--bdrs); padding: 64px 0 28px;
}
[data-theme="pearl"] .footer { background: var(--bg2); }

.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand-desc { font-size: 14px; color: var(--tx2); line-height: 1.85; margin-top: 14px; max-width: 290px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--tx); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: var(--tx2); text-decoration: none; transition: color 0.25s; }
.footer-link:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bgc); border: 1px solid var(--bdrs);
  display: flex; align-items: center; justify-content: center;
  color: var(--tx2); text-decoration: none;
  transition: all 0.3s ease;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--bdrs); flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--tx3); }
.footer-copy span { color: var(--gold); }

/* ══════════════════════════
   RESPONSIVE
   ══════════════════════════ */
@media (max-width: 1024px) {
  .trust-grid         { grid-template-columns: repeat(2,1fr); }
  .services-grid      { grid-template-columns: repeat(2,1fr); }
  .why-grid           { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section   { padding: 64px 0; }
  .container { padding: 0 20px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 80px 0 48px; }
  .hero-split { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo-area { order: -1; }
  .photo-frame-imperial,
  .photo-frame-obsidian,
  .photo-frame-pearl { width: 260px; height: 320px; }
  .fc1,.fc2,.fc3 { display: none; }
  .hero-ctas { flex-direction: column; }
  .btn-gold,.btn-ghost { justify-content: center; }

  .trust-grid       { grid-template-columns: repeat(2,1fr); }
  .services-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .case-card        { grid-template-columns: 1fr; gap: 28px; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .booking-grid     { grid-template-columns: 1fr; gap: 40px; }
  .process-grid     { grid-template-columns: 1fr; gap: 40px; }
  .process-wrap     { margin-top: 0; }
  .footer-grid      { grid-template-columns: 1fr; }
  .hero-obs-top     { grid-template-columns: 1fr; }
  .hero-obs-stats   { flex-wrap: wrap; }
  .hero-h1          { font-size: 36px; }
}
