#contact {
    position: relative;
    width: 100%;
    padding: 10rem 2rem 6rem 2rem; 
    background-color: #000;
    color: #fff;
    overflow: hidden;
    z-index: 20;
}

.contact-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, rgba(0,0,0,0) 60%);
    top: 0%;
    left: 50%;
    transform: translate(-50%, -20%);
    pointer-events: none;
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 6rem;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.contact-header p {
    color: #888;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    max-width: 500px;
    line-height: 1.6;
}

.contact-form-box {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.input-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-left: 0.5rem;
}

.contact-input, .contact-textarea {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-input::placeholder, .contact-textarea::placeholder {
    color: #444;
}

.contact-textarea {
    min-height: 160px;
    resize: none;
}

.contact-input:focus, .contact-textarea:focus {
    border-color: var(--accent-purple);
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
    outline: none;
    transform: translateY(-2px);
}

.category-grid {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.cat-option {
    position: relative;
    cursor: pointer;
    flex: 1;
}

.cat-option input {
    display: none;
}

.cat-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--input-bg);
    transition: all 0.3s ease;
}

.cat-card span {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.cat-option input:checked + .cat-card {
    background: #fff;
    border-color: #fff;
}

.cat-option input:checked + .cat-card span {
    color: #000;
    font-weight: 700;
}

.submit-btn {
    margin-top: 2rem;
    background: var(--accent-purple);
    color: #fff;
    border: none;
    padding: 1.2rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px) rotate(-45deg);
}

.contact-right {
    position: relative;
    padding-top: 2rem;
}

.contact-faq-wrapper {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
}

.faq-title {
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ccc;
    transition: color 0.3s ease;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.icon-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #666;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.icon-line.h { width: 12px; height: 1.5px; }
.icon-line.v { width: 1.5px; height: 12px; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding-top: 1rem;
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

.faq-item.active .faq-question h3 {
    color: #fff;
}

.faq-item.active .icon-line.v {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .icon-line.h {
    background: var(--accent-purple);
    width: 14px;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-header h2 {
        font-size: 3rem;
    }
    
    .category-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-faq-wrapper {
        padding: 1.5rem;
    }
}
/* GDPR Minimalist Styles - Complete Version */
.gdpr-minimalist {
    margin: 1.8rem 0 1.2rem 0;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gdpr-minimalist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gdpr-minimalist:hover {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.03);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.05);
}

.gdpr-minimalist:hover::before {
    opacity: 1;
}

.gdpr-checkbox-minimal {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    position: relative;
    width: 100%;
}

.gdpr-checkbox-minimal input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 0.1rem;
    border: 1.5px solid #555;
    border-radius: 6px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkmark svg {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gdpr-checkbox-minimal input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.gdpr-checkbox-minimal input[type="checkbox"]:checked + .checkmark svg {
    opacity: 1;
    transform: scale(1);
}

.gdpr-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    user-select: none;
}

.gdpr-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gdpr-title::before {
    content: "🔒";
    font-size: 0.8rem;
    opacity: 0.7;
}

.gdpr-desc {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.gdpr-link {
    display: inline-block;
    margin-top: 0.8rem;
    margin-left: 2.2rem;
    font-size: 0.75rem;
    color: var(--accent-purple);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: -0.01em;
    position: relative;
    padding-right: 1.2rem;
}

.gdpr-link::after {
    content: "→";
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.gdpr-link:hover {
    opacity: 1;
    color: #fff;
    text-decoration: none;
    padding-right: 1.5rem;
}

.gdpr-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Hover effects */
.gdpr-checkbox-minimal:hover .checkmark {
    border-color: var(--accent-purple);
    transform: scale(1.05);
}

.gdpr-checkbox-minimal:hover .gdpr-title {
    color: var(--accent-purple);
}

/* Focus state for accessibility */
.gdpr-checkbox-minimal input[type="checkbox"]:focus-visible + .checkmark {
    outline: 2px solid var(--accent-purple);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.2);
}

/* Active state */
.gdpr-checkbox-minimal input[type="checkbox"]:active + .checkmark {
    transform: scale(0.95);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gdpr-minimalist {
        padding: 1rem 1.2rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .checkmark {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
    
    .gdpr-title {
        font-size: 0.85rem;
    }
    
    .gdpr-desc {
        font-size: 0.75rem;
    }
    
    .gdpr-link {
        margin-left: 2rem;
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .gdpr-minimalist {
        padding: 0.9rem 1rem;
    }
    
    .gdpr-title {
        font-size: 0.82rem;
    }
    
    .gdpr-desc {
        font-size: 0.72rem;
    }
    
    .gdpr-checkbox-minimal {
        gap: 0.8rem;
    }
}

/* Animation for checkbox check */
@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.gdpr-checkbox-minimal input[type="checkbox"]:checked + .checkmark svg {
    animation: checkmarkPop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* GDPR Modal Styles */
.gdpr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;
}

.gdpr-modal.active {
    display: block;
}

.gdpr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.gdpr-modal-container {
    position: relative;
    max-width: 900px;
    margin: 2rem auto;
    background: #0a0a0a;
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gdpr-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
}

.gdpr-modal-close:hover {
    color: var(--accent-purple);
    background: rgba(168, 85, 247, 0.1);
}

.gdpr-modal-content {
    padding: 3rem;
    max-height: 80vh;
    overflow-y: auto;
}

.gdpr-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gdpr-icon-badge {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
}

.gdpr-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.gdpr-subtitle {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gdpr-content {
    color: #ccc;
}

.gdpr-section {
    margin-bottom: 3rem;
}

.gdpr-section h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gdpr-section-number {
    color: var(--accent-purple);
    font-size: 1rem;
    opacity: 0.7;
    font-family: 'JetBrains Mono', monospace;
}

.gdpr-section p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #aaa;
}

.gdpr-section ul {
    list-style: none;
    padding-left: 0;
}

.gdpr-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #aaa;
}

.gdpr-section li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-purple);
}

.gdpr-section li strong {
    color: #ddd;
}

.gdpr-highlight {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.gdpr-highlight h3 {
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gdpr-right {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.gdpr-right:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

.right-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.gdpr-right h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.gdpr-right p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0;
}

.gdpr-contact-box {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #ddd;
}

.gdpr-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gdpr-compliance {
    margin-bottom: 2rem;
}

.compliance-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gdpr-badge {
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.privacy-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.secure-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.gdpr-update {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .gdpr-modal {
        padding: 1rem;
    }
    
    .gdpr-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .gdpr-header h1 {
        font-size: 2rem;
    }
    
    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
    
    .gdpr-modal-container {
        margin: 1rem auto;
    }
}

@media (max-width: 480px) {
    .gdpr-modal-content {
        padding: 1.5rem 1rem;
    }
    
    .gdpr-header h1 {
        font-size: 1.8rem;
    }
}