/* css/about.css */

:root {
  --primary: #b8ef57;
  --primary-dark: #9dd538;
  --secondary: #10352e;
  --secondary-dark: #0a231d;
  --ink: #142225;
  --text: #425259;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f7faf7;
  --card: #ffffff;
  --border: rgba(16, 53, 46, 0.10);

  --shadow-sm: 0 10px 24px rgba(7, 18, 18, 0.08);
  --shadow-md: 0 16px 44px rgba(7, 18, 18, 0.12);
  --shadow-lg: 0 28px 74px rgba(7, 18, 18, 0.17);

  --radius: 22px;
  --max-width: 1280px;
  --transition: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h3 {
  margin: 0;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #79a92a;
}

.section-label.light {
  color: rgba(255,255,255,0.78);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.approach-content h2,
.about-cta-inner h2 {
  margin: 0 0 18px;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* ANIMATION */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  will-change: opacity, transform;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* BUTTONS */
.btn-primary,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn-primary {
  min-height: 60px;
  padding: 0 32px;
  background: var(--primary);
  color: #162016;
  box-shadow: 0 16px 36px rgba(184, 239, 87, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-primary span {
  font-size: 1.1rem;
  line-height: 1;
}

.btn-whatsapp {
  min-height: 60px;
  padding: 0 32px;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover {
  background: #18bb57;
  transform: translateY(-3px);
}

/* HERO */
.about-page-hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #10231f;
}

.about-page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8, 20, 18, 0.82), rgba(8, 20, 18, 0.48)),
    url("https://images.unsplash.com/photo-1526256262350-7da7584cf5eb?auto=format&fit=crop&w=1920&q=80") center center / cover no-repeat;
  transform: scale(1.03);
}

.about-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.08), rgba(255,255,255,0) 42%),
    linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.42));
  z-index: 1;
}

.about-page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 132px 0 84px;
  text-align: center;
  max-width: 860px;
}

.page-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.about-page-hero h1 {
  margin: 0 auto 16px;
  max-width: 760px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--white);
  text-wrap: balance;
}

.about-page-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
  font-size: clamp(0.98rem, 1.5vw, 1.05rem);
  line-height: 1.72;
}

/* INTRO */
.about-intro {
  background: #ffffff;
}

.about-grid,
.approach-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
}

.about-image img,
.approach-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* VALUES */
.mission-values {
  background: linear-gradient(180deg, #f8fbf7 0%, #ffffff 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--card);
  border: 1px solid rgba(16, 53, 46, 0.06);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.value-number {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(184, 239, 87, 0.18);
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.value-card h3 {
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--secondary);
}

/* APPROACH */
.care-approach {
  background: var(--bg-soft);
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6da81b;
  font-weight: 900;
}

/* STAFF */
.staff-commitment {
  background: #ffffff;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.commitment-card {
  background: linear-gradient(180deg, #fcfefb 0%, #f4f8f4 100%);
  border: 1px solid rgba(16, 53, 46, 0.07);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.commitment-card h3 {
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary);
}

/* WHY */
.why-about {
  background: linear-gradient(180deg, #f7fbf7 0%, #eef5ee 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(16, 53, 46, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.why-card h3 {
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--secondary);
}

/* CTA */
.about-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 35, 29, 0.95), rgba(16, 53, 46, 0.92)),
    url("https://images.unsplash.com/photo-1516549655169-df83a0774514?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: var(--white);
}

.about-cta::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -110px;
  right: -80px;
  background: rgba(184, 239, 87, 0.10);
  border-radius: 50%;
  filter: blur(10px);
}

.about-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.about-cta-inner h2 {
  color: var(--white);
}

.about-cta-inner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.04rem;
  margin-bottom: 26px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .values-grid,
  .commitment-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page-hero h1 {
    font-size: clamp(2rem, 4.8vw, 3.2rem);
  }
}

@media (max-width: 992px) {
  .section-pad {
    padding: 84px 0;
  }

  .about-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-image img,
  .approach-image img {
    height: 460px;
  }

  .about-page-hero-inner {
    padding: 122px 0 78px;
  }

  .about-page-hero {
    min-height: 56svh;
  }

  .about-page-hero h1 {
    font-size: clamp(1.9rem, 6vw, 2.9rem);
  }
}

@media (max-width: 768px) {
  .container,
  .about-page-hero-inner {
    width: min(100% - 24px, var(--max-width));
  }

  .section-pad {
    padding: 72px 0;
  }

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

  .about-page-hero {
    min-height: auto;
  }

  .about-page-hero-inner {
    padding: 108px 0 68px;
  }

  .about-page-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
    line-height: 1.12;
  }

  .about-page-hero p {
    font-size: 0.96rem;
    line-height: 1.65;
    max-width: 100%;
  }

  .about-image img,
  .approach-image img {
    height: 380px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btn-primary,
  .btn-whatsapp {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 576px) {
  .about-page-hero-inner {
    padding: 100px 0 62px;
  }

  .page-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    padding: 8px 12px;
  }

  .about-page-hero h1 {
    font-size: 1.62rem;
  }

  .about-page-hero p {
    font-size: 0.92rem;
  }

  .section-heading h2,
  .about-content h2,
  .approach-content h2,
  .about-cta-inner h2 {
    font-size: 1.78rem;
  }

  .value-card,
  .commitment-card,
  .why-card {
    padding: 24px 22px;
  }

  .about-image img,
  .approach-image img {
    height: 310px;
  }

  .btn-primary,
  .btn-whatsapp {
    min-height: 56px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 0.84rem;
  }
}

@media (max-width: 380px) {
  .about-page-hero h1 {
    font-size: 1.48rem;
  }

  .about-page-hero p {
    font-size: 0.88rem;
  }

  .about-image img,
  .approach-image img {
    height: 270px;
  }
}
