/* Page Header */
.page-header {
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: center;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}
.page-header .page-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-primary, #daa520);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.page-header.with-thumbnail h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
/* --- Contact Page Styles --- */

.contact-wrapper {
    background-color: #fff;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.contact-form-container {
    padding: 3rem;
}
.contact-form-container h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.contact-info-container {
    padding: 3rem;
    background-color: var(--color-primary);
    color: #fff;
    height: 100%;
}
.contact-info-container h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.contact-info-container p {
    opacity: 0.9;
}
.info-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.info-list i {
    font-size: 1.5rem;
    margin-top: 5px;
    opacity: 0.8;
}
.info-list strong {
    display: block;
    font-weight: 700;
}
.info-list span {
    opacity: 0.9;
}

/* Form control styling */
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
}
.form-control {
    border-radius: 8px;
}
.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.25);
}
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: bold;
    padding: 0.8rem;
}
