/* Base Variables */
:root {
    --primary-color: #6c63ff;
    --secondary-color: #8b5cf6;
    --accent-color: #4ecdc4;
    --indigo-deep: #4338ca;
    --violet-rich: #7c3aed;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, #6c63ff 0%, #4338ca 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --gradient-indigo: linear-gradient(135deg, #4338ca 0%, #312e81 100%);
    --gradient-violet: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-indigo: 0 10px 25px rgba(67, 56, 202, 0.25);
    --shadow-violet: 0 10px 25px rgba(124, 58, 237, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.main-content {
    min-height: calc(100vh - 200px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.brand-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    background: var(--bg-card) !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-text {
    font-size: 0.9rem;
    color: var(--text-secondary) !important;
}

/* Landing Page Styles */
.landing-hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%),
        radial-gradient(circle at 30% 70%, rgba(78, 205, 196, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(108, 99, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.brand-logo {
    margin-bottom: 2rem;
}

.brand-icon {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
}

.brand-name {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

.hero-subheadline {
    font-size: 1.4rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Form Hero Section */
.form-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.form-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Hero Section (kept for compatibility) */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-badge:hover,
.nav-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-button {
    cursor: pointer;
}

/* Feature Highlights */
.feature-highlights {
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.feature-item h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    margin: 3rem 0;
}

.btn-cta {
    background: var(--gradient-indigo);
    color: white;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-indigo);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-cta:hover {
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-violet);
    background: var(--gradient-violet);
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.cta-subtext {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Trust Indicators */
.trust-indicators {
    margin: 2rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 1rem;
}

.trust-item i {
    color: var(--accent-color);
}

/* How It Works Section */
.how-it-works {
    background: var(--bg-card);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.step-item {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
}

.step-item h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Section Navigation */
.section-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.nav-pill {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(108, 99, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-pill:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Form Sections */
.form-section {
    margin: 3rem 0;
}

.section-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.section-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.section-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.btn-block {
    width: 100%;
    display: block;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.loading-subtext {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Button States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Brand Logo */
.brand-logo {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(108, 99, 255, 0.3));
    margin-right: 10px;
    vertical-align: middle;
}

.navbar-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 28px;
        margin-right: 8px;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
}

/* Enhanced Timing Predictions */
.timing-predictions h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timing-item {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.context-note {
    background: rgba(108, 99, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* Premium Preview Styling */
.premium-preview {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    position: relative;
}

.premium-preview::before {
    content: "👑 PREMIUM";
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.today-preview {
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.today-preview p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.premium-feature {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn-premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.upgrade-message {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Form Styles */
.form-section {
    padding: 3rem 0;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.form-card form {
    padding: 2rem;
}

.section-header {
    margin: 3rem 0 1.5rem 0;
    padding: 1rem 0 0.5rem 0;
    border-bottom: 2px solid var(--primary-color);
    scroll-margin-top: 100px; /* Offset for smooth scrolling */
}

.section-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.premium-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.premium-section h3 {
    color: #ffd700;
}

.premium-select {
    background: var(--bg-dark);
    border: 2px solid #ffd700;
    color: var(--text-primary);
}

.premium-select:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

/* Form Controls */
.form-control, .form-select {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: var(--bg-dark);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.invalid-feedback {
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.4s;
}

.btn-primary:hover {
    background: var(--gradient-indigo);
    transform: translateY(-2px);
    box-shadow: var(--shadow-indigo);
    color: white;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 15px;
}

/* Results Section */
.results-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.results-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.results-section {
    padding: 3rem 0;
}

/* Result Cards */
.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.result-card .card-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

.result-card .card-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.result-card .card-body {
    padding: 2rem;
}

/* Compatibility Scores */
.compatibility-scores {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 10px;
}

.score-item {
    text-align: center;
    margin-bottom: 1rem;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 0.5rem;
    box-shadow: var(--shadow-md);
}

.score-circle.overall {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    font-size: 1.5rem;
}

.astro-profile {
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.astro-insights ul {
    list-style: none;
    padding: 0;
}

.astro-insights li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.astro-insights li:last-child {
    border-bottom: none;
}

.astro-insights li:before {
    content: "✦";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Profile Content */
.profile-content {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 10px;
}

.profile-description {
    margin-bottom: 2rem;
}

.profile-detail {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

/* Messages */
.message-intro {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.message-box {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.message-header {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.message-content {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.copy-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.8rem;
}

/* Social Caption */
.caption-intro {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.caption-box {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    text-align: center;
}

.caption-content {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Power Plan */
.power-plan {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Response Prediction */
.prediction-content {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.prediction-meter {
    margin-bottom: 2rem;
}

.meter-background {
    width: 100%;
    height: 20px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.meter-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.meter-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.prediction-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Strategic Introduction */
.strategic-intro {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(67, 56, 202, 0.05) 100%);
}

.strategic-intro-content {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.strategy-headline {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0;
}

/* Moon Energy Content */
.moon-energy-content {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.moon-energy-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Confidence Quote */
.confidence-quote {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--bg-card) !important;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

/* Alerts */
.alert {
    border-radius: 8px;
    border: none;
}

.alert-danger {
    background: rgba(255, 107, 107, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.alert-info {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(108, 99, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .results-title {
        font-size: 2rem;
    }
    
    .form-card form {
        padding: 1.5rem;
    }
    
    .result-card .card-body {
        padding: 1.5rem;
    }
    
    .plan-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .feature-badge {
        margin-bottom: 0.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        width: 80%;
        text-align: center;
    }
    
    .section-header {
        margin: 2rem 0 1rem 0;
        scroll-margin-top: 80px;
    }
    
    .premium-section {
        padding: 1rem;
        margin-top: 0.5rem;
    }
    
    /* Landing Page Mobile */
    .brand-name {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .brand-icon {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .feature-item {
        margin-bottom: 1rem;
    }
    
    .trust-indicators .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-item {
        justify-content: center;
        margin: 0;
    }
    
    .section-nav {
        gap: 0.25rem;
    }
    
    .nav-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .sticky-mobile-cta {
        display: block;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .form-card form {
        padding: 1rem;
    }
    
    .result-card .card-body {
        padding: 1rem;
    }
    
    .compatibility-scores {
        padding: 1rem;
    }
    
    .score-circle {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .score-circle.overall {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    animation: fadeIn 0.6s ease-out;
}

.result-card:nth-child(1) { animation-delay: 0.1s; }
.result-card:nth-child(2) { animation-delay: 0.2s; }
.result-card:nth-child(3) { animation-delay: 0.3s; }
.result-card:nth-child(4) { animation-delay: 0.4s; }
.result-card:nth-child(5) { animation-delay: 0.5s; }
.result-card:nth-child(6) { animation-delay: 0.6s; }

/* Hover Effects */
.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.message-box:hover {
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.caption-box:hover {
    border-color: var(--accent-color);
    transition: all 0.3s ease;
}

.plan-step:hover {
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Print Styles */
@media print {
    .navbar, .footer, .btn {
        display: none !important;
    }
    
    .result-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .results-section {
        padding: 1rem 0;
    }
}
