:root {
    /* Modern Purple Palette - Based on Current Theme */
    --purple-600: #8B5CF6;
    --purple-700: #7C3AED;
    --purple-50: #F5F3FF;
    --purple-100: #EDE9FE;
    --indigo-600: #6366F1;
    --indigo-700: #4F46E5;

    /* Neutrals */
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;

    /* Accent Colors */
    --teal-500: #14B8A6;
    --pink-500: #EC4899;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Background Elements */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -1;
    pointer-events: none;
}

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--purple-600), transparent);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--indigo-600), transparent);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 40px;
    height: 40px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brand-name {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.brand-verse {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray-500);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
}

.nav-links a:hover {
    color: var(--purple-600);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
    letter-spacing: -0.3px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--purple-600);
    color: var(--purple-600);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--purple-600);
    border: 2px solid var(--purple-600);
}

.btn-outline:hover {
    background: var(--purple-600);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--purple-600);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    position: relative;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--purple-50);
    border: 1px solid var(--purple-100);
    border-radius: 100px;
    margin-bottom: var(--space-lg);
    font-size: 13px;
    font-weight: 600;
    color: var(--purple-700);
    letter-spacing: -0.2px;
    animation: fadeIn 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    letter-spacing: -2.5px;
}

.title-word {
    display: block;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.title-word:nth-child(1) {
    animation-delay: 0.1s;
}

.title-word:nth-child(2) {
    animation-delay: 0.2s;
}

.title-word:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.8s ease-out 0.5s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--purple-600);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.15);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-50), var(--purple-100));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-600);
}

.stat-content {
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    animation: fadeIn 0.8s ease-out 0.7s backwards;
}

/* Services Section */
.services {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--purple-50);
    border: 1px solid var(--purple-100);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--purple-700);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    letter-spacing: -1.5px;
}

.section-description {
    font-size: 19px;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.service-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: var(--space-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-600), var(--indigo-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    border-color: var(--purple-200);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(139, 92, 246, 0.12);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--white);
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.purple-gradient {
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
}

.blue-gradient {
    background: linear-gradient(135deg, var(--indigo-600), #3B82F6);
}

.teal-gradient {
    background: linear-gradient(135deg, var(--teal-500), #06B6D4);
}

.pink-gradient {
    background: linear-gradient(135deg, var(--pink-500), var(--purple-600));
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--purple-600);
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--purple-700);
    gap: 10px;
}

/* About Section */
.about {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    letter-spacing: -1.5px;
}

.about-text {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-highlights {
    margin: var(--space-xl) 0;
}

.highlight {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.highlight:last-child {
    border-bottom: none;
}

.highlight:hover {
    padding-left: var(--space-sm);
}

.highlight-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-50), var(--purple-100));
    color: var(--purple-600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.highlight-text p {
    font-size: 14px;
    color: var(--gray-500);
}

.about-visual {
    position: sticky;
    top: 120px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.quote-icon {
    opacity: 0.6;
}

.rating {
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 16px;
}

.author-meta {
    font-size: 14px;
    color: var(--gray-500);
}

.stats-card {
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
    border-radius: 20px;
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-lg);
    color: var(--white);
}

.stats-item {
    flex: 1;
    text-align: center;
}

.stats-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.stats-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* CTA Section */
.cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--purple-600), var(--indigo-600));
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: -1.5px;
}

.cta-description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: var(--transition);
}

.cta-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: var(--space-3xl) 0 var(--space-lg);
    background: var(--gray-900);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.footer-logo .brand-icon {
    width: 48px;
    height: 48px;
}

.footer-logo .brand-name {
    color: var(--white);
}

.footer-logo .brand-verse {
    color: var(--gray-400);
}

.footer-tagline {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 360px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: -0.2px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gray-300);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        gap: var(--space-md);
        font-size: 13px;
    }

    .section-title {
        font-size: 40px;
    }

    .cta-title {
        font-size: 40px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn,
    .cta-phone {
        width: 100%;
        justify-content: center;
    }
}
/* 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;
    }
}

.moment-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.moment-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

