/* contact-page.css */
/* =============================================================================
   CONTACT PAGE STYLES (page-contact.php)
============================================================================= */

.contact-wrapper {
    margin: 0 !important;
    padding: 0 !important;
}

.hero-section {
    position: relative;
    background: linear-gradient(to right, #132741, #3264A7);
    padding: 2.5rem 0;
    color: white;
    padding-top: calc(2.5rem + 80px) !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.hero-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.hero-line {
    margin: 1rem auto;
    height: 4px;
    width: 5rem;
    border-radius: 9999px;
    background-color: white;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #d1d5db;
    margin-top: 1rem;
}

.main-content {
    background-color: #d1d5db;
    padding: 2.5rem 0;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.info-card {
    flex: 1;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.form-card {
    flex: 2;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.info-title {
    color: #475569;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-text {
    color: #64748b;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    background-color: #f1f5f9;
    padding: 0.75rem;
    border-radius: 50%;
    margin-right: 1rem;
    color: #64748b;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.875rem;
    color: #64748b;
}

.contact-value {
    color: #374151;
    font-weight: 500;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    ring: 2px;
    ring-color: #9ca3af;
    border-color: #9ca3af;
}

.form-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #132741;
    color: white;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-button:hover {
    background-color: #29558C;
}

.form-message {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.map-container {
    margin-top: 3rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-wrapper {
    width: 100%;
    height: 16rem;
    position: relative;
}

.map-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
