:root {
    --gradient-pink: #f8c8dc;
    --gradient-purple: #d4a5d9;
    --gradient-blue: #a8d8ea;
    --gradient-teal: #88d8c0;
    --text-dark: #4a4a4a;
    --text-medium: #666666;
    --accent-coral: #e8a598;
    --bg-cream: #fdf8f5;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-cream);
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-pink), var(--gradient-purple));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg,
        var(--gradient-pink) 0%,
        var(--gradient-purple) 25%,
        var(--gradient-blue) 50%,
        var(--gradient-teal) 75%,
        var(--gradient-pink) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 24px 80px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 400;
    line-height: 0.9;
    color: var(--text-dark);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: var(--text-dark);
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    margin-top: 48px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    margin-top: 48px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    top: 10%;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    bottom: 20%;
    left: -50px;
    animation-delay: 2s;
}

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

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    color: var(--text-dark);
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--bg-cream) 0%, rgba(248, 200, 220, 0.15) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-purple));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.5;
}

.about-text-content {
    text-align: left;
}

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-quote strong {
    font-weight: 600;
    background: linear-gradient(90deg, var(--gradient-purple), var(--gradient-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 1rem;
    color: var(--text-medium);
}

/* Values Section */
.values {
    background: var(--white);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.value-card {
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(248, 200, 220, 0.3), rgba(248, 200, 220, 0.1));
}

.value-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(212, 165, 217, 0.3), rgba(212, 165, 217, 0.1));
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--text-dark);
    opacity: 0.7;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.value-card strong {
    color: var(--text-dark);
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--white) 0%, rgba(168, 216, 234, 0.15) 100%);
}

.services-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--text-medium);
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.approach-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-pink), var(--gradient-purple), var(--gradient-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.approach-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.approach-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Support Types */
.support-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.support-card {
    background: linear-gradient(135deg, rgba(248, 200, 220, 0.2), rgba(168, 216, 234, 0.2));
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.support-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(212, 165, 217, 0.4);
}

.support-card ul {
    list-style: none;
    margin-bottom: 16px;
}

.support-card li {
    padding: 6px 0;
    color: var(--text-medium);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.support-card li::before {
    content: '◦';
    color: var(--gradient-purple);
    font-size: 0.7rem;
    margin-top: 4px;
}

.support-card .note {
    font-size: 0.8rem;
    color: var(--text-medium);
    opacity: 0.8;
    font-style: italic;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg,
        rgba(248, 200, 220, 0.3) 0%,
        rgba(212, 165, 217, 0.3) 50%,
        rgba(168, 216, 234, 0.3) 100%);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group .required {
    color: var(--accent-coral);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(212, 165, 217, 0.3);
    border-radius: 12px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-cream);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gradient-purple);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 165, 217, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-medium);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-purple));
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-pink));
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 16px 28px;
    background: var(--white);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-note {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
}

/* Footer */
footer {
    background: var(--white);
    padding: 40px 0 24px;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto 20px;
    opacity: 0.8;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-medium);
    opacity: 0.6;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--text-dark);
    text-decoration: none;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 968px) {
    .approach-cards,
    .support-types {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .about-image {
        max-width: 240px;
        margin: 0 auto;
    }

    .about-text-content {
        text-align: center;
    }

    .about-image::before {
        top: -8px;
        left: -8px;
        right: 8px;
        bottom: 8px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    section {
        padding: 60px 0;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 100px 16px 60px;
    }

    .hero-image img {
        width: 140px;
        height: 140px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
