/* Zen Den by Liz - Peaceful Wellness Design */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #2d3748; background: #fefefe; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.header { background: linear-gradient(135deg, #f0fff4, #ffffff); padding: 1rem 0; position: fixed; top: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Noto Serif', serif; font-size: 2rem; font-weight: 500; color: #38a169; }
.cta-button { background: linear-gradient(135deg, #38a169, #48bb78); color: white; padding: 0.75rem 1.5rem; border-radius: 25px; text-decoration: none; font-weight: 500; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(56, 161, 105, 0.2); }
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(56, 161, 105, 0.3); }

.hero { background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%); padding: 8rem 0 4rem; }
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content h1 { font-family: 'Noto Serif', serif; font-size: 3.5rem; font-weight: 500; color: #2d3748; margin-bottom: 1.5rem; line-height: 1.1; }
.highlight { color: #38a169; }
.hero-subtitle { font-size: 1.2rem; color: #4a5568; margin-bottom: 2rem; line-height: 1.7; }
.hero-stats { display: flex; gap: 2rem; margin-bottom: 2.5rem; }
.stat { text-align: center; }
.stat-number { font-family: 'Noto Serif', serif; display: block; font-size: 2rem; font-weight: 500; color: #38a169; }
.stat-label { font-size: 0.9rem; color: #718096; font-weight: 500; }
.cta-button-large { background: linear-gradient(135deg, #38a169, #48bb78); color: white; padding: 1rem 2rem; border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 1.1rem; display: inline-block; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3); }
.cta-button-large:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4); }
.hero-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.services { padding: 5rem 0; background: white; }
.services h2 { font-family: 'Noto Serif', serif; text-align: center; font-size: 2.5rem; font-weight: 500; color: #2d3748; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-card { background: #f0fff4; padding: 2rem; border-radius: 20px; text-align: center; border-top: 4px solid #38a169; transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(56, 161, 105, 0.1); }
.service-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-family: 'Noto Serif', serif; font-size: 1.5rem; font-weight: 500; color: #2d3748; margin-bottom: 1rem; }
.service-card p { color: #4a5568; line-height: 1.6; }

.testimonials { padding: 5rem 0; background: linear-gradient(135deg, #f0fff4, #ffffff); }
.testimonials h2 { font-family: 'Noto Serif', serif; text-align: center; font-size: 2.5rem; font-weight: 500; color: #2d3748; margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.testimonial { background: white; padding: 2rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-left: 4px solid #38a169; }
.stars { color: #f6ad55; font-size: 1.2rem; margin-bottom: 1rem; }
.testimonial p { font-style: italic; line-height: 1.6; margin-bottom: 1rem; color: #4a5568; }
.author { font-weight: 600; color: #38a169; }

.contact { padding: 5rem 0; background: linear-gradient(135deg, #2d3748, #4a5568); color: white; }
.contact h2 { font-family: 'Noto Serif', serif; text-align: center; font-size: 2.5rem; font-weight: 500; margin-bottom: 3rem; color: white; }
.contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.info-item { text-align: center; padding: 1.5rem; background: rgba(255,255,255,0.1); border-radius: 15px; }
.info-item .icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.info-item h3 { font-family: 'Noto Serif', serif; font-size: 1.3rem; color: #68d391; margin-bottom: 0.5rem; }
.info-item p { color: #e2e8f0; }
.cta-section { text-align: center; }
.trust-message { font-size: 1.1rem; margin-bottom: 2rem; color: #e2e8f0; }

.footer { background: #1a202c; color: #a0aec0; padding: 2rem 0; text-align: center; }

@media (max-width: 768px) {
    .hero-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: 1fr; }
    .hero-stats { justify-content: center; }
}