/* css/style.css */
:root {
    --primary: #2563eb;
    --success: #10a37f;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1e293b;
    --light: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    border-radius: 1.5rem !important;
    border: none !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    width: 100%;
}

.card-header {
    border-radius: 1.5rem 1.5rem 0 0 !important;
    padding: 1.5rem !important;
}

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-success {
    background: var(--success);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 0.75rem;
}

.btn-warning {
    background: var(--warning);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 0.75rem;
}

.form-control, .form-select {
    border-radius: 0.75rem !important;
    padding: 0.75rem 1rem !important;
    border: 2px solid #e2e8f0 !important;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15) !important;
}

.qr-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.review-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stars {
    color: #f4b400;
    font-size: 1.2rem;
}

.badge-custom {
    background: var(--success);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
}

.gmb-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.copy-review-btn {
    transition: all 0.3s;
}

.copy-review-btn.copied {
    background: #10b981 !important;
    color: white !important;
    border-color: #10b981 !important;
}

.alert {
    border-radius: 1rem;
    border: none;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .card {
        border-radius: 1rem !important;
    }
    
    .gmb-button {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.9rem;
    }
}