/* Simple Countries CSS */
.countries-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 25%, #bbf7d0 50%, #86efac 75%, #4ade80 100%);
    min-height: 100vh;
}

.countries-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.countries-section p {
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
}

.simple-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 14px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.simple-country-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(4, 120, 87, 0.95) 30%, rgba(5, 150, 105, 0.95) 70%, rgba(16, 185, 129, 0.95) 100%);
    border-radius: 18px;
    padding: 16px 20px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(12, 224, 107, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    display: flex!important;
    align-items: center;
    justify-content: flex-start;
    min-height: 72px;
    opacity: 1;
    transform: translateY(0px);
    backdrop-filter: blur(20px);
    gap: 1rem;
}

.simple-country-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(12, 224, 107, 0.3);
    background: linear-gradient(135deg, rgba(31, 41, 55, 1) 0%, rgba(4, 120, 87, 1) 25%, rgba(5, 150, 105, 1) 65%, rgba(16, 185, 129, 1) 100%);
}

.simple-country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.simple-country-card:hover::before {
    transform: translateX(100%);
}

/* Badge Style */
.card-badge {
    position: absolute;
    top: 2px;
    right: 10px;
    padding: 0.3rem 0.7rem;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-hot {
    background: rgba(251, 146, 60, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(251, 146, 60, 0.3);
}

.badge-popular {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.badge-new {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Flag Style */
.country-flag {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
    backdrop-filter: blur(10px);
    order: 1;
}

.country-flag img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Country Info */
.country-info {
    flex: 1;
    text-align: left;
    margin-right: auto;
    order: 2;
}

.country-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.country-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.simple-country-card:hover .country-arrow {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(6px) scale(1.1);
}

/* Load More Button - Şık Blue Design */
.load-more-container {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 0;
}

.load-more-btn {
    background: linear-gradient(145deg, #10b981 0%, #059669 50%, #047857 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 12px 40px rgba(16, 185, 129, 0.5),
        0 6px 20px rgba(5, 150, 105, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
}

.load-more-btn:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 
        0 20px 60px rgba(16, 185, 129, 0.7),
        0 8px 30px rgba(5, 150, 105, 0.5),
        inset 0 2px 6px rgba(255, 255, 255, 0.3);
    background: linear-gradient(145deg, #059669 0%, #047857 50%, #065f46 100%);
}

.load-more-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.load-more-btn i {
    font-size: 1.3rem;
    transition: transform 0.4s ease;
}

.load-more-btn:hover i {
    transform: rotate(360deg) scale(1.2);
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.load-more-btn:hover::before {
    left: 100%;
}

/* Hidden cards initially - güçlü gizleme */
.country-card-hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Cache buster - Updated: 28/08/2024 */
