/* Reset e base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Language Selector Styles */
.language-selector {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.language-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.language-container:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-container i {
    color: #667eea;
    font-size: 1rem;
}

#languageSelect {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    padding: 0.2rem;
}

#languageSelect option {
    background: white;
    color: #333;
    padding: 0.5rem;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 2rem;
    color: #667eea;
}

.logo h1 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    background: #667eea;
    color: white;
}

/* Main Content */
.main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.register-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.register-header p {
    color: #666;
    font-size: 0.95rem;
}

/* Form Styles */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group label i {
    color: #667eea;
    font-size: 0.9rem;
}

.form-group input {
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:valid {
    border-color: #28a745;
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Password Requirements */
.password-requirements {
    margin-top: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.password-requirements p {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.password-requirements ul {
    list-style: none;
    font-size: 0.8rem;
}

.password-requirements li {
    padding: 0.2rem 0;
    color: #dc3545;
    position: relative;
    padding-left: 1.5rem;
}

.password-requirements li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
}

.password-requirements li.valid {
    color: #28a745;
}

.password-requirements li.valid::before {
    content: "✓";
    color: #28a745;
}

/* Checkbox Styles */
.checkbox-group {
    position: relative;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 0.8rem;
}

.link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}

/* Button Styles */
.register-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.register-btn:active {
    transform: translateY(0);
}

.register-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.login-link p {
    color: #666;
    font-size: 0.9rem;
}

/* Security Info */
.security-info {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

.security-item i {
    color: #28a745;
    font-size: 1.2rem;
}

.security-item span {
    font-size: 0.75rem;
    color: #666;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Login Page Styles */
.login-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    animation: fadeInUp 0.6s ease;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #666;
    font-size: 0.95rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.password-input-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #667eea;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.toggle-password:hover {
    background: rgba(102, 126, 234, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    text-decoration: underline;
    color: #764ba2;
}

.login-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.divider {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e5e9;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    background: white;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.google-btn:hover {
    border-color: #db4437;
    background: rgba(219, 68, 55, 0.05);
}

.microsoft-btn:hover {
    border-color: #00a1f1;
    background: rgba(0, 161, 241, 0.05);
}

.register-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.register-link p {
    color: #666;
    font-size: 0.9rem;
}

.login-benefits {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.login-benefits h3 {
    text-align: center;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(102, 126, 234, 0.05);
}

.benefit-item i {
    color: #667eea;
    font-size: 1.5rem;
}

.benefit-item span {
    font-size: 0.8rem;
    color: #333;
    font-weight: 500;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e1e5e9;
}

.modal-header h3 {
    color: #333;
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.reset-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
}

.reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Success/Error Messages */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    animation: slideInRight 0.3s ease;
}

.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #dc3545;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav {
        gap: 1rem;
    }

    .register-container,
    .login-container {
        margin: 1rem;
        padding: 2rem;
    }

    .security-info {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .main {
        padding: 1rem;
    }

    .register-container {
        padding: 1.5rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .register-header h2 {
        font-size: 1.5rem;
    }
}

/* Homepage Styles */
.cta-nav {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
}

.cta-nav:hover {
    background: linear-gradient(135deg, #764ba2, #667eea) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

.feature-item i {
    color: #ffd700;
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.download-btn {
    background: #ffd700;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.download-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.learn-more-btn {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: white;
    color: #667eea;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Antivirus Interface Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.antivirus-interface {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    color: #333;
}

.interface-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e1e5e9;
}

.interface-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.interface-title i {
    color: #667eea;
    font-size: 1.3rem;
}

.interface-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 500;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dc3545;
}

.status-indicator.active {
    background: #28a745;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.scan-progress {
    margin-bottom: 1.5rem;
}

.scan-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.scan-info p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.progress-bar {
    background: #e1e5e9;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 100%;
    width: 74%;
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 74%; }
}

.scan-percentage {
    text-align: center;
    font-weight: 600;
    color: #667eea;
}

.threats-found {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    padding: 1rem;
    border-radius: 8px;
}

.threat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.threat-item i {
    color: #dc3545;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Download Section */
.download-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.download-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.download-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.download-feature i {
    color: #ffd700;
    font-size: 1.2rem;
}

.download-cta {
    text-align: center;
}

.download-btn-large {
    background: #ffd700;
    color: #333;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.download-btn-large:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.download-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

.system-requirements {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.system-requirements h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.requirement-item i {
    font-size: 2rem;
    color: #ffd700;
}

.requirement-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.requirement-item span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* About Section */
.about-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.highlight-item span {
    font-weight: 600;
    color: #1f2937;
}

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.about-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.about-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.about-btn-secondary {
    background: transparent;
    color: #3b82f6;
    padding: 1rem 2rem;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.stat-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Footer Updates */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #667eea;
}

.footer-logo h3 {
    color: #667eea;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certifications {
    display: flex;
    gap: 1rem;
}

.cert-badge {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Homepage Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .download-info h2 {
        font-size: 2rem;
    }
}

/* Download Page Styles */
.download-main {
    padding: 0;
}

.download-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    min-height: 90vh;
}

.download-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.download-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.download-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.download-stats-live {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.live-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.live-stat i {
    color: #ffd700;
    font-size: 1.2rem;
}

.os-selection h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.windows-exclusive {
    text-align: center;
    margin-bottom: 2rem;
}

.windows-exclusive h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.windows-exclusive h3 i {
    color: #ffd700;
    font-size: 2rem;
}

.windows-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.installation-guide {
    margin-top: 2rem;
}

.installation-guide h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.step-number {
    background: #ffd700;
    color: #333;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step span:last-child {
    font-size: 0.95rem;
    line-height: 1.4;
}

.os-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.os-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
}

.os-btn:hover,
.os-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffd700;
    transform: translateY(-2px);
}

.os-btn i {
    font-size: 2rem;
}

.os-btn span {
    font-weight: 500;
}

.download-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.download-info p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.version-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.version-info span {
    opacity: 0.8;
}

.download-button {
    width: 100%;
    background: #ffd700;
    color: #333;
    border: none;
    padding: 1.5rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.download-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.download-button i {
    font-size: 1.5rem;
}

.download-button small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature-check i {
    color: #28a745;
    font-size: 1rem;
}

.alternative-downloads {
    margin-top: 2rem;
}

.alternative-downloads h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.alt-downloads {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.alt-download {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.alt-download:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.alt-download i {
    font-size: 1.5rem;
    color: #ffd700;
}

.alt-download strong {
    display: block;
    margin-bottom: 0.25rem;
}

.alt-download span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.system-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.requirements-card,
.download-help {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.requirements-card h3,
.download-help h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.req-item i {
    color: #ffd700;
    font-size: 1.2rem;
    width: 20px;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.help-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.help-link i {
    color: #ffd700;
}

/* Download Modal */
.download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.download-modal.show {
    display: flex;
}

.download-modal .modal-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.progress-header h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.progress-status {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: block;
}

.progress-bar-container {
    margin-bottom: 2rem;
}

.progress-bar-download {
    background: #e1e5e9;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill-download {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-percentage {
    font-weight: 600;
    color: #667eea;
    font-size: 1.1rem;
}

.download-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e1e5e9;
}

.cancel-download {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-download:hover {
    background: #c82333;
}

.success-icon i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.download-complete h3 {
    color: #333;
    margin-bottom: 1rem;
}

.download-complete p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.next-steps {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.next-steps h4 {
    color: #333;
    margin-bottom: 1rem;
}

.next-steps ol {
    color: #666;
    line-height: 1.6;
}

.next-steps li {
    margin-bottom: 0.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.open-file-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.open-file-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.close-modal-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background: #5a6268;
}

.download-counter-footer {
    background: #667eea;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Download Page Responsive */
@media (max-width: 1024px) {
    .download-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .download-header h1 {
        font-size: 2.5rem;
    }
    
    .download-stats-live {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .download-hero {
        padding: 3rem 1rem;
    }
    
    .download-header h1 {
        font-size: 2rem;
    }
    
    .download-stats-live {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .os-buttons {
        flex-direction: column;
    }
    
    .version-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

/* About Page Styles */
.about-main {
    padding-top: 0;
}

.about-hero {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="%23ffffff20"/><circle cx="400" cy="400" r="2" fill="%23ffffff20"/><circle cx="600" cy="600" r="2" fill="%23ffffff20"/><circle cx="800" cy="800" r="2" fill="%23ffffff20"/></svg>');
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.metric {
    text-align: center;
}

.metric i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: #6b7280;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Story Timeline */
.our-story {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.our-story h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1f2937;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 3rem;
    flex: 1;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -20px;
    border-right-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -20px;
    border-left-color: white;
}

.timeline-content h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Mission & Values */
.mission-values {
    padding: 6rem 2rem;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-section {
    margin-bottom: 6rem;
}

.mission-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
}

.mission-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.highlight {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.highlight i {
    font-size: 3rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.highlight h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.highlight p {
    color: #6b7280;
    line-height: 1.6;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 4rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-right: 1.5rem;
}

.stat-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stat-item p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.team-culture h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.culture-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.culture-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-right: 1rem;
}

.culture-item span {
    color: #4b5563;
    font-weight: 500;
}

/* Technology Section */
.technology-section {
    padding: 6rem 2rem;
}

.tech-content {
    max-width: 1200px;
    margin: 0 auto;
}

.technology-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1f2937;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tech-category h3 {
    color: #1f2937;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.tech-item {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    opacity: 0.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: #3b82f6;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-card {
        max-width: none;
    }
    
    .about-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-highlights {
        grid-template-columns: 1fr;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .metric {
        margin: 0 1rem;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    /* About page responsive */
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 2rem;
    }
    
    .story-timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 4rem;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
        transform: none;
    }
    
    .timeline-content {
        margin: 2rem 0 0 0;
        width: 100%;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .mission-highlights {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Legal Pages Styles */
.legal-main {
    padding-top: 0;
}

.legal-hero {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="%23ffffff20"/><circle cx="400" cy="400" r="2" fill="%23ffffff20"/><circle cx="600" cy="600" r="2" fill="%23ffffff20"/><circle cx="800" cy="800" r="2" fill="%23ffffff20"/></svg>');
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.update-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 1rem;
}

.gdpr-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 1rem;
}

.legal-content {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.terms-container,
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section,
.privacy-section {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.terms-section h2,
.privacy-section h2 {
    color: #1f2937;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.terms-section h3,
.privacy-section h3 {
    color: #374151;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.terms-section h4,
.privacy-section h4 {
    color: #4b5563;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem 0;
}

.terms-section p,
.privacy-section p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-section ul,
.privacy-section ul {
    color: #6b7280;
    line-height: 1.6;
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li,
.privacy-section li {
    margin-bottom: 0.5rem;
}

/* Special elements */
.important-note,
.privacy-commitment,
.security-note,
.no-sharing-policy,
.exercise-rights,
.adequacy-notice,
.no-tracking,
.parental-control,
.privacy-promise {
    background: #f3f4f6;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.important-note i,
.privacy-commitment i,
.security-note i,
.no-sharing-policy i,
.exercise-rights i,
.adequacy-notice i,
.no-tracking i,
.parental-control i,
.privacy-promise i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.important-note h4,
.privacy-commitment h4,
.security-note h4,
.no-sharing-policy h4,
.exercise-rights h4,
.adequacy-notice h4,
.no-tracking h4,
.parental-control h4,
.privacy-promise h4 {
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.important-note p,
.privacy-commitment p,
.security-note p,
.no-sharing-policy p,
.exercise-rights p,
.adequacy-notice p,
.no-tracking p,
.parental-control p,
.privacy-promise p {
    margin: 0;
    color: #4b5563;
}

/* Version comparison */
.version-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.version-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.version-card.premium {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-color: #3b82f6;
}

.version-card h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.version-card i {
    color: #3b82f6;
}

.version-card.premium i {
    color: #fbbf24;
}

/* Privacy specific elements */
.data-category {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #3b82f6;
}

.data-category.security {
    border-left-color: #ef4444;
}

.data-category h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.data-category i {
    color: #3b82f6;
}

.data-category.security i {
    color: #ef4444;
}

.usage-purposes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.purpose-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid #e5e7eb;
}

.purpose-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0.25rem;
}

.purpose-item h4 {
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.purpose-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.security-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0.25rem;
}

.security-item h4 {
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.security-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.trusted-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.partner-category {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.partner-category h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.partner-category i {
    color: #3b82f6;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

.right-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 0.25rem;
}

.right-item h4 {
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.right-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.retention-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    margin: 2rem 0;
}

.retention-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.retention-row:last-child {
    border-bottom: none;
}

.data-type,
.retention-period {
    padding: 1.5rem;
}

.data-type {
    border-right: 1px solid #e5e7eb;
}

.data-type h4 {
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.data-type p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

.retention-period {
    display: flex;
    align-items: center;
    background: #f8fafc;
}

.retention-period span {
    color: #3b82f6;
    font-weight: 600;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    position: relative;
}

.cookie-category.essential {
    border-color: #10b981;
}

.cookie-category.functional {
    border-color: #3b82f6;
}

.cookie-category.analytics {
    border-color: #8b5cf6;
}

.cookie-category h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-category.essential i {
    color: #10b981;
}

.cookie-category.functional i {
    color: #3b82f6;
}

.cookie-category.analytics i {
    color: #8b5cf6;
}

.cookie-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cookie-status.required {
    background: #dcfce7;
    color: #15803d;
}

.cookie-status.optional {
    background: #dbeafe;
    color: #1d4ed8;
}

.version-history {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.version-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.version-item:last-child {
    border-bottom: none;
}

.version-date {
    font-weight: 600;
    color: #3b82f6;
}

.version-changes {
    color: #6b7280;
    flex: 1;
    margin-left: 2rem;
}

.dpo-contact {
    margin: 2rem 0;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-card i {
    font-size: 3rem;
    color: #3b82f6;
}

.contact-card h4 {
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.contact-card p {
    color: #6b7280;
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.authority-contact {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.authority-contact h4 {
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.authority-contact p {
    color: #6b7280;
    margin: 0.5rem 0;
}

.company-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #3b82f6;
}

.company-info h4 {
    color: #1f2937;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.support-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.support-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.support-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0.25rem;
}

.support-item h4 {
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.support-item p {
    color: #6b7280;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.support-item span {
    color: #9ca3af;
    font-size: 0.9rem;
}

.acceptance-note,
.refund-policy {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-left: 4px solid #3b82f6;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.acceptance-note i,
.refund-policy i {
    font-size: 2rem;
    color: #3b82f6;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.acceptance-note h4,
.refund-policy h4 {
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    font-size: 1.3rem;
}

.acceptance-note p,
.refund-policy p {
    margin: 0;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

.final-section {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(139, 92, 246, 0.02));
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.5rem;
    }
    
    .gdpr-badge {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .terms-section,
    .privacy-section {
        padding: 2rem 1.5rem;
    }
    
    .version-comparison {
        grid-template-columns: 1fr;
    }
    
    .usage-purposes,
    .security-measures,
    .rights-grid,
    .cookie-types,
    .support-channels {
        grid-template-columns: 1fr;
    }
    
    .retention-row {
        grid-template-columns: 1fr;
    }
    
    .retention-period {
        border-right: none;
        border-top: 1px solid #e5e7eb;
    }
    
    .version-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .version-changes {
        margin-left: 0;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Support and Chat Styles */
.support-main {
    padding-top: 0;
}

.support-hero {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="%23ffffff20"/><circle cx="400" cy="400" r="2" fill="%23ffffff20"/><circle cx="600" cy="600" r="2" fill="%23ffffff20"/><circle cx="800" cy="800" r="2" fill="%23ffffff20"/></svg>');
    padding: 4rem 2rem;
    text-align: center;
}

.support-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.support-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.support-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.support-stats .stat-item i {
    font-size: 2rem;
    color: #3b82f6;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Quick Help */
.quick-help {
    padding: 4rem 2rem;
    background: white;
}

.quick-help-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.quick-help h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.help-option {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.help-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.help-option i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.help-option h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.help-option p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.help-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #e5e7eb;
    color: #6b7280;
}

.help-badge.online {
    background: #dcfce7;
    color: #15803d;
}

.help-badge.premium {
    background: #fef3c7;
    color: #d97706;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    color: #1f2937;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 500px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    color: #6b7280;
    line-height: 1.6;
    margin: 0.75rem 0;
}

.faq-answer li {
    margin: 0.5rem 0;
}

/* User Tickets Section */
.user-tickets-section {
    padding: 4rem 2rem;
    background: white;
}

.tickets-content {
    max-width: 1200px;
    margin: 0 auto;
}

.user-tickets-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.tickets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
}

.tickets-stats {
    display: flex;
    gap: 3rem;
}

.ticket-stat {
    text-align: center;
}

.ticket-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
}

.ticket-stat .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ticket-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.ticket-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.ticket-title {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.ticket-id {
    color: #6b7280;
    font-size: 0.9rem;
}

.ticket-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.ticket-status.open {
    background: #fef3c7;
    color: #d97706;
}

.ticket-status.in-progress {
    background: #dbeafe;
    color: #1d4ed8;
}

.ticket-status.resolved {
    background: #dcfce7;
    color: #15803d;
}

.ticket-status.closed {
    background: #f3f4f6;
    color: #6b7280;
}

.ticket-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.ticket-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ticket-actions {
    display: flex;
    gap: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sm.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-sm.btn-primary:hover {
    background: #2563eb;
}

.btn-sm.btn-secondary {
    background: #e5e7eb;
    color: #6b7280;
}

.btn-sm.btn-secondary:hover {
    background: #d1d5db;
}

/* Ticket Form */
.ticket-form-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
}

.ticket-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.ticket-form-section p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.ticket-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #e5e7eb;
    color: #6b7280;
    border: 2px solid #d1d5db;
}

.btn-secondary:hover {
    background: #d1d5db;
    border-color: #9ca3af;
}

/* Contact Info */
.contact-info-section {
    padding: 4rem 2rem;
    background: white;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.contact-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.contact-item p {
    color: #4b5563;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.contact-item span {
    color: #6b7280;
    font-size: 0.9rem;
}

.office-info {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.office-info h3 {
    color: #1f2937;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.office-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.office {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.office h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.office p {
    color: #6b7280;
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
}

.chat-toggle i {
    font-size: 1.5rem;
    color: white;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-avatar i {
    font-size: 1.2rem;
}

.agent-details h4 {
    margin: 0;
    font-size: 1rem;
}

.agent-status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.agent-status.online::before {
    content: '●';
    color: #10b981;
    margin-right: 0.25rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f8fafc;
}

.message {
    margin-bottom: 1rem;
}

.message-content {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 80%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.agent-message .message-content {
    background: #3b82f6;
    color: white;
    margin-left: 0;
}

.user-message .message-content {
    background: white;
    color: #1f2937;
    margin-left: auto;
}

.message-content p {
    margin: 0;
    line-height: 1.4;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.25rem;
    display: block;
}

.chat-typing {
    padding: 0.5rem 1rem;
    font-style: italic;
    color: #6b7280;
    font-size: 0.9rem;
}

.chat-input {
    border-top: 1px solid #e5e7eb;
    background: white;
}

.input-container {
    display: flex;
    padding: 1rem;
    gap: 0.5rem;
}

.input-container input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
}

.input-container input:focus {
    border-color: #3b82f6;
}

.input-container button {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.input-container button:hover {
    background: #2563eb;
}

/* Responsive Design for Support */
@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 2.5rem;
    }
    
    .support-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .help-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tickets-header {
        flex-direction: column;
        gap: 2rem;
    }
    
    .tickets-stats {
        justify-content: center;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .office-details {
        grid-template-columns: 1fr;
    }
    
    .chat-window {
        width: 300px;
        height: 400px;
    }
    
    .chat-widget {
        bottom: 1rem;
        right: 1rem;
    }
}

/* ===== ADMIN PAGE STYLES ===== */
.admin-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.admin-login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.admin-header {
    margin-bottom: 2rem;
}

.admin-header i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
    display: block;
}

.admin-header h1 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.admin-header p {
    color: #666;
    font-size: 1.1rem;
}

.admin-login-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.admin-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 100%;
    justify-content: center;
}

.admin-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.admin-btn.secondary {
    background: #e2e8f0;
    color: #333;
}

.admin-btn.secondary:hover {
    background: #cbd5e0;
}

.admin-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    color: #667eea;
    font-size: 0.9rem;
}

.admin-dashboard {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.admin-welcome h1 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.admin-welcome p {
    color: #666;
    font-size: 1rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.dashboard-actions {
    margin-top: 2rem;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

.action-btn:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.action-btn i {
    font-size: 2rem;
    color: #667eea;
}

.action-btn span {
    font-weight: 600;
}

.management-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    color: #333;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .admin-section {
        padding: 0 1rem;
        margin: 1rem auto;
    }
    
    .admin-login-card,
    .admin-dashboard {
        padding: 1.5rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .action-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* ===== ADMIN TICKETS STYLES ===== */
.tickets-section {
    margin-top: 2rem;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tickets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.tickets-header h2 {
    color: #333;
    margin: 0;
    font-size: 1.5rem;
}

.refresh-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.refresh-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.refresh-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ticket-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.ticket-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.ticket-info h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 700;
}

.ticket-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #6b7280;
}

.ticket-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ticket-status {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.status-badge,
.priority-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-content {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #667eea;
}

.ticket-content p {
    margin: 0;
    color: #374151;
    line-height: 1.6;
}

.ticket-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.ticket-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.ticket-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-view,
.btn-respond,
.btn-close {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-view {
    background: #3b82f6;
    color: white;
}

.btn-view:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-respond {
    background: #10b981;
    color: white;
}

.btn-respond:hover {
    background: #059669;
    transform: translateY(-1px);
}

.btn-close {
    background: #ef4444;
    color: white;
}

.btn-close:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.no-tickets {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.no-tickets i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #9ca3af;
}

.no-tickets h3 {
    margin: 0 0 0.5rem 0;
    color: #374151;
}

.no-tickets p {
    margin: 0;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .ticket-header,
    .ticket-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .ticket-status {
        align-items: flex-start;
        flex-direction: row;
    }
    
    .ticket-actions {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .btn-view,
    .btn-respond,
    .btn-close {
        flex: 1;
        justify-content: center;
        min-width: 100px;
    }
}

/* ===== USER MENU STYLES ===== */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.user-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.user-btn i.fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.user-btn:hover i.fa-chevron-down {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: #f8fafc;
    color: #667eea;
}

.dropdown-item.logout {
    color: #ef4444;
    border-top: 1px solid #e2e8f0;
}

.dropdown-item.logout:hover {
    background: #fef2f2;
    color: #dc2626;
}

.dropdown-divider {
    margin: 0;
    border: none;
    border-top: 1px solid #e2e8f0;
}

/* Mobile responsive per user menu */
@media (max-width: 768px) {
    .user-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .user-btn span {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .user-dropdown {
        right: -10px;
        min-width: 180px;
    }
}
