/* Country Page Styles */
.country-page-hero {
    position: relative;
    padding: 4rem 2rem 3rem;
    text-align: center;
    overflow: hidden;
}

.country-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    pointer-events: none;
}

.country-page-hero .flag-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.country-page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.country-page-hero .subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

.country-content {
    background: linear-gradient(180deg, #1e1b4b, #0f172a);
    padding: 3rem 0 5rem;
}

.country-container {
    max-width: 1100px;
    width: 92%;
    margin: 0 auto;
}

/* Quick Facts */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.fact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
}

.fact-card .fact-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.fact-card .fact-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.fact-card .fact-value {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Info Section */
.info-section {
    margin-bottom: 2.5rem;
}

.info-section h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section p,
.info-section li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.8;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4F46E5;
}

/* Info Cards Grid */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-3px);
}

.info-card h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* City Cards */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.city-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.city-card:hover {
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-3px);
}

.city-card .city-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.city-card h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.city-card p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}