/* ===== TAAYOSH LIFE - MAIN STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
  /* Brand Colors */
  --navy: #1B2A6B;
  --navy-dark: #111D52;
  --navy-light: #2D3F8A;
  --green: #2A7F62;
  --green-light: #3AA87F;
  --green-pale: #E8F5F0;
  --beige: #F4F1EB;
  --beige-dark: #EDE8DF;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --text-dark: #1A1A2E;
  --text-medium: #4A4A6A;
  --text-light: #8A8AAA;
  --border: #E2DDD5;
  --shadow: rgba(27, 42, 107, 0.08);
  --shadow-md: rgba(27, 42, 107, 0.15);

  /* Typography */
  --font-main: 'Cairo', 'Tajawal', sans-serif;

  /* Spacing */
  --section-py: 80px;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--off-white);
  color: var(--text-dark);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section-sm { padding: 56px 0; }
.bg-beige { background: var(--beige); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-medium);
  max-width: 560px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27, 42, 107, 0.25);
}

.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 42, 107, 0.35);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(42, 127, 98, 0.3);
}

.btn-green:hover {
  background: #236854;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 127, 98, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px var(--shadow);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.logo-text span {
  color: var(--green);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--navy);
  background: var(--beige);
}

.navbar-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 50%;
  transform: translateX(50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 127, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 42, 107, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px var(--shadow);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title .accent {
  color: var(--navy);
  position: relative;
  display: inline-block;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
}

.hero-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(27, 42, 107, 0.2);
}

.hero-img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--green) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(27, 42, 107, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 8px 32px var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card-bottom {
  bottom: 24px;
  left: -24px;
}

.hero-card-top {
  top: 32px;
  right: -16px;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hero-card-icon.green { background: var(--green-pale); }
.hero-card-icon.navy { background: rgba(27, 42, 107, 0.08); }

.hero-card-text { font-size: 13px; }
.hero-card-label { font-weight: 700; color: var(--text-dark); }
.hero-card-sub { color: var(--text-light); font-size: 11px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy);
  transform: scale(1.05);
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}

.service-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.service-link:hover { gap: 8px; }

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.about-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42,127,98,0.15) 0%, transparent 70%);
}

.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-strip-label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.about-strip-label::before { background: var(--green-light); }

.about-strip h2 { color: var(--white); }

.about-strip-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px;
  color: white;
}

.about-feature-text {
  font-size: 14px;
  color: rgba(253, 253, 253, 0.785);
  line-height: 1.7;
}
.change-color{
  color: rgba(29, 29, 29, 0.785);

}
.about-feature-text strong { color: var(--green-light); }

.about-strip-image {
  position: relative;
}

.about-main-img,
.about-img-placeholder {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.about-img-placeholder {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(42,127,98,0.15));
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.about-stats-row {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.about-stat-box {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.about-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.about-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* ===== INTENSIVE PROGRAMS ===== */
.programs-section {
  background: var(--beige);
}

.programs-banner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.programs-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(42,127,98,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.programs-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: 200px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.programs-label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.programs-label::before { background: var(--green-light); }

.programs-title { color: var(--white); }

.programs-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-top: 12px;
  line-height: 1.9;
}

.programs-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.programs-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 100px;
}

.programs-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  min-width: 200px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--navy);
  box-shadow: 0 4px 20px var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--navy);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.9;
  padding-bottom: 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.active .faq-answer { max-height: 200px; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: var(--beige);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.cta-box::before {
  content: '✦';
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 48px;
  color: var(--navy);
  opacity: 0.04;
}

.cta-box::after {
  content: '✦';
  position: absolute;
  bottom: 32px;
  left: 48px;
  font-size: 32px;
  color: var(--green);
  opacity: 0.06;
}

.cta-box .section-title { margin-bottom: 12px; }
.cta-box .section-subtitle { margin: 0 auto 36px; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text { color: white; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.1); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  line-height: 1.8;
  max-width: 220px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--white);
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.footer-contact-item span:first-child {
  font-size: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-social-link:hover {
  background: var(--green);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--beige);
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav a {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: var(--beige);
  color: var(--navy);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(27,42,107,0.3);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover { transform: translateY(-3px); }


/* = ABOUT PAGE ONLY= */

.btn-secondary{
  background:transparent;
  color:var(--navy);
  padding:14px 28px;
  border-radius:50px;
  font-size:15px;
  font-weight:600;
  border:2px solid var(--navy);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:var(--transition);
}
.btn-secondary:hover{
  background:var(--navy);
  color:white;
}
.btn-navy{
  background:var(--navy);
  color:white;
  padding:14px 28px;
  border-radius:50px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:var(--transition);
}
.btn-navy:hover{
  background:var(--navy-light);
}
.section-title span{
  color:var(--green);
}
.section-sub{
    color:var(--text-medium);
    font-size:16px;
    max-width:560px;
    line-height:1.8;
}
.card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:32px;
  border:1px solid var(--border);
  transition:var(--transition);
}
.card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px var(--shadow-md);
}
.badge{
  display:inline-flex;
  align-items:center;
  background:rgba(27,42,107,.08);
  color:var(--navy);
  padding:6px 14px;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
}
.badge-green{
  background:var(--green-pale);
  color:var(--green);
}
.divider{
  height:1px;
  background:var(--border);
  margin:0 5%;
}

/* =
ABOUT PAGE
= */

.page-hero{
    padding:140px 0 72px;
    background:var(--beige);
    text-align:center;
}
.page-hero-title{
  font-size:clamp(32px,5vw,52px);
  font-weight:900;
  color:var(--text-dark);
  line-height:1.25;
  margin:16px 0;
}
.page-hero-sub{
    font-size:16px;
    color:var(--text-medium);
    max-width:580px;
    margin:auto;
    line-height:1.9;
}
/* ABOUT INTRO */
.about-intro-grid{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:64px;
    align-items:center;
}
.about-big-img-placeholder{
    height:440px;
    background:linear-gradient(135deg,var(--navy),var(--green));
    border-radius:var(--radius-xl);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:72px;
}
.about-floating-card{
    position:absolute;
    bottom:-20px;
    left:-20px;
    background:white;
    padding:16px 20px;
    border-radius:var(--radius-md);
    box-shadow:0 8px 32px var(--shadow-md);
}

.about-intro-text{
    font-size:15px;
    color:var(--text-medium);
    line-height:1.9;
    margin-bottom:16px;
}
.about-quote-box{
    background:var(--green-pale);
    border-right:4px solid var(--green);
    padding:16px 20px;
    margin:24px 0;
}
.about-quote-box p{
    color:var(--green);
    font-weight:700;
}


.vm-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}
.vm-card{
    background:white;
    padding:36px;
    border-radius:var(--radius-lg);
    border:1px solid var(--border);
    transition:var(--transition);
}
.vm-card:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 40px var(--shadow-md);
}
.vm-card-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    font-size:24px;
}
.vm-card-icon.navy{
  background:rgba(27,42,107,.08);
}
.vm-card-icon.green{
   background:var(--green-pale);
}
.founder-grid{
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:64px;
    align-items:center;
}
.founder-img-placeholder{
    height:460px;
    background:linear-gradient(160deg,var(--navy),var(--green));
    border-radius:var(--radius-xl);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:80px;
}
.founder-badge{
    position:absolute;
    top:24px;
    left:-16px;
    background:white;
    padding:12px 18px;
    border-radius:var(--radius-md);
    box-shadow:0 4px 20px var(--shadow);
}
.founder-tag{
    background:var(--beige);
    padding:6px 14px;
    border-radius:50px;
    font-size:12px;
}
.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.value-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    border-radius:var(--radius-lg);
    padding:28px;
}
.value-title{
    color:white;
    font-weight:700;
}
.value-text{
   color:rgba(255,255,255,.7);
}