.contact-section {
    padding: 6rem 2rem;
    min-height: calc(100vh - 80px);
}

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

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    padding: 3rem 2rem;
    color: var(--text-dark);
}

.info-header {
    margin-bottom: 2.5rem;
}

.info-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-header p {
    opacity: 0.8;
    line-height: 1.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    opacity: 0.8;
    line-height: 1.4;
}

.social-links-contact {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
}

.social-links-contact a {
    color: var(--text-dark);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links-contact a:hover {
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    padding: 3rem;
}

.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-yellow);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-label i {
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

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

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-yellow);
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        border-radius: 15px 15px 0 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .info-header h3 {
        font-size: 1.5rem;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
} 