    .contact-hero {
        background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
        padding: 80px 0 60px;
        position: relative;
        overflow: hidden;
    }
    
    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 1rem;
    }
    
    .contact-hero p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-section {
        background: #0a0a0f;
        padding: 60px 0;
        min-height: calc(100vh - 300px);
    }
    
    .contact-card {
        background: linear-gradient(145deg, #16161f 0%, #1a1a25 100%);
        border: 1px solid rgba(99, 102, 241, 0.15);
        border-radius: 16px;
        padding: 40px;
    }
    
    .contact-card h3 {
        color: #fff;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }
    
    .form-label {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-control {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: #fff;
        padding: 12px 16px;
        transition: all 0.2s ease;
    }
    
    .form-control:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: #6366f1;
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
        color: #fff;
    }
    
    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }
    
    .btn-submit {
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        border: none;
        border-radius: 10px;
        color: #fff;
        font-weight: 600;
        padding: 14px 32px;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    }
    
    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
        color: #fff;
    }
    
    .info-card {
        background: linear-gradient(145deg, #16161f 0%, #1a1a25 100%);
        border: 1px solid rgba(99, 102, 241, 0.15);
        border-radius: 16px;
        padding: 30px;
        height: 100%;
    }
    
    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .info-item:last-child {
        margin-bottom: 0;
    }
    
    .info-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .info-icon i {
        color: #8b5cf6;
        font-size: 1.2rem;
    }
    
    .info-content h5 {
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .info-content p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        margin: 0;
    }
    
    .feature-box {
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.2);
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .feature-box:hover {
        transform: translateY(-4px);
        border-color: rgba(99, 102, 241, 0.4);
    }
    
    .feature-box i {
        font-size: 2rem;
        color: #8b5cf6;
        margin-bottom: 12px;
    }
    
    .feature-box h6 {
        color: #fff;
        font-weight: 600;
        margin-bottom: 6px;
    }
    
    .feature-box p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.8rem;
        margin: 0;
    }
    
    .form-check-input {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .form-check-input:checked {
        background-color: #6366f1;
        border-color: #6366f1;
    }
    
    .form-check-label {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }
    
    /* Light Theme Styles */
    [data-theme="light"] .contact-hero {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    }
    
    [data-theme="light"] .contact-hero::before {
        background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    }
    
    [data-theme="light"] .contact-hero h1 {
        color: #1e293b;
    }
    
    [data-theme="light"] .contact-hero p {
        color: #64748b;
    }
    
    [data-theme="light"] .contact-section {
        background: #f8fafc;
    }
    
    [data-theme="light"] .contact-card {
        background: #fff;
        border-color: #e2e8f0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    
    [data-theme="light"] .contact-card h3 {
        color: #1e293b;
    }
    
    [data-theme="light"] .form-label {
        color: #475569;
    }
    
    [data-theme="light"] .form-control {
        background: #fff;
        border-color: #e2e8f0;
        color: #1e293b;
    }
    
    [data-theme="light"] .form-control:focus {
        background: #fff;
        border-color: #6366f1;
        color: #1e293b;
    }
    
    [data-theme="light"] .form-control::placeholder {
        color: #94a3b8;
    }
    
    [data-theme="light"] .info-card {
        background: #fff;
        border-color: #e2e8f0;
    }
    
    [data-theme="light"] .info-card h5 {
        color: #1e293b;
    }
    
    [data-theme="light"] .info-card p {
        color: #64748b;
    }
    
    [data-theme="light"] .info-card a {
        color: #6366f1;
    }
    
    [data-theme="light"] .office-card {
        background: #f1f5f9;
        border-color: #e2e8f0;
    }
    
    [data-theme="light"] .office-card h6 {
        color: #1e293b;
    }
    
    [data-theme="light"] .office-card p {
        color: #64748b;
    }
    
    [data-theme="light"] .form-check-input {
        background-color: #fff;
        border-color: #e2e8f0;
    }
    
    [data-theme="light"] .form-check-label {
        color: #475569;
    }
