/**
 * Zero Praga Suite - Frontend Styles
 */

/* Quote Form */
.zps-quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.zps-quote-form-container h2 {
    margin: 0 0 30px 0;
    text-align: center;
    color: #333;
}

.zps-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.zps-form-group {
    display: flex;
    flex-direction: column;
}

.zps-form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.zps-form-group input,
.zps-form-group select,
.zps-form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.zps-form-group input:focus,
.zps-form-group select:focus,
.zps-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.zps-form-submit {
    text-align: center;
    margin-top: 30px;
}

.zps-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.zps-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.zps-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.zps-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.zps-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.zps-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.zps-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Services Grid */
.zps-services-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.zps-service-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.zps-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.zps-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
}

.zps-service-card h3 {
    margin: 0 0 15px 0;
    color: #333;
}

.zps-service-card p {
    color: #666;
    line-height: 1.6;
}

.zps-service-price {
    margin-top: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

/* Contact Info */
.zps-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zps-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.zps-contact-item .dashicons {
    color: #667eea;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .zps-quote-form-container {
        padding: 20px;
    }

    .zps-form-row {
        grid-template-columns: 1fr;
    }

    .zps-services-grid {
        grid-template-columns: 1fr !important;
    }
}