/* --- Contact Page Specific Styles --- */

.contact-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 5% 4rem;
    background: radial-gradient(circle at top, rgba(64, 4, 140, 0.3), transparent 60%);
}

.contact-hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    color: #ccc;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 2rem 5% 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    width: 30px; /* Aligns the text */
}

.info-item a, .info-item span {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

.social-links-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-contact a {
    color: #ccc;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links-contact a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}


/* --- Contact Form --- */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
    border-radius: 8px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

#formSuccessMessage {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--green-blur);
    border-radius: 8px;
    background: rgba(0, 255, 135, 0.05);
}
#formSuccessMessage h4 {
    margin: 0 0 0.5rem 0;
    color: var(--green-blur);
    font-size: 1.5rem;
}

/* --- Map Section --- */
.map-section {
    width: 100%;
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(220deg) brightness(1.2) contrast(0.9);
}

/* --- Responsive Adjustments --- */
@media screen and (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}