:root {
    --primary: #9b59b6;
    --secondary: #8e44ad;
    --light: #fdfafb;
    --text: #5d4037;
    --accent: #f8bbd0;
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Lora', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.8; background: var(--light); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.header { background: #fff; padding: 25px 0; border-bottom: 1px solid #f0f0f0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 24px; color: var(--secondary); display: flex; align-items: center; }
.logo i { margin-right: 10px; color: var(--primary); }
.nav ul { display: flex; list-style: none; }
.nav ul li { margin-left: 35px; }
.nav ul li a { font-family: var(--font-heading); font-weight: 600; font-size: 16px; }
.nav ul li a:hover, .nav ul li a.active { color: var(--primary); }

/* Hero */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #1a0530 0%, #3b0764 50%, #6c3483 100%); }
.hero-bg-overlay { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&q=80') center/cover no-repeat; opacity: 0.08; z-index: 0; }
.hero::before { content: ''; position: absolute; top: -200px; left: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(155,89,182,0.25) 0%, transparent 65%); border-radius: 50%; z-index: 0; }
.hero::after { content: ''; position: absolute; bottom: -150px; right: -150px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(108,52,131,0.3) 0%, transparent 65%); border-radius: 50%; z-index: 0; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; padding: 140px 25px 120px; }
.hero-content { color: #fff; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 13px; padding: 8px 20px; border-radius: 50px; margin-bottom: 28px; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.hero-content h1 { font-family: var(--font-heading); font-size: 58px; font-weight: 700; line-height: 1.1; margin-bottom: 24px; color: #fff; }
.hero-highlight { position: relative; color: #e8b4f8; }
.hero-highlight::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #e8b4f8, #c39bd3); border-radius: 2px; opacity: 0.7; }
.hero-content p { font-size: 18px; opacity: 0.85; line-height: 1.8; max-width: 480px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero-btn-primary { background: #fff; color: var(--secondary); font-family: var(--font-heading); font-weight: 700; display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 50px; font-size: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); transition: 0.3s; }
.hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(0,0,0,0.3); color: var(--secondary); }
.hero-btn-primary i { color: var(--primary); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.4); color: #fff; padding: 16px 32px; border-radius: 50px; font-family: var(--font-heading); font-weight: 700; font-size: 16px; transition: 0.3s; display: inline-block; }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7); transform: translateY(-3px); color: #fff; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); }
.hero-trust-item i { color: #a8e6a3; font-size: 14px; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img-wrap { position: relative; width: 100%; max-width: 480px; }
.hero-img { width: 100%; height: 520px; border-radius: 30px; background: url('https://images.unsplash.com/photo-1511895426328-dc8714191011?w=800&q=80') center/cover no-repeat; box-shadow: 0 40px 80px rgba(0,0,0,0.4); position: relative; }
.hero-img::before { content: ''; position: absolute; inset: 0; border-radius: 30px; background: linear-gradient(180deg, transparent 40%, rgba(60,7,100,0.5) 100%); }
.hero-img-card { position: absolute; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-radius: 18px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.hero-img-card i { font-size: 26px; color: var(--primary); }
.hero-img-card strong { display: block; font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--secondary); line-height: 1; }
.hero-img-card span { font-family: var(--font-heading); font-size: 12px; opacity: 0.6; color: var(--text); }
.hero-img-card--tl { top: -20px; left: -30px; animation: floatCard 4s ease-in-out infinite; }
.hero-img-card--br { bottom: 30px; right: -30px; animation: floatCard 4s ease-in-out infinite 2s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; padding: 100px 25px 80px; text-align: center; }
    .hero-content h1 { font-size: 40px; }
    .hero-content p { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { display: none; }
}

/* Story Section */
.story-section { padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-content h2 { font-family: var(--font-heading); font-size: 36px; color: var(--secondary); margin-bottom: 25px; }
.story-image { border-radius: 40px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Cards */
.plans { padding: 100px 0; background: #fff; border-radius: 100px 100px 0 0; }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.plan-card { text-align: center; padding: 40px; border-radius: 30px; background: var(--light); transition: 0.3s; }
.plan-card:hover { transform: translateY(-10px); background: #fff; box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.plan-card i { font-size: 40px; color: var(--primary); margin-bottom: 25px; }

/* Testimonials */
.testimonials { padding: 100px 0; text-align: center; }
.testimonial-card { max-width: 800px; margin: 0 auto; background: #fff; padding: 60px; border-radius: 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); position: relative; }
.testimonial-card i.quote-icon { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; width: 60px; height: 60px; border-radius: 50%; line-height: 60px; font-size: 24px; }

/* Utility */
.section { padding: 100px 0; }
.section-title { font-family: var(--font-heading); font-size: 38px; color: var(--secondary); text-align: center; margin-bottom: 60px; line-height: 1.2; }

/* Page Hero (inner pages) */
.page-hero { padding: 110px 0 100px; background: linear-gradient(135deg, var(--secondary) 0%, #6c3483 100%); text-align: center; color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.page-hero::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 300px; height: 300px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.page-hero h1 { font-family: var(--font-heading); font-size: 52px; font-weight: 700; margin-bottom: 20px; line-height: 1.15; }
.page-hero p { font-size: 18px; max-width: 600px; margin: 0 auto; opacity: 0.85; }

/* Stats Bar */
.stats-bar { background: #fff; padding: 0; box-shadow: 0 4px 30px rgba(0,0,0,0.06); position: relative; z-index: 2; }
.stats-bar-grid { display: flex; align-items: center; justify-content: space-around; padding: 40px 0; flex-wrap: wrap; gap: 20px; }
.stats-bar-item { text-align: center; }
.stats-bar-item strong { display: block; font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.stats-bar-item span { font-size: 14px; opacity: 0.6; font-family: var(--font-heading); }
.stats-bar-divider { width: 1px; height: 60px; background: #f0eaf5; }

/* About Story */
.about-story-section { padding: 110px 0; background: var(--light); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-visual { position: relative; }
.about-story-card { background: linear-gradient(135deg, var(--secondary) 0%, #6c3483 100%); border-radius: 30px; padding: 55px 45px; color: #fff; position: relative; z-index: 1; }
.about-story-card i { font-size: 50px; opacity: 0.6; margin-bottom: 25px; display: block; }
.about-story-card blockquote { font-family: var(--font-heading); font-size: 22px; font-style: italic; line-height: 1.5; margin-bottom: 15px; }
.about-story-card cite { font-size: 14px; opacity: 0.7; font-style: normal; }
.about-story-float { position: absolute; bottom: -20px; right: -20px; background: #fff; border-radius: 20px; padding: 15px 22px; display: flex; align-items: center; gap: 10px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); font-family: var(--font-heading); font-weight: 700; color: var(--secondary); font-size: 15px; z-index: 2; }
.about-story-float i { color: var(--primary); font-size: 20px; }
.about-story-content h2 { font-family: var(--font-heading); font-size: 40px; color: var(--secondary); margin-bottom: 25px; line-height: 1.2; }

/* Values */
.values-section { padding: 110px 0; background: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { background: var(--light); border-radius: 24px; padding: 40px 35px; border: 1px solid #f0eaf5; transition: 0.3s; position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), #c39bd3); opacity: 0; transition: 0.3s; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(155,89,182,0.08); }
.value-card:hover::before { opacity: 1; }
.value-card--featured { background: linear-gradient(135deg, #f9f0ff, #f3e5f5); border-color: rgba(155,89,182,0.2); }
.value-card--featured::before { opacity: 1; }
.value-icon { width: 56px; height: 56px; background: rgba(155,89,182,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); margin-bottom: 20px; }
.value-card h3 { font-family: var(--font-heading); font-size: 19px; color: var(--secondary); margin-bottom: 12px; }
.value-card p { font-size: 15px; opacity: 0.7; line-height: 1.7; }

/* Timeline */
.timeline-section { padding: 110px 0; background: var(--light); }
.timeline { max-width: 750px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), #c39bd3); transform: translateX(-50%); opacity: 0.3; }
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 50px; align-items: center; }
.timeline-item--right .timeline-dot { order: 2; }
.timeline-item--right .timeline-content { order: 1; text-align: right; }
.timeline-dot { width: 18px; height: 18px; background: var(--primary); border-radius: 50%; margin: 0 auto; position: relative; z-index: 1; box-shadow: 0 0 0 5px rgba(155,89,182,0.15); }
.timeline-content { background: #fff; border-radius: 20px; padding: 28px 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid #f0eaf5; }
.timeline-year { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--primary); letter-spacing: 1px; display: block; margin-bottom: 8px; }
.timeline-content h4 { font-family: var(--font-heading); font-size: 18px; color: var(--secondary); margin-bottom: 8px; }
.timeline-content p { font-size: 14px; opacity: 0.7; line-height: 1.7; }

/* Team */
.team-section { padding: 110px 0; background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card { background: var(--light); border-radius: 24px; padding: 40px 30px; text-align: center; border: 1px solid #f0eaf5; transition: 0.3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(155,89,182,0.08); }
.team-card--featured { background: linear-gradient(135deg, #f9f0ff, #f3e5f5); border-color: rgba(155,89,182,0.2); }
.team-avatar { width: 90px; height: 90px; background: linear-gradient(135deg, var(--secondary), #6c3483); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; color: rgba(255,255,255,0.7); }
.team-card h4 { font-family: var(--font-heading); font-size: 20px; color: var(--secondary); margin-bottom: 6px; }
.team-role { font-family: var(--font-heading); font-size: 13px; color: var(--primary); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 15px; }
.team-card p { font-size: 14px; opacity: 0.7; line-height: 1.7; }

/* Giving Back */
.giving-section { padding: 110px 0; background: var(--light); }
.giving-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.giving-content h2 { font-family: var(--font-heading); font-size: 40px; color: var(--secondary); margin-bottom: 25px; line-height: 1.2; }
.giving-items { display: flex; flex-direction: column; gap: 20px; }
.giving-item { display: flex; align-items: flex-start; gap: 18px; }
.giving-item-icon { width: 48px; height: 48px; min-width: 48px; background: rgba(155,89,182,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--primary); }
.giving-item strong { display: block; font-family: var(--font-heading); font-size: 16px; color: var(--secondary); margin-bottom: 4px; }
.giving-item p { font-size: 14px; opacity: 0.7; margin: 0; }
.giving-visual { display: flex; align-items: center; justify-content: center; }
.giving-visual-inner { background: linear-gradient(135deg, var(--secondary) 0%, #6c3483 100%); border-radius: 30px; padding: 70px 50px; text-align: center; color: #fff; }
.giving-visual-inner i { font-size: 80px; opacity: 0.8; margin-bottom: 25px; display: block; }
.giving-visual-inner p { font-family: var(--font-heading); font-size: 18px; line-height: 1.6; opacity: 0.9; }

/* About CTA */
.about-cta-section { padding: 80px 0; background: var(--light); }
.about-cta-box { background: linear-gradient(135deg, var(--secondary) 0%, #6c3483 100%); border-radius: 40px; padding: 80px 60px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.about-cta-box::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.about-cta-box h2 { font-family: var(--font-heading); font-size: 42px; margin-bottom: 15px; line-height: 1.2; }
.about-cta-box p { font-size: 17px; opacity: 0.85; max-width: 500px; margin: 0 auto; }

/* Services Page */
.services-section { padding: 100px 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: #fff; border-radius: 24px; padding: 40px 35px; border: 1px solid #f0eaf5; transition: 0.3s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(155,89,182,0.1); }
.service-card--featured { background: linear-gradient(135deg, #f9f0ff, #f3e5f5); border-color: rgba(155,89,182,0.25); }
.service-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 22px; }
.service-icon--1, .service-icon--3, .service-icon--6 { background: rgba(155,89,182,0.1); color: var(--primary); }
.service-icon--2, .service-icon--4 { background: rgba(248,187,208,0.35); color: #c2185b; }
.service-icon--5 { background: rgba(155,89,182,0.1); color: var(--primary); }
.service-card h3 { font-family: var(--font-heading); font-size: 20px; color: var(--secondary); margin-bottom: 12px; }
.service-card p { font-size: 15px; opacity: 0.7; line-height: 1.7; flex: 1; margin-bottom: 25px; }
.service-link { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--primary); display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; margin-top: auto; }
.service-link:hover { gap: 12px; }

/* Why Section */
.why-section { padding: 100px 0; background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why-item { text-align: center; padding: 35px 25px; background: var(--light); border-radius: 20px; border: 1px solid #f0eaf5; transition: 0.3s; }
.why-item:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(155,89,182,0.07); }
.why-item i { font-size: 32px; color: var(--primary); margin-bottom: 18px; display: block; }
.why-item h4 { font-family: var(--font-heading); font-size: 17px; color: var(--secondary); margin-bottom: 10px; }
.why-item p { font-size: 14px; opacity: 0.7; line-height: 1.7; }

/* Contact Page */
.contact-section { padding: 100px 0; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: var(--font-heading); font-size: 38px; color: var(--secondary); margin-bottom: 15px; line-height: 1.2; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { display: flex; align-items: center; gap: 18px; background: #fff; border-radius: 18px; padding: 20px 22px; border: 1px solid #f0eaf5; transition: 0.3s; }
.contact-info-card:hover { box-shadow: 0 10px 30px rgba(155,89,182,0.07); transform: translateX(4px); }
.contact-info-icon { width: 48px; height: 48px; min-width: 48px; background: rgba(155,89,182,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--primary); }
.contact-info-card strong { display: block; font-family: var(--font-heading); font-size: 15px; color: var(--secondary); margin-bottom: 3px; }
.contact-info-card span { font-size: 14px; opacity: 0.65; }
.contact-form-wrap { background: #fff; border-radius: 30px; padding: 50px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); border: 1px solid #f0eaf5; }
.contact-form-wrap h3 { font-family: var(--font-heading); font-size: 24px; color: var(--secondary); margin-bottom: 30px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--secondary); }
.form-group input, .form-group select, .form-group textarea { padding: 14px 18px; border: 1.5px solid #f0eaf5; border-radius: 14px; background: var(--light); font-family: var(--font-body); font-size: 15px; color: var(--text); transition: 0.3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(155,89,182,0.08); }
.form-group textarea { resize: vertical; }

/* Footer */
.footer { background: #fff; padding: 80px 0 40px; border-top: 1px solid #f0f0f0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
.footer h4 { font-family: var(--font-heading); font-weight: 700; color: var(--secondary); margin-bottom: 25px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { opacity: 0.7; font-size: 15px; transition: 0.3s; }
.footer-links ul li a:hover { opacity: 1; color: var(--primary); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; opacity: 0.7; color: var(--text); transition: 0.3s; }
.footer-contact-item i { color: var(--primary); margin-top: 4px; min-width: 14px; }
a.footer-contact-item:hover { opacity: 1; color: var(--primary); }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 30px; border-top: 1px solid #f0f0f0; font-size: 14px; color: #999; }

/* Nav phone link */
.nav-phone { background: var(--primary); color: #fff !important; padding: 8px 20px; border-radius: 50px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; transition: 0.3s; display: flex; align-items: center; gap: 7px; }
.nav-phone:hover { background: var(--secondary); transform: translateY(-2px); }

@media (max-width: 768px) {
    .story-grid, .plans-grid { grid-template-columns: 1fr; }
    .hero h1, .page-hero h1 { font-size: 36px; }
    .milestones-grid { grid-template-columns: 1fr 1fr; }
    .milestone-arrow { display: none; }
    .tips-grid, .services-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
    .about-preview-grid, .about-story-grid, .giving-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stats-bar-divider { display: none; }
    .timeline::before { left: 20px; }
    .timeline-item { grid-template-columns: 40px 1fr; gap: 20px; }
    .timeline-item--right .timeline-dot { order: 0; }
    .timeline-item--right .timeline-content { order: 1; text-align: left; }
    .about-cta-box { padding: 50px 30px; }
    .contact-form-wrap { padding: 30px 25px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .nav-phone { display: none; }
}

/* Section label */
.section-label { font-family: var(--font-heading); font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; display: block; }

/* Story section enhancements */
.story-img-placeholder { background: linear-gradient(135deg, #f3e5f5 0%, #e8d5f0 100%); height: 500px; display: flex; align-items: center; justify-content: center; position: relative; }
.story-img-placeholder i { font-size: 120px; color: var(--primary); opacity: 0.25; }
.story-img-badge { position: absolute; bottom: 30px; right: 30px; background: #fff; padding: 12px 20px; border-radius: 50px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--secondary); box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 8px; }
.story-img-badge i { color: #f1c40f; }
.story-stats { display: flex; gap: 35px; }
.story-stat { text-align: center; }
.story-stat strong { display: block; font-family: var(--font-heading); font-size: 32px; color: var(--primary); font-weight: 700; }
.story-stat span { font-size: 13px; opacity: 0.6; }

/* Milestones */
.milestones-section { padding: 100px 0; background: linear-gradient(135deg, var(--secondary) 0%, #6c3483 100%); color: white; }
.milestones-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 20px; max-width: 900px; margin: 0 auto; }
.milestone-item { text-align: center; }
.milestone-icon { width: 80px; height: 80px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 28px; border: 2px solid rgba(255,255,255,0.2); transition: 0.3s; }
.milestone-item:hover .milestone-icon { background: rgba(255,255,255,0.25); transform: translateY(-5px); }
.milestone-item h4 { font-family: var(--font-heading); font-size: 16px; margin-bottom: 5px; }
.milestone-item p { font-size: 13px; opacity: 0.7; }
.milestone-arrow { color: rgba(255,255,255,0.3); font-size: 18px; }

/* Tips section */
.tips-section { padding: 100px 0; background: var(--light); }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tip-card { background: #fff; border-radius: 24px; padding: 35px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: 0.3s; border: 1px solid #f0eaf5; position: relative; overflow: hidden; }
.tip-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), #c39bd3); opacity: 0; transition: 0.3s; }
.tip-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(155,89,182,0.1); }
.tip-card:hover::before { opacity: 1; }
.tip-card--featured { background: linear-gradient(135deg, #f9f0ff 0%, #f3e5f5 100%); border-color: rgba(155,89,182,0.2); }
.tip-card--featured::before { opacity: 1; }
.tip-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.tip-icon--purple { background: rgba(155,89,182,0.1); color: var(--primary); }
.tip-icon--pink { background: rgba(248,187,208,0.4); color: #c2185b; }
.tip-tag { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); opacity: 0.7; margin-bottom: 10px; }
.tip-card h3 { font-family: var(--font-heading); font-size: 20px; color: var(--secondary); margin-bottom: 12px; }
.tip-card p { font-size: 15px; opacity: 0.7; line-height: 1.7; margin-bottom: 20px; }
.tip-link { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--primary); display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; }
.tip-link:hover { gap: 12px; }

/* About preview section */
.about-preview-section { padding: 120px 0; background: #fff; }
.about-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-preview-content h2 { font-family: var(--font-heading); font-size: 40px; color: var(--secondary); margin-bottom: 25px; line-height: 1.2; }
.about-preview-visual { position: relative; }
.about-visual-card { background: linear-gradient(135deg, var(--secondary) 0%, #6c3483 100%); border-radius: 30px; padding: 60px 40px; text-align: center; color: white; position: relative; z-index: 1; }
.about-visual-card i { font-size: 80px; opacity: 0.9; margin-bottom: 25px; display: block; }
.about-visual-card p { font-family: var(--font-heading); font-size: 20px; font-style: italic; opacity: 0.9; }
.about-visual-blob { position: absolute; bottom: -20px; right: -20px; width: 200px; height: 200px; background: rgba(155,89,182,0.08); border-radius: 50%; z-index: 0; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-stat { background: var(--light); border-radius: 16px; padding: 20px; text-align: center; border: 1px solid #f0eaf5; }
.about-stat strong { display: block; font-family: var(--font-heading); font-size: 28px; color: var(--primary); font-weight: 700; }
.about-stat span { font-size: 12px; opacity: 0.6; font-family: var(--font-heading); }

/* ── CTA Global Popup ── */
.cta-popup-overlay { position: fixed; inset: 0; background: rgba(60,20,80,0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease; }
.cta-popup-overlay.active { opacity: 1; visibility: visible; }
.cta-popup { background: #fff; border-radius: 32px; padding: 55px 50px 45px; max-width: 520px; width: 100%; text-align: center; position: relative; box-shadow: 0 40px 100px rgba(100,20,140,0.2); transform: translateY(30px) scale(0.97); transition: transform 0.35s ease; }
.cta-popup-overlay.active .cta-popup { transform: translateY(0) scale(1); }
.cta-popup-close { position: absolute; top: 18px; right: 22px; background: var(--light); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 20px; cursor: pointer; color: var(--secondary); transition: 0.2s; display: flex; align-items: center; justify-content: center; }
.cta-popup-close:hover { background: #f3e5f5; color: var(--primary); }
.cta-popup-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--secondary), #6c3483); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; color: #fff; box-shadow: 0 10px 30px rgba(142,68,173,0.35); }
.cta-popup-label { font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; display: block; }
.cta-popup h2 { font-family: var(--font-heading); font-size: 30px; color: var(--secondary); line-height: 1.25; margin-bottom: 14px; }
.cta-popup-sub { font-size: 15px; opacity: 0.65; line-height: 1.7; max-width: 380px; margin: 0 auto 30px; }
.cta-popup-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 17px; padding: 16px 38px; border-radius: 50px; box-shadow: 0 12px 30px rgba(142,68,173,0.3); transition: 0.3s; text-decoration: none; margin-bottom: 16px; }
.cta-popup-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(142,68,173,0.4); color: #fff; }
.cta-popup-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--primary); opacity: 0.8; transition: 0.2s; text-decoration: none; margin-bottom: 28px; }
.cta-popup-link:hover { opacity: 1; gap: 10px; }
.cta-popup-services { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid #f0eaf5; }
.cta-popup-services span { display: inline-flex; align-items: center; gap: 6px; background: var(--light); border: 1px solid #f0eaf5; border-radius: 50px; padding: 6px 14px; font-family: var(--font-heading); font-size: 12px; font-weight: 600; color: var(--secondary); }
.cta-popup-services span i { color: var(--primary); font-size: 11px; }

/* ── Floating CTA Button ── */
.cta-float-btn { position: fixed; bottom: 30px; right: 30px; z-index: 9998; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border: none; border-radius: 50px; padding: 14px 24px; display: flex; align-items: center; gap: 9px; font-family: var(--font-heading); font-weight: 700; font-size: 15px; cursor: pointer; box-shadow: 0 8px 30px rgba(142,68,173,0.4); transition: 0.3s; animation: floatPulse 2.5s ease-in-out infinite; }
.cta-float-btn:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(142,68,173,0.5); }
@keyframes floatPulse { 0%, 100% { box-shadow: 0 8px 30px rgba(142,68,173,0.4); } 50% { box-shadow: 0 8px 40px rgba(142,68,173,0.65); } }
@media (max-width: 768px) {
    .cta-popup { padding: 45px 25px 35px; }
    .cta-popup h2 { font-size: 24px; }
    .cta-float-btn span { display: none; }
    .cta-float-btn { border-radius: 50%; width: 56px; height: 56px; padding: 0; justify-content: center; bottom: 20px; right: 20px; }
}
