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

:root {
    --primary-color: #D4AF37;           /* Golden - Main accent */
    --secondary-color: #FF6B47;         /* Coral - Secondary */
    --accent-color: #1a1a2e;            /* Dark Blue */
    --dark-bg: #0f0f1e;                 /* Very Dark - Background */
    --card-bg: #1a1a2e;                 /* Dark Blue - Card background */
    --text-primary: #FFFFFF;            /* White - Primary text */
    --text-secondary: #B8B8B8;          /* Light Gray - Secondary text */
    --border-color: #2a2a3e;            /* Dark border */
    --gradient-1: linear-gradient(135deg, #D4AF37 0%, #FF6B47 100%);  /* Golden to Coral */
    --gradient-2: linear-gradient(135deg, #FF6B47 0%, #D4AF37 100%);  /* Coral to Golden */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.98) 0%, rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

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

.nav-menu a.active {
    color: var(--primary-color);
    position: relative;
}
.nav-menu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    color: #0f0f1e;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-login:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #0f0f1e 100%);
}

.stars-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
}

.stars-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="glow1"><stop offset="0%" style="stop-color:%23D4AF37;stop-opacity:0.8" /><stop offset="100%" style="stop-color:%23D4AF37;stop-opacity:0" /></radialGradient><radialGradient id="glow2"><stop offset="0%" style="stop-color:%23FF6B47;stop-opacity:0.6" /><stop offset="100%" style="stop-color:%23FF6B47;stop-opacity:0" /></radialGradient></defs><circle cx="100" cy="150" r="80" fill="url(%23glow1)" opacity="0.3"/><circle cx="1100" cy="700" r="100" fill="url(%23glow2)" opacity="0.25"/><circle cx="600" cy="100" r="60" fill="url(%23glow1)" opacity="0.2"/><path d="M 50 400 Q 300 200 600 400 T 1200 400" stroke="%23D4AF37" stroke-width="1" fill="none" opacity="0.15"/><path d="M 0 600 Q 400 400 800 600 T 1200 600" stroke="%23FF6B47" stroke-width="1" fill="none" opacity="0.1"/><circle cx="150" cy="600" r="40" fill="%23D4AF37" opacity="0.1"/><circle cx="1050" cy="200" r="50" fill="%23FF6B47" opacity="0.08"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    animation: float-bg 20s ease-in-out infinite;
}

.stars-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #D4AF37, rgba(212,175,55,0)),
        radial-gradient(2px 2px at 60px 70px, #FF6B47, rgba(255,107,71,0)),
        radial-gradient(1px 1px at 50px 50px, #D4AF37, rgba(212,175,55,0)),
        radial-gradient(1px 1px at 130px 80px, #FF6B47, rgba(255,107,71,0)),
        radial-gradient(2px 2px at 90px 10px, #D4AF37, rgba(212,175,55,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 5s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #0f0f1e;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #0f0f1e;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Zodiac Wheel */
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero SVG microinteractions */
.hero-illustration line {
    stroke-dasharray: 6 4;
    animation: dashMove 4s linear infinite;
}
.hero-illustration polygon {
    filter: drop-shadow(0 0 10px rgba(255, 107, 71, 0.35));
    transform-origin: 50% 50%;
    animation: starPulse 6s ease-in-out infinite;
}
@keyframes dashMove {
    to { stroke-dashoffset: 20; }
}
@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.5) 0%, #0f0f1e 100%);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    font-weight: 600;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.5) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(26, 26, 46, 1) 0%, rgba(26, 26, 46, 0.8) 100%);
    animation: borderGlow 1.8s ease-in-out;
}
@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(212, 175, 55, 0.2);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    }
    50% {
        border-color: var(--primary-color);
        box-shadow: 0 18px 45px rgba(212, 175, 55, 0.35);
    }
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-price {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* About Section */
.about {
    padding: 6rem 0;
}

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

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
}

.about-list li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-list i {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-illustration {
    width: 100%;
    max-width: 300px;
    height: auto;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 107, 71, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(244, 208, 63, 0.5)); }
}

/* About SVG orbit animation */
.about-illustration circle[stroke] {
    stroke-dasharray: 4 6;
    animation: orbitDash 6s linear infinite;
}
@keyframes orbitDash {
    to { stroke-dashoffset: 40; }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f0f1e 0%, rgba(26, 26, 46, 0.5) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.5) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-bg);
}

.testimonial-author h4 {
    margin: 0;
    color: var(--text-primary);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 107, 71, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    border-radius: 20px;
    margin: 4rem 0;
}

.cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
}

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.contact-form button {
    align-self: flex-start;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8a8a8a;
}
.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(212, 175, 55, 0.35);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-1);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--card-bg);
    margin: 10% auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-primary);
}

.modal-body {
    text-align: center;
}

.modal-body i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

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

.modal-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .zodiac-wheel {
        width: 250px;
        height: 250px;
    }

    .zodiac-item {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Mobile slider for testimonials */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.25rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    .testimonials-grid::-webkit-scrollbar {
        height: 6px;
    }
    .testimonials-grid::-webkit-scrollbar-thumb {
        background: rgba(212, 175, 55, 0.4);
        border-radius: 3px;
    }
    .testimonials-grid::-webkit-scrollbar-track {
        background: rgba(26, 26, 46, 0.6);
    }
}
