/* Header Section - "Contact Us" */
/* HEADER SECTION */
.header-section {
    position: relative;
    width: 100%;
    min-height: 300px;
    padding: 4rem 10%;
    background-image: url('Images/ContactBanner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    box-sizing: border-box;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(41, 128, 185, 0.4), rgba(52, 152, 219, 0.4));
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.2;
    max-width: 100%;
    word-break: break-word;
    white-space: normal;
    letter-spacing: -1px;
}

/* GENERAL CONTENT SECTION */
.content-section {
    background-color: #f3f4f6;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 2rem;
    text-align: center;
}

/* CONTACT INFO & FORM SECTION */
.contact-info-form-section {
    background-color: #f3f4f6;
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-box {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    color: #3498db;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item div {
    flex-grow: 1;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* FORM STYLING */
.get-in-touch-form-container {
    padding: 0;
}

.get-in-touch-form-container h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
    .form-row.two-columns {
        flex-direction: row;
    }

    .form-row.two-columns .form-group {
        flex: 1;
    }
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #555;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="submit"] {
    background-color: #3498db;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    width: 100%;
    margin-top: 1.5rem;
}

.form-group input[type="submit"]:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* LOCATION SECTION */
.location-section {
    background-color: #f3f4f6;
    padding: 4rem 0;
    text-align: center;
}

.location-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 2rem;
}

.map-container {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 1024px) {
    .header-content {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .header-section {
        padding: 3rem 5%;
        min-height: 250px;
    }

    .header-content {
        font-size: 2.4rem;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row.two-columns {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header-section {
        padding: 2rem 1rem;
        min-height: 200px;
    }

    .header-content {
        font-size: 1.8rem;
    }

    .content-wrapper h2,
    .location-section h2 {
        font-size: 2rem;
    }

    .get-in-touch-form-container h3 {
        font-size: 1.6rem;
    }

    .form-group input[type="submit"] {
        font-size: 1rem;
    }

    .map-container {
        height: 300px;
    }
}
