/* Contact Page Styles */
.contact-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 120px auto;
    padding: 0 30px;
    align-items: start;
}

.contact-form-container {
    background: #0f1a3b;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
}

.contact-form-container h2 {
    color: #FFD700;
}

.contact-form-container p {
    margin-bottom: 12px;
    color: #cbd5e1;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    font-size: 15px;
}

.contact-form-container button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #FFD700, #e6b800);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form-container button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #FFC700, #e6b800);
}

/* Contact Section Links */
.contact-form-container a {
    color: white;           /* white color */
    text-decoration: none;  /* remove underline */
}

.contact-form-container a:hover {
    color: #FFD700;         /* gold on hover */
    text-decoration: underline; /* optional hover effect */
}

.map-container {
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

a {
    color: white;  /* makes all links white */
}

/* Make footer links white */
/* Force footer links to white */
/* Footer links color white */
.footer a,
.footer a:visited,
.footer a:hover,
.footer a:active {
    color: white !important;   /* forces white color */
    text-decoration: none;     /* removes underline */
}

/* Responsive */
@media (max-width: 900px) {
    .contact-map-section {
        grid-template-columns: 1fr;
    }
    .map-container, .contact-form-container {
        height: auto;
    }
}

/* -------------------- */
/* Contact Form Popup */
#form-popup {
    display: none; /* hidden by default */
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f1a3b;
    color: #FFD700;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    font-weight: bold;
    text-align: center;
    max-width: 400px;
}

#form-popup button {
    margin-left: 20px;
    padding: 5px 10px;
    background: #FFD700;
    border: none;
    color: #0f1a3b;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
}

#form-popup button:hover {
    background: #e6b800;
}

#form-popup {
    display: none;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f1a3b;
    color: #FFD700;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    z-index: 100;
    text-align: center;
}