.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-info-card {
    padding: 30px;
    background: rgba(12, 11, 9, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 100%;
}

.contact-info-card .info-item {
    margin-bottom: 25px;
}

.contact-info-card .info-item:last-child {
    margin-bottom: 0;
}

.contact-info-card .info-item i {
    font-size: 24px;
    color: #c71212;
    background: rgba(255, 255, 255, 0.08);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
}

.contact-info-card .info-item h3 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin: 0 0 5px 0;
}

.contact-info-card .info-item p {
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.contact-form {
    width: 100%;
    background: rgba(12, 11, 9, 0.7);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .form-control {
    border-radius: 5px;
    box-shadow: none;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 15px;
}

.contact-form .form-control:focus {
    border-color: #c71212;
    background: rgba(0, 0, 0, 0.4);
}

.contact-form textarea.form-control {
    min-height: 140px;
}

.contact-form button[type="submit"] {
    background: #c71212;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact-form button[type="submit"]:hover {
    background: #c71212;
}

.contact-form .error-message, .contact-form .sent-message {
    display: none;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    border-radius: 5px;
}

.contact-form .error-message {
    background: #df1529;
}

.contact-form .sent-message {
    background: #059652;
}
