/**
 * SASMO Pages CSS
 * Centralized styles for all page-specific components
 *
 * Table of Contents:
 * 1. Auth Pages (Login, Register)
 * 2. Quality Pages (Checkers, Conformity Mark, Certified Companies)
 * 3. Contact Page
 * 4. Committee Pages
 */

/* ========================================
   1. AUTH PAGES - Common Styles
======================================== */

/* Auth Page Layout */
.auth-page {
    min-height: 100vh;
    background: #f8fafc;
}

.auth-container {
    display: flex;
    min-height: 100vh;
}

/* Left Side - Branding */
.auth-branding {
    flex: 0 0 45%;
    background: linear-gradient(135deg, var(--sasmo-primary, #26247b) 0%, #1a1854 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-branding .branding-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 400px;
}

.auth-branding .branding-logo img {
    height: 100px;
    margin-bottom: 2rem;
}

.auth-branding .branding-title {
    color: white;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.auth-branding .branding-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.branding-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

[dir="ltr"] .feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--sasmo-accent, #45c8f5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
}

.feature-item span {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

/* Decorative Shapes */
.branding-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(69, 200, 245, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(69, 200, 245, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 20%;
}

/* Right Side - Form */
.auth-form-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-form-container {
    width: 100%;
    max-width: 450px;
}

/* Mobile Logo */
.mobile-logo {
    display: none;
    text-align: center;
    margin-bottom: 2rem;
}

.mobile-logo img {
    height: 50px;
}

/* Form Header */
.auth-page .form-header {
    margin-bottom: 2rem;
}

.auth-page .form-title {
    color: var(--sasmo-primary, #26247b);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-page .form-subtitle {
    color: #64748b;
    font-size: 1rem;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 0.375rem;
    margin-bottom: 2rem;
}

.auth-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-tab.active {
    background: white;
    color: var(--sasmo-primary, #26247b);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.auth-tab:not(.active):hover {
    color: var(--sasmo-primary, #26247b);
}

/* Form Groups */
.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    right: 1rem;
    color: #94a3b8;
    font-size: 1rem;
    z-index: 2;
}

[dir="ltr"] .input-icon {
    right: auto;
    left: 1rem;
}

.auth-form .form-control {
    width: 100%;
    padding: 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.auth-form .form-control:focus {
    border-color: var(--sasmo-accent, #45c8f5);
    box-shadow: 0 0 0 4px rgba(69, 200, 245, 0.1);
    outline: none;
}

.auth-form .form-control.is-invalid {
    border-color: #ef4444;
}

.auth-form .form-control::placeholder {
    color: #94a3b8;
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    left: 1rem;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

[dir="ltr"] .password-toggle {
    left: auto;
    right: 1rem;
}

.password-toggle:hover {
    color: var(--sasmo-primary, #26247b);
}

/* Invalid Feedback */
.auth-form .invalid-feedback {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Custom Checkbox */
.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
}

.remember-me input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remember-me input:checked ~ .checkmark {
    background: var(--sasmo-primary, #26247b);
    border-color: var(--sasmo-primary, #26247b);
}

.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: white;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.remember-me input:checked ~ .checkmark::after {
    opacity: 1;
}

.label-text {
    color: #64748b;
    font-size: 0.9375rem;
}

.forgot-link {
    color: var(--sasmo-accent, #45c8f5);
    font-size: 0.9375rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--sasmo-primary, #26247b);
}

/* Login Button */
.btn-login {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--sasmo-primary, #26247b) 0%, #3d3a9e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(135deg, #1a1854 0%, var(--sasmo-primary, #26247b) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(38, 36, 123, 0.3);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

[dir="ltr"] .btn-icon i {
    transform: rotate(180deg);
}

.btn-login:hover .btn-icon {
    transform: translateX(-5px);
}

[dir="ltr"] .btn-login:hover .btn-icon {
    transform: translateX(5px) rotate(180deg);
}

/* Form Footer */
.auth-form .form-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.auth-form .form-footer p {
    color: #64748b;
    margin: 0;
}

.auth-form .form-footer a {
    color: var(--sasmo-primary, #26247b);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-form .form-footer a:hover {
    color: var(--sasmo-accent, #45c8f5);
}

/* Back Home Link */
.back-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: var(--sasmo-primary, #26247b);
}

/* Auth Alert */
.auth-page .alert {
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: none;
    padding: 1rem 1.25rem;
}

.auth-page .alert-danger {
    background: #fef2f2;
    color: #dc2626;
}

/* Auth Responsive */
@media (max-width: 991.98px) {
    .auth-branding {
        flex: 0 0 40%;
        padding: 2rem;
    }

    .auth-branding .branding-title {
        font-size: 1.875rem;
    }

    .auth-branding .branding-text {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-branding {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    .auth-form-wrapper {
        padding: 1.5rem;
    }

    .auth-page .form-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .auth-form-wrapper {
        padding: 1rem;
    }

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .auth-tabs {
        flex-direction: column;
    }
}

/* ========================================
   1.2 REGISTER PAGE
======================================== */

/* Main Container */
.register-page {
    min-height: 100vh;
    display: flex;
    background: #f8f9fa;
}

/* Left Side - Branding */
.register-branding {
    flex: 0 0 40%;
    background: linear-gradient(135deg, var(--sasmo-primary, #26247b) 0%, #1a1854 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    padding-top: calc(3rem + 64px);
    overflow: hidden;
}

.register-branding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2345c8f5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.register-branding::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(69, 200, 245, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.register-page .branding-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 400px;
}

.register-page .branding-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
}

.register-page .branding-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.register-page .branding-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: start;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    width: 28px;
    height: 28px;
    background: rgba(69, 200, 245, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--sasmo-accent, #45c8f5);
    flex-shrink: 0;
}

/* Right Side - Form */
.register-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 3rem;
    padding-top: calc(2rem + 64px);
    overflow-y: auto;
    max-height: 100vh;
}

.register-form-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

/* Form Header */
.register-page .form-header {
    margin-bottom: 2rem;
}

.form-header-nav {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
}

.nav-link-auth {
    color: #666;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding-bottom: 1rem;
    margin-bottom: -1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-link-auth:hover {
    color: var(--sasmo-primary, #26247b);
}

.nav-link-auth.active {
    color: var(--sasmo-primary, #26247b);
    border-bottom-color: var(--sasmo-accent, #45c8f5);
}

.register-page .form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sasmo-primary, #26247b);
    margin-bottom: 0.5rem;
}

.register-page .form-subtitle {
    color: #666;
    font-size: 1rem;
}

/* Alert Messages */
.alert-custom {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-custom.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.alert-custom.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.alert-custom i {
    font-size: 1.25rem;
}

/* Form Sections */
.form-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sasmo-primary, #26247b);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

.section-title i {
    color: var(--sasmo-accent, #45c8f5);
    font-size: 1rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-grid.single {
    grid-template-columns: 1fr;
}

.register-page .form-group {
    margin-bottom: 0;
}

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

.register-page .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.register-page .form-label .required {
    color: #dc3545;
}

.form-input,
.register-page .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    background: #f8f9fa;
}

.form-input:focus,
.register-page .form-select:focus {
    outline: none;
    border-color: var(--sasmo-accent, #45c8f5);
    background: white;
    box-shadow: 0 0 0 4px rgba(69, 200, 245, 0.1);
}

.form-input.is-invalid,
.register-page .form-select.is-invalid {
    border-color: #dc3545;
}

.register-page .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 2.5rem;
}

[dir="ltr"] .register-page .form-select {
    background-position: right 1rem center;
    padding-left: 1rem;
    padding-right: 2.5rem;
}

.error-message {
    color: #dc3545;
    font-size: 0.8125rem;
    margin-top: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.error-message i {
    font-size: 0.75rem;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.2s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--sasmo-accent, #45c8f5);
    background: rgba(69, 200, 245, 0.05);
}

.file-upload-area.dragover {
    border-color: var(--sasmo-accent, #45c8f5);
    background: rgba(69, 200, 245, 0.1);
}

.file-upload-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(38, 36, 123, 0.1) 0%, rgba(69, 200, 245, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.file-upload-icon i {
    font-size: 1.5rem;
    color: var(--sasmo-primary, #26247b);
}

.file-upload-text {
    color: #666;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.file-upload-hint {
    color: #999;
    font-size: 0.8125rem;
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-preview {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 1rem;
}

.file-preview.show {
    display: flex;
}

.file-preview-icon {
    width: 44px;
    height: 44px;
    background: var(--sasmo-primary, #26247b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-preview-icon i {
    color: white;
    font-size: 1.125rem;
}

.file-preview-info {
    flex: 1;
}

.file-preview-name {
    font-weight: 600;
    color: #333;
    font-size: 0.875rem;
}

.file-preview-size {
    color: #999;
    font-size: 0.75rem;
}

.file-preview-remove {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    color: #dc3545;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-preview-remove:hover {
    background: #dc3545;
    color: white;
}

/* Submit Button */
.submit-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-register {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--sasmo-primary, #26247b) 0%, #1a1854 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-register:hover {
    background: linear-gradient(135deg, var(--sasmo-accent, #45c8f5) 0%, #3ab5e0 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(38, 36, 123, 0.3);
}

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

.login-link {
    color: #666;
    font-size: 0.9375rem;
}

.login-link a {
    color: var(--sasmo-primary, #26247b);
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    color: var(--sasmo-accent, #45c8f5);
}

/* Info Button */
.btn-info-modal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(69, 200, 245, 0.1);
    color: var(--sasmo-accent, #45c8f5);
    border: 1px solid rgba(69, 200, 245, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-info-modal:hover {
    background: var(--sasmo-accent, #45c8f5);
    color: white;
}

/* Modal Styles */
.register-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.register-modal .modal-header {
    background: linear-gradient(135deg, var(--sasmo-primary, #26247b) 0%, #1a1854 100%);
    padding: 1.25rem 1.5rem;
    border: none;
}

.register-modal .modal-title {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.register-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.register-modal .btn-close:hover {
    opacity: 1;
}

.register-modal .modal-body {
    padding: 1.5rem;
}

.registration-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.registration-steps li {
    position: relative;
    padding: 1rem 0 1rem 3.5rem;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 0.9375rem;
    line-height: 1.6;
}

[dir="ltr"] .registration-steps li {
    padding: 1rem 0 1rem 3.5rem;
    padding-right: 0;
}

[dir="rtl"] .registration-steps li {
    padding: 1rem 3.5rem 1rem 0;
}

.registration-steps li:last-child {
    border-bottom: none;
}

.registration-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    right: 0;
    top: 1rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--sasmo-primary, #26247b) 0%, #1a1854 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

[dir="ltr"] .registration-steps li::before {
    right: auto;
    left: 0;
}

/* Register Responsive */
@media (max-width: 991.98px) {
    .register-page {
        flex-direction: column;
    }

    .register-branding {
        flex: none;
        padding: 2rem;
        padding-top: calc(2rem + 60px);
        min-height: auto;
    }

    .register-form-section {
        padding-top: 2rem;
    }

    .register-page .branding-logo {
        width: 80px;
        margin-bottom: 1rem;
    }

    .register-page .branding-title {
        font-size: 1.5rem;
    }

    .register-page .branding-text {
        display: none;
    }

    .feature-list {
        display: none;
    }

    .register-form-section {
        padding: 2rem;
        max-height: none;
    }

    .register-page .form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .register-branding {
        padding: 1.5rem;
        padding-top: calc(1.5rem + 56px);
    }

    .register-page .branding-title {
        font-size: 1.25rem;
        margin-bottom: 0;
    }

    .register-form-section {
        padding: 1.5rem;
        padding-top: 1.5rem;
    }

    .form-header-nav {
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 0.75rem;
    }

    .nav-link-auth {
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .form-section {
        padding: 1.25rem;
        border-radius: 12px;
    }

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

    .register-page .form-title {
        font-size: 1.25rem;
    }

    .submit-section {
        flex-direction: column;
    }

    .btn-register {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .register-branding {
        padding: 1rem;
        padding-top: calc(1rem + 52px);
    }

    .register-page .branding-logo {
        width: 60px;
    }

    .register-form-section {
        padding: 1rem;
        padding-top: 1rem;
    }

    .form-section {
        padding: 1rem;
    }

    .form-input,
    .register-page .form-select {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }

    .file-upload-area {
        padding: 1.5rem 1rem;
    }
}

/* ========================================
   2. QUALITY PAGES - Common Styles
======================================== */

/* Quality Hero Section */
.quality-hero {
    background: linear-gradient(135deg, var(--sasmo-primary, #26247b) 0%, #1a1854 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.quality-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2345c8f5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.quality-hero .container {
    position: relative;
    z-index: 2;
}

.quality-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.quality-hero h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quality-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Stats Cards */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--sasmo-accent, #45c8f5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    color: white;
    font-size: 1.25rem;
}

.stat-number {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Quality Content Section */
.quality-content {
    padding: 3rem 0;
    background: #f8f9fa;
}

/* Filter Section */
.filter-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--sasmo-accent, #45c8f5);
    box-shadow: 0 0 0 4px rgba(69, 200, 245, 0.1);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-filter {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-filter-primary {
    background: var(--sasmo-primary, #26247b);
    color: white;
    border: none;
}

.btn-filter-primary:hover {
    background: #1a1854;
}

.btn-filter-secondary {
    background: #f1f5f9;
    color: #64748b;
    border: none;
}

.btn-filter-secondary:hover {
    background: #e2e8f0;
    color: #334155;
}

/* Data Table */
.data-table-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.table-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sasmo-primary, #26247b);
    margin: 0;
}

.table-count {
    background: rgba(69, 200, 245, 0.1);
    color: var(--sasmo-accent, #45c8f5);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: #f8f9fa;
    padding: 1rem 1.25rem;
    text-align: start;
    font-size: 0.875rem;
    font-weight: 700;
    color: #333;
    border-bottom: 2px solid #e9ecef;
}

.data-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9375rem;
    color: #444;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover {
    background: rgba(69, 200, 245, 0.03);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.no-results-icon i {
    font-size: 2rem;
    color: #94a3b8;
}

.no-results h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: #64748b;
    margin: 0;
}

/* Quality Responsive */
@media (max-width: 991.98px) {
    .quality-hero {
        padding: 3rem 0;
    }

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

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .quality-hero h1 {
        font-size: 1.75rem;
    }

    .filter-row {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .filter-buttons {
        width: 100%;
    }

    .btn-filter {
        flex: 1;
        justify-content: center;
    }

    .data-table-wrapper {
        overflow-x: auto;
    }

    .data-table {
        min-width: 600px;
    }
}

@media (max-width: 575.98px) {
    .quality-hero {
        padding: 2rem 0;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   3. CONTACT PAGE
======================================== */

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.form-subtitle-contact {
    color: var(--sasmo-accent, #45c8f5);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-form-header .form-title {
    color: var(--sasmo-primary, #26247b);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.form-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

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

.contact-form .form-control {
    padding: 1rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--sasmo-accent, #45c8f5);
    box-shadow: 0 0 0 4px rgba(69, 200, 245, 0.1);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-send {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--sasmo-primary, #26247b) 0%, #1a1854 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background: linear-gradient(135deg, var(--sasmo-accent, #45c8f5) 0%, #3ab5e0 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(38, 36, 123, 0.3);
}

/* Contact Responsive */
@media (max-width: 767.98px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form-header .form-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   4. COMMITTEE PAGES
======================================== */

/* Committee Show Page */
.committee-header {
    background: linear-gradient(135deg, var(--sasmo-primary, #26247b) 0%, #1a1854 100%);
    padding: 3rem 0;
    position: relative;
}

.committee-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #f8f9fa;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.committee-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.committee-code {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

/* Committee Info Cards */
.info-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.info-card-header i {
    width: 40px;
    height: 40px;
    background: rgba(69, 200, 245, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sasmo-accent, #45c8f5);
}

.info-card-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sasmo-primary, #26247b);
    margin: 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.info-label {
    color: #64748b;
    font-weight: 500;
}

.info-value {
    color: #333;
    font-weight: 600;
}

/* Action Cards */
.action-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.action-card i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sasmo-primary, #26247b) 0%, #1a1854 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.action-card h4 {
    color: var(--sasmo-primary, #26247b);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.action-card p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

/* Committee Responsive */
@media (max-width: 767.98px) {
    .committee-title {
        font-size: 1.5rem;
    }

    .info-item {
        flex-direction: column;
        gap: 0.25rem;
    }
}
