/* Modern Contact Page Styles */

.contact-one {
    background: #f8f9fa;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-title .subtitle {
    color: #d61c2d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.contact-title .main-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* Form Controls */
.contact-form-wrapper .form-control {
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form-wrapper .form-control:focus {
    border-color: #d61c2d;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(214, 28, 45, 0.1);
    outline: none;
}

.contact-form-wrapper textarea.form-control {
    height: auto;
    resize: vertical;
}

/* Send Button */
.btn-send-message {
    background: #d61c2d;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-send-message:hover {
    background: #a01623;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 28, 45, 0.3);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-sidebar .sidebar-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.contact-info-sidebar .sidebar-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact Info Items */
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-item .icon-circle {
    width: 45px;
    height: 45px;
    background: #d61c2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon-circle i {
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

.contact-info-item .info-content {
    flex: 1;
}

.contact-info-item .info-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 5px 0;
}

.contact-info-item .info-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-info-item .info-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item .info-content a:hover {
    color: #d61c2d;
}

/* Responsive */
@media (max-width: 991px) {

    .contact-form-wrapper,
    .contact-info-sidebar {
        margin-bottom: 30px;
    }

    .contact-title .main-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-info-sidebar {
        padding: 25px;
    }

    .contact-title .main-title {
        font-size: 24px;
    }
}