
body.page-contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
    font-family: 'Arial', 'Helvetica', sans-serif !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.page-contact * {
    color: #ffffff !important;
}

body.page-contact .contact-header h1 {
    color: #DDBE58 !important;
}

body.page-contact .contact-info h3 {
    color: #DDBE58 !important;
}

body.page-contact .error-message {
    color: #ff6b6b !important;
}

body.page-contact .success-message {
    color: #28a745 !important;
}

.contact-page {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
    padding: 20px !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(221,190,88,0.05)"/><circle cx="80" cy="80" r="1" fill="rgba(221,190,88,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(221,190,88,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(221,190,88,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(221,190,88,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.contact-container {
    background: rgba(30, 30, 30, 0.95) !important;
    border-radius: 15px !important;
    padding: 40px !important;
    max-width: 800px !important;
    width: 100% !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(221, 190, 88, 0.2) !important;
    position: relative !important;
    z-index: 1 !important;
}

.contact-header {
    text-align: center !important;
    margin-bottom: 40px !important;
}

.contact-header h1 {
    font-size: 2.5rem !important;
    font-weight: bold !important;
    margin-bottom: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.contact-header p {
    font-size: 1.1rem !important;
    opacity: 0.8 !important;
    margin: 0 !important;
}

.success-message,
.error-message {
    padding: 15px 20px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
    font-weight: 500 !important;
    text-align: center !important;
}

.success-message {
    background: rgba(40, 167, 69, 0.1) !important;
    border: 1px solid rgba(40, 167, 69, 0.3) !important;
}

.error-message {
    background: rgba(255, 107, 107, 0.1) !important;
    border: 1px solid rgba(255, 107, 107, 0.3) !important;
}

.contact-form {
    margin-bottom: 40px !important;
}

.form-group {
    margin-bottom: 25px !important;
}

.form-group label {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: #DDBE58 !important;
}

.form-group input,
.form-group textarea {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 2px solid rgba(221, 190, 88, 0.3) !important;
    border-radius: 8px !important;
    background: rgba(20, 20, 20, 0.8) !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: #DDBE58 !important;
    background: rgba(30, 30, 30, 0.9) !important;
    box-shadow: 0 0 15px rgba(221, 190, 88, 0.2) !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

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

.submit-btn {
    width: 100% !important;
    padding: 18px 30px !important;
    background: linear-gradient(135deg, #DDBE58 0%, #B8941F 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #000000 !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(221, 190, 88, 0.3) !important;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #B8941F 0%, #DDBE58 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(221, 190, 88, 0.4) !important;
}

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

.contact-info {
    margin-top: 40px !important;
    padding-top: 30px !important;
    border-top: 1px solid rgba(221, 190, 88, 0.2) !important;
    text-align: center !important;
}

.info-item {
    display: inline-block !important;
    padding: 20px 30px !important;
    background: rgba(20, 20, 20, 0.5) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(221, 190, 88, 0.1) !important;
    transition: all 0.3s ease !important;
}

.info-item:hover {
    background: rgba(30, 30, 30, 0.7) !important;
    border-color: rgba(221, 190, 88, 0.3) !important;
    transform: translateY(-2px) !important;
}

.info-item h3 {
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
    font-weight: bold !important;
}

.info-item p {
    margin: 0 !important;
    opacity: 0.8 !important;
    font-size: 0.95rem !important;
}

.email-protected {
    font-family: 'Courier New', monospace !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

.email-protected:hover {
    color: #DDBE58 !important;
    text-shadow: 0 0 10px rgba(221, 190, 88, 0.3) !important;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 30px 20px !important;
        margin: 20px !important;
    }
    
    .contact-header h1 {
        font-size: 2rem !important;
    }
    
    .contact-info {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px !important;
    }
    
    .submit-btn {
        padding: 15px 25px !important;
        font-size: 1rem !important;
    }
}

.contact-container {
    animation: fadeInUp 0.6s ease-out !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, transparent, rgba(221, 190, 88, 0.1), transparent) !important;
    border-radius: 15px !important;
    z-index: -1 !important;
    animation: borderGlow 3s ease-in-out infinite !important;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
} 