/* ===== Global ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    font-size: 14px;
}
.btn-primary {
    background: linear-gradient(135deg,#e91e63,#d81b60);
    color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(233,30,99,.4); }
.btn-outline { border-color: #e91e63; color: #e91e63; background: transparent; }
.btn-outline:hover { background: #e91e63; color: #fff; }
.btn-white { background: #fff; color: #e91e63; }
.btn-white:hover { background: #ffe0eb; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* ===== Header ===== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    position: sticky; top: 0; z-index: 100;
}
.nav-wrap {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 20px;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px; color: #e91e63; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
}
.logo b { color: #333; font-weight: 700; }
.logo i { color: #e91e63; }
.main-nav a {
    margin: 0 15px; font-weight: 500; color: #555;
    transition: color .2s;
}
.main-nav a:hover, .main-nav a.active { color: #e91e63; }
.nav-actions .btn { margin-left: 10px; }

/* ===== Hero ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg,#ffe0eb 0%,#fff5f8 50%,#fff0e0 100%);
    padding: 90px 0 120px;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 30%,rgba(233,30,99,.15),transparent 50%),
                radial-gradient(circle at 80% 70%,rgba(255,152,0,.15),transparent 50%);
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px; color: #2d1b3d; margin-bottom: 15px;
    font-weight: 700;
}
.hero h1 span { color: #e91e63; font-style: italic; }
.hero p { font-size: 18px; color: #555; margin-bottom: 40px; }

/* Search Panel */
.search-panel {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,.1);
    display: flex; flex-wrap: wrap; gap: 15px;
    align-items: flex-end; justify-content: center;
    max-width: 1000px; margin: 0 auto;
}
.search-field { flex: 1; min-width: 130px; text-align: left; }
.search-field label {
    display: block; font-size: 12px; color: #999;
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px;
}
.form-select {
    width: 100%; padding: 10px 12px;
    border: 1px solid #e0e0e0; border-radius: 8px;
    background: #fafafa; font-size: 14px;
    font-family: inherit; outline: none;
    transition: border-color .2s;
}
.form-select:focus { border-color: #e91e63; background: #fff; }

/* ===== Stats ===== */
.stats {
    background: #fff;
    padding: 50px 0;
    border-bottom: 1px solid #f0f0f0;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
    text-align: center;
}
.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 40px; color: #e91e63; margin-bottom: 5px;
}
.stat-item p { color: #666; font-size: 14px; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-alt { background: #fff9fb; }
.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center; font-size: 38px; color: #2d1b3d;
    margin-bottom: 10px;
}
.section-sub { text-align: center; color: #777; margin-bottom: 50px; }

/* Steps */
.steps-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 30px;
}
.step-card {
    background: #fff;
    padding: 40px 30px; border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,.06);
    transition: transform .3s;
    border: 1px solid #f5f5f5;
}
.step-card:hover { transform: translateY(-6px); }
.step-icon {
    width: 80px; height: 80px; margin: 0 auto 20px;
    background: linear-gradient(135deg,#ffe0eb,#ffd0e0);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #e91e63;
}
.step-card h4 { color: #2d1b3d; margin-bottom: 10px; font-size: 20px; }
.step-card p { color: #666; font-size: 14px; }

/* Stories */
.story-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 30px;
}
.story-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: transform .3s;
}
.story-card:hover { transform: translateY(-6px); }
.story-img { height: 200px; }
.story-card h4 {
    padding: 20px 20px 5px;
    font-family: 'Playfair Display', serif;
    color: #e91e63; font-size: 22px;
}
.story-card p { padding: 0 20px 25px; color: #555; font-size: 14px; font-style: italic; }

/* CTA */
.cta {
    background: linear-gradient(135deg,#e91e63,#d81b60);
    padding: 70px 0; color: #fff; text-align: center;
}
.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px; margin-bottom: 15px;
}
.cta p { margin-bottom: 30px; opacity: .95; }

/* Footer */
.site-footer { background: #1a0d24; color: #ccc; padding-top: 60px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px;
}
.logo-light span, .logo-light b { color: #fff; }
.site-footer h5 { color: #fff; margin-bottom: 18px; font-size: 16px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a { color: #aaa; font-size: 14px; transition: color .2s; }
.site-footer ul li a:hover { color: #e91e63; }
.site-footer p { color: #aaa; font-size: 14px; margin-top: 10px; }
.social a {
    display: inline-flex; width: 38px; height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    align-items: center; justify-content: center;
    margin-right: 8px; color: #fff;
    transition: background .2s;
}
.social a:hover { background: #e91e63; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0; text-align: center;
    font-size: 13px; color: #888;
}

/* Responsive */
@media (max-width: 900px) {
    .main-nav { display: none; }
    .hero h1 { font-size: 36px; }
    .stats-grid, .steps-grid, .story-grid, .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .search-panel { flex-direction: column; }
    .search-field { width: 100%; }
}
@media (max-width: 500px) {
    .stats-grid, .steps-grid, .story-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
}
