/* Quote Request Section */
.quote-section {
    padding: 40px 0;
    background: #2ebb77;
    border-top: none;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.quote-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.quote-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

/* Form Styles */
.quote-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s ease;
    min-height: 48px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

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

/* Submit Button */
.quote-submit-btn {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    margin: 0 auto;
    min-height: 52px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.quote-submit-btn:hover {
    background: #000;
}

.quote-submit-btn:active {
    transform: scale(0.98);
}

.quote-submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Form Message */
.form-message {
    display: none;
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Tablet - 640px+ */
@media (min-width: 640px) {
    .quote-section {
        padding: 60px 0;
    }

    .quote-container {
        padding: 0 24px;
    }

    .quote-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .quote-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .quote-form {
        padding: 32px;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group.full-width {
        margin-bottom: 24px;
    }

    .quote-submit-btn {
        width: auto;
        min-width: 250px;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .quote-section {
        padding: 80px 0;
    }

    .quote-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .quote-subtitle {
        font-size: 18px;
        margin-bottom: 48px;
    }

    .quote-form {
        padding: 40px;
    }

    .form-row {
        gap: 24px;
    }
}

/* Large Desktop - 1440px+ */
@media (min-width: 1440px) {
    .quote-section {
        padding: 100px 0;
    }

    .quote-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .quote-subtitle {
        font-size: 20px;
        margin-bottom: 60px;
    }

    .quote-form {
        padding: 48px;
    }
}
