﻿
.captcha-box {
    margin-right: 20px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    background: #f3f3f3;
    border: 1px dashed #888;
    border-radius: 5px;
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 5px;
    font-family: monospace;
    user-select: none;
}

.refreshbtn {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

/* ==========================================================
   LOCATIONS SECTION
========================================================== */

.locations-section {
    padding: 100px 0;
    background: #f8fbff;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    gap: 22px;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

    .location-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #2563eb;
    }

    .location-card:hover {
        transform: translateY(-7px);
        border-color: #2563eb;
        box-shadow: 0 18px 40px rgba(37, 99, 235, .12);
    }

.location-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: #eef4ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .location-icon .material-symbols-outlined {
        font-size: 30px;
    }

.location-content {
    flex: 1;
}

.location-label {
    display: block;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.location-content h3 {
    font-size: 25px;
    color: #111827;
    margin-bottom: 12px;
}

.location-content p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .25s;
}

    .location-link:hover {
        color: #1d4ed8;
    }

    .location-link .material-symbols-outlined {
        font-size: 19px;
    }

/* ==========================================================
       Locations Responsive Start
    ========================================================== */

@media (max-width: 992px) {

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .locations-section {
        padding: 70px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {

    .locations-section {
        padding: 60px 0;
    }

    .location-card {
        padding: 28px;
    }

    .location-content h3 {
        font-size: 22px;
    }
}

/* ==========================================================
       Locations Responsive End
    ========================================================== */

