/**
 * Contact Page Styles - Modern Design
 *
 * @package Basel Child
 * @since 1.0.0
 */

/* Contact Page Container */
.rlg-contact-page {
    padding: 80px 0 100px;
    background: #fff;
}

.rlg-contact-page .container {
    max-width: 1100px;
}

/* Page Header */
.rlg-contact-header {
    text-align: center;
    margin-bottom: 70px;
}

.rlg-contact-header h1 {
    font-size: 48px;
    font-weight: 600;
    color: #101828;
    margin: 0 0 12px;
    letter-spacing: -1px;
    line-height: 1.2;
}

/* Breadcrumbs */
.rlg-breadcrumbs-contact {
    font-size: 14px;
    color: #667085;
    margin-bottom: 20px;
}

.rlg-breadcrumbs-contact a {
    color: #667085;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rlg-breadcrumbs-contact a:hover {
    color: #101828;
}

.rlg-breadcrumbs-contact a::after {
    content: ' › ';
    margin: 0 8px;
    color: #667085;
}

.rlg-breadcrumbs-contact .breadcrumb-last {
    color: #667085;
}

.rlg-contact-header p {
    font-size: 20px;
    color: #667085;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Contact Wrapper - Info Left, Form Right */
.rlg-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Contact Info Section */
.rlg-info-section {
    margin-bottom: 40px;
}

.rlg-info-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #101828;
    margin: 0 0 12px;
}

.rlg-info-section p {
    font-size: 16px;
    color: #667085;
    margin: 0 0 16px;
    line-height: 1.5;
}

.rlg-info-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #6941C6;
    text-decoration: none;
    transition: all 0.2s ease;
}

.rlg-info-link:hover {
    color: #53389E;
    gap: 12px;
}

.rlg-info-link svg {
    flex-shrink: 0;
    color: #6941C6;
}

/* Social Icons */
.rlg-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.rlg-social-icons a {
    width: 40px;
    height: 40px;
    background: #F9FAFB;
    color: #667085;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid #EAECF0;
}

.rlg-social-icons a:hover {
    background: #F3F4F6;
    color: #101828;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.rlg-form {
    background: #fff;
    padding: 0;
}

/* Form Row - Two Columns */
.rlg-form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.rlg-form-group {
    margin-bottom: 20px;
}

.rlg-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #344054;
    margin-bottom: 6px;
}

.rlg-form-group input,
.rlg-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fff;
    color: #101828;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.rlg-form-group input::placeholder,
.rlg-form-group textarea::placeholder {
    color: #667085;
}

.rlg-form-group input:focus,
.rlg-form-group textarea:focus {
    outline: none;
    border-color: #6941C6;
    box-shadow: 0 0 0 4px rgba(105, 65, 198, 0.1);
}

.rlg-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.rlg-form-submit {
    margin-top: 12px;
}

.rlg-submit-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.rlg-submit-btn:hover {
    background: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.rlg-submit-btn:active {
    transform: translateY(1px);
}

/* Form Messages */
.rlg-form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.rlg-form-message.success {
    background: #ECFDF3;
    color: #027A48;
    border: 1px solid #ABEFC6;
}

.rlg-form-message.error {
    background: #FEF3F2;
    color: #B42318;
    border: 1px solid #FECDCA;
}

/* Responsive Design */
@media (max-width: 991px) {
    .rlg-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .rlg-contact-page {
        padding: 60px 0;
    }

    .rlg-contact-header h1 {
        font-size: 36px;
    }

    .rlg-contact-header p {
        font-size: 18px;
    }

    .rlg-form-row-half {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .rlg-contact-page {
        padding: 40px 0;
    }

    .rlg-contact-header {
        margin-bottom: 50px;
    }

    .rlg-contact-header h1 {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .rlg-contact-header p {
        font-size: 16px;
    }

    .rlg-contact-wrapper {
        gap: 40px;
    }
}

