/* Calculator Section Styles */
.calculator-section {
    padding: 2rem 0;
}

.calculator-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.calculator-header {
    margin-bottom: 2rem;
}

.calculator-header h1 {
    color: #2c3e50;
    font-weight: 700;
}

.calculator-header .lead {
    color: #7f8c8d;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    color: #2c3e50;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: none;
}

.btn-calculate {
    background: #3498db;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-calculate:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Results Section Styles */
.result-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.result-card h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.table {
    margin-bottom: 0;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
}

.table td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

/* Zodiac Info Styles */
.zodiac-info {
    text-align: center;
}

#zodiac-sign {
    color: #2c3e50;
    font-weight: 700;
}

#zodiac-description {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Personality Traits Styles */
#personality-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.trait-item {
    background: #fff;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Information Section Styles */
.info-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* FAQ Section Styles */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    padding: 1.25rem;
    border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
    background: #3498db;
    color: #fff;
}

.accordion-body {
    padding: 1.25rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .calculator-card {
        padding: 1.5rem;
    }
    
    .result-card {
        padding: 1rem;
    }
    
    .table td {
        padding: 0.75rem;
    }
}

/* RTL Specific Styles */
[dir="rtl"] .accordion-button::after {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .breadcrumb-item+.breadcrumb-item::before {
    float: right;
    padding-left: 0.5rem;
    padding-right: 0;
}

/* Content Section Styles */
.content-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.content-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.comparison-table {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: #3498db;
    color: #fff;
    font-weight: 600;
}

.calculation-steps {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.example-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
}

.culture-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.culture-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    position: relative;
    padding-right: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tips-list li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    right: 0;
}

@media (max-width: 768px) {
    .content-card,
    .comparison-table,
    .calculation-steps,
    .culture-card {
        padding: 1.5rem;
    }
    
    .example-box {
        margin-top: 1.5rem;
    }
} 