:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --dark-border: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animation classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--dark-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.theme-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(20deg);
}

/* Light Theme Variables */
:root[data-theme="light"] {
    --dark-bg: #ffffff;
    --dark-surface: #f8fafc;
    --dark-border: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --primary-color: #3b82f6;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
}

/* Light Theme Styles */
:root[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--dark-border);
}

:root[data-theme="light"] .hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

:root[data-theme="light"] .download-card,
:root[data-theme="light"] .feature-card,
:root[data-theme="light"] .step,
:root[data-theme="light"] .req-item {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

:root[data-theme="light"] .particle {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.chat-toggle i {
    font-size: 28px;
    color: white;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.chat-header {
    background: linear-gradient(135deg, #25d366, #128c7e);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar i {
    font-size: 18px;
}

.chat-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.bot-message .message-content {
    background: #e3f2fd;
    color: #1976d2;
    padding: 12px 16px;
    border-radius: 18px 18px 18px 4px;
    max-width: 80%;
    align-self: flex-start;
}

.user-message .message-content {
    background: #25d366;
    color: white;
    padding: 12px 16px;
    border-radius: 18px 18px 4px 18px;
    max-width: 80%;
    align-self: flex-end;
}

.message-time {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
    align-self: flex-start;
}

.user-message .message-time {
    align-self: flex-end;
}

.chat-input {
    padding: 16px;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 8px;
}

.chat-input input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 16px;
    outline: none;
    font-size: 14px;
}

.chat-input button {
    background: #25d366;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-input button:hover {
    background: #128c7e;
}

.chat-actions {
    padding: 16px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.action-btn {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.action-btn:hover {
    background: #128c7e;
}

/* Contact Form Styles */
.contact-form-container {
    background: var(--dark-surface);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(100, 108, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}

.form-group textarea + .input-icon {
    top: 24px;
    transform: none;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 108, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    font-size: 18px;
}

/* Representatives Grid Layout */
.representatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Send Email Button */
.send-email-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.send-email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(100, 108, 255, 0.3);
}

/* Email Modal */
.email-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.email-modal.active {
    display: flex;
}

.email-modal-content {
    background: var(--dark-surface);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.email-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--dark-border);
}

.email-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.email-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.email-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.email-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.email-form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.email-form-group input,
.email-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.email-form-group input:focus,
.email-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(100, 108, 255, 0.1);
}

.email-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.email-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.email-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 108, 255, 0.3);
}

.email-submit-btn:active {
    transform: translateY(0);
}

.email-submit-btn i {
    font-size: 18px;
}

/* Mobile Contact Form */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 24px;
        margin-bottom: 30px;
    }
    
    .form-header h3 {
        font-size: 20px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px 14px 45px;
        font-size: 15px;
    }
    
    .input-icon {
        left: 14px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Form Success Modal */
.form-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--dark-surface);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

.modal-header {
    margin-bottom: 20px;
}

.modal-header i {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 12px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-body {
    margin-bottom: 24px;
}

.modal-body p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.modal-footer {
    display: flex;
    justify-content: center;
}

.modal-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 108, 255, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-md);
}

.logo-icon i {
    font-size: 20px;
    color: white;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    background: var(--dark-surface);
    padding: 6px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--dark-border);
}

.lang-btn {
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.lang-flag {
    font-size: 16px;
}

/* Hero Container Fix */
.hero .container {
    position: relative;
    z-index: 2;
    overflow: visible !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box !important;
}

.hero {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: visible !important;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    width: 100% !important;
    box-sizing: border-box !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.1;
    z-index: -1;
}

.hero h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    overflow: visible !important;
    width: auto !important;
    max-width: none !important;
    min-width: 100% !important;
    display: inline-block !important;
    box-sizing: border-box !important;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Floating Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { top: 40%; left: 80%; animation-delay: 2s; }
.particle:nth-child(4) { top: 60%; left: 15%; animation-delay: 3s; }
.particle:nth-child(5) { top: 70%; left: 70%; animation-delay: 4s; }
.particle:nth-child(6) { top: 80%; left: 30%; animation-delay: 5s; }
.particle:nth-child(7) { top: 10%; left: 60%; animation-delay: 0.5s; }
.particle:nth-child(8) { top: 50%; left: 90%; animation-delay: 1.5s; }
.particle:nth-child(9) { top: 25%; left: 50%; animation-delay: 2.5s; }
.particle:nth-child(10) { top: 75%; left: 40%; animation-delay: 3.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Gradient Text Animation */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Typing Animation - RESTORED */
.typing-animation {
    overflow: visible !important;
    border-right: 3px solid var(--primary-color);
    white-space: nowrap !important;
    animation: typing 4s steps(50, end), blink-caret 0.75s step-end infinite;
    width: 0 !important;
    max-width: none !important;
    min-width: 0 !important;
    display: inline-block !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}

@keyframes typing {
    0% { 
        width: 0 !important; 
        opacity: 1;
        overflow: visible !important;
    }
    100% { 
        width: 100% !important; 
        opacity: 1;
        overflow: visible !important;
    }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-color); }
}

/* Gradient Text Animation - ULTRA FIXED */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    display: inline-block !important;
    overflow: visible !important;
    white-space: nowrap !important;
    width: auto !important;
    max-width: none !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
}

/* Download Section */
.download-card {
    background: var(--dark-surface);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    margin: -60px auto 60px;
    max-width: 800px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(20px);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
    font-family: inherit;
    min-width: 200px;
    justify-content: center;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.download-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.download-btn .icon {
    font-size: 20px;
}

/* Progress Bar */
.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 8px;
    position: relative;
    margin: 20px 0;
}

.progress-fill {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: var(--border-radius);
}

/* Features */
.features {
    background: var(--dark-bg);
    padding: 120px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 80px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 100px !important;
    position: relative;
    z-index: 1;
    margin: 50px 0;
}

.feature-card {
    padding: 32px 28px;
    border-radius: 20px;
    background: rgba(30, 35, 50, 0.8);
    border: 1px solid rgba(100, 108, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 20px 0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(100, 108, 255, 0.1) 0%, 
        rgba(100, 255, 218, 0.05) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(100, 108, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(100, 108, 255, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
    box-shadow: 
        0 8px 16px rgba(100, 108, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary), rgba(100, 108, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    opacity: 0.9;
}

/* Steps */
.steps {
    background: var(--dark-surface);
    padding: 80px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px !important;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px !important;
        margin: 20px 0;
    }
    
    .step {
        padding: 25px 20px;
        margin: 10px 0;
        text-align: center;
    }
    
    .step-icon {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin: 0 0 15px 0;
    }
    
    .step h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .step p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .steps-container {
        gap: 15px !important;
        margin: 15px 0;
    }
    
    .step {
        padding: 20px 15px;
        margin: 8px 0;
    }
    
    .step-icon {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
        margin: 0 0 12px 0;
    }
    
    .step h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .step p {
        font-size: 12px;
        line-height: 1.4;
    }
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: var(--dark-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(100, 108, 255, 0.3);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 25px 0;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    position: relative;
}

.step-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.8;
}

.step h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* Requirements */
.requirements {
    background: var(--dark-bg);
    padding: 80px 0;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px !important;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .req-grid {
        grid-template-columns: 1fr;
        gap: 20px !important;
        margin: 20px 0;
    }
    
    .req-item {
        padding: 25px 20px;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .req-grid {
        gap: 15px !important;
        margin: 15px 0;
    }
    
    .req-item {
        padding: 20px 15px;
        margin: 8px 0;
    }
    
    .req-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .req-item h3 {
        font-size: 16px;
    }
    
    .req-item p {
        font-size: 13px;
    }
}

.req-item {
    padding: 32px 24px;
    background: var(--dark-surface);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    margin: 20px 0;
}

.req-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    opacity: 0;
    transition: var(--transition);
}

.req-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(100, 255, 218, 0.3);
}

.req-item:hover::before {
    opacity: 1;
}

.req-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 0 18px 0;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.req-item h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.req-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* Representative Section */
.representative-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.representative-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.representative-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-xl);
}

.rep-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.rep-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    font-size: 32px;
    font-weight: bold;
    color: white;
    box-shadow: var(--shadow-lg);
}

.rep-info h3 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.rep-info p {
    margin: 4px 0;
    opacity: 0.9;
    font-size: 16px;
}

.rep-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.rep-contact, .rep-location {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item, .location-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon, .location-icon {
    font-size: 20px;
    width: 32px;
    text-align: center;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.rep-skills {
    grid-column: 1 / -1;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.rep-skills h4 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}

.rep-skills p {
    margin: 0 0 20px 0;
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--dark-border);
}

footer p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-dark);
}

/* Language Visibility Control - NUCLEAR OPTION */
[data-lang] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Default language will be set by JavaScript - no CSS override needed */

/* Active language override - SUPER NUCLEAR */
[data-lang].active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    position: static !important;
    left: auto !important;
}

.features-grid [data-lang].active {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    position: static !important;
    left: auto !important;
}

.steps-container [data-lang].active {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    position: static !important;
    left: auto !important;
}

.req-grid [data-lang].active {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    position: static !important;
    left: auto !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .download-card {
        padding: 32px 24px;
        margin: -40px auto 40px;
    }
    
    .features, .steps, .requirements, .representative-section {
        padding: 80px 0;
    }
    
    .features-grid, .req-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px !important;
    }
    
    .rep-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .rep-header {
        flex-direction: column;
        text-align: center;
    }
    
    .rep-avatar {
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .language-switcher {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
        overflow: visible !important;
        width: auto !important;
        max-width: none !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .gradient-text {
        overflow: visible !important;
        width: auto !important;
        max-width: none !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .typing-animation {
        overflow: visible !important;
        width: 0 !important;
        max-width: none !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        padding-right: 30px !important;
    }
    
    .hero .container {
        padding: 0 12px !important;
        overflow: visible !important;
    }
    
    .download-btn {
        padding: 12px 24px;
        font-size: 16px;
        min-width: 160px;
    }
    
    .feature-card, .step, .req-item {
        padding: 24px;
    }
    
    .representative-card {
        padding: 32px 24px;
    }
}

/* Contact Section */
.contact-section {
    background: 
        linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%),
        radial-gradient(circle at 20% 30%, rgba(100, 108, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(100, 255, 218, 0.1) 0%, transparent 40%),
        linear-gradient(to bottom, #0a0e27 0%, #1a1f3a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Light Theme Contact Section */
:root[data-theme="light"] .contact-section {
    background: 
        linear-gradient(135deg, rgba(240, 242, 255, 0.95) 0%, rgba(245, 247, 255, 0.98) 100%),
        radial-gradient(circle at 20% 30%, rgba(100, 108, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(100, 255, 218, 0.06) 0%, transparent 40%),
        linear-gradient(to bottom, #f0f2ff 0%, #f5f7ff 100%);
}

:root[data-theme="light"] .contact-section::before {
    background-image: 
        repeating-linear-gradient(0deg, rgba(100, 108, 255, 0.05) 0px, transparent 1px, transparent 40px, rgba(100, 108, 255, 0.05) 41px),
        repeating-linear-gradient(90deg, rgba(100, 108, 255, 0.05) 0px, transparent 1px, transparent 40px, rgba(100, 108, 255, 0.05) 41px);
}

:root[data-theme="light"] .contact-section::after {
    background: linear-gradient(to bottom, rgba(100, 108, 255, 0.08) 0%, transparent 100%);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(100, 108, 255, 0.03) 0px, transparent 1px, transparent 40px, rgba(100, 108, 255, 0.03) 41px),
        repeating-linear-gradient(90deg, rgba(100, 108, 255, 0.03) 0px, transparent 1px, transparent 40px, rgba(100, 108, 255, 0.03) 41px);
    opacity: 0.5;
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(100, 108, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.contact-header .section-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        var(--secondary-color) 50%, 
        var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.contact-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--primary-color);
}

.contact-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: 
        linear-gradient(135deg, rgba(30, 35, 60, 0.9) 0%, rgba(20, 25, 45, 0.95) 100%),
        linear-gradient(to bottom right, rgba(100, 108, 255, 0.05), rgba(100, 255, 218, 0.05));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(100, 108, 255, 0.2);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(100, 108, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--primary-color) 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 60px rgba(100, 108, 255, 0.25),
        0 0 0 1px rgba(100, 108, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(100, 108, 255, 0.4);
}

.contact-card:hover::before {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

.contact-card:hover::after {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

/* Light Theme Contact Cards */
:root[data-theme="light"] .contact-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 255, 0.98) 100%),
        linear-gradient(to bottom right, rgba(100, 108, 255, 0.03), rgba(100, 255, 218, 0.03));
    border: 1px solid rgba(100, 108, 255, 0.15);
    box-shadow: 
        0 10px 40px rgba(100, 108, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

:root[data-theme="light"] .contact-card:hover {
    box-shadow: 
        0 25px 60px rgba(100, 108, 255, 0.15),
        0 0 0 1px rgba(100, 108, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(100, 108, 255, 0.3);
}

:root[data-theme="light"] .contact-info h3 {
    color: #1a1f3a;
    text-shadow: none;
}

:root[data-theme="light"] .contact-title {
    color: rgba(26, 31, 58, 0.8);
}

:root[data-theme="light"] .contact-company {
    color: rgba(26, 31, 58, 0.6);
}

:root[data-theme="light"] .contact-country {
    background: linear-gradient(135deg, rgba(100, 108, 255, 0.1), rgba(100, 255, 218, 0.08));
    border: 1px solid rgba(100, 108, 255, 0.2);
    color: #1a1f3a;
}

:root[data-theme="light"] .contact-item {
    background: rgba(100, 108, 255, 0.05);
    border: 1px solid rgba(100, 108, 255, 0.1);
}

:root[data-theme="light"] .contact-item:hover {
    background: rgba(100, 108, 255, 0.08);
    border-color: rgba(100, 108, 255, 0.2);
}

:root[data-theme="light"] .contact-label {
    color: rgba(26, 31, 58, 0.6);
}

:root[data-theme="light"] .contact-content a,
:root[data-theme="light"] .contact-content span {
    color: #1a1f3a;
}

:root[data-theme="light"] .contact-content a:hover {
    color: var(--primary-color);
}

:root[data-theme="light"] .send-email-btn {
    color: white;
}

:root[data-theme="light"] .contact-header .section-title {
    background: linear-gradient(135deg, 
        #1a1f3a 0%, 
        var(--primary-color) 50%, 
        var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

:root[data-theme="light"] .contact-subtitle {
    color: rgba(26, 31, 58, 0.7);
}

/* Light Theme Logo Styling */
:root[data-theme="light"] .contact-avatar.company-logo {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(100, 108, 255, 0.2);
    box-shadow: 0 8px 24px rgba(100, 108, 255, 0.15);
}

:root[data-theme="light"] .contact-avatar.company-logo:hover {
    box-shadow: 0 12px 32px rgba(100, 108, 255, 0.25);
    border-color: rgba(100, 108, 255, 0.3);
}

/* Map Container */
.map-container {
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

.map-header {
    text-align: center;
    margin-bottom: 32px;
}

.map-header h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

#contactMap {
    border: 2px solid rgba(100, 108, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(100, 108, 255, 0.2);
}

/* Light Theme Map */
:root[data-theme="light"] .map-header h3 {
    background: linear-gradient(135deg, #1a1f3a 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

:root[data-theme="light"] .map-header p {
    color: rgba(26, 31, 58, 0.7);
}

:root[data-theme="light"] #contactMap {
    border-color: rgba(100, 108, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(100, 108, 255, 0.15),
        0 0 0 1px rgba(100, 108, 255, 0.15);
}

/* Custom Marker Styles */
.custom-marker {
    background: transparent !important;
    border: none !important;
}

.custom-marker div {
    animation: markerFloat 3s ease-in-out infinite;
}

@keyframes markerFloat {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(-8px) rotate(-45deg); }
}

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-tip {
    background: white;
}

/* Map Controls */
.map-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.map-btn {
    padding: 12px 24px;
    background: rgba(100, 108, 255, 0.1);
    border: 2px solid rgba(100, 108, 255, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.map-btn:hover {
    background: rgba(100, 108, 255, 0.2);
    border-color: rgba(100, 108, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 108, 255, 0.3);
}

.map-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(100, 108, 255, 0.4);
}

/* Light Theme Map Controls */
:root[data-theme="light"] .map-btn {
    background: rgba(100, 108, 255, 0.08);
    border-color: rgba(100, 108, 255, 0.2);
    color: #1a1f3a;
}

:root[data-theme="light"] .map-btn:hover {
    background: rgba(100, 108, 255, 0.15);
    border-color: rgba(100, 108, 255, 0.4);
}

:root[data-theme="light"] .map-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

/* Mobile Map */
@media (max-width: 768px) {
    .map-container {
        margin: 40px 0;
    }
    
    .map-header h3 {
        font-size: 24px;
    }
    
    .map-controls {
        gap: 8px;
    }
    
    .map-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    #contactMap {
        height: 450px !important;
    }
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
}

.contact-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Company Logo Styling */
.contact-avatar.company-logo {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(100, 108, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-avatar.company-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(100, 108, 255, 0.4);
}

.contact-avatar.company-logo .logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-company {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.contact-country {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(100, 108, 255, 0.2), rgba(100, 255, 218, 0.15));
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    border: 1px solid rgba(100, 108, 255, 0.3);
}

.country-flag {
    font-size: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(100, 108, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(100, 108, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(100, 108, 255, 0.15);
    border-color: rgba(100, 108, 255, 0.4);
    transform: translateX(4px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(100, 108, 255, 0.3);
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-content a,
.contact-content span {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.contact-content a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-card {
        padding: 24px;
    }
    
    .contact-card-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .contact-country {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-header {
        margin-bottom: 60px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-avatar {
        width: 60px;
        height: 60px;
    }
    
    .contact-avatar.company-logo {
        padding: 6px;
    }
    
    .contact-info h3 {
        font-size: 20px;
    }
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

.nav-link i {
    font-size: 16px;
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--dark-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    box-shadow: var(--shadow-md);
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-logo p {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--dark-surface);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--dark-border);
}

.footer-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-link i {
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    header {
        padding: 12px 0;
        background: rgba(30, 41, 59, 0.95);
        backdrop-filter: blur(25px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }
    
    .logo {
        order: 1;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .logo-text h1 {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .logo-text p {
        font-size: 12px;
        opacity: 0.8;
    }
    
    .main-nav {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 12px;
    }
    
    .nav-link {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 8px;
        min-width: 120px;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-1px);
    }
    
    .nav-link.active {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        box-shadow: 0 4px 12px rgba(100, 108, 255, 0.3);
    }
    
    .language-switcher {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 8px;
    }
    
    .lang-btn {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 6px;
        min-width: 50px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }
    
    .lang-btn:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-1px);
    }
    
    .lang-btn.active {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        box-shadow: 0 2px 8px rgba(100, 108, 255, 0.3);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-link {
        width: 100%;
        justify-content: center;
    }
}

/* Ultra Mobile Header (480px altı) */
@media (max-width: 480px) {
    header {
        padding: 10px 0;
        background: rgba(30, 41, 59, 0.98);
        backdrop-filter: blur(30px);
    }
    
    .header-content {
        gap: 12px;
        padding: 0 12px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 11px;
    }
    
    .main-nav {
        flex-direction: row !important;
        gap: 8px;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-link {
        flex: 1;
        padding: 8px 12px;
        font-size: 13px;
        min-width: auto;
        text-align: center;
        justify-content: center;
    }
    
    .nav-link i {
        font-size: 14px;
    }
    
    .language-switcher {
        gap: 6px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 45px;
    }
    
    .lang-btn span:last-child {
        display: none;
    }
}
