/* === FEMININE & HIGH-CONVERTING DESIGN SYSTEM === */
:root {
    --c-blush: #FDF1F0;        
    --c-rose: #D47774;         
    --c-rose-hover: #C1615E;
    --c-warm-white: #FFFCFA;   
    --c-text-dark: #4A3E3D;    
    --c-text-light: #7A6C6B;   
    --c-border: #F0E1DF;       
    
    --f-heading: 'Playfair Display', serif;
    --f-body: 'Poppins', sans-serif;
    
    --radius-soft: 20px;
    --radius-pill: 50px;
    --shadow-soft: 0 15px 35px rgba(212, 119, 116, 0.08);
    --shadow-card: 0 10px 25px rgba(74, 62, 61, 0.05);
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--f-body);
    color: var(--c-text-light);
    background-color: var(--c-warm-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--f-heading);
    color: var(--c-text-dark);
    font-weight: 600;
    line-height: 1.2;
}

.container { max-width: 1150px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }

/* === UPGRADED SCROLL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Dedicated Hero Load Animations */
@keyframes heroTextSlide {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes heroImagePop {
    0% { opacity: 0; transform: scale(0.85) translateY(40px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* === HIGH-CONVERTING BUTTONS === */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--f-body);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}
.btn-primary {
    background-color: var(--c-rose);
    color: #fff;
    box-shadow: 0 8px 20px rgba(212, 119, 116, 0.3);
}
.btn-primary:hover {
    background-color: var(--c-rose-hover);
    transform: translateY(-5px) scale(1.05); 
    box-shadow: 0 15px 25px rgba(212, 119, 116, 0.4);
}
.btn-outline {
    background-color: transparent;
    color: var(--c-rose);
    border-color: var(--c-rose);
}
.btn-outline:hover {
    background-color: var(--c-rose);
    color: #fff;
    transform: translateY(-3px);
}

/* === STICKY HEADER === */
.header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--c-border);
    padding: 15px 0;
    transition: var(--transition);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; transition: transform 0.3s; }
.logo img:hover { transform: scale(1.05); }

/* === HERO SECTION === */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--c-blush) 0%, var(--c-warm-white) 100%);
    position: relative;
}
.hero::after {
    content: ''; position: absolute; top: -10%; right: -5%;
    width: 500px; height: 500px; background: #FAE3E1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0; opacity: 0.6;
    animation: floatShape 8s ease-in-out infinite;
}
@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(10deg) scale(1.05); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
}
.hero-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
}
.hero-content {
    animation: heroTextSlide 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.hero h1 { font-size: clamp(2.5rem, 4vw, 3.8rem); margin-bottom: 20px; color: var(--c-text-dark); }
.hero h1 span { color: var(--c-rose); font-style: italic; }
.hero p.lead { font-size: 1.15rem; margin-bottom: 35px; color: var(--c-text-light); font-weight: 300; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-img {
    animation: heroImagePop 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.hero-img img {
    width: 100%; border-radius: 120px 120px 20px 20px;
    box-shadow: var(--shadow-soft); object-fit: cover;
}

/* === SECTION HEADERS === */
.section-header { margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-header h2 span { color: var(--c-rose); font-style: italic; }

/* === PROBLEM SECTION === */
.bg-blush { background-color: var(--c-blush); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card-soft {
    background: var(--c-warm-white); padding: 40px;
    border-radius: var(--radius-soft); box-shadow: var(--shadow-soft);
    border: 1px solid var(--c-border); 
    transition: var(--transition);
}
.card-soft:hover { 
    transform: translateY(-10px) scale(1.02); 
    box-shadow: 0 25px 45px rgba(212, 119, 116, 0.15);
}
.card-soft h3 { margin-bottom: 20px; font-size: 1.4rem; color: var(--c-rose); transition: color 0.3s; }
.check-list { list-style: none; }
.check-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 12px; font-size: 1.05rem; }
.check-list.problem li::before { content: '×'; color: #D47774; font-weight: bold; font-size: 1.4rem; line-height: 1; }
.check-list.solution li::before { content: '✿'; color: var(--c-rose); font-size: 1.1rem; line-height: 1.4; }

/* === SOLUTION SECTION === */
.solution-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.image-stack img { border-radius: var(--radius-soft); box-shadow: var(--shadow-soft); width: 100%; transition: transform 0.5s;}
.image-stack:hover img { transform: scale(1.03); }
.quote-box {
    background: #fff; padding: 25px; border-radius: 15px; box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--c-rose); font-family: var(--f-heading);
    font-size: 1.2rem; font-style: italic; color: var(--c-text-dark);
    margin-top: 30px; transition: var(--transition);
}
.quote-box:hover { transform: translateX(10px); }

/* === ABOUT SECTION === */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.about-img-wrap { padding: 15px; border: 2px dashed var(--c-rose); border-radius: 50%; transition: transform 0.5s linear; }
.about-grid:hover .about-img-wrap { transform: rotate(5deg); }
.about-img-wrap img { width: 100%; border-radius: 50%; aspect-ratio: 1/1; object-fit: cover; }
.about-text h4 { font-family: var(--f-body); color: var(--c-rose); text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; font-weight: 500; }

/* === PROGRAMS SECTION === */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.program-card {
    background: #fff; padding: 50px 30px; border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft); border: 1px solid var(--c-border);
    text-align: center; transition: var(--transition); display: flex; flex-direction: column;
}
.program-card:hover { 
    transform: translateY(-12px) scale(1.02); 
    border-color: var(--c-rose); 
    box-shadow: 0 30px 50px rgba(212, 119, 116, 0.15); 
}
.program-card h3 { font-size: 1.6rem; margin-bottom: 15px; }
.program-card p.desc { font-size: 0.95rem; margin-bottom: 25px; min-height: 50px; }
.program-card ul { text-align: left; margin-bottom: 30px; flex-grow: 1; }
.program-card.featured {
    border: 2px solid var(--c-rose);
    background: linear-gradient(to bottom, #fff, var(--c-blush));
    position: relative; transform: scale(1.02);
}
.program-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.featured-tag {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--c-rose); color: #fff; padding: 6px 20px;
    border-radius: 20px; font-size: 0.85rem; font-weight: 500;
}

/* === RESULTS SECTION === */
.results-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.result-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-card);
    border: 1px solid transparent;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.result-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--c-border);
    background: var(--c-blush);
    box-shadow: 0 20px 40px rgba(212, 119, 116, 0.12);
}
.result-icon {
    font-size: 2rem;
    background: var(--c-blush);
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: var(--c-rose); flex-shrink: 0;
    transition: transform 0.4s;
}
.result-card:hover .result-icon { background: #fff; transform: rotate(15deg) scale(1.1); }
.result-text h4 { margin-bottom: 5px; font-size: 1.15rem; color: var(--c-text-dark); }
.result-text p { font-size: 0.9rem; margin: 0; color: var(--c-text-light); }

/* === CLIENT LOVE (TESTIMONIALS) === */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-img {
    background: #fff;
    padding: 15px;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-card);
    transform: rotate(-2deg);
    transition: var(--transition);
}
.testimonial-img:nth-child(even) { transform: rotate(2deg); }
.testimonial-img:hover {
    transform: scale(1.08) rotate(0deg);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
    z-index: 2; position: relative;
}
.testimonial-img img {
    width: 100%; border-radius: 10px;
    display: block;
}
.testimonial-caption {
    text-align: center; font-family: var(--f-heading); font-style: italic;
    color: var(--c-rose); margin-top: 15px; font-size: 1.1rem;
}

/* === CTA BANNER === */
.cta-banner {
    background: var(--c-rose); color: #fff; text-align: center;
    padding: 80px 20px; border-radius: var(--radius-soft);
    margin: 0 auto; max-width: 1000px; box-shadow: var(--shadow-soft);
    transition: transform 0.4s;
}
.cta-banner:hover { transform: scale(1.01); }
.cta-banner h2 { color: #fff; font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 20px; }

/* === LEAD GEN CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info { padding-right: 30px; }
.contact-info p { margin-bottom: 20px; font-size: 1.1rem; line-height: 1.6; word-wrap: break-word; }
.contact-info p span.icon { display: inline-block; width: 25px; text-align: left; }
.contact-info p strong { color: var(--c-text-dark); margin-right: 5px; }
.contact-info a { color: var(--c-rose); text-decoration: none; font-weight: 500; transition: 0.2s; word-break: break-word; }
.contact-info a:hover { color: var(--c-rose-hover); letter-spacing: 0.5px; }

.contact-form {
    background: #fff; padding: 40px; border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft); border: 1px solid var(--c-border);
}
.form-control {
    width: 100%; padding: 15px 20px; margin-bottom: 20px;
    border: 1px solid var(--c-border); border-radius: 10px;
    font-family: var(--f-body); font-size: 1rem;
    background: var(--c-warm-white); transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--c-rose); background: #fff; box-shadow: 0 0 0 4px rgba(212, 119, 116, 0.15); }

/* === ANIMATED WHATSAPP BUTTON === */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background-color: #25d366; color: #FFF; border-radius: 50px;
    text-align: center; font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    width: 65px; height: 65px; text-decoration: none;
    animation: pulse-whatsapp 2s infinite; transition: 0.3s;
}
.whatsapp-float:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); }
.whatsapp-float svg { width: 35px; height: 35px; fill: white; }

/* === UTILITIES & CLEANUP CLASSES === */
.btn-header { padding: 10px 24px; }
.btn-full { width: 100%; }
.btn-white { background-color: var(--c-warm-white); color: var(--c-rose); }
.btn-white:hover { background-color: #fff; transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 25px rgba(212, 119, 116, 0.2); }

.problem-subtitle { text-align: center; margin-top: 40px; font-weight: 500; font-size: 1.15rem; color: var(--c-text-dark); }
.problem-highlight { color: var(--c-rose); }

.solution-desc { margin-bottom: 25px; }
.solution-list-title { margin-bottom: 15px; color: var(--c-text-dark); }

.about-subtitle { font-weight: 500; color: var(--c-text-dark); margin-bottom: 20px; }
.about-desc { margin-bottom: 20px; }
.about-beliefs { background: #fff; padding: 25px; border-radius: 15px; margin-top: 30px; }
.about-beliefs-mb { margin-bottom: 15px; }
.about-beliefs-highlight { color: var(--c-rose); font-weight: 500; }
.about-goal { margin-top: 25px; font-family: var(--f-heading); font-size: 1.3rem; font-style: italic; }

.results-subtitle { font-size: 1.15rem; color: var(--c-text-dark); margin-top: 10px; }
.results-subtitle span { color: var(--c-rose); font-weight: 500; }
.testimonials-wrapper { margin-top: 100px; }

.cta-desc { margin: 20px 0 30px; font-size: 1.1rem; color: #FFF0EF; }
.cta-btn-wrapper { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.contact-desc { margin: 20px 0 40px; color: var(--c-text-light); }
.contact-form h3 { margin-bottom: 25px; font-size: 1.5rem; }

.alert { padding: 15px; margin-bottom: 20px; border-radius: 8px; font-weight: 500; }
.alert-success { background-color: #e6f4ea; color: #1e8e3e; border: 1px solid #ceead6; }
.alert-error { background-color: #fce8e6; color: #d93025; border: 1px solid #fad2cf; }

.honeypot { display: none; visibility: hidden; }
.footer { padding: 40px 0; text-align: center; border-top: 1px solid var(--c-border); margin-top: 60px; font-size: 0.9rem;}
.footer-logo { height: 40px; margin-bottom: 15px; filter: grayscale(100%) opacity(0.5); }

/* === RESPONSIVE UX === */
@media (max-width: 900px) {
    .hero-grid, .solution-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info { padding-right: 0; } 
    .hero::after { display: none; }
    .hero-img img { border-radius: 20px; }
    .program-card.featured { transform: scale(1); }
    .section { padding: 70px 0; }
}
@media (max-width: 600px) {
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
    .header .btn { display: none; }
    .card-soft, .contact-form { padding: 30px 20px; }
    .contact-info p { font-size: 1rem; } 
    .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; }
    .result-card { flex-direction: column; text-align: center; align-items: center; }
}