/* Custom Colors */
:root {
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Typography */
.text-gold-400 {
    color: var(--gold-400);
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(251, 191, 36, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(251, 191, 36, 0.4);
}

.btn-gold-large {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(251, 191, 36, 0.3);
    display: inline-block;
    text-decoration: none;
    color: #1f2937;
}

.btn-gold-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.5);
}

.btn-secondary-large {
    background: transparent;
    border: 2px solid var(--gold-400);
    color: var(--gold-400);
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary-large:hover {
    background: var(--gold-400);
    color: #1f2937;
    transform: translateY(-2px);
}

/* Statistics Cards */
.stat-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-400);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: var(--gold-400);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-400);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.25rem;
}

.stat-detail {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Chart Cards */
.chart-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.chart-card:hover {
    border-color: var(--gold-400);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

/* Mission Cards */
.mission-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-400);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.mission-icon {
    font-size: 3.5rem;
    color: var(--gold-400);
    margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
}

/* Benefit Cards */
.benefit-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-400);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Cycle Cards */
.cycle-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cycle-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-400);
}

.cycle-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 auto 1rem;
}

/* Form Styles */
.form-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-section {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(17, 24, 39, 0.8);
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 0.5rem;
    color: #e5e7eb;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-input::placeholder {
    color: #6b7280;
}

/* Radio Cards */
.radio-card {
    cursor: pointer;
}

.radio-card-content {
    background: rgba(17, 24, 39, 0.8);
    border: 2px solid rgba(251, 191, 36, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    color: #9ca3af;
}

.radio-card input:checked + .radio-card-content {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.2), rgba(251, 191, 36, 0.2));
    border-color: var(--gold-400);
    color: var(--gold-400);
    transform: scale(1.05);
}

.radio-card:hover .radio-card-content {
    border-color: var(--gold-400);
    transform: translateY(-2px);
}

/* Success/Error Messages */
.message-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border: 2px solid #10b981;
    border-radius: 0.75rem;
    padding: 1rem;
    color: #10b981;
    text-align: center;
    font-weight: 600;
}

.message-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border: 2px solid #ef4444;
    border-radius: 0.75rem;
    padding: 1rem;
    color: #ef4444;
    text-align: center;
    font-weight: 600;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--gold-400);
    color: #1f2937;
}
