/* Contact Page Styles */
.contact-main {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 120px 40px 80px;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    position: relative;
}

.contact-form-wrapper {
    position: relative;
}

/* Contact Card */
.contact-card {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        hsla(255, 70%, 60%, 0.6),
        transparent
    );
}

.contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(139, 92, 246, 0.05),
        transparent
    );
    border-radius: 24px;
    pointer-events: none;
}

.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 70px rgba(139, 92, 246, 0.15);
}

/* Card Header */
.card-header {
    padding: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.header-icon {
    width: 24px;
    height: 24px;
    color: hsl(255, 70%, 60%);
}

.card-header span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

/* Form Styles */
.contact-form {
    padding: 32px;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(255, 70%, 60%);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input[readonly] {
    background: rgba(255, 255, 255, 0.03);
    cursor: not-allowed;
    opacity: 0.7;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, hsl(255, 70%, 60%), hsl(250, 70%, 55%));
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(255, 70%, 65%), hsl(250, 70%, 60%));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-main {
        padding: 100px 20px 60px;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .card-header,
    .contact-form {
        padding: 24px;
    }

    .card-header span {
        font-size: 1.25rem;
    }

    .contact-form-wrapper {
        padding: 0;
    }
}
