:root {
    --primary-color: #6A8EAE;
    /* Exemplary soft green/blue override later if needed, user asked for Green/Pink */
    --sage-green: #8FB3A6;
    /* Soft Sage */
    --dusty-pink: #DFAWB8;
    /* Placeholder, fixing below */
    --soft-pink: #F4C2C2;
    --bg-white: #FCFCFC;
    --text-color: #333333;
    --light-bg: #F0F7F4;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* User Specific Colors */
:root {
    --primary: #88B09F;
    /* Sage Green */
    --secondary: #E8BFCC;
    /* Dusty Pink */
    --accent: #557C6B;
    /* Darker Green for text/buttons */
    --background: #F9FBF9;
    /* Very light green tint */
    --white: #FFFFFF;
    --text-main: #4A4A4A;
    --text-light: #7A7A7A;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    /* Adding a serif for elegance */
    color: var(--accent);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(136, 176, 159, 0.3);
}

.btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(85, 124, 107, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 4rem 0;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f9fbf9 0%, #fff0f5 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
    z-index: 2;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--secondary);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 50%;
    border: 10px solid var(--secondary);
    max-width: 400px;
}

.about-text {
    flex: 1;
}

/* Areas Cards */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    border-bottom: 5px solid var(--secondary);
}

.area-card:hover {
    transform: translateY(-10px);
}

.area-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Methodology */
.methodology {
    background-color: var(--light-bg);
    text-align: center;
}

/* Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid #eee;
    position: relative;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
}

.plan-card.highlight {
    border: 2px solid var(--primary);
    background: linear-gradient(to bottom, #ffffff, #f0f7f4);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1.5rem 0;
    font-family: 'Playfair Display', serif;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--secondary) 0%, #fff 100%);
    padding: 4rem 0;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 300px;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    scroll-snap-align: center;
    box-shadow: var(--card-shadow);
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: bold;
    color: var(--accent);
}

/* CTA Section */
.cta-final {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.cta-final h2 {
    color: var(--white);
}

.cta-final p {
    color: #f0f0f0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.cta-final .btn {
    background-color: var(--white);
    color: var(--primary);
}

.cta-final .btn:hover {
    background-color: var(--secondary);
    color: var(--accent);
}

/* Footer */
footer {
    background-color: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    z-index: 1001;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover svg {
    transform: rotate(10deg);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}



/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.22rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero {
        margin-top: 60px;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-content {
        padding-right: 0;
        padding-top: 1rem;
    }

    .hero-image img {
        max-width: 100%;
        box-shadow: 10px 10px 0px var(--secondary);
    }

    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-img img {
        max-width: 280px;
    }

    .nav-links {
        display: none;
    }

    nav {
        justify-content: center;
    }

    .logo {
        font-size: 1.2rem;
        text-align: center;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .area-card {
        padding: 1.5rem;
    }

    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}