/* ===== ACCESS NUMBERS SECTION ===== */
.access-numbers-section {
    background: white;
    position: relative;
}

.access-numbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, rgba(227,242,253,0.3), transparent);
    pointer-events: none;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.number-card-main {
    background: white;
    padding: 40px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 3px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.number-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e0e0e0, #f5f5f5);
    transition: all 0.4s ease;
}

.number-card-main:hover::before {
    background: linear-gradient(90deg, #2c3e50, #1a2332);
}

.number-card-main:hover {
    transform: translateY(-8px);
    border-color: #2c3e50;
    box-shadow: 0 15px 50px rgba(44,62,80,0.2);
}

.country-flag {
    font-size: 60px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.number-card-main:hover .country-flag {
    transform: scale(1.15) rotateY(10deg);
}

.country-name {
    font-size: 24px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.main-number {
    font-size: 26px;
    color: #1a2332;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    white-space: nowrap;
    max-width: 100%;
    padding: 0 5px;
}

@media (max-width: 1400px) {
    .main-number {
        font-size: 24px;
        letter-spacing: -1px;
    }
}

@media (max-width: 1200px) {
    .main-number {
        font-size: 22px;
        letter-spacing: -1px;
    }
}

@media (max-width: 900px) {
    .main-number {
        font-size: 20px;
        letter-spacing: -1px;
        white-space: normal;
        word-break: break-all;
        line-height: 1.3;
    }
}

@media (max-width: 600px) {
    .main-number {
        font-size: 22px;
        letter-spacing: -0.5px;
        white-space: normal;
        word-break: break-all;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .main-number {
        font-size: 20px;
        letter-spacing: -1px;
        padding: 0 10px;
    }

    .number-card-main {
        padding: 30px 15px;
    }

    .country-flag {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .country-name {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 380px) {
    .main-number {
        font-size: 18px;
        letter-spacing: -1px;
    }

    .country-name {
        font-size: 18px;
    }
}

.number-location {
    font-size: 15px;
    color: #888;
    margin-bottom: 25px;
    font-weight: 500;
}

.view-details-btn {
    padding: 14px 35px;
    background: linear-gradient(135deg, #2c3e50, #1a2332);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(44,62,80,0.3);
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44,62,80,0.4);
    background: linear-gradient(135deg, #1a2332, #0d1419);
}
