/* ============================================================
   EVERGREEN TEMPLATE
   Playful & Friendly — bright colors, rounded everything,
   diagonal hero edge, chunky buttons, lots of white space.
   
   Prefix: eg-
   Primary: var(--primary)  — bright green
   Secondary: var(--secondary) — deep green
   Accent: var(--accent) — lime yellow
   ============================================================ */

@keyframes eg-fadeUp { from { opacity:0; transform:translateY(50px); } to { opacity:1; transform:translateY(0); } }
@keyframes eg-fadeLeft { from { opacity:0; transform:translateX(-60px); } to { opacity:1; transform:translateX(0); } }
@keyframes eg-fadeRight { from { opacity:0; transform:translateX(60px); } to { opacity:1; transform:translateX(0); } }
@keyframes eg-scaleIn { from { opacity:0; transform:scale(0.8); } to { opacity:1; transform:scale(1); } }
@keyframes eg-bounce { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }
@keyframes eg-slideDown { from { opacity:0; transform:translateY(-24px); } to { opacity:1; transform:translateY(0); } }

.eg-animate { opacity: 0; }
.eg-animate.eg-visible { animation-duration: 0.8s; animation-fill-mode: forwards; animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }
.eg-fade-up.eg-visible { animation-name: eg-fadeUp; }
.eg-fade-left.eg-visible { animation-name: eg-fadeLeft; }
.eg-fade-right.eg-visible { animation-name: eg-fadeRight; }
.eg-scale-in.eg-visible { animation-name: eg-scaleIn; }
.eg-stagger-1 { animation-delay: 0.06s; } .eg-stagger-2 { animation-delay: 0.14s; }
.eg-stagger-3 { animation-delay: 0.22s; } .eg-stagger-4 { animation-delay: 0.30s; }
.eg-stagger-5 { animation-delay: 0.38s; } .eg-stagger-6 { animation-delay: 0.46s; }

/* ── Nav ─────────────────────────────────────────────── */
.eg-nav { position: sticky; top: 0; z-index: 200; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.05); animation: eg-slideDown 0.5s ease; }
.eg-nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; height: 72px; }
.eg-nav-logo-text { font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 900; color: var(--primary, #10b981); text-decoration: none; }
.eg-nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.eg-nav-links a { color: #475569; text-decoration: none; font-weight: 700; font-size: 15px; transition: color 0.2s; border-radius: 8px; padding: 6px 0; }
.eg-nav-links a:hover, .eg-nav-links a.active { color: var(--primary, #10b981); }
.eg-nav-cta { background: var(--primary, #10b981) !important; color: #fff !important; padding: 12px 28px; border-radius: 100px; font-weight: 800; font-size: 14px; transition: all 0.3s; box-shadow: 0 4px 16px rgba(16,185,129,0.35); display: inline-block; text-decoration: none; }
.eg-nav-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 28px rgba(16,185,129,0.45); }
.eg-nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.eg-nav-toggle span { width: 26px; height: 3px; background: #334155; border-radius: 3px; transition: all 0.3s; }

/* ── Hero with Diagonal Edge ─────────────────────────── */
.eg-hero { background: linear-gradient(160deg, var(--primary, #10b981) 0%, #059669 60%, #047857 100%); position: relative; padding: 80px 0 140px; overflow: hidden; }
.eg-hero::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='6' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E"); background-size: 80px 80px; pointer-events: none; }
.eg-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 100px; background: #fff; clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%); }
.eg-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.eg-hero-content { animation: eg-fadeLeft 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both; }
.eg-hero-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.2); color: #fff; padding: 8px 20px; border-radius: 100px; font-size: 14px; font-weight: 800; margin-bottom: 20px; backdrop-filter: blur(4px); }
.eg-hero-pill i { font-size: 12px; }
.eg-hero h1 { font-family: 'Nunito', sans-serif; font-size: clamp(34px, 4.5vw, 54px); font-weight: 900; color: #fff; line-height: 1.1; margin: 0 0 18px; }
.eg-hero-sub { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.65; margin: 0 0 32px; max-width: 480px; }
.eg-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.eg-btn-white { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--primary, #10b981); padding: 16px 36px; border-radius: 100px; font-weight: 800; font-size: 16px; text-decoration: none; transition: all 0.3s; box-shadow: 0 6px 24px rgba(0,0,0,0.12); }
.eg-btn-white:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.18); }
.eg-btn-ghost { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: #fff; padding: 16px 36px; border-radius: 100px; font-weight: 800; font-size: 16px; text-decoration: none; border: 2.5px solid rgba(255,255,255,0.4); transition: all 0.3s; }
.eg-btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); transform: translateY(-3px); }

.eg-hero-right { animation: eg-fadeRight 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both; }
.eg-hero-form { background: #fff; border-radius: 24px; padding: 40px 32px; box-shadow: 0 24px 64px rgba(0,0,0,0.18); }
.eg-hero-form h3 { font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 900; color: #1e293b; margin: 0 0 6px; }
.eg-hero-form .eg-form-sub { font-size: 15px; color: #94a3b8; margin: 0 0 24px; }
.eg-form-group { margin-bottom: 14px; }
.eg-form-group input, .eg-form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid #e8edf2; border-radius: 16px; font-size: 15px; font-family: 'Nunito', sans-serif; color: #1e293b; transition: all 0.25s; background: #f9fafb; box-sizing: border-box; }
.eg-form-group input:focus, .eg-form-group textarea:focus { outline: none; border-color: var(--primary, #10b981); box-shadow: 0 0 0 4px rgba(16,185,129,0.12); background: #fff; }
.eg-form-group textarea { resize: vertical; min-height: 80px; }
.eg-form-submit { width: 100%; padding: 16px; background: var(--primary, #10b981); color: #fff; border: none; border-radius: 100px; font-size: 17px; font-weight: 900; font-family: 'Nunito', sans-serif; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 18px rgba(16,185,129,0.35); }
.eg-form-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(16,185,129,0.45); background: #059669; }

/* ── Sections ─────────────────────────────────────────── */
.eg-section { padding: 100px 0; }
.eg-section-mint { background: #ecfdf5; }
.eg-section-dark { background: linear-gradient(135deg, #064e3b 0%, #065f46 100%); color: #fff; }
.eg-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.eg-section-header { text-align: center; margin-bottom: 56px; }
.eg-section-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,0.1); color: var(--primary, #10b981); padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.eg-section-dark .eg-section-tag { background: rgba(52,211,153,0.15); color: #6ee7b7; }
.eg-section-header h2 { font-family: 'Nunito', sans-serif; font-size: clamp(30px, 3.5vw, 44px); font-weight: 900; color: #0f172a; margin: 0 0 12px; line-height: 1.15; }
.eg-section-dark .eg-section-header h2 { color: #fff; }
.eg-section-header p { font-size: 18px; color: #64748b; max-width: 560px; margin: 0 auto; line-height: 1.65; }
.eg-section-dark .eg-section-header p { color: rgba(255,255,255,0.65); }

/* ── Services Grid with Hover Lift ────────────────────── */
.eg-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.eg-service-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); border: 2px solid #f0f5f2; }
.eg-service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 56px rgba(16,185,129,0.12); border-color: var(--primary, #10b981); }
.eg-service-img { width: 100%; height: 200px; overflow: hidden; }
.eg-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.eg-service-card:hover .eg-service-img img { transform: scale(1.1); }
.eg-service-img-ph { width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary, #10b981), #34d399); display: flex; align-items: center; justify-content: center; }
.eg-service-img-ph i { font-size: 52px; color: rgba(255,255,255,0.3); }
.eg-service-body { padding: 28px; }
.eg-service-body h3 { font-family: 'Nunito', sans-serif; font-size: 21px; font-weight: 800; color: #0f172a; margin: 0 0 10px; }
.eg-service-body p { font-size: 15px; color: #64748b; line-height: 1.65; margin: 0 0 18px; }
.eg-service-link { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,0.08); color: var(--primary, #10b981); padding: 8px 20px; border-radius: 100px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.3s; }
.eg-service-link:hover { background: var(--primary, #10b981); color: #fff; transform: translateX(4px); }

/* ── Trust Badges Row ─────────────────────────────────── */
.eg-trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.eg-trust-card { text-align: center; padding: 32px 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; transition: all 0.3s; backdrop-filter: blur(4px); }
.eg-trust-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.eg-trust-icon { width: 60px; height: 60px; border-radius: 20px; background: linear-gradient(135deg, rgba(52,211,153,0.2), rgba(16,185,129,0.1)); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 26px; color: #6ee7b7; }
.eg-trust-card h4 { font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.eg-trust-card p { font-size: 14px; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.5; }

/* ── Testimonials ─────────────────────────────────────── */
.eg-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.eg-testimonial-card { background: #fff; border-radius: 24px; padding: 36px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); border: 2px solid #f0f5f2; transition: all 0.4s; }
.eg-testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: #d1fae5; }
.eg-testimonial-stars { color: #fbbf24; font-size: 18px; margin-bottom: 16px; letter-spacing: 3px; }
.eg-testimonial-text { font-size: 16px; color: #475569; line-height: 1.7; font-style: italic; margin: 0 0 24px; }
.eg-testimonial-author { font-weight: 800; color: #0f172a; font-size: 16px; }
.eg-testimonial-loc { font-size: 13px; color: #94a3b8; margin-top: 2px; font-weight: 500; }

/* ── FAQ ─────────────────────────────────────────────── */
.eg-faq-list { max-width: 760px; margin: 0 auto; }
.eg-faq-item { background: #fff; border-radius: 20px; margin-bottom: 14px; overflow: hidden; border: 2px solid #f0f5f2; transition: all 0.3s; }
.eg-faq-item:hover { border-color: #d1fae5; }
.eg-faq-item.active { border-color: var(--primary, #10b981); box-shadow: 0 4px 20px rgba(16,185,129,0.08); }
.eg-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; cursor: pointer; font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 800; color: #1e293b; transition: color 0.2s; }
.eg-faq-question:hover { color: var(--primary, #10b981); }
.eg-faq-chevron { width: 36px; height: 36px; border-radius: 50%; background: rgba(16,185,129,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.eg-faq-chevron i { font-size: 13px; color: var(--primary, #10b981); transition: transform 0.3s; }
.eg-faq-item.active .eg-faq-chevron { background: var(--primary, #10b981); }
.eg-faq-item.active .eg-faq-chevron i { color: #fff; transform: rotate(180deg); }
.eg-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.eg-faq-item.active .eg-faq-answer { max-height: 400px; }
.eg-faq-answer-inner { padding: 0 28px 24px; font-size: 15px; color: #64748b; line-height: 1.7; }

/* ── CTA Banner ─────────────────────────────────────── */
.eg-cta { background: linear-gradient(135deg, var(--primary, #10b981), #34d399); padding: 72px 0; text-align: center; border-radius: 32px; margin: 0 24px; position: relative; overflow: hidden; }
.eg-cta::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='4' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E"); background-size: 60px 60px; pointer-events: none; }
.eg-cta h2 { font-family: 'Nunito', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; color: #fff; margin: 0 0 14px; position: relative; }
.eg-cta p { font-size: 18px; color: rgba(255,255,255,0.9); margin: 0 0 32px; position: relative; }
.eg-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--primary, #10b981); padding: 18px 40px; border-radius: 100px; font-weight: 900; font-size: 18px; text-decoration: none; transition: all 0.3s; position: relative; box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.eg-cta-btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }

/* ── Gallery ─────────────────────────────────────────── */
.eg-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.eg-gallery-item { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
.eg-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.eg-gallery-item:hover img { transform: scale(1.1); }

/* ── Contact ─────────────────────────────────────────── */
.eg-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.eg-contact-card { display: flex; align-items: flex-start; gap: 18px; padding: 22px 0; border-bottom: 2px solid #f0f5f2; }
.eg-contact-icon { width: 52px; height: 52px; border-radius: 18px; background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04)); display: flex; align-items: center; justify-content: center; color: var(--primary, #10b981); font-size: 20px; flex-shrink: 0; }
.eg-contact-card h4 { font-family: 'Nunito', sans-serif; font-weight: 800; color: #0f172a; margin: 0 0 4px; font-size: 16px; }
.eg-contact-card p, .eg-contact-card a { font-size: 15px; color: #64748b; text-decoration: none; margin: 0; }
.eg-contact-card a:hover { color: var(--primary, #10b981); }

/* ── Footer ─────────────────────────────────────────── */
.eg-footer { background: #052e16; color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.eg-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.eg-footer h4 { font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 900; color: #fff; margin: 0 0 16px; }
.eg-footer p, .eg-footer a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; line-height: 1.7; }
.eg-footer a:hover { color: #6ee7b7; }
.eg-footer-links { list-style: none; padding: 0; margin: 0; }
.eg-footer-links li { margin-bottom: 10px; }
.eg-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.eg-footer-social a { width: 44px; height: 44px; border-radius: 14px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 18px; transition: all 0.3s; }
.eg-footer-social a:hover { background: var(--primary, #10b981); color: #fff; transform: translateY(-4px); }
.eg-footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; margin-top: 52px; text-align: center; font-size: 13px; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .eg-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .eg-services-grid, .eg-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .eg-trust-row { grid-template-columns: repeat(2, 1fr); }
    .eg-about-grid, .eg-contact-grid { grid-template-columns: 1fr; }
    .eg-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .eg-nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 24px; gap: 14px; box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-radius: 0 0 20px 20px; }
    .eg-nav-links.active { display: flex; }
    .eg-nav-toggle { display: flex; }
    .eg-services-grid, .eg-testimonials-grid, .eg-trust-row { grid-template-columns: 1fr; }
    .eg-gallery-grid { grid-template-columns: 1fr 1fr; }
    .eg-footer-grid { grid-template-columns: 1fr; }
    .eg-hero h1 { font-size: 32px; }
    .eg-hero-btns { flex-direction: column; }
    .eg-btn-white, .eg-btn-ghost { width: 100%; justify-content: center; }
    .eg-cta { margin: 0; border-radius: 0; }
}
