.contact-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    gap: 40px;
}

.contact-info2 {
    flex: 1;
}

.contact-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-heading span {
    color: #00A0FA;
    font-style: italic;
}

.company-description {
    color: #808285;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.contact-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-block p {
    color: #808285;
    line-height: 1.4;
}

.social-media {
    justify-self: start;
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A0FA;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    /* background: #00A0FA; */
    color: white;
}

.contact-form {
    flex: 1;
    padding: 40px;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #e1e1e1;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
}

.form-control:focus {
    outline: none;
    border-bottom-color: #00A3FF;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    min-height: 100px;
    resize: none;
}

.send-button {
    background: #00A3FF;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.send-button .icon-circle {
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.send-button:hover .icon-circle {
    transform: translateX(4px);
}


@media (max-width: 991px) {
    .contact-section {
        flex-direction: column;
        padding: 15px;
        margin: 20px auto;
    }

    .contact-heading {
        font-size: 2rem;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-details {
        gap: 20px;
    }

    .contact-flex{
        display: block;
    }

    .branches-container {
        display: flex;
        flex-direction: column; /* Stack items */
        align-items: center; /* Center content */
    }

    .branches-info {
        width: 100% !important;
        padding: 10px !important;
    }

    .branch-list {
        padding: 0;
        width: 100%;
    }

    .branch-item {
        display: block;
        width: 100%;
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

    .map-container {
        width: 100%;
        height: 300px; /* Adjust as needed */
        margin-top: 20px;
    }

    #map {
        width: 100%;
        height: 100%;
    }

    .view-branches-button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}

.branch-item.active {
    background-color: #f4f4f4;
    color: white;
    border-radius: 5px;
}
.branch-item.active a {
    color: white;
}

.emoji {
    width: 13px !important;
}