/* Contact Page Specific Styles */

/* --- NEW: Contact Hero Styling --- */
.contact-hero {
    padding: 80px 0 40px; /* Spacing top and bottom */
    text-align: center;
    background-color: var(--light-gray); /* Subtle background separation */
    margin-bottom: -50px; /* Pulls the grid up slightly for a layered look */
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color); /* Deep Navy Blue */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Optional: Small orange underline for the title */
.contact-hero h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color); /* Orange */
    margin: 10px auto 0;
    border-radius: 2px;
}

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




.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background-color: var(--white);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

/* Left Panel - Now Blue */
.contact-info-wrapper {
    background-color: var(--primary-color); /* New Logo Blue */
    color: var(--white);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

.contact-info-wrapper h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-info-wrapper p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start; /* Align to top for long addresses */
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--white);
}

.contact-details li i {
    color: var(--accent-color); /* Orange Icon on Blue Background */
    font-size: 20px;
    width: 25px;
    text-align: center;
    margin-top: 3px;
}

.contact-socials {
    margin-top: auto; /* Pushes to the bottom */
    display: flex;
    gap: 15px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s, border-color 0.3s;
}

.contact-socials a:hover {
    background-color: var(--accent-color); /* Orange Hover */
    border-color: var(--accent-color);
}

.contact-form-wrapper {
    padding: 50px 40px;
}

.contact-form-wrapper form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-wrapper .form-group {
    flex: 1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper label {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Blue Focus State */
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(17, 76, 156, 0.1); /* Blue Shadow */
}

.contact-form-wrapper textarea {
    resize: vertical;
}

/* The button color is handled globally by .btn-primary (Orange) */
.contact-form-wrapper .btn {
    width: auto;
    padding: 12px 30px;
}

.map-section {
    width: 100%;
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-wrapper {
        border-radius: 10px 10px 0 0;
    }
    .contact-form-wrapper {
        border-radius: 0 0 10px 10px;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper form .form-row {
        flex-direction: column;
        gap: 0;
    }
}