/* ============================================================
   STYLE.CSS — Al Rahman Center
   Light Corporate UI  |  Primary: #ed7912  |  BG: #ffffff
   ============================================================ */


/* ---- Custom Properties ----------------------------------------- */
:root {
  /* Brand */
  --primary:          #ed7912;
  --primary-light:    #f5a623;
  --primary-hover:    #d96a0a;
  --primary-dim:      rgba(237, 121, 18, 0.10);

  /* Gradients */
  --grad-primary:     linear-gradient(135deg, #ed7912 0%, #f5a623 100%);
  --grad-hero:        linear-gradient(150deg, #fff4e6 0%, #ffffff 58%);
  --grad-section-alt: linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);

  /* Backgrounds */
  --bg:               #ffffff;
  --bg-warm:          #fff8f2;
  --bg-card:          #ffffff;
  --bg-card-hover:    #fffaf5;
  --bg-footer:        #160a01;

  /* Text */
  --text-high:        #1a0c02;
  --text-mid:         #5c3d1e;
  --text-low:         #a07850;

  /* Borders & Shadows */
  --border:           rgba(237, 121, 18, 0.16);
  --border-hover:     rgba(237, 121, 18, 0.44);
  --shadow:           0 2px 18px rgba(237, 121, 18, 0.10);
  --shadow-hover:     0 10px 40px rgba(237, 121, 18, 0.18);
  --shadow-glow:      0 4px 24px rgba(237, 121, 18, 0.28);

  /* Radii */
  --radius-sm:        6px;
  --radius-md:        14px;
  --radius-lg:        22px;
  --radius-pill:      100px;

  /* Typography & Layout */
  --font:             'Cairo', sans-serif;
  --ease:             0.3s ease;
  --nav-h:            72px;
  --section-v:        110px;
  --container:        1200px;
}

/* ---- Reset ----------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-high);
  line-height: 1.75;
  overflow-x: hidden;
  direction: inherit;
}

a       { text-decoration: none; color: inherit; transition: color var(--ease); }
ul      { list-style: none; }
img     { max-width: 100%; display: block; }
address { font-style: normal; }

h1, h2          { font-weight: 900; line-height: 1.25; }
h3, h4          { font-weight: 700; line-height: 1.3; }
h5, h6          { font-weight: 500; line-height: 1.4; }
p               { color: var(--text-mid); line-height: 1.9; font-weight: 400; }
span            { font-weight: 400; }
strong { color: var(--text-high); font-weight: 700; }

/* ---- Container ------------------------------------------------- */
.container {
  width: 90%;
  max-width: var(--container);
  margin-inline: auto;
}

/* ---- Scroll Reveal (Images / Visuals) -------------------------- */
.scroll-image {
  opacity: 0;
  transform: translateY(34px) scale(0.97);
  transition: opacity 0.75s ease,
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.scroll-image.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero__bg.scroll-image {
  transform: translateY(34px) scale(1.02);
}

.hero__bg.scroll-image.is-visible {
  transform: translateY(0) scale(1.02);
}

/* ---- Scroll Reveal (Text Content) ------------------------------- */
.scroll-text {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(2px);
  transition: opacity 0.65s ease,
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.scroll-text.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-image,
  .scroll-image.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__bg.scroll-image,
  .hero__bg.scroll-image.is-visible {
    transform: scale(1.02);
  }

  .scroll-text,
  .scroll-text.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ---- Section shared -------------------------------------------- */
.section { padding: var(--section-v) 0; position: relative; }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid rgba(237, 121, 18, 0.26);
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  font-weight: 900;
  color: var(--text-high);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.05rem;
  max-width: 620px;
  margin-inline: auto;
  color: var(--text-mid);
}

.section__title-sub {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--text-low);
  display: inline-block;
  margin-inline-start: 8px;
}

/* ---- Buttons --------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  padding: 13px 36px;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: color 0.28s ease, border-color 0.28s ease,
              transform 0.28s ease, box-shadow 0.32s ease,
              background-position 0.42s ease, background-color 0.32s ease;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.30) 8%,
    rgba(255, 255, 255, 0.06) 42%,
    rgba(255, 255, 255, 0.24) 100%
  );
  opacity: 0;
  transform: translateY(16%);
  transition: opacity 0.3s ease, transform 0.35s ease;
  pointer-events: none;
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn:focus-visible {
  outline: 2px solid rgba(237, 121, 18, 0.45);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(135deg, #ed7912 0%, #f3a11f 48%, #ed7912 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(237, 121, 18, 0.30);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background-position: 100% 0;
  box-shadow: 0 14px 30px rgba(237, 121, 18, 0.36);
}
.btn--primary:active {
  background-position: 100% 0;
  box-shadow: 0 2px 8px rgba(237, 121, 18, 0.26);
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

.btn--outline {
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary);
  border-color: rgba(237, 121, 18, 0.72);
  box-shadow: inset 0 0 0 0 var(--primary);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: var(--primary);
  box-shadow: inset 0 -3.4em 0 0 var(--primary), 0 12px 26px rgba(237, 121, 18, 0.28);
}
.btn--outline:active {
  background: rgba(237, 121, 18, 0.12);
  color: #fff;
  border-color: var(--primary);
  box-shadow: inset 0 -3.4em 0 0 var(--primary-hover), 0 2px 10px rgba(237, 121, 18, 0.22);
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

/* ==============================================================
   NAVBAR
   ============================================================== */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(22, 10, 1, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(237, 121, 18, 0.18);
  transition: background var(--ease), box-shadow var(--ease);
}
.navbar.scrolled {
  background: rgba(22, 10, 1, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

/* Logo (left) | Nav (center) | Actions (right) */
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  direction: inherit;
}

/* Logo component — shared between navbar and footer */
.logo {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--ease);
}
.logo:hover { opacity: 0.88; }

.logo__img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* Footer: slightly smaller to suit the tighter layout */
.footer .logo__img { height: 38px; }

/* Nav links */
.navbar__nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__nav ul li a {
  position: relative;
  padding: 7px 15px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #c9c9c9;
  border-radius: var(--radius-sm);
  transition: color var(--ease);
}
.navbar__nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--ease);
}
.navbar__nav ul li a:hover,
.navbar__nav ul li a.active  { color: var(--primary); }
.navbar__nav ul li a:hover::after,
.navbar__nav ul li a.active::after { transform: scaleX(1); }

/* Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(237, 121, 18, 0.25);
  color: #b89060;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.lang-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(237, 121, 18, 0.10);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #b89060;
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================================================
   HERO
   ============================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  /* Rich warm base — fully visible without any image */
  background:
    radial-gradient(ellipse 75% 55% at 96% 8%,  rgba(237, 121, 33, 0.30) 0%, transparent 62%),
    radial-gradient(ellipse 45% 40% at 4%  90%, rgba(28, 14, 2, 0.36) 0%, transparent 55%),
    linear-gradient(146deg, #1c0e02 0%, #311606 36%, #7e3b11 64%, #ed7921 100%);
}

/* Hero content is always visible — never held by scroll-reveal */
.hero .scroll-text {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0) !important;
  transition: none !important;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Only the image overlay — direction fade so text stays readable */
  background:
   linear-gradient(
    45deg,
    rgb(0, 0, 0),
    rgba(255, 145, 0, 0.838)
),
    url('assets/images/hero-workshop.png') center / cover no-repeat;
  transform: scale(1.02);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 94% 8%,  rgba(237, 121, 33, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 4%  88%, rgba(28, 14, 2, 0.22) 0%, transparent 55%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(237, 121, 33, 0.55), transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding-block: 80px;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid rgba(237, 121, 18, 0.30);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--grad-primary);
  border-radius: 50%;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

/* Keep hero typography consistent across both BEM and legacy class names */
.hero__title,
.hero__subtitle,
.hero__desc,
.hero-title-line2,
.hero-desc,
.hero-title-line2 em,
.hero-desc em {
  font-family: var(--font);
}

.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 22px;
}

.hero__desc {
  font-size: 1.04rem;
  color: #ffff;
  max-width: 700px;
  margin-bottom: 44px;
  line-height: 2;
}

/* ==============================================================
   ABOUT PREVIEW
   ============================================================== */
.about-preview {
  background: var(--bg);
  border-block: 1px solid var(--border);
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-preview__text .section__label { display: inline-block; }
.about-preview__text .section__title { text-align: start; }
.about-preview__text p               { margin-bottom: 18px; font-size: 1.04rem; }
.about-preview__text .btn            { margin-top: 10px; }

/* Stats card */
.about-preview__visual {
  display: flex;
  justify-content: flex-end;
}

.stats-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #fff8f0 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
/* gradient top bar */
.stats-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
/* corner orb */
.stats-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(237,121,18,.12) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-card__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
}
.stats-card__number {
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 88px;
}
.stats-card__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
}
.stats-card__divider {
  height: 1px;
  background: var(--border);
  margin-block: 18px;
}

/* ==============================================================
   SERVICES
   ============================================================== */
.services {
  overflow: hidden;
  background: var(--bg-warm);
}

.services::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(237,121,18,.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.services__box {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  max-width: 820px;
  margin-inline: auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}
/* gradient top bar */
.services__box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
}
/* corner orb */
.services__box::after {
  content: '';
  position: absolute;
  bottom: -70px; right: -70px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(237,121,18,.08) 0%, transparent 70%);
  border-radius: 50%;
}

.services__box-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-high);
  margin-bottom: 32px;
}

.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.services__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--primary-dim);
  border: 1px solid rgba(237, 121, 18, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.97rem;
  color: var(--text-mid);
  transition: background var(--ease), border-color var(--ease),
              transform var(--ease), box-shadow var(--ease);
}
.services__item:hover {
  background: rgba(237, 121, 18, 0.15);
  border-color: rgba(237, 121, 18, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(237, 121, 18, 0.12);
}

.services__check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  color: #fff;
  margin-top: 1px;
}

/* ==============================================================
   FAQ
   ============================================================== */
.faq {
  background: var(--bg);
  border-block: 1px solid var(--border);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  overflow: hidden;
  transition: border-color var(--ease), background var(--ease),
              transform var(--ease), box-shadow var(--ease);
}
/* top gradient bar — slides in on hover */
.faq__card::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.faq__card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.faq__card:hover::before { transform: scaleX(1); }

.faq__card-icon {
  width: 42px; height: 42px;
  background: var(--primary-dim);
  border: 1px solid rgba(237, 121, 18, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 18px;
}

.faq__question {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-high);
  margin-bottom: 12px;
}

.faq__answer {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ==============================================================
   CONTACT CTA
   ============================================================== */
.contact-cta {
  overflow: hidden;
  background: linear-gradient(150deg, #fff4e6 0%, #ffffff 55%);
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(237,121,18,.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.contact-cta__inner .section__label { display: inline-block; margin-bottom: 14px; }
.contact-cta__inner .section__title { margin-bottom: 20px; }

.contact-cta__desc {
  font-size: 1.04rem;
  color: var(--text-mid);
  margin-bottom: 36px;
}

/* ==============================================================
   FOOTER
   ============================================================== */
.footer {
  background: var(--bg-footer);
  border-top: 3px solid transparent;
  border-image: var(--grad-primary) 1;
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(237, 121, 18, 0.18);
  direction: inherit;
  text-align: start;
}

.footer__logo {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 18px;
}

.footer__address p {
  font-size: 0.88rem;
  color: #b89060;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer__address a       { color: #b89060; }
.footer__address a:hover { color: var(--primary); }

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav ul li a {
  font-size: 0.9rem;
  color: #b89060;
  transition: color var(--ease), padding-inline-start var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer__nav ul li a::before {
  content: '›';
  color: var(--primary);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--ease), transform var(--ease);
}
.footer__nav ul li a:hover {
  color: var(--primary);
  padding-inline-start: 4px;
}
.footer__nav ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__social-title {
  font-size: 1rem;
  font-weight: 700;
  color: #e8c090;
  margin-bottom: 20px;
  direction: inherit;
  text-align: start;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 42px; height: 42px;
  background: rgba(237, 121, 18, 0.10);
  border: 1px solid rgba(237, 121, 18, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89060;
  transition: background var(--ease), border-color var(--ease),
              color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.social-link:hover {
  background: var(--grad-primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(237, 121, 18, 0.40);
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.84rem;
  color: #b89060;
  opacity: 1;
}

/* ==============================================================
   PAGE HERO  (about / programs / contact inner pages)
   ============================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 80px;
  background: linear-gradient(150deg, #fff4e6 0%, #ffffff 58%);
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(237,121,18,.09) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(237,121,18,.42), transparent);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}
.page-hero__inner .section__label { margin-bottom: 16px; }
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--text-high);
  margin-bottom: 16px;
}
.page-hero__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ==============================================================
   ABOUT PAGE — EDITORIAL DESIGN
   ============================================================== */
.about-section { background: var(--bg); }

/* -- Featured Block: ??????? ----------------------------------- */
.about-intro {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  margin-bottom: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease);
}
.about-intro:hover { box-shadow: var(--shadow-hover); }
/* gradient top bar */
.about-intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
}
/* faint watermark number */
.about-intro::after {
  content: '01';
  position: absolute;
  bottom: -12px; left: 32px;
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(237,121,18,.05);
  pointer-events: none;
  user-select: none;
  font-family: var(--font);
}

.about-intro__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.about-intro__big-num {
  display: block;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font);
  user-select: none;
}
.about-intro__icon {
  width: 54px; height: 54px;
  background: var(--primary-dim);
  border: 1px solid rgba(237,121,18,.24);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.about-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.about-intro__eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.about-intro__heading {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-high);
  margin-bottom: 14px;
  line-height: 1.25;
}
.about-intro__text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 2;
}

/* -- 3-Column Pillar Cards ------------------------------------- */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset-block-start: 0; inset-inline: 0;
  height: 3px;
  background: var(--grad-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transition: transform var(--ease);
}
.pillar-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.pillar-card:hover::before { transform: scaleX(1); }

/* Green variant — ??????? (~10% green usage) */
.pillar-card--green { border-color: rgba(62, 79, 26, 0.14); }
.pillar-card--green::before {
  background: linear-gradient(90deg, #3e4f1a 0%, #6a7f2e 100%);
}
.pillar-card--green:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}
.pillar-card--green .pillar-card__num   { color: rgba(62, 79, 26, 0.07); }
.pillar-card--green .pillar-card__icon  {
  background: rgba(62, 79, 26, 0.07);
  border-color: rgba(62, 79, 26, 0.18);
}




.pillar-card__num {
  font-size: 3.6rem;
  font-weight: 900;
  color: rgba(237,121,18,.07);
  line-height: 1;
  margin-top: 8px;
  font-family: var(--font);
  user-select: none;
  letter-spacing: -1px;
}
.pillar-card__icon {
  width: 46px; height: 46px;
  background: var(--primary-dim);
  border: 1px solid rgba(237,121,18,.20);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.pillar-card__title {
  
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-high);
  margin-bottom: 10px;
    margin-top: 10px;
}
.pillar-card__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* -- Section Rule (visual breath between blocks) --------------- */
.section-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 52px 0 48px;
}
.section-rule::before,
.section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.section-rule__dot {
  width: 8px; height: 8px;
  background: var(--grad-primary);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(237,121,18,.15);
}

/* ==============================================================
   PROGRAMS PAGE — PREMIUM REDESIGN
   ============================================================== */

/* -- Statement Intro --------------------------------------- */
.prog-statements {
  background: var(--bg);
  border-block: 1px solid rgba(237, 121, 18, 0.09);
}

.prog-statement {
  display: grid;
  grid-template-columns: 190px 1px 1fr;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(237, 121, 18, 0.07);
  cursor: default;
  transition: background var(--ease);
}
.prog-statement:hover { background: rgba(237, 121, 18, 0.025); }
.prog-statement:last-child { border-bottom: none; }

.prog-statement__kicker {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-inline-end: 28px;
}
.prog-statement__sep {
  align-self: stretch;
  width: 1px;
  background: rgba(237, 121, 18, 0.18);
}
.prog-statement__body {
  font-size: 1.01rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding-inline-start: 32px;
  margin: 0;
}

/* Motto row — green accent, large text */
.prog-statement--motto .prog-statement__kicker { color: #3e4f1a; }
.prog-statement--motto .prog-statement__sep    { background: rgba(62, 79, 26, 0.22); }
.prog-statement--motto .prog-statement__body {
  font-size: 1.38rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -- Program Catalog --------------------------------------- */
.prog-catalog { background: var(--bg); }

.prog-cat {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  border-top: 1px solid rgba(62, 79, 26, 0.08);
}
.prog-cat:first-child { border-top: none; padding-top: 0; }
.prog-cat:last-child  { padding-bottom: 0; }

/* Faint large watermark number */
.prog-cat__watermark {
  position: absolute;
  bottom: -8px;
  right: -12px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(237, 121, 18, 0.05);
  line-height: 0.9;
  letter-spacing: -6px;
  user-select: none;
  pointer-events: none;
}

/* Category header row */
.prog-cat__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}


i{
  color: #d96a0a;
}



.prog-cat__icon-wrap {
  width: 46px; height: 46px;
  background: #ffdebe;
  border: solid 0.5px #f87400;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(237, 121, 18, 0.24);
}

.prog-cat__title {
  font-size: 1.28rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

/* Extending rule — green to stay under 10% usage */
.prog-cat__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(62, 79, 26, 0.10));
}

.prog-cat__count {
  font-size: 0.72rem;
  font-weight: 700;
  color: #3e4f1a;
  padding: 4px 14px;
  border: 1px solid rgba(62, 79, 26, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(62, 79, 26, 0.04);
  white-space: nowrap;
}

/* -- Profession Items (elegant pills) ---------------------- */
.prog-cat__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.prog-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  background: #ffffff;
  border: 1px solid rgba(237, 121, 18, 0.14);
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-high);
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease),
              transform var(--ease), box-shadow var(--ease),
              background var(--ease);
}
.prog-item::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--ease), transform var(--ease);
}
.prog-item:hover {
  border-color: var(--border-hover);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(237, 121, 18, 0.14);
  background: rgba(237, 121, 18, 0.028);
}
.prog-item:hover::before { opacity: 1; transform: scale(1.4); }

/* ==============================================================
   PROFESSION MODAL — Programs page
   ============================================================== */
.prog-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 10, 1, 0.50);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}
.prog-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.prog-modal {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px 40px;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 28px 70px rgba(22, 10, 1, 0.20);
  transform: scale(0.93) translateY(14px);
  transition: transform 0.30s cubic-bezier(0.34, 1.46, 0.64, 1);
  overflow: hidden;
  direction: inherit;
}
.prog-modal-overlay.is-open .prog-modal {
  transform: scale(1) translateY(0);
}

/* Orange accent bar top */
.prog-modal__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Close button — sits top-left (visual) */
.prog-modal__close {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #ffffff;
  color: var(--text-low);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  flex-shrink: 0;
}
.prog-modal__close:hover {
  border-color: var(--border-hover);
  color: var(--primary);
  background: var(--primary-dim);
}
.prog-modal__close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Category eyebrow */
.prog-modal__category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.71rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 12px;
}
.prog-modal__category::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Profession title */
.prog-modal__title {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-high);
  line-height: 1.25;
  margin-bottom: 20px;
}

/* Description */
.prog-modal__desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin: 0;
}

@media (max-width: 600px) {
  .prog-modal          { padding: 40px 24px 32px; }
  .prog-modal__title   { font-size: 1.3rem; }
  .prog-modal__desc    { font-size: 0.94rem; }
}

/* ==============================================================
   CONTACT PAGE
   ============================================================== */
.contact-reach { background: var(--bg); }

/* -- Action buttons ------------------------------------------- */
.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-high);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.contact-action-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--ease);
}
.contact-action-btn:hover,
.contact-action-btn:focus-visible {
  border-color: var(--contact-hover-border, var(--border-hover));
  box-shadow: var(--contact-hover-shadow, var(--shadow-hover));
  transform: translateY(-3px);
}
.contact-action-btn:focus-visible {
  outline: 2px solid var(--contact-focus-ring, rgba(237, 121, 18, 0.35));
  outline-offset: 2px;
}
.contact-action-btn:hover::before,
.contact-action-btn:focus-visible::before {
  opacity: 1;
}

.contact-action-btn__icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid var(--contact-accent-border, rgba(237, 121, 18, 0.22));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--contact-accent, var(--primary));
  transition: background var(--ease), border-color var(--ease);
}
.contact-action-btn:hover .contact-action-btn__icon,
.contact-action-btn:focus-visible .contact-action-btn__icon {
  background: #ffffff;
  border-color: var(--contact-accent, var(--primary));
  color: var(--contact-accent, var(--primary));
}

.contact-action-btn__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.contact-action-btn__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-low);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-action-btn__value {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-high);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--ease);
}
.contact-action-btn:hover .contact-action-btn__value,
.contact-action-btn:focus-visible .contact-action-btn__value {
  color: var(--contact-accent, var(--primary));
}

.contact-action-btn__arrow {
  font-size: 1.1rem;
  color: var(--text-low);
  flex-shrink: 0;
  transition: color var(--ease), transform var(--ease);
}
html[dir='ltr'] .contact-action-btn__arrow { transform: scaleX(-1); }
.contact-action-btn:hover .contact-action-btn__arrow,
.contact-action-btn:focus-visible .contact-action-btn__arrow {
  color: var(--contact-accent, var(--primary));
  transform: translateX(-4px);
}
html[dir='ltr'] .contact-action-btn:hover .contact-action-btn__arrow,
html[dir='ltr'] .contact-action-btn:focus-visible .contact-action-btn__arrow {
  transform: scaleX(-1) translateX(-4px);
}

/* -- Meta row: address + social ------------------------------ */
.contact-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-meta .info-card {
  flex: 1;
  min-width: 220px;
  margin-bottom: 0;
}
.contact-meta__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* -- Shared info-card ----------------------------------------- */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.info-card:last-of-type { margin-bottom: 0; }
.info-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateX(-4px);
}
html[dir='ltr'] .info-card:hover { transform: translateX(4px); }

.info-card__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--primary-dim);
  border: 1px solid rgba(237,121,18,.22);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}
.info-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-low);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-card__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-high);
}
.info-card__value a { color: var(--text-high); transition: color var(--ease); }
.info-card__value a:hover { color: var(--primary); }

.contact-social__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-low);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ==============================================================
   RESPONSIVE — TABLET  = 1024px
   ============================================================== */
@media (max-width: 1024px) {
  :root { --section-v: 80px; }

  .about-preview__grid    { gap: 40px; }
  .services__list         { grid-template-columns: 1fr; }
  .prog-statement         { grid-template-columns: 150px 1px 1fr; }
  .prog-cat__watermark    { font-size: 7rem; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand { grid-column: 1 / -1; }
}

/* ==============================================================
   RESPONSIVE — MOBILE  = 768px
   ============================================================== */
@media (max-width: 768px) {
  :root { --section-v: 64px; }

  .hamburger { display: flex; }

  .navbar__nav {
    position: fixed;
    top: var(--nav-h);
    inset-inline: 0;
    background: rgba(22, 10, 1, 0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(237, 121, 18, 0.18);
    padding: 20px 5%;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
    z-index: 999;
  }
  .navbar__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .navbar__nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .navbar__nav ul li a {
    display: block;
    width: 100%;
    padding: 13px 16px;
    font-size: 1.02rem;
  }
  .navbar__nav ul li a::after { left: 16px; right: 16px; }

  .about-preview__grid   { grid-template-columns: 1fr; gap: 40px; }
  .about-preview__visual { justify-content: flex-start; }
  .stats-card            { max-width: 100%; padding: 32px 24px; }

  .services__box { padding: 32px 24px; }

  .faq__grid { grid-template-columns: 1fr; }

  /* inner pages */
  .page-hero            { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 56px; }
  .about-cards          { grid-template-columns: 1fr; }
  .about-intro          { grid-template-columns: 1fr; padding: 36px 28px; }
  .about-intro__aside   { flex-direction: row; justify-content: flex-start; }
  .about-intro::after   { display: none; }
  .about-pillars        { grid-template-columns: 1fr; }
  .prog-statement       { grid-template-columns: 1fr; gap: 0; padding: 20px 0; }
  .prog-statement__sep  { display: none; }
  .prog-statement__kicker { padding-inline-end: 0; font-size: 0.72rem; margin-bottom: 6px; }
  .prog-statement__body { padding-inline-start: 0; font-size: 0.96rem; }
  .prog-statement--motto .prog-statement__body { font-size: 1.2rem; }
  .prog-cat             { padding: 52px 0; }
  .prog-cat__watermark  { font-size: 5rem; }
  .prog-cat__items      { gap: 8px; }
  .contact-actions      { grid-template-columns: 1fr; }
  .contact-action-btn   { padding: 22px 24px; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: inherit;
    text-align: start;
  }
  .footer__brand         { grid-column: auto; }
  .footer__social-title  { text-align: start; }
  .social-links          { justify-content: flex-start; }
}

/* ==============================================================
   RESPONSIVE — SMALL PHONE  = 480px
   ============================================================== */
@media (max-width: 480px) {
  .hero__content      { padding-block: 56px; }

  .stats-card__number { font-size: 2rem; }
  .stats-card__item   { gap: 12px; }

  .services__box { padding: 24px 18px; }
  .faq__card     { padding: 24px 20px; }

  .about-card         { padding: 28px 22px; }
  .prog-item          { padding: 9px 16px; font-size: 0.88rem; }
  .prog-cat__watermark { font-size: 4rem; }
  .contact-action-btn__value { font-size: 0.92rem; }
  .contact-action-btn__icon  { width: 44px; height: 44px; font-size: 1.1rem; }

  .btn { padding: 12px 28px; }
}
