﻿/* Design Switcher Banner */
.design-switcher {
  background: linear-gradient(90deg, #4a90e2, #7b68ee);
  color: white;
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.switcher-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.switcher-label {
  font-weight: 600;
  font-size: 14px;
}

.switcher-link {
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.switcher-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(2px);
}

:root {
  --primary: #1f2f4b;
  --primary-dark: #142038;
  --secondary: #ef7f4d;
  --accent: #2ca296;
  --bg-soft: #f5f7fb;
  --text: #1a2233;
  --muted: #5b6a86;
  --radius: 18px;
  --shadow: 0 25px 45px rgba(19, 32, 54, 0.16);
  --transition: 200ms ease;
}
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: "Inter", system-ui, -apple-system, sans-serif; color: var(--text); line-height: 1.6; background: #fff; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { margin: 0; color: var(--text); font-weight: 600; }
p { margin: 0; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.max-width { max-width: 1200px; margin: 0 auto; padding: 0 1.6rem; }
.utility-bar { background: var(--primary-dark); color: #fff; font-size: 0.85rem; margin-top: 48px; /* Adjusted for design switcher */ }
.utility-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 0.6rem 0; }
.utility-row a { color: #fff; border-bottom: 1px solid transparent; transition: border-color var(--transition); }
.utility-row a:hover { border-color: rgba(255, 255, 255, 0.55); }
.site-header { position: sticky; top: 48px; z-index: 20; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(17, 30, 55, 0.08); transition: box-shadow var(--transition); }
.header-row { display: flex; align-items: center; gap: 1.5rem; padding: 1.15rem 0; }
.brand img { width: 160px; }
nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.nav-list { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-link { position: relative; font-weight: 600; color: var(--muted); transition: color var(--transition); }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -0.45rem; width: 0; height: 2px; background: var(--secondary); transition: width var(--transition); }
.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-expanded="true"] { color: var(--primary); }
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-expanded="true"]::after { width: 100%; }
.cta-pill { padding: 0.75rem 1.45rem; border-radius: 999px; background: linear-gradient(135deg, var(--secondary), #f8a166); color: #fff; font-weight: 600; box-shadow: 0 18px 35px rgba(239, 127, 77, 0.35); transition: transform var(--transition), box-shadow var(--transition); }
.cta-pill:hover { transform: translateY(-2px); box-shadow: 0 28px 50px rgba(239, 127, 77, 0.35); }
.mega { position: relative; }
.mega-menu { position: absolute; top: 115%; left: 0; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; min-width: 420px; display: none; gap: 1.4rem; }
.mega:hover .mega-menu,
.mega:focus-within .mega-menu,
.mega[data-open="true"] .mega-menu { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mega-group h4 { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; color: var(--accent); margin-bottom: 0.55rem; }
.mega-group a { display: block; font-weight: 500; color: var(--muted); padding: 0.35rem 0; }
.mega-group a:hover { color: var(--primary); }
.mobile-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, 0.1); align-items: center; justify-content: center; background: #fff; }
.mobile-toggle span { position: relative; display: block; width: 18px; height: 2px; background: var(--text); transition: background var(--transition); }
.mobile-toggle span::before,
.mobile-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); transition: transform var(--transition), opacity var(--transition); }
.mobile-toggle span::before { transform: translateY(-6px); }
.mobile-toggle span::after { transform: translateY(6px); }
.mobile-toggle.is-open span { background: transparent; }
.mobile-toggle.is-open span::before { transform: rotate(45deg); }
.mobile-toggle.is-open span::after { transform: rotate(-45deg); }
main { overflow-x: hidden; }
section { padding: 4.5rem 0; }
.hero { background: radial-gradient(circle at top left, rgba(44, 162, 150, 0.18), transparent 55%), linear-gradient(180deg, rgba(36, 61, 102, 0.05), rgba(36, 61, 102, 0.02)); padding: 4.5rem 0 5rem; }
.hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3.2rem; align-items: center; }
.tag { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.35rem 0.85rem; color: var(--accent); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.82rem; background: rgba(44, 162, 150, 0.12); border-radius: 999px; }
.hero-title { margin: 1.2rem 0 1rem; font-family: "Playfair Display", serif; font-size: clamp(2.75rem, 4vw, 3.9rem); line-height: 1.1; }
.hero-lead { font-size: 1.05rem; max-width: 580px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.cta-row.center { justify-content: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.4rem; border-radius: 12px; font-weight: 600; border: none; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 16px 30px rgba(19, 32, 54, 0.18); }
.btn-primary:hover { transform: translateY(-3px); }
.btn-ghost { background: #fff; color: var(--primary); border: 1px solid rgba(31, 47, 75, 0.2); }
.btn-ghost:hover { transform: translateY(-3px); border-color: rgba(31, 47, 75, 0.35); }
.insight-panel { background: #fff; border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); position: relative; }
.insight-panel::after { content: ""; position: absolute; inset: 12px; border-radius: calc(var(--radius) - 12px); border: 1px solid rgba(31, 47, 75, 0.08); pointer-events: none; }
.insight-list { display: grid; gap: 1.1rem; }
.insight-card { background: rgba(31, 47, 75, 0.05); border-radius: 14px; padding: 1.15rem 1.35rem; }
.insight-card strong { display: block; margin-bottom: 0.3rem; color: var(--primary); font-size: 1.1rem; }
.stat-grid { margin-top: 2.4rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.stat-card { background: rgba(31, 47, 75, 0.05); border-radius: 16px; padding: 1.3rem; }
.stat-card strong { display: block; font-size: 1.9rem; color: var(--primary); }
.section-intro { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-title { font-family: "Playfair Display", serif; font-size: clamp(2.2rem, 3.2vw, 3.1rem); margin: 0.75rem 0 1.1rem; }
.pillars-grid,
.homes-grid,
.story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.card { background: #fff; border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(31, 47, 75, 0.08); box-shadow: 0 16px 30px rgba(19, 32, 54, 0.08); transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card h3 { font-size: 1.25rem; margin-bottom: 0.65rem; }
.experience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.6rem; align-items: center; }
.timeline { display: grid; gap: 1rem; }
.timeline-step { display: flex; gap: 1rem; background: rgba(239, 127, 77, 0.08); border-radius: 16px; padding: 1.2rem 1.35rem; }
.timeline-step strong { background: var(--secondary); color: #fff; width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 600; flex-shrink: 0; }
.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.home-card figure { margin: 0 0 1.2rem; background: linear-gradient(140deg, rgba(31, 47, 75, 0.88), rgba(44, 162, 150, 0.7)); color: #fff; padding: 1.4rem; border-radius: 14px; }
.home-card figure strong { font-size: 1.35rem; }
.home-card ul { margin: 0 0 1rem; padding: 0; list-style: none; display: grid; gap: 0.45rem; }
.compliance-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--accent); font-weight: 600; font-size: 0.95rem; }
.impact { background: var(--bg-soft); }
.impact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.6rem; align-items: center; }
.impact-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.impact-card { background: #fff; border-radius: 16px; padding: 1.4rem; box-shadow: 0 12px 25px rgba(19, 32, 54, 0.08); }
.impact-card strong { display: block; font-size: 1.8rem; color: var(--primary); }
.testimonial { background: #fff; border-radius: 16px; padding: 1.35rem 1.5rem; box-shadow: 0 12px 24px rgba(19, 32, 54, 0.08); }
.testimonial blockquote { margin: 0; font-weight: 500; color: var(--primary); }
.testimonial blockquote + cite { margin-top: 0.65rem; }
.testimonial blockquote + blockquote { margin-top: 1.1rem; }
.testimonial cite { display: block; font-style: normal; font-size: 0.9rem; color: var(--muted); }
.recruitment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.4rem; align-items: center; }
.benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.benefit { background: rgba(239, 127, 77, 0.08); border: 1px solid rgba(239, 127, 77, 0.25); border-radius: 16px; padding: 1.4rem; }
.meet-heading { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--primary); }
.meet-copy { color: var(--muted); }
.story-card span { display: block; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--accent); margin-bottom: 0.6rem; }
.cta-panel { position: relative; background: linear-gradient(135deg, rgba(31, 47, 75, 0.94), rgba(20, 32, 56, 0.94)); color: #fff; border-radius: 30px; padding: 3.2rem; text-align: center; box-shadow: var(--shadow); overflow: hidden; }
.cta-panel::after { content: ""; position: absolute; width: 220px; height: 220px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; top: -70px; right: -50px; }
.cta-panel .section-title { color: #fff; }
.cta-panel p { color: rgba(255, 255, 255, 0.85); max-width: 520px; margin: 0.8rem auto 2rem; }
footer { background: var(--primary-dark); color: rgba(255, 255, 255, 0.86); padding: 3rem 0; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.65fr)); gap: 2rem; }
.footer-brand { width: 150px; margin-bottom: 1.4rem; }
.footer-title { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; color: rgba(255, 255, 255, 0.65); margin-bottom: 0.9rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-links a { color: rgba(255, 255, 255, 0.82); font-size: 0.92rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); }
@media (max-width: 1024px) {
  .hero-grid,
  .experience-grid,
  .impact-grid,
  .recruitment-grid { grid-template-columns: 1fr; }
  .insight-panel { max-width: 520px; }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillars-grid,
  .homes-grid,
  .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 880px) {
  nav { position: fixed; inset: 0 0 0 30%; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(14px); flex-direction: column; align-items: flex-start; padding: 5rem 2rem 2rem; transform: translateX(100%); transition: transform var(--transition); }
  nav[data-open="true"] { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .mega-menu { position: static; box-shadow: none; padding: 0.3rem 0 0; min-width: auto; display: grid !important; gap: 0.8rem; }
  .mobile-toggle { display: inline-flex; margin-left: auto; }
  .cta-pill { margin-top: 1.5rem; }
}
@media (max-width: 680px) {
  .stat-grid,
  .impact-stats,
  .benefits,
  .pillars-grid,
  .homes-grid,
  .story-grid { grid-template-columns: 1fr; }
  .utility-row { justify-content: center; text-align: center; }
  .hero-title { font-size: clamp(2.45rem, 7vw, 3.2rem); }
  .cta-panel { padding: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  nav { inset: 0 0 0 25%; }
  .cta-row { flex-direction: column; }
  .header-row { padding: 0.9rem 0; }
  .brand img { width: 140px; }
  .footer-grid { grid-template-columns: 1fr; }
}
