/* All Countries Page Styles */

.all-countries-hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.all-countries-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.all-countries-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.countries-list-section {
    padding: 20px 0 60px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.available-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 10px;
}

.available-badge {
    color: #27ae60;
    font-size: 1.2rem;
    margin-right: 5px;
}

.coming-badge {
    color: #95a5a6;
    font-size: 1.2rem;
    margin-left: 15px;
    margin-right: 5px;
}

/* Countries Grid - 4 columns */
.countries-grid-all {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 0 auto;
    max-width: 1200px;
}

.country-link {
    background-color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.country-link:hover {
    border-color: #3498db;
    background-color: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.15);
}

.country-link.available {
    border-color: #27ae60;
    background-color: #f0fff4;
    position: relative;
}

.country-link.available::before {
    content: '✓';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #27ae60;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    margin-right: 10px;
    font-weight: bold;
}

.country-link.available:hover {
    border-color: #229954;
    background-color: #e8f8f5;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}

.country-link.coming-soon {
    color: #7f8c8d;
    border-color: #ecf0f1;
    cursor: not-allowed;
}

.country-link.coming-soon:hover {
    border-color: #bdc3c7;
    background-color: #fafafa;
    transform: none;
    box-shadow: none;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background-color: white;
}

.info-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.info-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Currently Available Section */
.currently-available {
    background-color: #f0f8ff;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #3498db;
}

.currently-available h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.available-countries-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.available-badge-link {
    background-color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #27ae60;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.available-badge-link:hover {
    background-color: #27ae60;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .countries-grid-all {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .all-countries-hero h1 {
        font-size: 2rem;
    }

    .all-countries-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .countries-grid-all {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .country-link {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .countries-list-section {
        padding: 15px 0 40px 0;
    }

    .all-countries-hero {
        padding: 40px 0;
    }

    .all-countries-hero h1 {
        font-size: 1.75rem;
    }

    .all-countries-hero p {
        font-size: 1rem;
    }

    .info-section h2 {
        font-size: 1.6rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .currently-available {
        padding: 25px;
    }

    .currently-available h3 {
        font-size: 1.5rem;
    }

    .available-countries-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .countries-grid-all {
        grid-template-columns: 1fr;
    }

    .all-countries-hero h1 {
        font-size: 1.5rem;
    }

    .all-countries-hero p {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}

