/* Contact Page Styles */
.contact-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-hero {
    height: 300px;
    background-image: url('/img/banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.7);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-xs);
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: var(--light-color);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    flex: 1;
    padding: var(--space-xl) 0;
    background-color: var(--dark-color);
}

.contact-container {
    display: flex;
    gap: var(--space-lg);
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.contact-info p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-sm);
}

.contact-detail span {
    font-size: 0.95rem;
}

.contact-form {
    flex: 1;
    background-color: var(--dark-accent);
    padding: var(--space-lg);
    border-radius: 8px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    color: var(--light-color);
}

.form-control {
    width: 100%;
    padding: var(--space-sm);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 4px;
    color: var(--light-color);
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

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

.btn-submit {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    width: 100%;
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Map Section */
.map-section {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(92%) hue-rotate(180deg);
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .map-section {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: var(--space-md);
    }
}