.branches-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.branches-scroll {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f5f9;
    height: 500px;
}

    .branches-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .branches-scroll::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 10px;
    }

    .branches-scroll::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

        .branches-scroll::-webkit-scrollbar-thumb:hover {
            background: #1d4ed8;
        }

.branch-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .branch-card:hover {
        transform: translateX(5px);
    }

    .branch-card.active {
        border: 2px solid var(--primary-color);
        background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
        transform: translateX(5px);
    }

.icon-box-small {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.text-sm {
    font-size: 0.85rem;
    color: #64748b;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    height: 500px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-container .map {
    width: 100%;
    height: 100%;
    display: none;
    transition: all 0.3s ease;
}
.branch-card .supportlocation {
    font-weight: 700;
}
.branch-card .supportname {
    font-size: 18px;
    font-weight: 700;
    color: #dba510;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-form {
    padding: 40px;
    position: relative;
}

    .contact-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient);
        border-radius: 20px 20px 0 0;
    }

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    font-size: 16px;
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
    }

button.submit {
    background: var(--accent-color);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 10px 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

    button.submit:disabled {
        background: var(--accent-color);
    }

    button.submit:hover {
        color: var(--accent-color) !important;
        background-color: #fff;
        border-color: var(--accent-color);
        border: solid 1px;
    }

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.section-title {
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--gradient);
        border-radius: 2px;
    }

.contact-info {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .map-container {
        height: 300px;
    }

    .branches-container {
        margin-bottom: 30px;
    }

    .branches-scroll {
        padding-right: 5px;
    }

    .branch-card:hover {
        transform: none;
    }

    .branch-card.active {
        transform: none;
    }
}