body {
    background: #030712;
}

.contact-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #282725 0%, #df1a24 50%, #282725 100%);
    background-attachment: fixed;
    position: relative;
    color: #f9fafb;
    padding: 4rem 1.5rem 3rem;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(223, 26, 36, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(223, 26, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #fee2e2 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

.contact-section-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: #fecaca;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-text {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    color: #e5e7eb;
}

.contact-highlight {
    font-weight: 600;
    color: #fecaca;
}

.contact-block {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(223, 26, 36, 0.15) 0%, rgba(223, 26, 36, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(223, 26, 36, 0.3);
    margin: 1.5rem 0;
}

.contact-block p {
    margin: 0.3rem 0;
}

.contact-footer-note {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: #d1d5db;
    font-style: italic;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(40, 39, 37, 0.9) 0%, rgba(50, 49, 47, 0.9) 100%);
    border: 2px solid rgba(223, 26, 36, 0.4);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(223, 26, 36, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f9fafb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e5e7eb;
}

.form-input {
    padding: 0.875rem 1rem;
    background: rgba(40, 39, 37, 0.6);
    border: 1px solid rgba(223, 26, 36, 0.3);
    border-radius: 8px;
    color: #f9fafb;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #df1a24;
    background: rgba(40, 39, 37, 0.8);
    box-shadow: 0 0 0 3px rgba(223, 26, 36, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #c21822 0%, #a5151e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 26, 36, 0.4);
}

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

.form-message {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
}

.form-message-success {
    display: block;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.form-email-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #df1a24 0%, #c21822 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-email-link:hover {
    background: linear-gradient(135deg, #c21822 0%, #a5151e 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(223, 26, 36, 0.4);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
}


