/* ARSALAR.APP Component Styles */

/* Hero Banner */
.hero-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #ffffff;
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #94A3B8;
    margin-bottom: 2.5rem;
}

/* Smart Search Box */
.hero-search-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 0.6rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.9rem 1.25rem;
    font-size: 1.05rem;
    color: #ffffff;
    outline: none;
}

.hero-search-box input::placeholder {
    color: #94A3B8;
}

/* Quick Tags */
.quick-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tag-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #E2E8F0;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.825rem;
    font-weight: 500;
    transition: var(--transition);
}

.tag-btn:hover {
    background: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
}

/* ARSA SCORE Rings & Breakdown */
.score-box {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.score-display {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.score-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    border: 4px solid var(--accent-color);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.score-circle .number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.score-circle .label {
    font-size: 0.65rem;
    color: #94A3B8;
    text-transform: uppercase;
}

.score-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.progress-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.825rem;
    font-weight: 600;
}

.progress-track {
    height: 8px;
    background: #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
    border-radius: 10px;
}

/* Comparison Matrix Table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.compare-table th, .compare-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.compare-table th {
    background: #F1F5F9;
    font-weight: 700;
    text-align: left;
    width: 220px;
}

.compare-highlight {
    background: #FEF3C7 !important;
    font-weight: 700;
}

/* Sticky Floating Comparison Tray */
.compare-tray {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #0F172A;
    color: #ffffff;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 999;
}

/* Wizard Steps */
.wizard-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 720px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.step-option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.step-option-card {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: 600;
}

.step-option-card:hover, .step-option-card.selected {
    border-color: var(--accent-color);
    background: #EFF6FF;
    color: var(--accent-color);
}
