/* ========================================
   CONTACT PAGE - PROFESSIONAL & ELEGANT
   Corporate B2B Style
   ======================================== */

/* Hero Section */
.hero-contact {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, #000000 0%, #0a0a0f 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-title-contact {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle-contact {
    font-size: 1.25rem;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #0a0a0f;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info (Left Column) */
.contact-info {
    padding-right: 40px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.contact-method {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d4af37;
    margin-bottom: 1rem;
}

.contact-method p {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #d4af37;
}

.contact-note {
    font-size: 0.9rem;
    color: #808080;
    margin-top: 0.5rem;
}

/* Social Links */
.social-links-simple {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link-simple {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.social-link-simple:hover {
    color: #d4af37;
}

/* Contact Form (Right Column) */
.contact-form-wrapper {
    background: rgba(20, 20, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(0, 0, 0, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select {
    cursor: pointer;
}

/* Submit Button */
.btn-submit {
    background: #d4af37;
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

.btn-submit:hover {
    background: #e5c158;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .hero-title-contact {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .hero-contact {
        padding: 120px 0 60px;
    }
    
    .hero-title-contact {
        font-size: 2.25rem;
    }
    
    .hero-subtitle-contact {
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title-contact {
        font-size: 1.875rem;
    }
    
    .contact-method {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .social-links-simple {
        flex-direction: column;
        gap: 1rem;
    }
}
