/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo-icon {
    font-size: 48px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, #e94560, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Content */
.main-content {
    padding: 20px 0;
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e94560;
}

.card-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Warning Box */
.warning-box {
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.warning-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.warning-content h4 {
    color: #e94560;
    margin-bottom: 10px;
    font-size: 18px;
}

.warning-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 14px;
}

.warning-content ul {
    list-style: none;
    padding-left: 0;
}

.warning-content li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.warning-content li::before {
    content: "•";
    color: #e94560;
    position: absolute;
    left: 0;
}

/* Form Styles */
.delete-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.required {
    color: #e94560;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e94560;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
}

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

/* Checkbox Styles */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #e94560;
    border-color: #e94560;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Error Messages */
.error-message {
    color: #ff6b6b;
    font-size: 12px;
    min-height: 18px;
}

.form-group input.error,
.form-group select.error {
    border-color: #ff6b6b;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #e94560, #c73659);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

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

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Button Loader */
.btn-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-message h3 {
    font-size: 24px;
    color: #4ade80;
    margin-bottom: 15px;
}

.success-message p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.success-message .note {
    margin-top: 20px;
    font-size: 14px;
}

.success-message a {
    color: #e94560;
    text-decoration: none;
}

.success-message a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #f39c12;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(233, 69, 96, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(233, 69, 96, 0.4);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 20px;
}

.response-time {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Info Section */
.info-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.info-section > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.info-section ul {
    list-style: none;
}

.info-section li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-section li:last-child {
    border-bottom: none;
}

.info-section li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f39c12;
}

.info-section li strong {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e94560;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .logo h1 {
        font-size: 22px;
    }

    .logo-icon {
        font-size: 36px;
    }

    .card {
        padding: 25px 20px;
    }

    .card-header h2 {
        font-size: 24px;
    }

    .warning-box {
        flex-direction: column;
        text-align: center;
    }

    .submit-btn {
        font-size: 16px;
        padding: 15px 25px;
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        gap: 10px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .card-header h2 {
        font-size: 20px;
    }

    .card-header p {
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .contact-link {
        font-size: 14px;
        padding: 10px 18px;
    }
}
