/* Contact Page Styles */

/* Breadcrumb Overlay Fix */
.breadcrumbs.overlay {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.breadcrumbs.overlay:before {
    background: rgba(0, 0, 0, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.breadcrumbs .row {
    position: relative;
    z-index: 2;
}

/* Section Padding */
.section {
    padding: 60px 0;
}

/* Form Main Area */
.form-main {
    background: #fff;
    padding: 30px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 30px;
}

.form-main .title {
    margin-bottom: 25px;
}

.form-main .title h4 {
    color: #eab55e;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.form-main .title h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group label span {
    color: #ff2c18;
    margin-left: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #eee;
    padding: 0 15px;
    border-radius: 4px;
    color: #333;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    padding: 15px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #eab55e;
    outline: none;
    box-shadow: 0 0 5px rgba(234, 181, 94, 0.2);
}

/* Submit Button */
.fixBtn {
    background: #eab55e;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
}

.fixBtn:hover {
    background: #333;
    color: #fff;
}

.fixBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Contact Info Wrapper (Right Side) */
.contact_info_wrapper {
    background: #1d1d22;
    padding: 40px;
    border-radius: 8px;
    height: 100%;
    color: #fff;
}

.contact_info_wrapper h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
}

.contact_info_wrapper > p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.6;
}

.single-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.single-info:last-child {
    margin-bottom: 0;
}

.single-info i {
    width: 40px;
    height: 40px;
    background: #eab55e;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 16px;
}

.single-info .content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0;
}

.single-info .content p,
.single-info .content a {
    color: #bbb;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: 0.3s;
}

.single-info .content a:hover {
    color: #eab55e;
}

/* Responsive */
@media (max-width: 991px) {
    .contact_info_wrapper {
        margin-top: 30px;
        height: auto;
    }
}
