:root {
    --bg: #ffffff;
    --text: #4a5568;
    --brand: #8fbc8f; /* Soft sage green from the palette */
    --muted: #718096;
    --accent: #f6e05e; /* Soft yellow from the palette */
    --light-bg: #fef9e7; /* Very light cream/yellow */
    --border: #e2e8f0;
    --pink-accent: #f7b2bd; /* Soft pink from palette */
    --lavender-accent: #d6bcfa; /* Light lavender from palette */
    --blue-accent: #90cdf4; /* Light blue from palette */
    --cream: #faf5f0; /* Warm cream tone */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    position: relative;
    overflow-x: hidden;
}

/* Dynamic Background */
.dynamic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(246, 224, 94, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(143, 188, 143, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(247, 178, 189, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(214, 188, 250, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 10% 60%, rgba(144, 205, 244, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 70% 10%, rgba(250, 245, 240, 0.3) 0%, transparent 55%);
    transition: all 0.3s ease;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-100%);
}

.site-header.visible {
    transform: translateY(0);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .logo {
        height: 150px;
    }
}

@media (min-width: 1024px) {
    .logo {
        height: 180px;
    }
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: none;
    gap: 1rem;
    align-items: center;
}

.nav[data-open="true"] {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.2s;
    position: relative;
}

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

.nav a.active {
    color: var(--brand);
    font-weight: 600;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand);
    border-radius: 1px;
}

.nav a.active.btn::after {
    display: none;
}

.nav a.active.btn {
    border: 3px solid var(--brand);
    background: transparent;
    color: var(--brand);
    padding: 0.75rem 1.5rem;
    margin: 0.25rem;
    font-weight: 600;
}

.nav a.active.btn::after {
    display: none !important;
}

.nav .btn {
    background: var(--brand);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: none;
}

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        padding: 0;
    }

    .nav-toggle {
        display: none;
    }
}

/* Sections */
section {
    padding: 4rem 0;
}

.hero {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(250, 245, 240, 0.9)),
        url('../header.png') center/cover no-repeat;
    color: var(--text);
    text-align: center;
    padding: 8rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: var(--brand);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.hero .hero-greeting {
    font-size: 4rem;
    font-family: 'Dancing Script', cursive;
    color: var(--brand);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero .hero-tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background: var(--brand);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(143, 188, 143, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(143, 188, 143, 0.4);
    background: #7da87d;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--brand);
    color: var(--brand);
    margin-left: 1rem;
    box-shadow: none;
}

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

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(143, 188, 143, 0.1);
    border: 2px solid var(--light-bg);
    transition: all 0.3s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(143, 188, 143, 0.2);
    border-color: var(--brand);
}

.service-card h3 {
    color: var(--brand);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.badge {
    display: inline-block;
    background: var(--pink-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    margin-right: 3rem;
    max-width: calc(100% - 4rem);
    font-weight: 500;
}

.badge-empty {
    background: transparent;
    border: 2px solid var(--muted);
    color: transparent;
    min-width: 80px;
}

.badge-lavender {
    background: var(--lavender-accent);
}

.badge-blue {
    background: var(--blue-accent);
}

/* Service Card Expand/Collapse */
.service-card {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card.expanded {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-expand-btn {
    position: absolute;
    right: 1rem;
    top: 3rem; /* Position between tag and title */
    background: white;
    color: var(--brand);
    border: 2px solid #d1d5db;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.service-expand-btn:hover {
    background: white;
    transform: scale(1.1);
    border-color: var(--accent);
}

.service-expand-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-expand-btn svg path {
    stroke: var(--brand);
    transition: stroke 0.3s ease;
}

.service-expand-btn:hover svg path {
    stroke: var(--accent);
}

.service-card.expanded .service-expand-btn svg {
    transform: rotate(180deg);
}

.service-card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    padding-top: 0;
}

.service-card.expanded .service-card-content {
    max-height: 500px;
    margin-top: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.service-card-spacer {
    flex-grow: 1;
    min-height: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text h2 {
    color: var(--brand);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.credibility {
    margin-top: 2rem;
}

.credibility li {
    margin-bottom: 0.5rem;
    color: var(--muted);
}

@media (max-width: 768px) {
    .credibility {
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 2rem auto 0;
    }
    
    .credibility li {
        text-align: center;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* What to Expect Section */
.what-to-expect {
    margin: 2rem 0;
}

.what-to-expect h3 {
    color: var(--brand);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.expectations {
    display: grid;
    gap: 1rem;
}

.expectation {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.expectation-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.expectation span:last-child {
    color: var(--muted);
    line-height: 1.5;
}

/* Daisy Personal Photos */
.daisy-photo {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(143, 188, 143, 0.2);
    transition: all 0.3s ease;
}

.daisy-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(143, 188, 143, 0.3);
}

/* Work/Testimonials */
.testimonials-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--brand);
    box-shadow: 0 4px 15px rgba(143, 188, 143, 0.1);
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial cite {
    color: var(--muted);
    font-weight: 600;
}

.testimonial-photo {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.testimonial-daisy {
    max-width: 300px;
    margin-bottom: 1rem;
}

.photo-caption {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(143, 188, 143, 0.1);
    border: 2px solid var(--light-bg);
}

.photo-caption p {
    font-style: italic;
    color: var(--brand);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.photo-caption span {
    color: var(--muted);
    font-weight: 600;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-content {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--brand);
    cursor: pointer;
}

.faq-answer {
    color: var(--muted);
    line-height: 1.7;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(143, 188, 143, 0.1);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid white;
}

.contact-daisy-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(143, 188, 143, 0.2);
    flex-shrink: 0;
}

.contact-text h3 {
    color: var(--brand);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-greeting {
    color: var(--muted);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.contact-details p {
    margin-bottom: 0.75rem;
    color: var(--muted);
}

@media (max-width: 767px) {
    .contact-header {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-daisy-photo {
        width: 100px;
        height: 100px;
    }
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    font-size: 1rem;
    font-family: inherit;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select:hover {
    border-color: var(--brand);
    background-color: #f8fafc;
}

.form-group select option {
    padding: 0.5rem;
    background-color: white;
    color: var(--text);
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.consent input {
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--brand);
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

/* Utility */
.text-center {
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: var(--brand);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

/* Success/Error states */
.form-success {
    background: #dcfce7;
    color: #166534;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.form-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

/* Loading state */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Before/After Comparison Slider */
.comparison-container {
    position: relative;
    width: 100%;
    height: 200px;
    margin: 1rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #f0f0f0;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comparison-after {
    clip-path: inset(0 50% 0 0);
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--brand);
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.comparison-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--brand);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.comparison-slider::after {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 8px;
    font-weight: bold;
    line-height: 1;
}

.comparison-label {
    position: absolute;
    bottom: 10px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

.comparison-label.before {
    left: 10px;
}

.comparison-label.after {
    right: 10px;
}

.comparison-container:hover .comparison-slider {
    background: var(--accent);
}

.comparison-container:hover .comparison-slider::before {
    background: var(--accent);
}

/* Service Details Styling */
.service-details {
    padding: 1rem 0;
}

.service-details h4 {
    color: var(--brand);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-areas {
    display: grid;
    gap: 1.5rem;
}

.service-area h5 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.service-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-area li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-area li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: bold;
}

@media (min-width: 768px) {
    .service-areas {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.pricing-category {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.pricing-category h3 {
    color: var(--brand);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.pricing-note {
    color: var(--muted);
    margin-bottom: 2rem;
    font-style: italic;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border-color: var(--accent);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-header h4 {
    color: var(--brand);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
}

.price span {
    font-size: 1rem;
    color: var(--muted);
    font-weight: normal;
}

/* Add-ons Grid */
.addon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.addon-category h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.addon-items {
    display: grid;
    gap: 0.75rem;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 0.25rem;
    border: 1px solid var(--border);
}

.addon-name {
    color: var(--text);
    font-size: 0.9rem;
}

.addon-price {
    color: var(--brand);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .addon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .addon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



