/* ============================================
   JIREH HOME DEALS
   Sage Green (#8FAF8F) + Forest Green (#355E3B)
   Warm & Friendly, Compassionate
   ============================================ */

:root {
  --sage: #8FAF8F;
  --sage-light: #A8C5A8;
  --green: #355E3B;
  --green-dark: #2A4B30;
  --cream: #FAF8F5;
  --warm-white: #FEFDFB;
  --text-dark: #1a2e1f;
  --text-body: #3d5040;
  --text-muted: #6b7f6e;
  --border: #D8E5D8;
  --shadow-sm: 0 2px 8px rgba(53,94,59,0.05);
  --shadow-md: 0 8px 24px rgba(53,94,59,0.08);
  --shadow-lg: 0 16px 48px rgba(53,94,59,0.1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); line-height: 1.6; background: var(--warm-white); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
section[id] { scroll-margin-top: 90px; }

[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
[data-animate].animated { opacity: 1; transform: translateY(0); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(15px); padding: 10px 0; border-bottom: 1px solid var(--border); }
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo-img { height: 55px; width: auto; }
.nav__links { display: flex; list-style: none; align-items: center; gap: 28px; }
.nav__links a { color: var(--text-body); text-decoration: none; font-size: 0.84rem; font-weight: 500; transition: color 0.3s; }
.nav__links a:hover { color: var(--green); }
.nav__cta { background: var(--green) !important; color: white !important; padding: 11px 22px !important; border-radius: 8px; font-weight: 700 !important; display: flex; align-items: center; gap: 8px; transition: all 0.3s var(--ease-out) !important; }
.nav__cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(53,94,59,0.25); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav__toggle span { width: 24px; height: 2px; background: var(--green); }

/* HERO */
.hero { padding: 140px 0 80px; background: linear-gradient(160deg, var(--warm-white) 0%, #F5F9F5 40%, #EDF5ED 70%, var(--warm-white) 100%); }
.hero__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.hero__badge { display: inline-block; padding: 8px 16px; background: rgba(53,94,59,0.08); border: 1px solid rgba(53,94,59,0.15); border-radius: 6px; color: var(--green); font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.hero__title { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; line-height: 1.15; color: var(--text-dark); margin-bottom: 12px; }
.hero__title span { color: var(--green); }
.hero__tagline { font-size: 1.05rem; font-weight: 600; color: var(--green); margin-bottom: 14px; }
.hero__description { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; max-width: 500px; }
.hero__ctas { display: flex; gap: 12px; margin-bottom: 28px; }
.hero__trust { display: flex; gap: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.hero__trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 600; color: var(--text-body); }
.hero__trust-item i { color: var(--green); font-size: 0.85rem; }
.hero__visual { display: flex; align-items: center; justify-content: center; }
.hero__logo-img { width: 100%; max-width: 420px; height: auto; animation: heroLogoGrow 2s cubic-bezier(0.23, 1, 0.32, 1) forwards; }

@keyframes heroLogoGrow {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* BUTTONS */
.btn { padding: 14px 28px; border: none; border-radius: 8px; font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: all 0.3s var(--ease-out); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--green); color: white; }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(53,94,59,0.25); }
.btn--outline { background: transparent; color: var(--green); border: 2px solid var(--sage); }
.btn--outline:hover { background: var(--sage); color: white; }
.btn--large { padding: 16px 34px; font-size: 0.95rem; }

/* SECTIONS */
.section-header { text-align: center; margin-bottom: 50px; }
.section__title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; margin-bottom: 10px; color: var(--text-dark); }
.section__title--light { color: white; }
.section__title--left { text-align: left; }
.section__subtitle { color: var(--text-muted); font-size: 0.95rem; }
.section__subtitle--light { color: rgba(255,255,255,0.7); }

/* HOW IT WORKS */
.how-it-works { padding: 100px 0; background: var(--warm-white); }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step__card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 35px 28px; text-align: center; transition: all 0.4s var(--ease-out); }
.step__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.step__num { width: 45px; height: 45px; border-radius: 50%; background: var(--green); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin: 0 auto 16px; }
.step__card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.step__card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* WHY US */
.why-us { padding: 100px 0; background: var(--green); }
.why-us__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-us__card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 30px 22px; text-align: center; transition: all 0.4s var(--ease-out); }
.why-us__card:hover { background: rgba(255,255,255,0.1); border-color: var(--sage); transform: translateY(-3px); }
.why-us__icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(143,175,143,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.why-us__icon i { font-size: 1.1rem; color: var(--sage-light); }
.why-us__card h3 { font-size: 0.92rem; font-weight: 700; color: white; margin-bottom: 8px; }
.why-us__card p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* SITUATIONS */
.situations { padding: 100px 0; background: var(--cream); }
.situations__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 900px; margin: 0 auto; }
.situation__item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-body); padding: 12px 16px; background: white; border: 1px solid var(--border); border-radius: 6px; transition: all 0.3s; }
.situation__item:hover { border-color: var(--green); background: rgba(53,94,59,0.03); }
.situation__item i { color: var(--green); font-size: 0.75rem; }

/* ABOUT */
.about { padding: 100px 0; background: var(--warm-white); }
.about__grid { display: grid; grid-template-columns: 300px 1fr; gap: 50px; align-items: center; }
.about__photo { width: 280px; height: 320px; border-radius: 12px; object-fit: cover; object-position: center 30%; box-shadow: 0 8px 30px rgba(53,94,59,0.15); }
.about__photo-placeholder i { font-size: 3rem; margin-bottom: 10px; opacity: 0.6; }
.about__photo-placeholder p { font-size: 0.8rem; opacity: 0.6; }
.about__line { width: 50px; height: 3px; background: var(--sage); margin: 15px 0; }
.about__content p { font-size: 0.92rem; color: var(--text-body); line-height: 1.8; margin-bottom: 14px; }
.about__details { display: flex; gap: 25px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.about__detail { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-body); }
.about__detail i { color: var(--green); }
.about__detail a { color: var(--text-body); text-decoration: none; transition: color 0.2s; }
.about__detail a:hover { color: var(--green); }

/* CTA */
.cta { padding: 80px 0; background: linear-gradient(135deg, var(--sage) 0%, var(--green) 100%); text-align: center; }
.cta__content h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: white; margin-bottom: 12px; }
.cta__content p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta .btn--primary { background: white; color: var(--green); }
.cta .btn--primary:hover { background: var(--cream); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

/* FOOTER */
.footer { padding: 50px 0 25px; background: var(--green-dark); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; margin-bottom: 30px; }
.footer__logo-img { height: 50px; width: auto; margin-bottom: 10px; }
.footer__brand p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer__nav h4, .footer__contact h4 { color: var(--sage-light); font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.footer__nav a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; margin-bottom: 8px; transition: all 0.3s; }
.footer__nav a:hover { color: white; transform: translateX(3px); }
.footer__contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; margin-bottom: 10px; transition: color 0.2s; }
.footer__contact a:hover { color: white; }
.footer__contact i { color: var(--sage); width: 16px; }
.footer__bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.footer__bottom p { color: rgba(255,255,255,0.25); font-size: 0.72rem; }

/* RESPONSIVE */
@media (max-width: 1024px) { .hero__grid { grid-template-columns: 1fr; } .hero__visual { margin-top: 30px; } .hero__logo-img { max-width: 300px; margin: 0 auto; display: block; } .why-us__grid { grid-template-columns: repeat(2, 1fr); } .about__grid { grid-template-columns: 1fr; text-align: center; } .about__photo { width: 280px; height: 320px; border-radius: 12px; object-fit: cover; object-position: center 30%; box-shadow: 0 8px 30px rgba(53,94,59,0.15); } }
@media (max-width: 768px) { .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); flex-direction: column; padding: 20px; gap: 15px; border-bottom: 1px solid var(--border); } .nav__links.active { display: flex; } .nav__toggle { display: flex; } .hero { padding: 120px 0 60px; } .hero__title { font-size: 2.3rem; } .hero__ctas { flex-direction: column; } .hero__trust { flex-direction: column; gap: 10px; } .steps__grid { grid-template-columns: 1fr; } .why-us__grid { grid-template-columns: 1fr; } .situations__grid { grid-template-columns: 1fr; } .section__title { font-size: 2rem; } .footer__grid { grid-template-columns: 1fr; text-align: center; } .footer__contact a { justify-content: center; } }
