* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Tajawal', sans-serif;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    min-height: 100vh;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.logo-text p {
    font-size: 12px;
    opacity: 0.9;
    margin: 3px 0 0 0;
}

.header-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
}

.header-nav a:hover,
.header-nav a.active {
    background: rgba(255,255,255,0.2);
}

/* Lawsuit Section */
.lawsuit-section {
    padding: 50px 0;
    min-height: 80vh;
}

.lawsuit-header {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.lawsuit-header h1 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 800;
}

.lawsuit-header .subtitle {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.features-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-item {
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
}

/* Cards */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 25px;
}

.selector-card {
    max-width: 700px;
    margin: 0 auto 25px auto;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.card-header h2 {
    color: #1e3a5f;
    font-size: 28px;
    margin: 10px 0;
}

.card-header p {
    color: #666;
}

.lawsuit-icon {
    font-size: 50px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
}

.label-icon {
    margin-left: 8px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    transition: 0.3s;
}

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

textarea {
    resize: vertical;
    min-height: 80px;
}

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

.field-hint {
    font-size: 12px;
    color: #718096;
    margin-top: 5px;
}

/* Buttons */
.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-success {
    background: #28a745;
    color: #fff;
}

.btn-success:hover {
    background: #218838;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-group .btn {
    flex: 1;
}

/* Lawsuit Paper */
.lawsuit-paper {
    background: #fff;
    border: 3px solid #2d3748;
    padding: 40px;
    margin-top: 30px;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.preview-header h3 {
    color: #1e3a5f;
    font-size: 22px;
}

.preview-badge {
    background: #28a745;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.lawsuit-content pre {
    white-space: pre-wrap;
    font-family: 'Tajawal', sans-serif;
    line-height: 2.2;
    font-size: 15px;
    color: #2d3748;
}

/* Important Notice */
.important-notice {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.notice-icon {
    font-size: 30px;
}

.notice-content strong {
    color: #c53030;
    display: block;
    margin-bottom: 5px;
}

.notice-content p {
    color: #742a2a;
    font-size: 14px;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.feature-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #1e3a5f;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

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

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.faq-item h3 {
    color: #1e3a5f;
    font-size: 16px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #fff;
    padding: 50px 0 20px 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-col a:hover {
    color: #667eea;
    padding-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 14px;
}

/* Print Styles */
@media print {
    body {
        background: #fff;
        padding: 0;
    }
    header, .lawsuit-header, .selector-card, .card:not(.lawsuit-paper),
    .btn-group, .important-notice, .why-choose-section, .faq-section, footer {
        display: none !important;
    }
    .lawsuit-paper {
        display: block !important;
        border: none;
        padding: 0;
        margin: 0;
        box-shadow: none;
    }
    .lawsuit-section {
        background: #fff;
        padding: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .lawsuit-header h1 {
        font-size: 28px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .btn-group {
        flex-direction: column;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}