/* CSS Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* AllCareCo Brand Colors - Matching React version exactly */
    --background: 30 50% 98%;
    --foreground: 200 25% 20%;

    --card: 0 0% 100%;
    --card-foreground: 200 25% 20%;

    /* Primary - Coral/Salmon from logo */
    --primary: 12 76% 61%;
    --primary-foreground: 0 0% 100%;

    /* Secondary - Teal from logo */
    --secondary: 174 42% 41%;
    --secondary-foreground: 0 0% 100%;

    --muted: 30 30% 94%;
    --muted-foreground: 200 15% 45%;

    /* Accent - Light teal */
    --accent: 174 35% 92%;
    --accent-foreground: 174 42% 30%;

    --border: 30 20% 88%;
    --input: 30 20% 88%;

    /* Custom brand tokens */
    --coral: 12 76% 61%;
    --coral-light: 12 76% 92%;
    --coral-dark: 12 60% 45%;
    --teal: 174 42% 41%;
    --teal-light: 174 35% 92%;
    --teal-dark: 174 45% 28%;
    --cream: 30 50% 98%;
    --warm-gray: 30 10% 55%;

    --radius: 0.75rem;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

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

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; }

/* Animations */
@keyframes fade-in {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-in {
    animation: fade-in 0.5s ease-out forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Shadows */
.shadow-soft {
    box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
}

.shadow-medium {
    box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
}

.shadow-coral {
    box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25);
}

.shadow-teal {
    box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25);
}

.btn-primary:hover {
    background-color: hsl(var(--coral-dark));
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: hsla(30, 50%, 98%, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--border));
}

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

.logo img {
    height: 3.5rem;
    width: auto;
}

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

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
}

.nav-link {
    color: hsla(200, 25%, 20%, 0.8);
    font-weight: 500;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.nav-link:hover {
    color: hsl(var(--primary));
}

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

@media (min-width: 1024px) {
    .header-cta { display: flex; }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--secondary));
    font-weight: 600;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: hsl(var(--foreground));
}

@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
}

.mobile-nav {
    display: none;
    padding: 1.5rem 0;
    border-top: 1px solid hsl(var(--border));
    animation: fade-in 0.3s ease-out;
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links .nav-link {
    padding: 0.5rem 0;
    text-align: left;
}

.mobile-nav-cta {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid hsl(var(--border));
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: linear-gradient(135deg, hsl(30, 50%, 98%) 0%, hsl(174, 35%, 95%) 50%, hsl(12, 76%, 96%) 100%);
    overflow: hidden;
}

.hero-decorative-1 {
    position: absolute;
    top: 8rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background-color: hsl(var(--coral-light));
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

.hero-decorative-2 {
    position: absolute;
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background-color: hsl(var(--teal-light));
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.hero-circle-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid hsla(12, 76%, 61%, 0.1);
    border-radius: 50%;
}

.hero-circle-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border: 1px solid hsla(174, 42%, 41%, 0.1);
    border-radius: 50%;
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: hsl(var(--teal-light));
    color: hsl(var(--secondary));
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: hsl(var(--primary));
    position: relative;
    display: inline-block;
}

.hero h1 .highlight svg {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
}

.hero-description {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.trust-indicators {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

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

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: hsl(var(--card));
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
}

.trust-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon-wrapper.coral {
    background-color: hsl(var(--coral-light));
}

.trust-icon-wrapper.teal {
    background-color: hsl(var(--teal-light));
}

.trust-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.trust-icon.coral {
    color: hsl(var(--primary));
}

.trust-icon.teal {
    color: hsl(var(--secondary));
}

.trust-text {
    text-align: left;
}

.trust-title {
    font-weight: 600;
    color: hsl(var(--foreground));
    font-size: 0.9375rem;
}

.trust-subtitle {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-badge.coral {
    background-color: hsl(var(--coral-light));
    color: hsl(var(--primary));
}

.section-badge.teal {
    background-color: hsl(var(--teal-light));
    color: hsl(var(--secondary));
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* Services */
.services {
    background-color: hsl(var(--background));
}

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

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

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

.service-card {
    background: hsl(var(--card));
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card:hover .service-accent {
    transform: scaleX(1);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.service-icon.coral {
    background-color: hsl(var(--coral-light));
}

.service-icon.teal {
    background-color: hsl(var(--teal-light));
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.service-icon.coral svg {
    color: hsl(var(--primary));
}

.service-icon.teal svg {
    color: hsl(var(--secondary));
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(var(--foreground));
}

.service-card p {
    color: hsl(var(--muted-foreground));
    font-size: 0.9375rem;
    line-height: 1.7;
}

.service-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-accent.coral {
    background-color: hsl(var(--primary));
}

.service-accent.teal {
    background-color: hsl(var(--secondary));
}

/* About */
.about {
    background-color: hsla(30, 30%, 94%, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-content .section-badge {
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.about-content h2 .highlight {
    color: hsl(var(--secondary));
}

.about-content > p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin-top: 2rem;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsl(var(--foreground));
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--secondary));
    flex-shrink: 0;
}

/* About Card */
.about-visual {
    position: relative;
}

.about-card {
    background: hsl(var(--card));
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
    position: relative;
}

.about-card-glow-1 {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background-color: hsl(var(--coral-light));
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.6;
}

.about-card-glow-2 {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    width: 8rem;
    height: 8rem;
    background-color: hsl(var(--teal-light));
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.6;
}

.about-card-inner {
    position: relative;
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mission-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background-color: hsl(var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25);
}

.mission-icon svg {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary-foreground));
}

.mission-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.mission-title p {
    color: hsl(var(--muted-foreground));
}

.about-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: hsl(var(--foreground));
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid hsl(var(--border));
}

.about-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.about-stat-number.teal {
    color: hsl(var(--secondary));
}

.about-stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.floating-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25);
}

.floating-badge p:first-child {
    font-weight: 600;
}

.floating-badge p:last-child {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    background-color: hsla(30, 30%, 94%, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonials-decorative-1 {
    position: absolute;
    top: 5rem;
    left: 0;
    width: 16rem;
    height: 16rem;
    background-color: hsl(var(--coral-light));
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.3;
}

.testimonials-decorative-2 {
    position: absolute;
    bottom: 5rem;
    right: 0;
    width: 20rem;
    height: 20rem;
    background-color: hsl(var(--teal-light));
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

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

.testimonial-card {
    background: hsl(var(--card));
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
}

.quote-icon {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: hsl(var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25);
}

.quote-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary-foreground));
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
    fill: hsl(var(--primary));
}

.testimonial-card blockquote {
    color: hsl(var(--foreground));
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: hsl(var(--teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar span {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: hsl(var(--secondary));
}

.testimonial-name {
    font-weight: 600;
    color: hsl(var(--foreground));
}

.testimonial-role {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Team */
.team {
    background-color: hsl(var(--background));
}

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

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

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

.team-card {
    background: hsl(var(--card));
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
}

.team-card:hover .team-avatar {
    transform: scale(1.05);
}

.team-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.team-avatar.coral {
    background-color: hsl(var(--coral-light));
    color: hsl(var(--primary));
}

.team-avatar.teal {
    background-color: hsl(var(--teal-light));
    color: hsl(var(--secondary));
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-role.coral {
    color: hsl(var(--primary));
}

.team-role.teal {
    color: hsl(var(--secondary));
}

.team-card .bio {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.7;
}

/* FAQ */
.faq {
    background-color: hsl(var(--background));
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: hsl(var(--card));
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    transition: color 0.2s;
}

.faq-question:hover {
    color: hsl(var(--primary));
}

.faq-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--muted-foreground));
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact */
.contact {
    background-color: hsla(30, 30%, 94%, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-decorative-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: hsl(var(--coral-light));
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.3;
}

.contact-decorative-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
    background-color: hsl(var(--teal-light));
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.3;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: hsl(var(--card));
    border-radius: 1rem;
    box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
    transition: all 0.3s ease;
}

.contact-method:hover {
    box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
}

.contact-method:hover .contact-method-icon {
    transform: scale(1.05);
}

.contact-method-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-method-icon.coral {
    background-color: hsl(var(--primary));
    box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25);
}

.contact-method-icon.teal {
    background-color: hsl(var(--secondary));
    box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25);
}

.contact-method-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary-foreground));
}

.contact-method-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.contact-method-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.contact-promise {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background-color: hsl(var(--teal-light));
    border-radius: 1rem;
    margin-top: 2rem;
}

.contact-promise svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--secondary));
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-promise-title {
    font-weight: 600;
    color: hsl(var(--foreground));
}

.contact-promise-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Contact Form */
.contact-form-wrapper {
    background: hsl(var(--card));
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsla(12, 76%, 61%, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: hsl(var(--muted-foreground));
}

.form-group input {
    height: 3rem;
}

.form-group textarea {
    min-height: 8rem;
    resize: none;
}

.contact-form .btn {
    width: 100%;
    height: 3rem;
}

/* Footer */
.footer {
    background-color: hsl(var(--foreground));
    color: hsl(var(--background));
    padding: 4rem 0 0;
}

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

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand img {
    height: 4rem;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: hsla(30, 50%, 98%, 0.7);
    margin-bottom: 1.5rem;
    max-width: 24rem;
    line-height: 1.7;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-style: italic;
    color: hsla(30, 50%, 98%, 0.8);
}

.footer h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-links button {
    color: hsla(30, 50%, 98%, 0.7);
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1rem;
    text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
    color: hsl(var(--primary));
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsla(30, 50%, 98%, 0.7);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: hsl(var(--primary));
}

.footer-contact svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid hsla(30, 50%, 98%, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: hsla(30, 50%, 98%, 0.6);
    font-size: 0.875rem;
}

.footer-bottom .made-with {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-bottom .heart-icon {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--primary));
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px -4px hsla(12, 76%, 61%, 0.4);
    transition: all 0.3s ease;
    z-index: 40;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    background-color: hsl(var(--coral-dark));
}

.scroll-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
}