

/* Pink Feminine Modern Theme */
:root {
    --primary: #ec4899;
    --primary-light: #f472b6;
    --primary-dark: #db2777;
    --text: #4c1d3a;
    --text-light: #9d174d;
    --border: #f8c8dc;
    --shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.15);
    --radius: 16px;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(236, 72, 153, 0.1);
}

.nav-links a.active {
    color: white;
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

main {
    flex: 1;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    width: 100%;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
    backdrop-filter: blur(8px);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

/* Email Section */
.email-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    background: rgba(236, 72, 153, 0.1);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    border: 3px solid var(--primary-light);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.2);
}

.email-link:hover {
    transform: translateY(-6px);
    background: rgba(236, 72, 153, 0.2);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.3);
    border-color: var(--primary);
}

.email-icon {
    font-size: 2.2rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: var(--transition);
    border: 4px solid var(--primary-light);
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
}

.whatsapp-float img {
    width: 60%;
    filter: brightness(0) invert(1);
}

.whatsapp-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(236, 72, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
}

/* Animations */
.animated-heading {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInFromLeft 1.5s ease-out forwards 0.3s;
    position: relative;
}

@keyframes slideInFromLeft {
    to { opacity: 1; transform: translateX(0); }
}

.animated-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    border-radius: 2px;
    animation: underlineGrow 1s ease-out forwards 1.8s;
}

@keyframes underlineGrow {
    to { width: 100%; }
}

.animated-text {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards 1s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hearts */
.hearts-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.heart {
    position: absolute;
    bottom: -100px;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.7;
    animation: float-up linear forwards;
}

@keyframes float-up {
    to {
        transform: translateY(-120vh) translateX(var(--drift)) rotate(360deg);
        opacity: 0;
    }
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

textarea, input {
    padding: 1.2rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: white;
    font-size: 1.1rem;
}

button {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.3);
}

button:hover {
    transform: translateY(-4px);
}

/* Review Form Stars */
.star-rating {
    direction: rtl;
    unicode-bidi: bidi-override;
    font-size: 2.5rem;
    display: inline-block;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--primary);
}

/* Reviews List */
.reviews-list {
    margin-top: 3rem;
}

.review-item {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(236,72,153,0.1);
}

.review-stars {
    font-size: 1.8rem;
    color: var(--primary);
}

.review-desc {
    font-style: italic;
    margin: 1rem 0;
}

.review-author {
    font-size: 1rem;
    color: var(--text-light);
    text-align: right;
}

/* Blog Posts Styling */
.blog-posts {
    margin-top: 3rem;
}

.blog-post {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(236,72,153,0.15);
    border-left: 5px solid var(--primary);
}

.blog-post h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.post-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.post-content {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Random Reviews Showcase on Home Page */
.reviews-showcase {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.review-block {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    width: 45%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
    border: 3px solid var(--primary-light);
    backdrop-filter: blur(8px);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-block .stars {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.review-block .quote {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text);
    margin: 1rem 0;
    line-height: 1.6;
}

.review-block .author {
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: auto;
}

.no-review {
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .reviews-showcase {
        flex-direction: column;
    }
    .review-block {
        width: 100%;
        margin-bottom: 2rem;
    }
}