/* Delete Account Page Specific Styles */

.delete-account-main {
    padding-top: 80px;
    min-height: 100vh;
    background: linear-gradient(to bottom, #f7fafc 0%, #ffffff 100%);
}

/* Hero Section */
.delete-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff9a9e 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.delete-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="d" cx=".5" cy=".5" r=".5"><stop offset="0" stop-color="%23fff" stop-opacity=".1"/><stop offset="1" stop-color="%23fff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="2" fill="url(%23d)"/><circle cx="800" cy="300" r="1.5" fill="url(%23d)"/></svg>');
    animation: twinkle 4s ease-in-out infinite;
}

.delete-header {
    position: relative;
    z-index: 2;
}

.delete-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.delete-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.delete-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Content Section */
.delete-content {
    padding: 80px 20px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Section */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3 i {
    color: #667eea;
    font-size: 1.2rem;
}

.info-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card ul li {
    color: #4a5568;
    line-height: 1.8;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.info-card ul li strong {
    color: #2d3748;
    font-weight: 600;
}

/* Warning Card */
.warning-card {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 2px solid #fc8181;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.warning-card i {
    color: #e53e3e;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.warning-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #742a2a;
    margin-bottom: 0.5rem;
}

.warning-card p {
    color: #742a2a;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f39c12;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e74c3c);
}

.warning-box i {
    color: #e74c3c;
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.warning-box h4 {
    color: #d63031;
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 700;
}

.warning-box p {
    color: #6c5ce7;
    margin-bottom: 10px;
    font-weight: 500;
}

.warning-box ul {
    color: #2d3436;
    margin: 15px 0;
    padding-left: 20px;
}

.warning-box li {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-card > p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group .required {
    color: #e53e3e;
}

.form-group .optional {
    color: #718096;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.help-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.4;
}

/* Checkbox Group */
.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label span {
    color: #4a5568;
    line-height: 1.5;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(229, 62, 62, 0.4);
}

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

.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.8s linear infinite;
}

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

/* Form Message */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.form-message.error {
    background: #fed7d7;
    color: #742a2a;
    border: 1px solid #fc8181;
}

/* Timeline Card */
.timeline-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
}

.timeline-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -17px;
    width: 30px;
    height: 30px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #667eea;
    z-index: 2;
}

.timeline-content {
    padding-left: 1rem;
}

.timeline-content strong {
    display: block;
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid #e2e8f0;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .delete-hero h1 {
        font-size: 2.5rem;
    }

    .info-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .delete-hero {
        padding: 40px 20px;
    }

    .delete-icon {
        font-size: 3rem;
    }

    .delete-hero h1 {
        font-size: 2rem;
    }

    .delete-hero .subtitle {
        font-size: 1.1rem;
    }

    .delete-content {
        padding: 60px 20px;
    }

    .info-card,
    .form-card {
        padding: 1.5rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .delete-hero h1 {
        font-size: 1.8rem;
    }

    .delete-hero .subtitle {
        font-size: 1rem;
    }

    .info-section h2 {
        font-size: 1.8rem;
    }

    .form-card h2 {
        font-size: 1.6rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

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

    .timeline-card h3 {
        font-size: 1.3rem;
    }

    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}