
:root {
    --primary-blue: #A8D8EA;
    --soft-blue: #D4E9F5;
    --light-blue: #EBF5FA;
    --accent-blue: #7FC4DD;
    --dark-text: #2C3E50;
    --soft-white: #FAFCFD;
    --cream: #F8FBFC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--soft-white) 0%, var(--light-blue) 100%);
    overflow-x: hidden;
}

.header {
    text-align: center;
    padding: 4rem 2rem 3rem;
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.92), rgba(255,255,255,0.85)),
        url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1600&q=80') center/cover;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--soft-blue) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.header-content {
    position: relative;
    z-index: 1;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    animation: fadeInDown 0.8s ease-out;
}

.nutritionist-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease-out 0.1s backwards;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--accent-blue);
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 2rem;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.about {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(168, 216, 234, 0.2);
    margin: 2rem auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--soft-blue) 0%, transparent 70%);
    opacity: 0.4;
}

.about-content {
    position: relative;
    z-index: 1;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5F7A;
    text-align: center;
    margin-bottom: 1rem;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(168, 216, 234, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(127, 196, 221, 0.3);
    border-color: var(--primary-blue);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-card p {
    color: #5A6C82;
    line-height: 1.6;
}

.locations {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 4rem 2rem;
    margin: 3rem 0;
    border-radius: 40px;
    text-align: center;
}

.locations h2 {
    color: white;
    margin-bottom: 2rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.location-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price-section {
    text-align: center;
    background: white;
    padding: 4rem 2rem;
    border-radius: 30px;
    margin: 3rem auto;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(168, 216, 234, 0.2);
}

.price-section h2 {
    margin-bottom: 2rem;
}

.price {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.price-detail {
    font-size: 1.2rem;
    color: #5A6C82;
}

.testimonials {
    padding: 4rem 2rem;
    background: var(--cream);
    border-radius: 30px;
    margin: 3rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.rating {
    text-align: center;
    font-size: 2rem;
    color: #FFB84D;
    margin-bottom: 3rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-left: 1rem;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    height: 280px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    min-width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

.testimonial-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(168, 216, 234, 0.15);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 6rem;
    font-family: 'Playfair Display', serif;
    color: var(--soft-blue);
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5F7A;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-blue);
    font-size: 1.1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--soft-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-blue);
    width: 30px;
    border-radius: 6px;
}

.cta {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(127, 196, 221, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(127, 196, 221, 0.4);
}

footer {
    text-align: center;
    padding: 2rem;
    color: #5A6C82;
    font-size: 0.9rem;
}

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

    .nutritionist-name {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .price {
        font-size: 3rem;
    }

    .testimonial-carousel {
        height: 320px;
    }
}
