/* =====================================================
   SIRAJ VENTURES — styles.css
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --navy-darkest: #010810;
  --navy-dark:  #030d1f;
  --navy:       #040d24;
  --blue:       #1a5fff;
  --blue-light: #2979ff;
  --card-bg:    #040d24;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --white:      #fdfaf4;
  --off-white:  #f0e8d8;
  --text-muted: #a8b8d0;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card:       0 4px 16px rgba(3,13,31,.10), 0 1px 4px rgba(3,13,31,.06);
  --shadow-card-hover: 0 16px 48px rgba(3,13,31,.18), 0 4px 12px rgba(3,13,31,.10);
  --shadow-gold:       0 4px 24px rgba(201,168,76,.25);

  --nav-h-desk: 196px;
  --nav-h-mob:  90px;

  --pad-desk: 100px;
  --pad-mob:  64px;

  --max-w: 1200px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t: .3s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--navy-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem);   font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem);  font-weight: 700; }
h4 { font-size: clamp(1rem, 1.4vw, 1.15rem);  font-weight: 600; }
p  { font-size: clamp(.95rem, 1.4vw, 1.05rem); line-height: 1.75; }

/* ── Layout helpers ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.section-pad { padding: var(--pad-mob) 0; }
@media (min-width: 1024px) { .section-pad { padding: var(--pad-desk) 0; } }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }

/* ── Eyebrow pill ── */
.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  transition: background var(--t), box-shadow var(--t), transform var(--t);
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
  white-space: nowrap;
}
.btn-gold:hover  { background: #b89440; border-color: #b89440; box-shadow: 0 8px 28px rgba(201,168,76,.45); transform: translateY(-2px); }
.btn-gold:active { transform: translateY(0); }
.btn-gold:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,.55);
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
  white-space: nowrap;
}
.btn-outline:hover  { background: var(--white); color: var(--navy-dark); border-color: var(--white); transform: translateY(-2px); }
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible { outline: 3px solid rgba(255,255,255,.6); outline-offset: 3px; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  transition: background var(--t), transform var(--t);
}
.btn-whatsapp:hover  { background: #1faf55; transform: translateY(-2px); }
.btn-whatsapp:active { transform: translateY(0); }
.btn-whatsapp:focus-visible { outline: 3px solid #25d366; outline-offset: 3px; }

/* ── Navigation ── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h-mob);
  background: transparent;
  transition: background var(--t), box-shadow var(--t), height var(--t);
}
#site-nav.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
@media (min-width: 1024px) { #site-nav { height: var(--nav-h-desk); } }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 40px; } }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  line-height: 1.1;
}
.nav-logo .logo-img { height: 70px; width: auto; object-fit: contain; flex-shrink: 0; }
@media (min-width: 1024px) { .nav-logo .logo-img { height: 180px; } }
.nav-logo:hover { opacity: .9; }
.nav-logo:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .logo-name { color: var(--gold); }
.nav-logo-text .logo-tag  { font-family: 'DM Sans', sans-serif; font-size: .6rem; font-weight: 400; color: rgba(255,255,255,.5); letter-spacing: .02em; }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--t);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t);
  border-radius: 2px;
}
.nav-links a:hover        { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(.5); }
.nav-links a.active       { color: var(--white); }
.nav-links a.active::after{ transform: scaleX(1); }
.nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--t);
}
.nav-hamburger:hover { background: rgba(255,255,255,.1); }
.nav-hamburger:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), width var(--t);
}
.nav-hamburger span:nth-child(3) { width: 70%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-hamburger { display: none; } }

/* Mobile drawer */
.nav-mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--navy-dark);
  z-index: 999;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  box-shadow: -8px 0 40px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 0;
}
.nav-mobile-drawer.open { transform: translateX(0); }
.nav-mobile-drawer a {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--t), padding-left var(--t);
}
.nav-mobile-drawer a:hover  { color: var(--gold-light); padding-left: 6px; }
.nav-mobile-drawer a.active { color: var(--gold); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ── Footer ── */
#site-footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.05); }

.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px)  { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 1.5fr 1fr 1.2fr; padding: 80px 40px 60px; } }

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tagline { font-size: .875rem; color: var(--text-muted); margin-bottom: 8px; }
.footer-powered  { font-size: .78rem; color: rgba(201,168,76,.65); font-style: italic; }

.footer-col-links h4,
.footer-col-social h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t), padding-left var(--t);
}
.footer-col-links a:hover { color: var(--white); padding-left: 4px; }

.footer-handle  { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.footer-insta   { font-size: .875rem; color: var(--text-muted); margin-bottom: 20px; }
.footer-insta a { color: var(--gold-light); transition: color var(--t); }
.footer-insta a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  padding: 20px 24px;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero { justify-content: center; } }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img,
.hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay, rgba(3,13,31,.52));
}
/* Grain texture over hero */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.055;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h-mob) + 24px) 20px 210px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1023px) {
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); margin-bottom: 12px; }
  .float-badge { margin-bottom: 14px; }
  .hero .hero-sub { padding: 14px 16px; margin: 0 auto 18px; font-size: .95rem; }
  .hero .hero-btns { gap: 10px; }
  .hero .hero-btns .btn-outline { display: none; }
}
@media (min-width: 1024px) { .hero-content { padding: calc(var(--nav-h-desk) + 48px) 40px 140px; } }
.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0,0,0,.5); }
.hero .hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.97);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.75;
  font-weight: 400;
  text-shadow: none;
  background: rgba(4,13,36,.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(26,95,255,.22);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  padding: 18px 24px;
}
.hero .hero-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Stat bar */
.stat-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(3,13,31,.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.07);
}
.stat-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
}
@media (min-width: 768px) { .stat-bar-inner { grid-template-columns: repeat(4, 1fr); } }
.stat-bar-item {
  background: rgba(3,13,31,.55);
  padding: 22px 16px;
  text-align: center;
}
.stat-bar-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  color: var(--gold-light);
  display: block;
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-bar-item .stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}

/* ── Stat cards grid ── */
.stat-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px)  { .stat-cards-grid { grid-template-columns: repeat(3, 1fr); } }

.stat-card {
  background: rgba(3,8,24,.72);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--t), border-color var(--t), background var(--t);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.5); background: rgba(3,8,24,.85); }
.stat-card .stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #f5d98a;
  display: block;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 0 24px rgba(201,168,76,.4);
}
.stat-card .stat-label { font-size: .78rem; color: rgba(255,255,255,.7); line-height: 1.4; }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid rgba(4,13,36,.1);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  box-shadow: var(--shadow-card);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: rgba(26,95,255,.2); }

.card-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.card-dark:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.2); background: rgba(255,255,255,.06); }

/* ── Service cards ── */
.service-card {
  background: var(--white);
  border: 1px solid rgba(4,13,36,.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  box-shadow: var(--shadow-card);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); border-color: rgba(26,95,255,.25); }
.service-card .card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(26,95,255,.12), rgba(4,13,36,.06));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.service-card h3 { color: var(--navy-dark); }
.service-card p  { color: #4a5568; flex-grow: 1; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--t), color var(--t);
}
.service-card .card-link:hover { color: var(--navy); gap: 10px; }
.service-card .card-link:focus-visible { outline: 2px solid var(--blue); border-radius: 3px; }

/* ── Grid helpers ── */
.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
@media (min-width: 768px)  { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.grid-4 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
@media (min-width: 768px)  { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.grid-3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

/* ── Section heading ── */
.section-heading          { margin-bottom: 48px; }
.section-heading h2       { margin-bottom: 16px; }
.section-heading p        { font-size: clamp(.95rem, 1.4vw, 1.05rem); color: #4a5568; max-width: 640px; }
.section-heading.text-center p { margin: 0 auto; }
.section-heading.light h2 { color: var(--white); }
.section-heading.light p  { color: var(--text-muted); }

/* ── Mission / Vision cards ── */
.mission-card, .vision-card {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-left-width: 4px;
}
.mission-card { border-left-color: var(--blue); }
.vision-card  { border-left-color: var(--gold); }
.mission-card h4, .vision-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mission-card h4 { color: #7ba4e8; }
.vision-card  h4 { color: var(--gold); }
.mission-card p, .vision-card p { color: var(--text-muted); font-size: .9rem; }

/* ── Photo CTA ── */
.photo-cta { position: relative; overflow: hidden; }
.photo-cta-bg { position: absolute; inset: 0; }
.photo-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.photo-cta-bg::after { content: ''; position: absolute; inset: 0; background: var(--overlay, rgba(3,13,31,.62)); }
.photo-cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.055;
  pointer-events: none;
}
.photo-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--pad-mob) 24px;
}
@media (min-width: 1024px) { .photo-cta-content { padding: var(--pad-desk) 40px; } }
.photo-cta-content h2 { color: var(--white); margin-bottom: 16px; }
.photo-cta-content p  { color: rgba(255,255,255,.72); max-width: 540px; margin: 0 auto 32px; }

/* ── Process steps ── */
.process-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
@media (min-width: 1024px) { .process-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.process-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.process-step:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.25); background: rgba(255,255,255,.06); }
.process-step .step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(201,168,76,.18);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 { color: var(--gold-light); font-size: 1.05rem; margin-bottom: 8px; }
.process-step p  { color: var(--text-muted); font-size: .88rem; }

.timeline-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  font-size: .875rem;
  color: var(--gold-light);
  text-align: center;
}

/* ── Promise box ── */
.promise-box {
  border-left: 4px solid var(--gold);
  background: rgba(201,168,76,.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 32px;
  margin-top: 32px;
}
.promise-box p { font-style: italic; color: var(--navy-dark); font-size: .95rem; }

/* ── Benefit cards ── */
.benefit-card {
  background: var(--white);
  border: 1px solid rgba(4,13,36,.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.benefit-card .benefit-icon { font-size: 1.75rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1.02rem; color: var(--navy-dark); margin-bottom: 8px; }
.benefit-card p  { font-size: .875rem; color: #4a5568; }

/* ── Reg cards ── */
.reg-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.reg-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.25); background: rgba(255,255,255,.06); }
.reg-card .reg-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(201,168,76,.75);
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.reg-card h3 { color: var(--gold-light); font-size: 1rem; margin-bottom: 8px; }
.reg-card p  { color: var(--text-muted); font-size: .875rem; line-height: 1.65; }

/* ── Warning cards ── */
.warning-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(196,50,50,.25);
  border-top: 4px solid #c43232;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--t);
}
.warning-card:hover { transform: translateY(-4px); }
.warning-card h3 { color: #e57373; margin-bottom: 10px; }
.warning-card p  { color: var(--text-muted); font-size: .9rem; }

/* ── PRO/GRO callout ── */
.pro-callout {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,.08);
}
.pro-callout p { color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.8; font-style: italic; }

/* ── Compliance bar ── */
.compliance-bar {
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.compliance-bar svg  { flex-shrink: 0; color: var(--gold); }
.compliance-bar p    { color: var(--text-muted); font-size: .9rem; margin: 0; line-height: 1.6; }
.compliance-bar strong { color: var(--gold-light); }

/* ── Social Media hero split ── */
.sm-hero {
  min-height: 100vh;
  background: #010810;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h-mob) + 32px) 0 80px;
}
@media (min-width: 1024px) {
  .sm-hero { padding: calc(var(--nav-h-desk) + 40px) 0 80px; }
}
.sm-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,.1) 0%, transparent 70%);
  pointer-events: none;
}
.sm-hero-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .sm-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
    padding: 0 40px;
    gap: 60px;
  }
}
.sm-hero-left h1   { color: var(--white); margin-bottom: 20px; overflow-wrap: break-word; word-break: break-word; }
.sm-hero-left p    { color: rgba(255,255,255,.75); max-width: 600px; margin-bottom: 32px; line-height: 1.8; }
.sm-hero-right {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201,168,76,.25);
  box-shadow: 0 0 60px rgba(201,168,76,.12), 0 20px 60px rgba(0,0,0,.5);
}
.sm-hero-right img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 1024px) {
  .sm-hero-right img { height: 540px; }
}
.sm-hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1,8,16,.3) 0%, transparent 60%);
}
/* Stat badges overlay on right image */
.sm-hero-badges {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  gap: 10px;
}
.sm-badge {
  background: rgba(3,13,31,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  text-align: center;
  flex: 1;
}
.sm-badge .sm-badge-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-light);
  display: block;
  line-height: 1.1;
}
.sm-badge .sm-badge-label {
  font-size: .65rem;
  color: rgba(255,255,255,.55);
  line-height: 1.3;
}

/* ── Social media page ── */
.proof-stat { text-align: center; }
.proof-stat .proof-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.proof-stat .proof-label { font-size: .875rem; color: var(--text-muted); line-height: 1.4; }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }

.story-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201,168,76,.3);
  box-shadow: 0 0 48px rgba(201,168,76,.12);
}
.story-image-wrap img { width: 100%; height: 400px; object-fit: cover; }

.big-quote { text-align: center; max-width: 800px; margin: 0 auto; }
.big-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.big-quote cite { font-size: .875rem; color: var(--text-muted); font-style: normal; }

/* ── Vertical timeline steps ── */
.vertical-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.vertical-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(201,168,76,.08) 100%);
}
.v-step { display: flex; gap: 28px; padding-bottom: 36px; }
.v-step:last-child { padding-bottom: 0; }
.v-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 1;
}
.v-step-content { padding-top: 10px; }
.v-step-content h3 { color: var(--gold-light); margin-bottom: 8px; font-size: 1.05rem; }
.v-step-content p  { color: var(--text-muted); font-size: .9rem; }

/* ── Pillar cards ── */
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(4,13,36,.1);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.pillar-card .pillar-icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(201,168,76,.14), rgba(201,168,76,.04));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.pillar-card h3 { color: var(--navy-dark); font-size: 1.05rem; margin-bottom: 8px; }
.pillar-card p  { font-size: .875rem; color: #4a5568; }

/* ── Contact ── */
.contact-info-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 28px 20px;
}
@media (min-width: 640px) { .contact-info-card { padding: 40px 36px; } }
.contact-info-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 14px; }
.contact-info-card > p { color: var(--text-muted); margin-bottom: 28px; }
.contact-phone { font-size: 1rem; font-weight: 500; color: var(--text-muted); margin-top: 14px; display: block; letter-spacing: .02em; }
.contact-insta { font-size: .875rem; color: var(--gold-light); margin-top: 8px; display: block; transition: color var(--t); }
.contact-insta:hover { color: var(--gold); }

.contact-service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--t), border-color var(--t);
}
.contact-service-card:hover { transform: translateX(6px); border-color: rgba(201,168,76,.3); }
.contact-service-card .svc-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-service-card h4 { color: var(--white); font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600; }
.contact-service-card p  { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid rgba(4,13,36,.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t);
}
.faq-item:hover { box-shadow: var(--shadow-card-hover); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy-dark);
  transition: background var(--t), color var(--t);
}
.faq-num {
  font-family: 'Playfair Display', serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 28px;
  flex-shrink: 0;
}
.faq-question:hover      { background: var(--off-white); color: var(--navy); }
.faq-question:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }

.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  transition: transform var(--t), background var(--t), color var(--t);
}
.faq-item.open .faq-icon  { transform: rotate(45deg); background: var(--blue); color: var(--white); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-answer-inner {
  padding: 0 24px 24px;
  background: var(--white);
  font-size: .95rem;
  color: #4a5568;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ── Closing italic ── */
.closing-italic {
  font-style: italic;
  color: var(--gold-light);
  font-size: .95rem;
  margin-top: 36px;
  text-align: center;
  opacity: .85;
  line-height: 1.7;
}

/* ── Background helpers ── */
.bg-navy-dark  {
  background: var(--navy-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='14' cy='14' r='1' fill='rgba(201%2C168%2C76%2C0.1)'/%3E%3C/svg%3E");
  background-size: 28px 28px;
}
.bg-off-white  { background: var(--off-white); }
.bg-dark       {
  background: #010810;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='14' cy='14' r='1' fill='rgba(201%2C168%2C76%2C0.08)'/%3E%3C/svg%3E");
  background-size: 28px 28px;
}

/* ── Contact info rows ── */
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-row-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-row > div:last-child { min-width: 0; overflow: hidden; }
.contact-info-row .row-label  { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.contact-info-row .row-value  { font-size: .92rem; font-weight: 500; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.contact-info-row .row-value a { color: var(--gold-light); transition: color var(--t); }
.contact-info-row .row-value a:hover { color: var(--gold); }

/* ── Icon circle for service cards ── */
.icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(26,95,255,.12);
  border: 1.5px solid rgba(26,95,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  margin-bottom: 16px;
}
.icon-circle svg { width: 22px; height: 22px; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }
.reveal-delay-4 { transition-delay: .42s; }
.reveal-delay-5 { transition-delay: .52s; }
.reveal-delay-6 { transition-delay: .62s; }

/* ══════════════════════════════════════════════════
   DECORATIVE GRAPHICS
══════════════════════════════════════════════════ */

/* ── Gold glow orb in heroes ── */
.hero-glow {
  position: absolute;
  width: 70vw; height: 70vw;
  max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.13) 0%, rgba(26,95,255,.08) 45%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-2 {
  position: absolute;
  width: 40vw; height: 40vw;
  max-width: 380px; max-height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 65%);
  bottom: -80px; right: -40px;
  pointer-events: none;
  z-index: 1;
}

/* ── Dot grid on dark sections ── */
.dot-grid {
  position: relative;
}
.dot-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='14' cy='14' r='1.1' fill='rgba(201%2C168%2C76%2C0.14)'/%3E%3C/svg%3E");
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 1;
}

/* ── Gold rule divider ── */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,.5) 30%, rgba(201,168,76,.5) 70%, transparent 100%);
  border: none;
  margin: 0;
}

/* ── Geometric star watermark ── */
.geo-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
}
.geo-watermark svg { display: block; }

/* ── Corner bracket accent on cards ── */
.card-accent {
  position: relative;
  overflow: visible;
}
.card-accent::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 28px; height: 28px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 2px 0 0 0;
  pointer-events: none;
}

/* ── Section label line ── */
.label-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.label-line::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Stat number accent ── */
.stat-accent {
  position: relative;
  display: inline-block;
}
.stat-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ── Hero bottom fade ── */
.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(1,8,16,.9));
  z-index: 2;
  pointer-events: none;
}

/* ── Floating badge ── */
.float-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(201,168,76,.12);
}
.float-badge .badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

/* ── Diagonal stripe accent ── */
.stripe-accent {
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.stripe-accent::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(201,168,76,.06) 8px,
    rgba(201,168,76,.06) 9px
  );
  border-radius: 50%;
}

/* ── KSA outline map watermark ── */
.section-watermark {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 280px; height: 280px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='rgba(201%2C168%2C76%2C1)' stroke-width='0.8'/%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='rgba(201%2C168%2C76%2C1)' stroke-width='0.5'/%3E%3Cpath d='M50 5 L61 35 L95 35 L68 57 L79 91 L50 70 L21 91 L32 57 L5 35 L39 35 Z' fill='none' stroke='rgba(201%2C168%2C76%2C1)' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── sm-hero overlay ── */
.sm-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* ── Ministry Carousel ── */
.carousel-section { padding: 48px 0; background: var(--off-white); }
.carousel-label {
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
  padding: 0 24px;
}
.carousel-wrapper { overflow: hidden; position: relative; }
.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.carousel-wrapper::before { left: 0; background: linear-gradient(to right, var(--off-white), transparent); }
.carousel-wrapper::after  { right: 0; background: linear-gradient(to left, var(--off-white), transparent); }
.carousel-track {
  display: flex;
  gap: 20px;
  animation: scrollCarousel 35s linear infinite;
  width: max-content;
  padding: 8px 20px;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes scrollCarousel {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ministry-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 28px;
  box-shadow: 0 2px 12px rgba(3,13,31,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  flex-shrink: 0;
  border: 1px solid rgba(3,13,31,.06);
  transition: box-shadow var(--t), transform var(--t);
}
.ministry-card:hover { box-shadow: 0 6px 24px rgba(3,13,31,.14); transform: translateY(-3px); }
.ministry-card img  { width: 48px; height: 48px; object-fit: contain; }
.ministry-card span { font-size: .72rem; font-weight: 500; color: var(--navy-dark); text-align: center; line-height: 1.35; max-width: 110px; }

/* ── Premium Residency option cards ── */
.pr-options-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
@media (min-width: 768px) { .pr-options-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.pr-option-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.pr-option-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,.45); background: rgba(255,255,255,.06); }
.pr-option-card .option-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(201,168,76,.85);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.pr-option-card h3 { color: var(--gold-light); font-size: 1.2rem; margin-bottom: 16px; }
.pr-option-card .option-fee {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}
.pr-option-card .option-freq { font-size: .82rem; color: var(--text-muted); margin-bottom: 20px; }
.pr-option-card .option-desc { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 16px; }
.pr-option-card .option-note { color: rgba(201,168,76,.75); font-size: .82rem; font-style: italic; }
