/* =========================================
   BRAINCARVE — SHARED STYLESHEET
   Orange & Black | Syne + DM Sans
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ── RESET & ROOT ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #F5720A;
  --orange-light: #FF8C2A;
  --orange-dark: #C75A00;
  --orange-pale: #FFF3EA;
  --orange-bg: #FEF6EE;
  --black: #0D0D0D;
  --dark: #151515;
  --dark2: #1E1E1E;
  --gray: #F7F5F2;
  --gray2: #EFEFED;
  --text: #1F1F1F;
  --muted: #6B6B6B;
  --border: rgba(0, 0, 0, 0.08);
  --white: #FFFFFF;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --shadow-orange: 0 12px 40px rgba(245, 114, 10, 0.35);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.08;
}

p {
  line-height: 1.72;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ── INTRO STRIP (STATIC VIBRANT) ── */
.intro-strip {
  background: linear-gradient(-45deg, #f5720a, #cf23cf, #f5720a, #ff0055);
  background-size: 400% 400%;
  padding: 4rem 0;
  position: relative;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Removed marquee-track */

.intro-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-radius: 16px;
  /* Slightly less rounded for modern feel */
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.3s, background 0.3s;
  text-align: left;
  /* Flex item behavior */
  flex: 1 1 auto;
  /* Allow growth/shrink but respect content */
  max-width: 300px;
  /* Optional: limit width so they don't stretch too much */
  justify-content: flex-start;
}

.intro-strip-item:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.3);
  cursor: default;
}

.intro-strip-item .ico {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.intro-strip-item strong {
  display: block;
  font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 2px;
}

.intro-strip-item span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.strip-divider {
  display: none;
}

/* Remove scroll animation keyframes */

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 86px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 2rem;
  transition: height 0.3s ease;
}

.nav.scrolled {
  height: 70px;
}

.nav-logo img {
  height: 75px;
  width: auto;
  transition: height 0.3s ease;
}

.nav.scrolled .nav-logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 114, 10, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--black);
  padding: 160px 5% 90px;
  position: relative;
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.page-hero-glow.g1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 114, 10, 0.18) 0%, transparent 70%);
  top: -100px;
  right: -80px;
}

.page-hero-glow.g2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 114, 10, 0.1) 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 114, 10, 0.12);
  border: 1px solid rgba(245, 114, 10, 0.28);
  color: var(--orange);
  padding: 0.38rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.page-hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.5s infinite;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.82rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb .current {
  color: var(--orange);
}

/* ── SECTION WRAPPERS ── */
section {
  padding: 96px 5%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.7rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  color: var(--black);
  margin-bottom: 1.1rem;
}

.section-title.light {
  color: #fff;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
  max-width: 580px;
}

.section-sub.center {
  text-align: center;
  margin: 0 auto;
}

.section-head-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head-center .section-sub {
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.22s;
  font-size: 0.92rem;
  padding: 0.82rem 2rem;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-outline-dark {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.btn-outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-outline-light {
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  color: var(--text);
}

.btn-outline-light:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-white {
  background: #fff;
  color: var(--orange);
}

.btn-white:hover {
  background: var(--black);
  color: #fff;
}

.section-orange .btn-outline-dark:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  font-size: 0.82rem;
  padding: 0.6rem 1.4rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 1rem 2.4rem;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 114, 10, 0.25);
}

.card-gray {
  background: var(--gray);
  border-color: transparent;
}

.card-dark {
  background: var(--dark2);
  border-color: rgba(255, 255, 255, 0.06);
}

.card-dark:hover {
  border-color: rgba(245, 114, 10, 0.3);
}

.card-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color: transparent;
  color: #fff;
}

/* ── ICON BOX ── */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}

.icon-box-orange {
  background: rgba(245, 114, 10, 0.1);
}

.icon-box-dark {
  background: rgba(245, 114, 10, 0.15);
}

.icon-box-white {
  background: rgba(255, 255, 255, 0.12);
}

.icon-box-lg {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  font-size: 1.8rem;
}

/* ── TAGS / BADGES ── */
.tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.tag-orange {
  color: var(--orange);
  border: 1px solid rgba(245, 114, 10, 0.3);
}

.tag-orange-fill {
  background: var(--orange);
  color: #fff;
}

.tag-dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}

/* ── STATS ROW ── */
.stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
}

.stat-item strong.light {
  color: #fff;
}

.stat-item span {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.stat-item span.light {
  color: rgba(255, 255, 255, 0.4);
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.divider-orange {
  background: rgba(245, 114, 10, 0.15);
}

/* ── FORM ELEMENTS ── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 114, 10, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #b0b0b0;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  padding: 72px 5% 32px;
  color: rgba(255, 255, 255, 0.7);
  /* Default text color */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand img {
  height: 38px;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.875rem;
  line-height: 1.72;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.footer-col h3 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-col h5 {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--orange);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
  line-height: 1.5;
}

.footer-contact-item .ico {
  color: var(--orange);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.8rem;
}

.footer-iso {
  background: rgba(245, 114, 10, 0.12);
  border: 1px solid rgba(245, 114, 10, 0.22);
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.32rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ── FLOATING BUTTONS ── */
.fab-wrap {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

.fab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.fab-orange {
  background: var(--orange);
}

.fab-green {
  background: transparent;
  /* Removed green background */
  width: 60px;
  /* Slightly larger */
  height: 60px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  /* Ensure image stays inside */
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  /* Keep shadow */
}

.fab-phone {
  background: var(--orange);
  color: #fff;
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.up {
  transform: translateY(36px);
}

.reveal.left {
  transform: translateX(-36px);
}

.reveal.right {
  transform: translateX(36px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── ANIMATIONS ── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

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

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ── ORANGE SECTION ── */
.section-orange {
  background: var(--orange);
  padding: 96px 5%;
}

.section-dark {
  background: var(--black);
  padding: 96px 5%;
}

.section-gray {
  background: var(--gray);
  padding: 96px 5%;
}

.section-pale {
  background: var(--orange-pale);
  padding: 96px 5%;
}

/* ── GRIDS ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.gap-lg {
  gap: 4rem;
}

.align-center {
  align-items: center;
}

/* ── TESTIMONIAL CARD ── */
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 4.5rem;
  color: rgba(245, 114, 10, 0.12);
  line-height: 1;
}

.testi-stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}

.testi-text {
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: rgba(245, 114, 10, 0.35);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
}

.faq-item.open .faq-q {
  color: var(--orange);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  color: var(--text);
}

.faq-item.open .faq-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .page-hero h1,
  .page-hero p {
    max-width: 60%;
  }

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

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

@media (max-width: 900px) {

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

  .nav-hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-2-1,
  .grid-1-2 {
    grid-template-columns: 1fr;
  }

  .gap-lg {
    gap: 2.5rem;
  }

  section {
    padding: 72px 5%;
  }

  .section-orange,
  .section-dark,
  .section-gray,
  .section-pale {
    padding: 72px 5%;
  }
}

@media (max-width: 600px) {
  .page-hero h1,
  .page-hero p {
    max-width: 100%;
  }

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

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

  .stats-row {
    gap: 1.5rem;
  }

  section {
    padding: 56px 5%;
  }

  .section-orange,
  .section-dark,
  .section-gray,
  .section-pale {
    padding: 56px 5%;
  }

  .page-hero {
    padding: 130px 5% 64px;
  }
}

/* ── NAV MOBILE OPEN ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(16px);
  padding: 1.5rem 5% 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(245, 114, 10, 0.12);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.nav-mobile a:hover {
  color: var(--orange);
}

.nav-mobile .nav-cta {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ── UTILITY ── */
.text-orange {
  color: var(--orange);
}

.text-white {
  color: #fff;
}

.text-muted {
  color: var(--muted);
}

.text-center {
  text-align: center;
}

.fw-800 {
  font-weight: 800;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-6 {
  margin-top: 3rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.wrap {
  flex-wrap: wrap;
}

.max-560 {
  max-width: 560px;
}

/* ── SCROLL TO TOP ── */
.scroll-top-wrap {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  /* Moved to left */
  right: auto;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-wrap.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-progress-svg {
  transform: rotate(-90deg);
  width: 48px;
  height: 48px;
}

.scroll-progress-circle {
  fill: none;
  stroke: var(--orange);
  stroke-width: 4;
  stroke-dasharray: 100;
  /* Approx circumference for r=16 (2*pi*16 ~= 100) */
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-top-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 1.2rem;
  color: var(--orange);
  transition: transform 0.2s;
}

.scroll-top-wrap:hover .scroll-top-btn {
  transform: translate(-50%, -50%) translateY(-3px);
  color: var(--orange-dark);
}

/* ── FLOATING ACTION BUTTONS ── */
.fab-wrap {
  position: fixed;
  bottom: 6rem;
  /* Above scroll-to-top */
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 990;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.fab svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.fab-phone svg {
  width: 42px;
  height: 42px;
}

.fab:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.fab-green {
  background: #25D366;
}

.fab-phone {
  background: var(--orange);
}

/* ════ ABOUT PAGE STYLES ════ */

/* FOUNDER SECTION */
.founder-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5%;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.founder-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #FF8008, #FFC837);
  /* Golden Orange */
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 40px rgba(255, 128, 8, 0.3);
}

.founder-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.founder-portrait .avatar-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #C75A00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 8px rgba(245, 114, 10, 0.15), 0 20px 50px rgba(245, 114, 10, 0.3);
}

.founder-portrait h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.founder-portrait span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.founder-portrait .credentials {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cred-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.founder-content .quote-block {
  background: var(--gray);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border-left: 4px solid var(--orange);
  margin: 2rem 0;
}

.quote-block p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: normal;
}

/* MISSION VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 114, 10, 0.25);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* METHODOLOGY */
.method-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.method-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.method-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s, background 0.2s;
}

.method-item:hover {
  border-color: rgba(245, 114, 10, 0.3);
  background: rgba(245, 114, 10, 0.04);
}

.method-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 114, 10, 0.15);
  border: 1px solid rgba(245, 114, 10, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 0.95rem;
}

.method-item h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.method-item p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.84rem;
  line-height: 1.6;
}

.method-visual {
  background: linear-gradient(145deg, rgba(245, 114, 10, 0.12), rgba(245, 114, 10, 0.04));
  border: 1px solid rgba(245, 114, 10, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}

.method-visual .big-num {
  font-family: 'Outfit', sans-serif;
  font-size: 6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.method-visual p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.method-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mstat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.1rem;
  text-align: center;
}

.mstat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.mstat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* TIMELINE */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  border-radius: 3px;
}

/* Left-aligned items (default) */
.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
  width: 50%;
  padding-right: 2.5rem;
}

/* Year dot on the right edge of left items (sits on center line) */
.tl-item .tl-dot {
  position: absolute;
  right: -27px;
  top: 0.5rem;
}

/* Right-aligned items */
.tl-item.tl-right {
  margin-left: 50%;
  padding-right: 0;
  padding-left: 2.5rem;
}

/* Year dot on the left edge of right items (sits on center line) */
.tl-item.tl-right .tl-dot {
  right: auto;
  left: -27px;
}

.tl-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(245, 114, 10, 0.3);
}

.tl-content {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  flex: 1;
}

.tl-content:hover {
  box-shadow: 0 8px 28px rgba(245, 114, 10, 0.1);
  border-color: rgba(245, 114, 10, 0.2);
}

.tl-content h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--black);
}

.tl-content p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 27px;
    transform: none;
  }

  .tl-item,
  .tl-item.tl-right {
    width: 100%;
    margin-left: 0;
    padding-left: 4.5rem;
    padding-right: 0;
  }

  .tl-item .tl-dot,
  .tl-item.tl-right .tl-dot {
    position: absolute;
    left: 0;
    right: auto;
  }
}

/* TESTIMONIALS GRID */
.testi-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {

  .founder-wrap,
  .method-wrap {
    grid-template-columns: 1fr;
  }

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

  .testi-grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .method-stats {
    grid-template-columns: 1fr;
  }
}

/* PROGRAM, TEAM & GALLERY HEROES */
.page-hero.program-hero,
.page-hero.team-hero,
.page-hero.gallery-hero {
  padding: 0;
  min-height: auto;
  position: relative;
  background: var(--black);
  margin-top: 86px;
  display: block;
}

.program-hero-img,
.team-hero-img,
.gallery-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.page-hero.program-hero .breadcrumb-wrap,
.page-hero.team-hero .breadcrumb-wrap,
.page-hero.gallery-hero .breadcrumb-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 5%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 5;
}

.page-hero.program-hero .breadcrumb,
.page-hero.team-hero .breadcrumb,
.page-hero.gallery-hero .breadcrumb {
  margin-top: 0;
}

/* ABOUT HERO */
.page-hero.about-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/aboutus.jpeg');
  background-size: cover;
  background-position: center;
}

/* ════ PROGRAMS PAGE STYLES ════ */

.all-programs {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.prog-full {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;

  /* PREMIUM DARK GLASS STYLE */
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.prog-full:hover {
  border-color: rgba(245, 114, 10, 0.5);
  box-shadow: 0 20px 50px rgba(245, 114, 10, 0.15);
  transform: translateY(-5px);
}

.yt-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  background: var(--dark-light);
}

.yt-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.prog-num {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  /* Subtle white number */
  line-height: 1;
  pointer-events: none;
}

.prog-visual-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}

.prog-big-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: var(--orange);
}

.prog-full:hover .prog-big-icon {
  background: rgba(245, 114, 10, 0.1);
  border-color: var(--orange);
  color: #fff;
}

.prog-levels {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.prog-level-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.prog-level-dot.filled {
  background: var(--orange);
  box-shadow: 0 0 10px rgba(245, 114, 10, 0.5);
}

.prog-content-side {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.prog-content-side h2 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: #fff;
  /* Always white text */
}

.prog-subtitle {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.prog-content-side p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  /* Light gray text */
  margin-bottom: 1.5rem;
  flex-grow: 1;
  /* Pushes content down */
}

.prog-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  /* Align checks to left */
  /* OR center? Let's try left align for list but centered block */
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.prog-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.prog-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(245, 114, 10, 0.2);
  border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.prog-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  /* Push to bottom */
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
}

.prog-meta-item .lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.2rem;
}

.prog-meta-item .val {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.prog-content-side .btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* AGE GUIDE */
.age-guide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.age-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.age-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 114, 10, 0.25);
}

.age-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.age-range {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.3rem;
}

.age-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.age-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .all-programs {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cols on tablet */
  }
}

@media (max-width: 900px) {
  .prog-full {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

  .prog-num {
    font-size: 3rem;
  }

  .age-guide {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .all-programs {
    grid-template-columns: 1fr;
    /* 1 col on mobile */
  }

  .age-guide {
    grid-template-columns: 1fr;
  }
}

/* ════ ANIMATIONS ════ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.prog-full {
  /* ... existing styles ... */
  opacity: 0;
  /* Start hidden */
  animation: fadeUp 0.8s ease forwards;
}

.prog-full:nth-child(1) {
  animation-delay: 0.1s;
}

.prog-full:nth-child(2) {
  animation-delay: 0.2s;
}

.prog-full:nth-child(3) {
  animation-delay: 0.3s;
}

.prog-full:nth-child(4) {
  animation-delay: 0.4s;
}

.prog-full:nth-child(5) {
  animation-delay: 0.5s;
}

.prog-full:nth-child(6) {
  animation-delay: 0.6s;
}