:root {
  --primary: #0d9488;
  --accent: #fb7185;
  --bg-dark: #0f172a;
  --bg-light: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg-light); color: var(--text-main); line-height: 1.6; }

/* Header */
.site-header { max-width: 1200px; margin: 0 auto; padding: 24px; display: flex; justify-content: space-between; align-items: center; }
.brand { font-size: 1.6rem; font-weight: 800; letter-spacing: -1px; }
.brand span { color: var(--primary); }

.nav-link { text-decoration: none; color: var(--text-main); font-weight: 600; margin-right: 24px; }
.btn-primary { background: var(--primary); color: white; padding: 12px 28px; border-radius: 99px; text-decoration: none; font-weight: 700; transition: 0.3s; }

/* Hero */
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; max-width: 1200px; margin: 60px auto; padding: 0 24px; gap: 60px; align-items: center; }
.location-tag { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 12px; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; font-weight: 800; margin-bottom: 24px; }
h1 strong { color: var(--primary); }
.lead { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 32px; max-width: 550px; }

/* Search Area */
.search-area { position: relative; max-width: 600px; }
.search-wrap { background: white; padding: 10px; border-radius: 99px; display: flex; box-shadow: var(--shadow); border: 1px solid #e2e8f0; }
.searchbox { flex: 1; padding: 0 20px; display: flex; align-items: center; }
.searchbox input { border: 0; outline: 0; width: 100%; font-size: 1rem; }
.btn-cta { background: var(--bg-dark); color: white; border: 0; padding: 14px 32px; border-radius: 99px; font-weight: 700; cursor: pointer; }

/* Search Suggestions */
.suggestions-dropdown { position: absolute; top: 110%; left: 0; right: 0; background: white; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid #e2e8f0; z-index: 100; padding: 10px; }
.suggestion-item { padding: 12px; border-radius: 10px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.suggestion-item:hover { background: #f0fdfa; }
.location-name { font-weight: 700; }
.status-tag { font-size: 0.7rem; padding: 4px 10px; border-radius: 20px; font-weight: 800; }

/* Section Styles */
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; text-align: center; }
.about-us, .poverty-awareness, .donation-form { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.about-box { background: white; padding: 60px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.video-wrap video { width: 100%; border-radius: var(--radius); box-shadow: 15px 15px 0px var(--primary); }

/* Form */
.form-container { background: #f1f5f9; padding: 60px 20px; border-radius: var(--radius); text-align: center; }
.iframe-wrapper { margin-top: 40px; background: white; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); max-width: 800px; margin: 0 auto; }
iframe { width: 100%; height: 700px; border: 0; display: block; }

/* Hero Image Stack */
.hero-right img { width: 100%; border-radius: var(--radius); transform: rotate(2deg); box-shadow: var(--shadow); }

/* Footer */
.site-footer { background: var(--bg-dark); color: white; padding: 60px 24px; text-align: center; }
.footer-socials a { color: var(--accent); margin: 0 10px; text-decoration: none; font-weight: 600; }

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-right { order: -1; }
    .search-wrap { margin: 0 auto; }
}