/* Fonts: Poppins (headings), Nunito (body) */
:root {
  --brand:#16a34a; /* emerald */
  --brand-dark:#0f7a37;
  --accent:#22c55e;
  --bg:#f8fafc;
  --text:#0f172a;
  --muted:#475569;
  --white:#fff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header */
.site-header { background: var(--white); position: sticky; top:0; z-index:10; box-shadow: var(--shadow); }
.header-inner { display:flex; align-items:center; justify-content: space-between; padding: 14px 0; }
.logo { display:flex; align-items:center; gap:10px; text-decoration:none; color: var(--text); }
.logo-mark { display:inline-grid; place-items:center; width:38px; height:38px; border-radius:10px; background: linear-gradient(135deg, var(--brand), var(--accent)); color:var(--white); font-weight:700; }
.logo-text { font-weight:800; font-family: 'Poppins', sans-serif; letter-spacing:.2px; }

.nav { position:relative; }
.nav input { display:none; }
.nav-toggle { display:none; font-size:26px; cursor:pointer; }
.nav-list { display:flex; align-items:center; gap:24px; list-style:none; margin:0; padding:0; }
.nav-list a { color: var(--text); text-decoration:none; font-weight:600; }
.nav-list a:hover { color: var(--brand); }

.btn { display:inline-block; padding:10px 16px; border-radius:10px; text-decoration:none; font-weight:700; }
.btn-primary { background: var(--brand); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { border:2px solid var(--brand); color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--white); }

/* Hero */
.hero { display:grid; grid-template-columns: 1.1fr .9fr; gap:40px; align-items:center; padding: 60px 0; }
.hero h1 { font-family:'Poppins', sans-serif; font-size: clamp(28px, 4vw, 44px); line-height:1.15; margin:0 0 14px; }
.hero p { color: var(--muted); margin:0 0 20px; font-size:18px; }
.hero .cta { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.hero-card { background: var(--white); border-radius:20px; padding:20px; box-shadow: var(--shadow); display:grid; grid-template-columns: 70px 1fr; gap:16px; align-items:center; }
.hero-card img { width:70px; height:70px; object-fit:cover; border-radius:14px; }

/* Sections */
section { padding: 50px 0; }
.section-title { font-family:'Poppins', sans-serif; font-size: clamp(22px, 3vw, 32px); margin:0 0 10px; }
.section-sub { color: var(--muted); margin:0 0 26px; }

/* Services */
.services { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.card { background: var(--white); border-radius:16px; padding:20px; box-shadow: var(--shadow); display:flex; flex-direction:column; gap:10px; }
.card img { width:100%; height:160px; object-fit:cover; border-radius:12px; }
.card h3 { margin:6px 0 0; font-family:'Poppins', sans-serif; }
.card p { color: var(--muted); margin:6px 0 0; }

/* Testimonials */
.testimonials { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.quote { background: var(--white); border-radius:16px; padding:20px; box-shadow: var(--shadow); position:relative; }
.quote:before { content:'\201C'; font-size:64px; color: var(--accent); position:absolute; top:-8px; left:12px; opacity:.3; }
.quote p { margin:12px 0 0; }
.quote .by { color: var(--muted); font-size:14px; margin-top:10px; }
/* Testimonial avatars */
.quote .by-line { display:flex; align-items:center; gap:10px; color: var(--muted); font-size:14px; margin-top:12px; }
.quote .by-line .avatar { width:40px; height:40px; border-radius:50%; object-fit:cover; }

/* Cover hero (inspired by referenced site layout) */
.hero-cover { position: relative; padding: 0; }
.hero-cover .cover-bg { position: relative; height: 450px; background: url('../images/poster.jpg') center/cover no-repeat; }
.hero-cover .overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.2)); }
.hero-cover .cover-content { position: absolute; inset: 0; display:grid; place-items:center; text-align:center; color: white; padding: 0 16px; }
.hero-cover h1 { font-size: clamp(30px,5vw,56px); margin:0 0 10px; }
.hero-cover p { font-size: clamp(16px,2.4vw,20px); opacity: .95; max-width: 800px; margin: 0 auto 16px; }

/* Approach */
.approach-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.approach-step { background: var(--white); border-radius:16px; padding:20px; box-shadow: var(--shadow); }
.approach-step h3 { margin:6px 0; font-family:'Poppins', sans-serif; }
.badge { display:inline-block; background:#e0f2fe; color:#0369a1; border-radius:999px; padding:6px 10px; font-weight:700; font-size:12px; }

/* Packages */
.packages { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.package { background: var(--white); border-radius:16px; padding:24px; box-shadow: var(--shadow); display:flex; flex-direction:column; }
.package h3 { font-family:'Poppins', sans-serif; margin:0; }
.price { font-size:28px; font-weight:800; margin:10px 0; color: var(--brand-dark); }
.feature-list { list-style:none; padding:0; margin:10px 0 0; }
.feature-list li { display:flex; gap:8px; align-items:center; margin:8px 0; }
.feature-list li:before { content:'✔'; color: var(--brand); }

/* FAQ */
.faq { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius:12px; box-shadow: var(--shadow); margin:10px 0; overflow:hidden; }
.faq-q { display:flex; justify-content:space-between; align-items:center; padding:16px 18px; cursor:pointer; font-weight:700; }
.faq-a { display:none; padding: 0 18px 18px; color: var(--muted); }
.faq-item.open .faq-a { display:block; }

/* Specialties (replica-style overlay cards) */
.specialties-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; }
.specialty-card { position:relative; height:270px; border-radius:14px; overflow:hidden; box-shadow: var(--shadow); background:#e2e8f0; }
.specialty-card .bg { position:absolute; inset:0; background-position:center; background-size:cover; transform: scale(1.02); }
.specialty-card .band { position:absolute; inset:0 auto 0 0; width:55%; min-width:220px; background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 70%, rgba(255,255,255,.0) 100%); padding:20px; display:flex; flex-direction:column; justify-content:center; }
.specialty-card .kicker { font-size:28px; font-family:'Poppins', sans-serif; font-weight:400; color:#111827; opacity:.9; }
.specialty-card .big { font-size:38px; line-height:1; font-family:'Poppins', sans-serif; font-weight:800; color:#0b1324; margin-top:2px; }
.specialty-card .desc { color:#334155; margin-top:10px; max-width: 95%; }

/* Why Choose section */
.why { background: linear-gradient(180deg, #f0f9ff, #f8fafc); }
.why-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; }
.why-card { background: var(--white); border-radius:16px; box-shadow: var(--shadow); padding:28px 22px; text-align:center; }
.why-icon { width:84px; height:84px; display:inline-grid; place-items:center; border-radius:999px; margin: 6px auto 14px; background: linear-gradient(135deg, var(--brand), #3b82f6); color:white; }
.why-icon svg { width:40px; height:40px; stroke: white; }
.why-card h3 { margin:6px 0 8px; font-family:'Poppins', sans-serif; }
.why-card p { color: var(--muted); margin:0; }

/* Footer */
.site-footer { background: #0b1324; color:#cbd5e1; margin-top: 40px; }
.footer-inner { display:grid; grid-template-columns: 1.1fr 1fr 1fr; gap:20px; padding: 32px 0; }
.footer-links a { display:block; color:#cbd5e1; text-decoration:none; margin:6px 0; }
.footer-links a:hover { color: var(--white); }

/* Forms */
form .row { display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
label { display:block; font-weight:700; margin:14px 0 6px; }
input, select, textarea { width:100%; padding:12px 14px; border:1px solid #e2e8f0; border-radius:10px; background: var(--white); font: inherit; }
textarea { min-height:120px; }
.form-actions { margin-top:16px; display:flex; gap:12px; align-items:center; }
.note { color: var(--muted); font-size:14px; }
.alert { padding:12px 14px; border-radius:10px; margin:10px 0; }
.alert.success { background:#ecfdf5; color:#065f46; border:1px solid #10b981; }
.alert.error { background:#fef2f2; color:#991b1b; border:1px solid #ef4444; }

/* Utilities */
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap:20px; }
.pill { display:inline-block; padding:6px 10px; border-radius:999px; background: #ecfeff; color:#155e75; font-weight:700; font-size:12px; }
.shadow { box-shadow: var(--shadow); }
.bg-white { background: var(--white); border-radius:16px; }
.pad { padding:20px; }

/* Floating CTA */
.floating-cta { position: fixed; right: 16px; bottom: 16px; z-index: 20; }
.floating-cta .btn { padding: 12px 18px; }

/* Questions CTA */
.questions { background: linear-gradient(180deg, #f8fafc, #ecfeff); }
.questions-grid { display:grid; grid-template-columns: 1fr 1fr; gap:22px; }
.q-card { background: var(--white); border-radius:16px; box-shadow: var(--shadow); padding:22px; display:flex; align-items:center; gap:14px; }
.q-emoji { font-size:28px; }

/* Page hero & breadcrumbs */
.page-hero { position:relative; background: linear-gradient(135deg, #e0f2fe, #f0fdf4); padding: 50px 0; text-align:center; }
.breadcrumbs { color: var(--muted); font-size:14px; margin-top:6px; }
.breadcrumbs a { color: var(--brand); text-decoration:none; }

/* Animations */
.reveal { opacity:0; transform: translateY(18px); transition: opacity 2s ease, transform 1s ease; }
.reveal.show { opacity:1; transform: translateY(0); }
.hover-rise { transition: transform .25s ease, box-shadow .5s ease; }
.hover-rise:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.12); }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .services, .testimonials, .packages, .approach-grid, .specialties-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .grid-2, .questions-grid { grid-template-columns: 1fr; }
  form .row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-toggle { display:block; }
  .nav-list { position:absolute; right:0; top:44px; background: var(--white); padding:16px; border-radius:12px; box-shadow: var(--shadow); display:none; flex-direction:column; width: 220px; }
  #nav-toggle:checked + label + .nav-list { display:flex; }
  .services, .testimonials, .packages, .approach-grid, .specialties-grid, .why-grid { grid-template-columns: 1fr; }
  .specialty-card { height: 240px; }
  .specialty-card .band { width: 65%; }
  .specialty-card .kicker { font-size: 22px; }
  .specialty-card .big { font-size: 32px; }
}

