:root {
    /* Playful Organic Palette */
    --peach: #FF8F5C;
    --peach-light: #FFE8D6;
    --coral: #FFB685;
    --coral-light: #FFF0E3;
    --teal: #6EC1B4;
    --teal-light: #D6F1ED;
    --yellow: #FFD166;
    --yellow-light: #FFF5D6;
    --cream: #FFF4E6;
    --warm-white: #FFFBF7;
    --brown: #8B6F47;
    --text-dark: #3D3D3D;
    --text-medium: #6B6B6B;

    /* Typography */
    --font-display: 'Nunito', sans-serif;
    --font-handwritten: 'Caveat', cursive;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-display);
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 251, 247, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 143, 92, 0.1);
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--peach);
    transform: translateY(-2px);
}

.nav-cta {
    background: linear-gradient(135deg, var(--peach), var(--coral));
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 143, 92, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 143, 92, 0.4);
}

/* Hero Section */
.hero {
    padding: 120px 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 60% 40% 50% 60% / 50% 60% 40% 50%;
    animation: morphBlob 15s infinite ease-in-out;
    opacity: 0.4;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--peach-light), var(--coral-light));
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--teal-light);
    bottom: -50px;
    left: -80px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--yellow-light);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 60% 40% 50% 60% / 50% 60% 40% 50%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 50% 60% 40% 50% / 60% 40% 60% 50%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 40% 50% 60% 40% / 50% 40% 50% 60%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 50% 40% 50% 60% / 40% 60% 50% 40%;
        transform: rotate(270deg) scale(1.05);
    }
}

.doodle {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.3;
    animation: float 8s infinite ease-in-out;
}

.doodle-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.doodle-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: -3s;
}

.doodle-3 {
    top: 60%;
    right: 25%;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--space-md);
    font-weight: 700;
    color: var(--peach);
    font-size: 15px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.wavy-underline {
    position: relative;
    display: inline-block;
}

.wavy-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='12' viewBox='0 0 100 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6 Q 12.5 0, 25 6 T 50 6 T 75 6 T 100 6' stroke='%23FF8F5C' stroke-width='3' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: repeat-x;
    opacity: 0.6;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: var(--space-xl);
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--peach), var(--coral));
    color: white;
    box-shadow: 0 6px 20px rgba(255, 143, 92, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 143, 92, 0.4);
}

.btn-outline {
    background: white;
    color: var(--peach);
    border: 3px solid var(--peach);
}

.btn-outline:hover {
    background: var(--peach);
    color: white;
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--teal);
    color: white;
    box-shadow: 0 6px 20px rgba(110, 193, 180, 0.3);
}

.btn-secondary:hover {
    background: #5cb0a3;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(110, 193, 180, 0.4);
}

.btn-large {
    padding: 20px 48px;
    font-size: 20px;
}

.hero-trust {
    display: flex;
    gap: var(--space-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.trust-icon {
    font-size: 32px;
}

.trust-text {
    font-size: 15px;
    color: var(--text-medium);
}

.trust-text strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-frame {
    animation: bounce 6s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Services Section */
.services {
    padding: var(--space-2xl) 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-title.centered {
    text-align: center;
}

.handwritten {
    font-family: var(--font-handwritten);
    font-size: 1.2em;
    color: var(--peach);
    font-weight: 700;
}

.handwritten-large {
    font-family: var(--font-handwritten);
    font-size: 1.3em;
    color: var(--peach);
    font-weight: 700;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle.centered {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--cream);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--peach);
}

.service-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -50px;
    border-radius: 40% 60% 50% 60% / 50% 60% 40% 50%;
    opacity: 0.3;
    z-index: 0;
}

.service-emoji {
    font-size: 64px;
    margin-bottom: var(--space-md);
    display: block;
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    padding: var(--space-2xl) 0;
    background: var(--cream);
    position: relative;
}

.about-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-99%);
}

.about-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.about-lead {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.about-highlights {
    margin-bottom: var(--space-xl);
}

.highlight-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    align-items: flex-start;
}

.highlight-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--peach), var(--coral));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.highlight-item p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.highlight-item strong {
    color: var(--text-dark);
}

.quote-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-mark {
    font-family: var(--font-handwritten);
    font-size: 120px;
    color: var(--peach-light);
    line-height: 0.8;
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.quote-author strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-meta {
    font-size: 14px;
    color: var(--text-medium);
}

/* Process Section */
.process {
    padding: var(--space-2xl) 0;
    background: white;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    grid-column: span 1;
}

.process-arrow {
    font-size: 32px;
    color: var(--peach);
    text-align: center;
    font-weight: 700;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--peach), var(--coral));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto var(--space-md);
    box-shadow: 0 6px 20px rgba(255, 143, 92, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-circle {
    transform: scale(1.1) rotate(-10deg);
}

.step-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.step-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--teal), #5cb0a3);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cta-blob {
    position: absolute;
    border-radius: 50% 60% 40% 50% / 60% 40% 60% 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: morphBlob 20s infinite ease-in-out;
}

.cta-blob-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.cta-blob-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation-delay: -10s;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 22px;
    color: white;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: var(--space-md);
    font-size: 16px;
    color: white;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-99%);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    text-align: left;
}

.footer-title {
    font-size: 28px;
    font-weight: 800;
    margin: var(--space-md) 0;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-trust {
        flex-direction: column;
        gap: var(--space-md);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .process-flow {
        grid-template-columns: 1fr;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: var(--space-md) 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: var(--space-md);
        font-size: 14px;
    }
}
/* Family Moments Section */
.family-moments {
    padding: var(--space-2xl) 0;
}

.moments-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(2, 300px);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.moment-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.moment-card:first-child {
    grid-row: span 2;
}

.moment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.moment-card:hover img {
    transform: scale(1.08);
}

.moment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.moment-card:hover .moment-overlay {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .moments-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .moment-card:first-child {
        grid-row: span 1;
    }
}

/* Hero Photo Collage */
.hero-photo-collage {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
}

.collage-item {
    position: absolute;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.collage-item:hover {
    transform: scale(1.05) rotate(-2deg);
    z-index: 10;
}

.collage-main {
    width: 350px;
    height: 400px;
    top: 50px;
    left: 0;
    transform: rotate(-3deg);
}

.collage-small-1 {
    width: 200px;
    height: 180px;
    top: 0;
    right: 0;
    transform: rotate(5deg);
}

.collage-small-2 {
    width: 220px;
    height: 200px;
    bottom: 0;
    right: 30px;
    transform: rotate(-5deg);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-sticker {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite ease-in-out;
}

.collage-sticker:nth-child(2) {
    animation-delay: 0.3s;
}

.collage-sticker:nth-child(3) {
    animation-delay: 0.6s;
}

@media (max-width: 768px) {
    .hero-photo-collage {
        height: 400px;
        margin: 0 auto;
    }

    .collage-main {
        width: 250px;
        height: 300px;
    }

    .collage-small-1,
    .collage-small-2 {
        width: 150px;
        height: 140px;
    }
}
