* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0013;
    color: #ffffff;
    overflow-x: hidden;
}

.stars-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #1a0a2e 0%, #0a0013 100%);
    z-index: -2;
    pointer-events: none;
}

.stars-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 60px 70px, #ffffff, transparent),
        radial-gradient(1px 1px at 50px 50px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, #fff, transparent),
        radial-gradient(2px 2px at 90px 10px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 5s infinite;
    opacity: 0.4;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}


/* ===================================
   Astrology Page Custom Styles
   =================================== */

/* Hero Section Animations */
@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
}

@keyframes orbit1 {
    0% {
        transform: translate(-50%, 0) rotate(0deg) translateX(280px) rotate(0deg);
    }

    100% {
        transform: translate(-50%, 0) rotate(360deg) translateX(280px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    0% {
        transform: translateY(-50%) rotate(0deg) translateX(260px) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg) translateX(260px) rotate(-360deg);
    }
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* Celestial Background */
.celestial-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.celestial-orb-1 {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.celestial-orb-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 40px;
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    padding: 10px 24px;
    backdrop-filter: blur(10px);
}

.premium-badge-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

.premium-badge-text {
    color: #e9d5ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hero Headline */
.hero-headline {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Cinzel', serif;
}

.hero-headline-gradient {
    display: inline-block;
    margin-top: 8px;
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 50%, #e9d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Hero Subtitle */
.hero-subtitle {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 560px;
}

/* Trust Indicators */
.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    color: white;
    font-size: 16px;
}

.trust-text {
    color: #f3f4f6;
    font-size: 15px;
    font-weight: 500;
}

/* CTA Buttons */
.btn-primary-astro {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
}

.btn-primary-astro:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
    color: white;
}

.btn-secondary-astro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    border: 2px solid rgba(168, 85, 247, 0.5);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-astro:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.8);
    color: white;
}

/* Zodiac Wheel */
.zodiac-wheel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.zodiac-wheel {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin: 0 auto;
}

.zodiac-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    filter: blur(30px);
    animation: pulse 4s ease-in-out infinite;
}

.zodiac-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 3px solid rgba(168, 85, 247, 0.25);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2), inset 0 0 60px rgba(168, 85, 247, 0.08);
    animation: rotateGlow 30s linear infinite;
}

.zodiac-inner-ring {
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    border: 2px solid rgba(168, 85, 247, 0.15);
}

.zodiac-center {
    text-align: center;
    position: relative;
    z-index: 5;
}

.zodiac-symbols {
    font-size: 5rem;
    background: linear-gradient(135deg, #a855f7, #c084fc, #e9d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
}

.zodiac-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

/* Zodiac Signs Around Circle */
.zodiac-sign {
    position: absolute;
    width: 30px;
    height: 30px;
    color: #c084fc;
    font-size: 24px;
    opacity: 0.6;
}

.zodiac-sign-1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.zodiac-sign-2 {
    top: 15%;
    right: 15%;
}

.zodiac-sign-3 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.zodiac-sign-4 {
    bottom: 15%;
    right: 15%;
}

.zodiac-sign-5 {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.zodiac-sign-6 {
    bottom: 15%;
    left: 15%;
}

.zodiac-sign-7 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.zodiac-sign-8 {
    top: 15%;
    left: 15%;
}

/* Orbiting Particles */
.orbit-particle {
    position: absolute;
    border-radius: 50%;
}

.orbit-particle-1 {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.9);
    animation: orbit1 20s linear infinite;
}

.orbit-particle-2 {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.9);
    animation: orbit2 16s linear infinite;
}

/* Floating Metric Cards */
.metric-card {
    position: absolute;
    z-index: 10;
}

.metric-card-1 {
    top: 10%;
    right: -10%;
    animation: floatUpDown 5s ease-in-out infinite;
}

.metric-card-2 {
    bottom: 15%;
    left: -10%;
    animation: floatUpDown 6s ease-in-out infinite reverse;
}

.metric-card-inner {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgba(168, 85, 247, 0.9) 100%);
    padding: 20px 28px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5);
    min-width: 160px;
}

.metric-card-2 .metric-card-inner {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.95) 0%, rgba(192, 132, 252, 0.9) 100%);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.5);
}

.metric-label {
    color: #f3f4f6;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    opacity: 0.9;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.metric-value-suffix {
    font-size: 20px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-container {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .metric-card-1,
    .metric-card-2 {
        position: static;
        margin: 20px 0;
        animation: none;
    }

    .zodiac-wheel-container {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .zodiac-symbols {
        font-size: 3rem;
    }

    .zodiac-title {
        font-size: 1.2rem;
    }

    .btn-primary-astro,
    .btn-secondary-astro {
        padding: 14px 28px;
        font-size: 14px;
    }
}


/* Screenshot Carousel */
.screenshot-phone {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 250px;
    will-change: transform, opacity;
}

@media (max-width: 768px) {
    .screenshot-phone {
        width: 220px;
        /* Reduced width to lower the height */
    }
}

.screenshot-phone img {
    user-select: none;
    -webkit-user-drag: none;
}

/* Celestial Insights Section */
.insight-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    height: 450px;
    background: #0a0a0a;
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.insight-card.tall {
    height: 600px;
}

.insight-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(168, 85, 247, 0.15);
}

.insight-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
    filter: brightness(0.5) saturate(0.8);
}

.insight-card:hover .card-bg {
    transform: scale(1.05);
    filter: brightness(0.6) saturate(1.1);
}

.insight-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(3, 0, 20, 0.95) 0%,
            rgba(3, 0, 20, 0.4) 50%,
            transparent 100%);
    z-index: 1;
}

.insight-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
}

.insight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #e9d5ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}

.insight-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
}

.insight-desc {
    font-size: 1.05rem;
    color: #d1d5db;
    line-height: 1.6;
    max-width: 90%;
    opacity: 0.8;
}

/* Lead Form Premium Styling */
.lead-form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2.5rem;
    padding: 3rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.form-field-group {
    position: relative;
    margin-bottom: 0.5rem;
}

.field-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    margin-left: 0.5rem;
    letter-spacing: 0.5px;
}

.field-input {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 1.25rem !important;
    padding: 1.1rem 1.5rem !important;
    color: white !important;
    font-size: 1rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    outline: none !important;
}

.field-input::placeholder {
    color: rgba(255, 255, 255, 0.2) !important;
}

.field-input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(168, 85, 247, 0.5) !important;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15) !important;
}

.select-wrapper {
    position: relative;
}

.field-select {
    appearance: none !important;
    cursor: pointer !important;
}

.field-select option {
    background: #0a0a1a !important;
    color: white !important;
}

.select-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    font-size: 1.25rem;
}

.field-textarea {
    min-height: 150px !important;
    resize: none !important;
}

.submit-btn-premium {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%) !important;
    color: white !important;
    border: none !important;
    padding: 1.1rem 3.5rem !important;
    border-radius: 1.25rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3) !important;
}

.submit-btn-premium:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.4) !important;
    filter: brightness(1.1) !important;
}

.submit-btn-premium:active {
    transform: translateY(-1px) !important;
}

@media (max-width: 768px) {
    .lead-form-container {
        padding: 2rem 1.5rem;
        border-radius: 2rem;
    }

    .submit-btn-premium {
        width: 100% !important;
        justify-content: center !important;
    }
}