/* ===== AKRO VENTURES — BRAND STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Brand Palette ──────────────────────────────────── */
:root {
  --teal:          #356B6B;   /* Primary — deep teal        */
  --teal-dark:     #254f4f;   /* Darker teal for depth      */
  --teal-light:    #4a8c8c;   /* Lighter teal for hover     */
  --teal-faint:    #e8f2f2;   /* Very light teal tint bg    */
  --cream:         #FFF8E7;   /* Primary background / light */
  --cream-dark:    #f0e9d2;   /* Slightly deeper cream      */
  --gold:          #D4AF37;   /* Accent — warm gold         */
  --gold-light:    #e8c94a;   /* Lighter gold for glows     */
  --gold-pale:     #f5e9b0;   /* Pale gold for subtle fills */
  --dark:          #1a2e2e;   /* Near-black (teal-tinted)   */
  --text:          #2c3e3e;   /* Body text                  */
  --text-muted:    #617070;   /* Muted / secondary text     */
  --white:         #ffffff;
  --border:        #d8e6e6;   /* Teal-tinted border         */
  --shadow:        0 4px 24px rgba(53,107,107,.10);
  --shadow-lg:     0 12px 48px rgba(53,107,107,.18);
  --radius:        12px;
  --transition:    all 0.3s ease;
  --nav-height:    72px;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', sans-serif;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-height);
  transition: transform .3s ease, box-shadow .3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(53,107,107,.14);
}
.navbar.nav-hidden { transform: translateY(-100%); }

.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 100%;
  max-width: 1200px; margin: 0 auto;
}

.navbar-brand {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--teal); letter-spacing: .5px;
  z-index: 1100; position: relative;
}
.navbar-brand .logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 1rem; font-weight: 700;
  flex-shrink: 0; font-family: var(--font-body);
  letter-spacing: 0;
}
.navbar-brand .accent { color: var(--gold); }

/* Desktop links */
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: .92rem; font-weight: 500;
  color: var(--text); padding: .4rem 0;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .3s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--cream) !important;
  padding: .6rem 1.4rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-dark) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; cursor: pointer;
  border: none; background: transparent; padding: 4px;
  border-radius: 6px; z-index: 1100; position: relative; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--teal); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(26,46,46,.5); z-index: 1050;
  opacity: 0; transition: opacity .3s ease;
}
.nav-overlay.open { opacity: 1; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 55%, var(--teal-light) 100%);
  color: var(--cream);
  padding: 6rem 2rem 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,248,231,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 3rem; align-items: center; position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,175,55,.2);
  border: 1px solid rgba(212,175,55,.45);
  color: var(--gold-light);
  padding: .4rem 1rem; border-radius: 50px;
  font-size: .82rem; font-weight: 600; margin-bottom: 1.5rem;
  letter-spacing: .5px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.4rem; font-weight: 700; line-height: 1.12;
  margin-bottom: 1.5rem; letter-spacing: -.5px;
}

.hero-typed { color: var(--gold-light); }
 }

.hero > .hero-inner > .hero-text > p {
  font-size: 1.1rem; color: rgba(255,248,231,.82);
  margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: .85rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid var(--gold);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,55,.4);
}

.btn-outline {
  background: transparent; color: var(--cream);
  padding: .85rem 2rem; border-radius: 8px;
  font-weight: 600; font-size: .95rem;
  border: 2px solid rgba(255,248,231,.4);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,248,231,.1);
  border-color: rgba(255,248,231,.75);
  transform: translateY(-2px);
}

.hero-visual { display: flex; flex-direction: column; gap: 1rem; }

.hero-card {
  background: rgba(255,248,231,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,248,231,.15);
  border-radius: var(--radius); padding: 1.5rem;
  transition: var(--transition);
}
.hero-card:hover { background: rgba(255,248,231,.13); }
.hero-card .card-icon {
  width: 44px; height: 44px;
  background: rgba(212,175,55,.25); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: .75rem;
}
.hero-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.hero-card p  { font-size: .85rem; color: rgba(255,248,231,.7); margin: 0; }

/* ══════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
}
.stats-bar .container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stat-item { position: relative; }
.stat-item::after {
  content: ''; position: absolute; bottom: -8px; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px; background: var(--gold);
  transition: width .6s cubic-bezier(.22,1,.36,1);
}
.stat-item:hover::after { width: 40px; }
.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--teal), var(--teal-light), var(--gold), var(--teal));
  background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: statShimmer 5s linear infinite;
}
@keyframes statShimmer { 100% { background-position: 300% 0; } }
.stat-item p { font-size: .88rem; color: var(--text-muted); margin-top: .3rem; }

/* ══════════════════════════════════════════════════════
   SECTION BASICS
══════════════════════════════════════════════════════ */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header {
  text-align: center; max-width: 680px; margin: 0 auto 4rem;
}
.section-label {
  display: inline-block;
  font-size: .78rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
  position: relative;
}
.section-label::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.section-header:hover .section-label::after { transform: scaleX(1); }

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 700; color: var(--dark);
  margin-bottom: 1rem; letter-spacing: -.3px; line-height: 1.2;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════ */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow);
  transition: var(--transition); border: 1px solid var(--border);
  transform-style: preserve-3d;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg); border-color: var(--teal-light);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.service-card:hover .service-icon { transform: scale(1.2) rotate(-5deg); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .75rem; }
.service-card p  { color: var(--text-muted); font-size: .93rem; line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--teal); font-weight: 600; font-size: .88rem; margin-top: 1rem;
  transition: var(--transition);
}
.service-link:hover { color: var(--gold); gap: .7rem; }

/* ══════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════ */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; }
.why-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; color: var(--dark); margin-bottom: 1.25rem;
}
.why-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }

.why-list { list-style: none; margin: 1.5rem 0 2rem; }
.why-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: 1rem; color: var(--text);
}
.why-list li .check {
  width: 22px; height: 22px;
  background: rgba(53,107,107,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; color: var(--teal); flex-shrink: 0; margin-top: 1px;
}

.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.metric-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; text-align: center;
  border: 1px solid var(--border); transition: var(--transition);
}
.metric-card:hover {
  background: var(--teal); color: var(--cream);
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.metric-card h3 {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 700; color: var(--teal); transition: var(--transition);
}
.metric-card:hover h3 { color: var(--gold-light); }
.metric-card p { font-size: .85rem; color: var(--text-muted); transition: var(--transition); }
.metric-card:hover p { color: rgba(255,248,231,.8); }
.metric-card.featured {
  background: var(--teal); color: var(--cream); grid-column: span 2;
}
.metric-card.featured h3 { color: var(--gold-light); }
.metric-card.featured p  { color: rgba(255,248,231,.8); }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials-section { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  position: relative; border: 1px solid var(--border);
  transform-style: preserve-3d;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 1.25rem; right: 1.5rem;
  font-size: 5rem; color: var(--teal); opacity: .08;
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }

.stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--text); font-style: italic; line-height: 1.75; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-weight: 700; font-size: .95rem;
}
.author-info strong { display: block; font-size: .93rem; color: var(--dark); }
.author-info span   { font-size: .82rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--cream); text-align: center; padding: 6rem 2rem;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,175,55,.15) 0%, transparent 65%);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 700; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.cta-section p {
  color: rgba(255,248,231,.82); font-size: 1.1rem;
  max-width: 580px; margin: 0 auto 2.5rem; position: relative; z-index: 1;
}
.cta-section .btn-primary {
  animation: ctaPulse 2.5s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,175,55,.5); }
  50%      { box-shadow: 0 0 0 18px rgba(212,175,55,0); }
}

/* ══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(140deg, var(--teal-dark), var(--teal));
  color: var(--cream); padding: 5rem 2rem 4rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(212,175,55,.12) 0%, transparent 70%);
}
.page-hero .hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,175,55,.2); border: 1px solid rgba(212,175,55,.45);
  color: var(--gold-light); padding: .4rem 1rem; border-radius: 50px;
  font-size: .82rem; font-weight: 600; margin: 0 auto 1.5rem; position: relative; z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.9rem; font-weight: 700; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.page-hero p {
  font-size: 1.1rem; color: rgba(255,248,231,.82);
  max-width: 600px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-story-text h2 {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem;
}
.about-story-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }

.about-visual-block {
  background: linear-gradient(140deg, var(--teal), var(--teal-light));
  border-radius: var(--radius); padding: 3rem 2.5rem; color: var(--cream);
}
.about-visual-block h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; margin-bottom: .75rem;
}
.about-visual-block p { color: rgba(255,248,231,.85); line-height: 1.75; }

.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.vm-card {
  background: rgba(255,248,231,.1); border: 1px solid rgba(255,248,231,.2);
  border-radius: 10px; padding: 1.5rem;
}
.vm-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--gold-light); }
.vm-card p  { font-size: .9rem; color: rgba(255,248,231,.8); margin: 0; }

.team-section { background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.team-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  text-align: center; box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 1.7rem; font-weight: 700;
  margin: 0 auto 1.25rem;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.team-card:hover .team-avatar { transform: rotate(360deg) scale(1.1); }
.team-card h3   { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.team-card .role { font-size: .85rem; color: var(--gold); font-weight: 700; margin-bottom: .75rem; letter-spacing: .3px; }
.team-card p    { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

.values-section { background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.value-card {
  background: var(--cream); border-radius: var(--radius); padding: 2rem 1.5rem;
  text-align: center; border: 1px solid var(--border);
  transition: transform .4s cubic-bezier(.22,1,.36,1), background .3s, color .3s, box-shadow .3s;
}
.value-card:hover {
  background: var(--teal); color: var(--cream);
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.value-card .icon   { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3      { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; transition: color .3s; }
.value-card:hover h3 { color: var(--gold-light); }
.value-card p        { font-size: .88rem; color: var(--text-muted); transition: color .3s; }
.value-card:hover p  { color: rgba(255,248,231,.8); }

/* ══════════════════════════════════════════════════════
   RESOURCES PAGE
══════════════════════════════════════════════════════ */
.resources-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.resource-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition); box-shadow: var(--shadow);
  position: relative;
}
.resource-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  border-radius: var(--radius) var(--radius) 0 0;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.resource-card:hover::before { transform: scaleX(1); }
.resource-card-header {
  padding: 1.5rem 1.5rem 1rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem;
}
.resource-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.resource-card-header h3 { font-size: 1rem; font-weight: 700; color: var(--dark); }
.resource-card-header .tag {
  font-size: .73rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1.2px;
}
.resource-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.resource-card-body p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.resource-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--teal); font-weight: 600; font-size: .88rem; transition: var(--transition);
}
.resource-link:hover { color: var(--gold); gap: .7rem; }

.tools-section { background: var(--cream); }
.tools-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.tool-item {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  border: 1px solid var(--border); transition: var(--transition);
}
.tool-item:hover { border-color: var(--teal-light); box-shadow: var(--shadow); transform: translateX(4px); }
.tool-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(53,107,107,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.tool-item h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.tool-item p  { font-size: .88rem; color: var(--text-muted); line-height: 1.55; }

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.75; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(53,107,107,.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--teal); flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .3s;
}
.contact-item:hover .contact-item-icon { transform: scale(1.15); background: var(--teal); color: var(--cream); }
.contact-item strong { display: block; font-size: .9rem; color: var(--dark); margin-bottom: .25rem; }
.contact-item span   { font-size: .9rem; color: var(--text-muted); }

.contact-form-wrapper {
  background: var(--cream); border-radius: var(--radius);
  padding: 2.5rem; border: 1px solid var(--border);
}
.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.form-control {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: .95rem; font-family: inherit; color: var(--text);
  background: var(--white); transition: var(--transition); outline: none;
}
.form-control:focus {
  border-color: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(53,107,107,.12);
}
.invalid-feedback { font-size: .82rem; color: #c0392b; margin-top: .25rem; }
.btn-submit {
  background: var(--teal); color: var(--cream); border: none;
  padding: .9rem 2.5rem; border-radius: 8px; font-size: 1rem;
  font-weight: 700; cursor: pointer; transition: var(--transition);
  width: 100%; margin-top: .5rem; font-family: inherit;
  position: relative; overflow: hidden;
}
.btn-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(53,107,107,.3);
}

.alert { padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: .95rem; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer {
  background: var(--dark); color: rgba(255,248,231,.75);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  max-width: 1200px; margin: 0 auto;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,248,231,.1);
}
.footer-brand .logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--cream); margin-bottom: 1rem;
}
.footer-brand .logo-name span { color: var(--gold); }
.footer-brand p { font-size: .9rem; line-height: 1.75; margin-bottom: 1.5rem; color: rgba(255,248,231,.6); }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 38px; height: 38px; background: rgba(255,248,231,.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: .9rem; transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--dark); }

.footer-col h4 {
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--cream); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul li a {
  font-size: .9rem; color: rgba(255,248,231,.6); transition: var(--transition);
  position: relative; padding-left: 0;
  transition: padding-left .25s ease, color .25s ease;
}
.footer-col ul li a::before {
  content: '→'; position: absolute; left: -16px; opacity: 0;
  transition: opacity .25s, left .25s;
}
.footer-col ul li a:hover { padding-left: 14px; color: var(--gold); }
.footer-col ul li a:hover::before { opacity: 1; left: 0; }

.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .84rem; color: rgba(255,248,231,.35);
}

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

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

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

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤992px)
══════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story       { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid          { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid      { grid-template-columns: 1fr; }
  .brand-showcase    { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual       { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .team-grid         { grid-template-columns: 1fr 1fr; }
  .resources-grid    { grid-template-columns: 1fr 1fr; }
  .values-grid       { grid-template-columns: 1fr 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .stats-bar .container { grid-template-columns: repeat(4, 1fr); }
  .vision-mission-grid { grid-template-columns: 1fr 1fr; }
  .why-photo         { height: 380px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hamburger */
  .hamburger { display: flex; }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.open { pointer-events: all; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: min(280px, 80vw); height: 100dvh;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: calc(var(--nav-height) + 1.5rem) 2rem 2rem;
    gap: 0; z-index: 1090;
    box-shadow: -4px 0 32px rgba(53,107,107,.18);
    transition: right .35s cubic-bezier(.4,0,.2,1); overflow-y: auto;
  }
  .nav-links.open  { right: 0; }
  .nav-links li    { width: 100%; }
  .nav-links a     { display: block; padding: .9rem 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child a {
    border-bottom: none; margin-top: 1rem; border-radius: 8px;
    text-align: center; padding: .85rem 1rem;
  }
  .nav-logo { height: 30px; }

  /* Hero */
  .hero              { padding: 3.5rem 1.25rem 3rem; }
  .hero-inner        { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1           { font-size: 2rem; line-height: 1.2; }
  .hero > .hero-inner > .hero-text > p { font-size: .97rem; margin-bottom: 1.75rem; }
  .hero-btns         { flex-direction: column; gap: .65rem; }
  .hero-btns a       { width: 100%; justify-content: center; text-align: center; }
  .hero-cards { display: none; }

  /* Stats */
  .stats-bar         { padding: 1.5rem 1.25rem; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; }
  .stat-item h3      { font-size: 1.65rem; }

  /* Sections */
  section            { padding: 3.5rem 1.25rem; }
  .section-header    { margin-bottom: 2rem; }
  .section-header h2 { font-size: 1.8rem; }

  /* Grids */
  .services-grid     { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .team-grid         { grid-template-columns: 1fr; gap: 1rem; }
  .resources-grid    { grid-template-columns: 1fr; gap: 1rem; }
  .tools-grid        { grid-template-columns: 1fr; gap: 1rem; }
  .values-grid       { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .vision-mission-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }

  /* Why section */
  .why-grid          { grid-template-columns: 1fr; gap: 2rem; }
  .why-photo         { height: 260px; object-position: center center; }
  .why-photo-badge   { left: 1rem; bottom: 1rem; padding: .7rem 1rem; }
  .why-photo-badge strong { font-size: 1rem; }

  /* About */
  .about-story       { grid-template-columns: 1fr; gap: 2rem; }

  /* Services alternating — kill rtl on mobile */
  .about-story[style*="rtl"] { direction: ltr !important; }

  /* Brand showcase */
  .brand-showcase    { grid-template-columns: 1fr; gap: 2rem; }

  /* Footer */
  .footer-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .footer-logo       { height: 42px; }
  .footer-bottom     { flex-direction: column; gap: .4rem; text-align: center; }

  /* Forms */
  .form-row          { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section       { padding: 4rem 1.25rem; }
  .cta-section h2    { font-size: 1.8rem; }

  /* Page hero */
  .page-hero         { padding: 3.5rem 1.25rem 3rem; }
  .page-hero h1      { font-size: 2rem; }

  /* Images */
  .nav-logo          { height: 30px; }
  .footer-logo       { height: 42px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (≤480px)
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero              { padding: 3rem 1rem 2.5rem; }
  .hero h1           { font-size: 1.75rem; }
  .hero-badge        { font-size: .75rem; padding: .35rem .85rem; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-item h3      { font-size: 1.6rem; }
  .values-grid       { grid-template-columns: 1fr; }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.6rem; }
  .cta-section h2    { font-size: 1.6rem; }
  .page-hero h1      { font-size: 1.75rem; }
  [style*="grid-template-columns: 1fr 1fr"][style*="max-width: 900px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════════════════════
   FOUNDER CARDS
══════════════════════════════════════════════════════ */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.founder-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.founder-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--teal-faint);
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.founder-card:hover .founder-photo { transform: scale(1.04); }

.founder-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--teal);
  color: var(--cream);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
}

.founder-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.founder-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.founder-linkedin a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal);
  transition: color .2s ease;
}
.founder-linkedin a:hover { color: var(--gold); }

.founder-info p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
  margin: .25rem 0;
  flex: 1;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .5rem;
}
.founder-tags span {
  background: var(--teal-faint);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .founder-photo-wrap { aspect-ratio: 4 / 3; }
}

/* Social links on light backgrounds (contact page) */
.contact-info .social-links .social-link {
  background: var(--teal);
  color: var(--cream);
}
.contact-info .social-links .social-link:hover {
  background: var(--gold);
  color: var(--dark);
}
