@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@400;700&family=Dancing+Script:wght@600&display=swap');

:root {
    --primary-pink: #DB7093;
    --soft-pink: #FFC0CB;
    --light-pink: #FFF0F5;
    --deep-pink: #8b2d4b;
    --dark-gray: #1a1a1a;
    --medium-gray: #4a4a4a;
    --light-gray: #fdfdfd;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
}

.font-script {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-pink);
    font-size: 1.5rem;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-gray);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--light-pink);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--deep-pink);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.text-pink { color: var(--primary-pink); }
.bg-pink { background-color: var(--primary-pink); }
.bg-light-pink { background-color: var(--light-pink); }

.btn-premium {
    background: linear-gradient(45deg, var(--primary-pink), var(--soft-pink));
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 10px 20px rgba(219, 112, 147, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    color: var(--white);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(219, 112, 147, 0.4);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: radial-gradient(circle at 10% 20%, var(--light-pink) 0%, var(--white) 90%);
    position: relative;
}

.hero-img {
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: var(--soft-pink);
    opacity: 0.1;
    border-radius: 50%;
}

.shape-1 { width: 300px; height: 300px; top: -100px; right: -100px; }
.shape-2 { width: 200px; height: 200px; bottom: 10%; left: -50px; background: var(--primary-pink); }

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '✿';
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 1.2rem;
    color: var(--primary-pink);
    width: auto;
    height: auto;
    background: none;
}

.decoration-sparkle {
    position: relative;
}

.decoration-sparkle::before {
    content: '✨';
    position: absolute;
    top: -15px;
    right: -20px;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.wave-divider .shape-fill {
    fill: #ffffff;
}

/* Header Enhancements */
.navbar {
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--light-pink);
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Footer Enhancements */
footer {
    background: linear-gradient(to bottom, #1a1a1a, #000);
    position: relative;
    padding: 100px 0 40px;
    color: #e0e0e0;
}

footer p.text-muted {
    color: #b0b0b0 !important;
}

footer .footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

footer .footer-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 6rem;
    color: rgba(219, 112, 147, 0.05);
    pointer-events: none;
}

footer a.text-muted:hover {
    color: var(--primary-pink) !important;
}

.card-program {
    border: none;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    padding: 40px;
}

.card-program:hover {
    transform: translateY(-15px);
    background: var(--white);
    box-shadow: 0 30px 60px rgba(219, 112, 147, 0.15);
}

.before-after-box {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.before-after-box:hover {
    border-color: var(--soft-pink);
    transform: scale(1.02);
}

.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.list-check li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: bold;
}

/* Form */
.form-control {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25 rbg(219, 112, 147, 0.25);
    border-color: var(--primary-pink);
}

footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
}

.social-links a {
    color: var(--white);
    font-size: 20px;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--soft-pink);
}
