/* ========================================
   LEAF OF LIFE M.T. — STYLESHEET
   ======================================== */

/* --- VARIABLES --- */
:root {
  --dark-green: #0d2b0d;
  --mid-green: #1a3c1a;
  --lime: #7dc21a;
  --lime-light: #9ed63f;
  --lime-pale: #e8f5e1;
  --white: #ffffff;
  --off-white: #f7fdf0;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --text-dark: #111827;
  --text-mid: #374151;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(13, 43, 13, 0.12);
  --shadow-lg: 0 12px 48px rgba(13, 43, 13, 0.18);
  --transition: all 0.3s ease;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 30px 0; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: var(--dark-green);
  border-color: var(--lime);
  box-shadow: 0 6px 24px rgba(125, 194, 26, 0.4);
}
.btn-primary:hover {
  background: var(--lime-light);
  box-shadow: 0 8px 32px rgba(125, 194, 26, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--mid-green);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--lime-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.mt-2 { margin-top: 24px; }
.full-width { width: 100%; }

/* --- SECTION HEADER --- */
.section-header { text-align: center; margin-bottom: 30px; }

.section-badge {
  display: inline-block;
  background: var(--lime-pale);
  color: var(--mid-green);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark-green);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.left { text-align: left; }

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.accent {     color: #066e06; }

/* ========================================
   HEADER / NAV
   ======================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

#header.scrolled {
  background: var(--dark-green);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; object-fit: contain; border-radius: 0.2em;}

.logo-text-fallback {
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--lime);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--lime);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--dark-green);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--lime-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-green) 0%, #163a16 40%, #1f4d1f 70%, #0d2b0d 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(125,194,26,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(125,194,26,0.08) 0%, transparent 60%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-overlay {
  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='%237dc21a' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(125,194,26,0.2);
  border: 1px solid rgba(125,194,26,0.4);
  color: var(--lime);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ========================================
   TICKER
   ======================================== */
.ticker-bar {
  background: var(--lime);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-content span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-green);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   SERVICES
   ======================================== */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(125,194,26,0.15);
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lime);
}

.service-card.featured {
  background: var(--mid-green);
  border-color: var(--lime);
}

.service-card.featured h3,
.service-card.featured p { color: rgba(255,255,255,0.9); }

.service-card.featured .service-link { color: var(--lime); }

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--lime);
  color: var(--dark-green);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 50px;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}
.service-icon svg { width: 72px; height: 72px; }

.service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark-green);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  color: var(--mid-green);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.service-link:hover { color: var(--lime); }

/* ========================================
   WHY US
   ======================================== */
.why-section { background: var(--white); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.why-image-col { position: relative; }

.why-image-box {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  height: 600px;
}

.why-logo-display {
  background: linear-gradient(135deg, var(--dark-green), #1f4d1f);
  border-radius: var(--radius);
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.why-logo { max-width: 80%; margin: 0 auto; }

.logo-placeholder {
  width: 200px;
  height: 200px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--lime);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.top-stat { top: 30px; right: -30px; }
.bottom-stat { bottom: 60px; left: -30px; }

.stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--dark-green);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gray);
}

.why-content-col { display: flex; flex-direction: column; }
.why-content-col .section-badge { margin-bottom: 16px; align-self: center; }

.why-intro {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
}

.why-features { display: flex; flex-direction: column; gap: 24px; }

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--lime-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-feature-text h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-green);
  margin-bottom: 4px;
}
.why-feature-text p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.hiw-section { background: var(--off-white); }

.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.step-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(125,194,26,0.15);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lime);
}

.step-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 4rem;
  color: rgba(125,194,26,0.15);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 15px;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--lime-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark-green);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.step-arrow {
  font-size: 2.5rem;
  color: var(--lime);
  font-weight: 900;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--mid-green) 0%, var(--dark-green) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(125,194,26,0.1) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 56px;
  align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.contact-card {
  height: 120px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid rgba(125,194,26,0.2);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--lime); background: var(--lime-pale); }

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--mid-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-card a, .contact-card p, .contact-card span {
  color: var(--dark-green);
  font-weight: 600;
  font-size: 0.95rem;
}

.tagline-box {
  background: var(--mid-green);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  margin-top: 8px;
}

.tagline-quote {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--lime);
  margin-bottom: 8px;
}

.tagline-box p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* Contact Form */
.contact-form {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 10px 20px 10px 20px;
    border: 1px solid rgba(125, 194, 26, 0.15);
    box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { margin-bottom: 20px; }

.form-group label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid rgba(125,194,26,0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(125,194,26,0.15);
}

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

.form-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 16px;
  font-style: italic;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark-green);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { height: 70px; width: auto; margin-bottom: 20px;     border-radius: 0.2em;}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--lime) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem !important;
  letter-spacing: 0.06em;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links-col h4::after,
.footer-contact-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links-col a {
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.65);
}
.footer-links-col a:hover { color: var(--lime); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}

.footer-contact-item a:hover { color: var(--lime); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}

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

/* ========================================
   FLOAT CALL BUTTON
   ======================================== */
.float-call-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(125,194,26,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-ring 2.5s ease-out infinite;
}

.float-call-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(125,194,26,0.65);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(125,194,26,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(125,194,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(125,194,26,0); }
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
  position: fixed;
  bottom: 110px;
  right: 28px;
  background: var(--dark-green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  border-left: 4px solid var(--lime);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.care-section-wrapper {
          background: var(--off-white);
      padding: 3rem 1.5rem;
      font-family: var(--font-body);
    }

    /* main container: max-width, centered, card-like feel */
    .care-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    /* ---------- mission & vision two-column layout ---------- */
    .mission-vision-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 3rem;
    }
    
    .step-card-2 {
        height: 450px;
    flex: 1;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(125, 194, 26, 0.15);
    transition: var(--transition);
    position: relative;
    }

    .care-card {
      background: rgba(255, 255, 255, 0.96);
      border-radius: 2rem;
      box-shadow: 0 20px 35px -12px rgba(0, 32, 64, 0.08), 0 1px 3px rgba(0,0,0,0.02);
      transition: transform 0.2s ease, box-shadow 0.2s;
      flex: 1;
      min-width: 260px;
      padding: 2rem 2rem 2.2rem 2rem;
      border-top: 6px solid;
    }

    .care-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 28px 38px -14px rgba(0, 55, 80, 0.15);
    }

    /* mission card specific border */
    .mission-card {
        text-align: center;
      border-top-color: #7dc21a;
      background: linear-gradient(115deg, #ffffff 0%, #fefef9 100%);
    }
    /* vision card specific border */
    .vision-card {
        text-align: center;
      border-top-color: #7dc21a;
      background: linear-gradient(115deg, #ffffff 0%, #f9fbfd 100%);
    }

    .card-icon {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      display: inline-block;
    }
    .mission-card .card-icon { color: #2C7A5E; }
    .vision-card .card-icon { color: #2C7A5E; }

    .section-title {
        text-align: center;
     font-size: 4rem;
    font-weight: 1000;
      font-family: 'Space Grotesk', sans-serif;
      margin-bottom: 1.2rem;
      letter-spacing: -0.3px;
      color: #0c2e3b;
    }
    
    .section-header h2{
        font-size: 3em;
    font-weight: 1000;
        background: linear-gradient(to left, #7dc21a, #044a04);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    .quote-text {
        text-align: left;
        font-family: var(--font-body);
      font-size: 1.05rem;
      line-height: 1.55;
          color: var(--gray);
      position: relative;
      padding-left: 0.2rem;
    }

    .quote-text i.fa-quote-left {
      color: #2C7A5E;
      opacity: 0.7;
      margin-right: 6px;
      font-size: 0.9rem;
    }

    /* ---------- OUR BRAND section (core values) ---------- */
    .brand-core-card {
      background: rgba(255, 255, 255, 0.96);
      border-radius: 2rem;
      padding: 2.2rem 2rem 2.4rem 2rem;
      text-align: center;
      box-shadow: 0 20px 35px -12px rgba(0, 32, 48, 0.08);
      transition: box-shadow 0.2s;
      margin-bottom: 0.8rem;
    }
    .brand-core-card:hover {
      box-shadow: 0 28px 40px -16px rgba(27, 77, 110, 0.12);
    }

    .brand-label {
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--mid-green);
          font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
      background: #eff9e3;
      display: inline-block;
      padding: 0.3rem 1.2rem;
      border-radius: 60px;
      margin-bottom: 1rem;
    }

    .brand-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 3.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      background: linear-gradient(135deg, #155f6b, #1e8a6f);
      background-clip: text;
      -webkit-background-clip: text;
      color: #0c2e3b;
      margin: 0.5rem 0 0.8rem;
    }

    .values-line {
        font-family: 'Space Grotesk', sans-serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: #0c2e3b;
      border-bottom: 2px dashed rgba(44, 122, 94, 0.35);
      display: inline-block;
      padding-bottom: 0.4rem;
      margin-bottom: 1.6rem;
    }

    .brand-description {
      max-width: 780px;
      margin: 0 auto;
      font-size: 1.05rem;
      line-height: 1.55;
      color: #2a5a68;
      font-weight: 470;
      background: rgba(248, 252, 245, 0.7);
      padding: 1rem 1.5rem;
      border-radius: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .brand-description i {
      color: #2C7A5E;
      font-size: 1.2rem;
    }

    /* optional respectful footnote - adds dignity but not changing core content */
    .dignity-note {
      text-align: center;
      margin-top: 2.2rem;
    }
    .dignity-note p {
      font-size: 0.85rem;
      color: #4f7b7a;
      background: rgba(255, 255, 240, 0.75);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.4rem 1.4rem;
      border-radius: 40px;
      font-weight: 500;
      backdrop-filter: blur(2px);
    }

    /* responsive adjustments */
    @media (max-width: 780px) {
      .care-section-wrapper {
        padding: 2rem 1rem;
      }
      .section-title {
          
        font-size: 1.7rem;
      }
      .brand-name {
        font-size: 2.5rem;
      }
      .values-line {
        font-size: 1.2rem;
      }
      .care-card {
        padding: 1.5rem;
      }
    }

    @media (max-width: 550px) {
      .mission-vision-grid {
        flex-direction: column;
      }
      .brand-name {
        font-size: 2rem;
      }
      .brand-description {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
      }
      .values-line {
        font-size: 1rem;
      }
    }

    /* subtle background effect (breathing life) */
    .care-section-wrapper {
      position: relative;
      z-index: 1;
    }
    .care-section-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(circle at 10% 20%, rgba(44,122,94,0.03) 2px, transparent 2px);
      background-size: 34px 34px;
      pointer-events: none;
      z-index: 0;
    }
    .care-container {
      position: relative;
      z-index: 2;
    }
    
    .social-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.25rem;
      background: transparent;
      padding: 0.2rem 0.2rem;
      border-radius: 60px;
      width: fit-content;
      margin: 0 auto;
    }

    /* Social icon link styling */
    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: #ffffff;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
      transition: all 0.25s ease;
      text-decoration: none;
    }

    /* Instagram specific hover (brand gradient) */
    .social-icon.instagram:hover {
      background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
      transform: translateY(-3px);
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
    }
    .social-icon.instagram:hover svg {
      fill: white;
    }

    /* Facebook hover */
    .social-icon.facebook:hover {
      background: #1877f2;
      transform: translateY(-3px);
      box-shadow: 0 10px 18px rgba(24, 119, 242, 0.25);
    }
    .social-icon.facebook:hover svg {
      fill: white;
    }

    /* YouTube hover */
    .social-icon.youtube:hover {
      background: #ff0000;
      transform: translateY(-3px);
      box-shadow: 0 10px 18px rgba(255, 0, 0, 0.2);
    }
    .social-icon.youtube:hover svg {
      fill: white;
    }

    /* SVG inside icons */
    .social-icon svg {
      width: 22px;
      height: 22px;
      fill: #3a5a6e;
      transition: fill 0.2s ease;
    }

    /* Optional container background for preview (you can remove) */
    .demo-wrapper {
        border-radius: 0.2em;
      background: linear-gradient(135deg, #f5f7fc 0%, #eef2f5 100%);
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: system-ui, 'Segoe UI', 'Inter', sans-serif;
    }
    
    .demo-wrapper-2 {
        border-radius: 0.2em;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: system-ui, 'Segoe UI', 'Inter', sans-serif;
    }
    .demo-wrapper-3 {
        border-radius: 0.2em;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: system-ui, 'Segoe UI', 'Inter', sans-serif;
    }

    /* Responsive: smaller touch targets still comfy */
    @media (max-width: 480px) {
        
        .contact-form { padding: 24px; width: 90vw; }
  .contact-info {width:90vw;}
      .social-icon {
        width: 35px;
        height: 35px;
      }
      .social-icon svg {
        width: 24px;
        height: 24px;
      }
      .social-bar {
        gap: 1rem;
      }
    }

    /* subtle label optional — but the horizontal section is minimal & ready */
    .social-bar-wrapper {
      text-align: center;
    }
    .follow-text {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 700;
      color: #5a7a8c;
      display: block;
    }

.demo-wrapper-3{
  display:none;
  }
.form-items{display: flex; justify-content: space-between;}
/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-image-col { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 821px) {
  .section { padding: 40px 0; }

  /* Nav mobile */
  .hero-content{
    top: -20px;
  }
  
  .demo-wrapper-2{
  display:none;
  }
  
  .submitbtn{ width: 70vw; font-size: 14px;}
  
  .demo-wrapper-3{
  display:block;
  }
  
  .hamburger { display: flex; }
  .section-header h2 {
    font-size: 2em;}

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--dark-green);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link { padding: 14px; width: 100%; text-align: center; font-size: 1rem; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 8px; }

  /* Hero */
  .hero { padding: 100px 24px 80px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-trust { gap: 16px; flex-direction: column; align-items: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; width: 90vw; }
  .contact-info {width:90vw;}
  .form-items{display: grid; justify-items: self-end; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Section header */
  .section-subtitle { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .btn { padding: 14px 24px; font-size: 0.95rem; }
  .float-call-btn { bottom: 16px; right: 16px; width: 56px; height: 56px; }
  .why-stat-card { display: none; }
}
