/* --- Contact Page Styles (Minimalist & Elegant) --- */

.contact-page-section {
    padding: 50px 0;
}

.contact-main-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-main-header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #24292e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.contact-main-header .lead-text {
    font-size: 1.1rem;
    color: #586069;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

body.dark-mode .contact-main-header h1 {
    color: #c9d1d9;
}
body.dark-mode .contact-main-header .lead-text {
    color: #8b949e;
}


.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.contact-info-item i { /* Icon */
    font-size: 1.5rem; /* Larger icons */
    color: #0056b3;   /* Accent color */
    margin-right: 15px;
    width: 30px; /* Fixed width for icon alignment */
    text-align: center;
}
.contact-info-item .info-text a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-info-item .info-text a:hover {
    color: #003d80;
    text-decoration: underline;
}

body.dark-mode .contact-info-item i {
    color: #58a6ff;
}
body.dark-mode .contact-info-item .info-text {
    color: #b1bac4;
}
body.dark-mode .contact-info-item .info-text a {
    color: #58a6ff;
}
body.dark-mode .contact-info-item .info-text a:hover {
    color: #80baff;
}


.contact-form-section .form-label {
    font-weight: 500;
    color: #343a40;
}
body.dark-mode .contact-form-section .form-label {
    color: #c9d1d9;
}
.contact-form-section .form-control {
    border-radius: 0.25rem; /* Standard Bootstrap radius */
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.contact-form-section .form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
body.dark-mode .contact-form-section .form-control {
    background-color: #22272e;
    border-color: #484f58;
    color: #c9d1d9;
}
body.dark-mode .contact-form-section .form-control::placeholder {
    color: #6a737d;
}
body.dark-mode .contact-form-section .form-control:focus {
    background-color: #22272e; /* Keep background same on focus */
    border-color: #58a6ff;
    box-shadow: 0 0 0 0.25rem rgba(88, 166, 255, 0.25);
}


.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 30px; /* Space above map */
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

body.dark-mode .map-container {
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
/* Optional: If map looks too bright in dark mode, you can add a filter */
/*
body.dark-mode .map-container iframe {
    filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}
*/

.contact-section-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #24292e;
    margin-bottom: 25px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e1e4e8;
}
body.dark-mode .contact-section-title {
    color: #c9d1d9;
    border-bottom-color: #30363d;
}