/* Country Guide Styles */

.country-guide-page {
    background: var(--bg-light);
}

.country-guide {
    padding: 120px 0 60px;
}

.country-guide .back-link {
    display: inline-block;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.country-guide .back-link:hover {
    text-decoration: underline;
}

.country-guide .guide-content {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.country-guide .guide-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
}

.country-guide .country-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.country-guide .guide-header h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.country-guide .subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.country-guide .intro-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.country-guide .intro-box p {
    margin: 0;
    line-height: 1.8;
}

.key-section {
    margin-bottom: 2.5rem;
}

.key-section h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.difference-card {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.difference-card.critical {
    border-left-color: #dc3545;
}

.difference-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .comparison {
        grid-template-columns: 1fr;
    }
}

.comparison .iran,
.comparison .switzerland {
    background: white;
    padding: 1rem;
    border-radius: 6px;
}

.comparison h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.comparison p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.warning-box {
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.tip-box {
    background: #d1ecf1;
    color: #0c5460;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

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

.tips-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--bg-light);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* RTL support for tips list */
[dir="rtl"] .tips-list li {
    padding-left: 0;
    padding-right: 2rem;
}

[dir="rtl"] .tips-list li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .difference-card {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

[dir="rtl"] .difference-card.critical {
    border-right-color: #dc3545;
}

.cta-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2.5rem;
}

.cta-section h2 {
    border-bottom: none;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-section .english-note {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.cta-section .btn {
    display: inline-block;
}

/* Country Guide specific responsive */
@media (max-width: 768px) {
    .country-guide .guide-content {
        padding: 1.5rem;
    }

    .country-guide .guide-header h1 {
        font-size: 1.5rem;
    }

    .country-guide .country-flag {
        font-size: 3rem;
    }
}
