/* Stampley Quote Plugin - Frontend Styles */

.stampley-quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.stampley-form-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2em;
}

/* Pricing Flyer Styles */
.stampley-pricing-flyer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #d4af37;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.stampley-flyer-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 20px;
}

.stampley-flyer-header h3 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: bold;
}

.stampley-flyer-header p {
    font-size: 1.2em;
    margin: 5px 0;
    color: #e0e0e0;
}

.stampley-flyer-header h4 {
    font-size: 1.8em;
    margin: 15px 0 0 0;
    color: #d4af37;
}

.stampley-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.stampley-pricing-column {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.stampley-pricing-column h5 {
    color: #d4af37;
    font-size: 1.3em;
    margin: 0 0 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
    padding-bottom: 10px;
}

.stampley-pricing-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stampley-pricing-column ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.stampley-pricing-column ul li:last-child {
    border-bottom: none;
}

.stampley-pricing-column ul li strong {
    color: #d4af37;
    font-weight: bold;
}

.stampley-note {
    margin-top: 15px;
    font-size: 0.9em;
    color: #ccc;
    font-style: italic;
}

.stampley-contact-info {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #d4af37;
}

.stampley-contact-info p {
    margin: 10px 0;
    font-size: 1.1em;
}

.stampley-contact-info strong {
    color: #d4af37;
}

/* Form Styles */
.stampley-quote-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stampley-form-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.stampley-form-section:last-of-type {
    border-bottom: none;
}

.stampley-form-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5em;
    border-left: 4px solid #d4af37;
    padding-left: 15px;
}

.stampley-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.stampley-form-group .required {
    color: #e74c3c;
}

.stampley-form-group input[type="text"],
.stampley-form-group input[type="email"],
.stampley-form-group input[type="tel"],
.stampley-form-group input[type="number"],
.stampley-form-group select,
.stampley-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.stampley-form-group input:focus,
.stampley-form-group select:focus,
.stampley-form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.stampley-form-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    transform: scale(1.2);
}

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

/* Estimate Section */
.stampley-estimate-section {
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 2px solid #d4af37;
}

.stampley-estimate-box {
    text-align: center;
}

.stampley-estimate-box h4 {
    font-size: 2em;
    color: #333;
    margin: 0;
}

.stampley-estimate-box h4 span {
    color: #d4af37;
    font-weight: bold;
}

.stampley-estimate-note {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
    font-style: italic;
}

/* Submit Button */
.stampley-submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stampley-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.stampley-submit-btn:active {
    transform: translateY(0);
}

.stampley-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Message Styles */
.stampley-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .stampley-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .stampley-form-row {
        grid-template-columns: 1fr;
    }
    
    .stampley-flyer-header h3 {
        font-size: 1.8em;
    }
    
    .stampley-quote-container {
        padding: 10px;
    }
}

