/* ===========================
   HOME PAGE STYLES
   =========================== */

/* Hero */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px; position: relative; overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(212,168,67,0.06) 0%, transparent 60%);
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.stars-bg { position: absolute; inset: 0; pointer-events: none; }
.star {
    position: absolute; width: 2px; height: 2px;
    background: #fff; border-radius: 50%; animation: pulse 3s infinite;
}

.hero-badge {
    display: inline-block; padding: 8px 20px;
    background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.2);
    border-radius: 50px; font-size: 0.82rem; font-weight: 600;
    color: var(--gold); margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}
.hero-title {
    font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-subtitle {
    font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8;
    margin-bottom: 32px; max-width: 520px;
    animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex; align-items: center; gap: 30px;
    animation: fadeInUp 0.6s ease 0.4s both;
}
.stat-number { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.82rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border-color); }

/* Zodiac Wheel */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.zodiac-wheel {
    width: 400px; height: 400px; position: relative;
    display: flex; justify-content: center; align-items: center;
}
.wheel-ring {
    position: absolute; border-radius: 50%; border: 1px solid;
}
.ring-1 {
    width: 100%; height: 100%;
    border-color: rgba(124,58,237,0.2);
    animation: rotate 30s linear infinite;
}
.ring-2 {
    width: 75%; height: 75%;
    border-color: rgba(212,168,67,0.15);
    animation: rotate 20s linear infinite reverse;
}
.ring-3 {
    width: 50%; height: 50%;
    border-color: rgba(124,58,237,0.25);
    animation: rotate 15s linear infinite;
}
.center-glow {
    width: 80px; height: 80px; border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.4), transparent);
    box-shadow: 0 0 60px rgba(124,58,237,0.3), 0 0 120px rgba(212,168,67,0.15);
    animation: pulse 4s infinite;
}

/* Zodiac Quick Grid */
.zodiac-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.zodiac-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 24px 12px; border-radius: var(--radius-md);
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px); transition: all var(--transition);
}
.zodiac-card:hover {
    transform: translateY(-6px); border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212,168,67,0.15);
}
.zodiac-icon { font-size: 2.2rem; margin-bottom: 10px; transition: transform var(--transition); }
.zodiac-card:hover .zodiac-icon { transform: scale(1.2); }
.zodiac-card h3 { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 4px; color: var(--text-primary); }
.zodiac-card span { font-size: 0.72rem; color: var(--text-muted); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { padding: 36px 28px; }
.service-icon {
    width: 60px; height: 60px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(212,168,67,0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--gold); margin-bottom: 20px;
}
.service-card h3 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 12px; }
.service-card p { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 16px; line-height: 1.7; }

/* Daily Snippet */
.snippet-wrapper {
    display: grid; grid-template-columns: 1fr auto; gap: 40px;
    padding: 50px; align-items: center;
}
.snippet-text { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 24px; max-width: 560px; }
.moon-glow {
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,67,0.2), transparent);
    display: flex; align-items: center; justify-content: center;
    animation: float 4s ease-in-out infinite;
}
.moon-glow i { font-size: 5rem; color: var(--gold); filter: drop-shadow(0 0 30px rgba(212,168,67,0.5)); }

/* Testimonials Slider */
.testimonials-slider {
    display: flex; gap: 24px; overflow: hidden; position: relative;
}
.testimonial-card { min-width: calc(33.333% - 16px); padding: 32px; flex-shrink: 0; }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--glass-border); }
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.slider-dots .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--text-muted); cursor: pointer; transition: all var(--transition);
}
.slider-dots .dot.active { background: var(--gold); width: 30px; border-radius: 5px; }

/* CTA Section */
.cta-section { padding: 60px 0; }
.cta-wrapper {
    text-align: center; padding: 60px 40px;
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(212,168,67,0.08));
    border: 1px solid rgba(124,58,237,0.2); border-radius: var(--radius-xl);
    position: relative; overflow: hidden;
}
.cta-wrapper::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,168,67,0.1), transparent);
    pointer-events: none;
}
.cta-wrapper h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-wrapper p { color: var(--text-secondary); max-width: 500px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { overflow: hidden; }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-body { padding: 24px; }
.blog-category {
    display: inline-block; padding: 4px 12px; font-size: 0.72rem; font-weight: 600;
    background: rgba(124,58,237,0.15); color: var(--purple-light);
    border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.blog-body h3 { font-size: 1.1rem; line-height: 1.5; margin-bottom: 10px; transition: color var(--transition); }
.blog-card:hover .blog-body h3 { color: var(--gold); }
.blog-body p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px; }
.blog-meta i { margin-right: 4px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .zodiac-grid { grid-template-columns: repeat(4, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .snippet-wrapper { grid-template-columns: 1fr; text-align: center; }
    .snippet-text { max-width: 100%; }
    .moon-glow { margin: 0 auto; }
}

@media (max-width: 768px) {
    .zodiac-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 100%; }
    .blog-grid { grid-template-columns: 1fr; }
    .snippet-wrapper { padding: 30px 20px; }
    .cta-wrapper { padding: 40px 24px; }
}