@import url('theme.css');

/* RFQ Section - Light Theme */
.rfq-section {
    display: flex;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    background-size: cover;
    background-position: center;
    color: #fff;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.rfq-text {
    flex: 1;
    max-width: 600px;
}

.rfq-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rfq-heading-main {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rfq-heading-highlight {
    color: var(--color-primary-light);
    font-weight: 800;
}

.rfq-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rfq-checklist li {
    font-size: 18px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.rfq-checklist li span {
    color: #2ecc71;
    margin-right: 15px;
    font-size: 1.2em;
}

/* Form Container */
.rfq-form-container {
    flex: 0 0 450px;
    background: var(--bg-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.listing-section h4 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--color-navy);
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    margin: 0;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--color-text-main);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-dim);
    outline: none;
    background: var(--bg-white);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: var(--color-text-light);
}

.form-row textarea {
    height: 100px;
    resize: vertical;
}

.submit-join {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    font-size: 16px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-join:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--color-primary-glow);
}

/* Responsive */
@media (max-width: 900px) {
    .rfq-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .rfq-form-container {
        width: 100%;
        max-width: 500px;
        flex: auto;
        margin-right: 0;
    }

    .rfq-text {
        text-align: center;
    }
    
    .rfq-text h2 {
        font-size: 28px;
    }
    
    .rfq-checklist li {
        justify-content: center;
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .rfq-section {
        padding: 35px 16px;
        gap: 30px;
    }
    
    .rfq-text h2 {
        font-size: 24px;
    }
    
    .rfq-checklist li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .rfq-form-container {
        padding: 25px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-row input,
    .form-row select,
    .form-row textarea {
        padding: 11px 12px;
        font-size: 13px;
    }
    
    .submit-join {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .rfq-section {
        padding: 30px 12px;
    }
    
    .rfq-text h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .rfq-checklist li {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .rfq-checklist li span {
        margin-right: 10px;
        font-size: 1em;
    }
    
    .rfq-form-container {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }
    
    .listing-section h4 {
        font-size: 15px;
        margin-bottom: 20px;
    }
}
