/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-breadcrumb {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gold-400);
    margin-bottom: 12px;
    display: block;
}

.page-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--gray-50);
    border: 1px solid var(--gray-300);
    border-radius: 2px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-500);
    background: var(--white);
    box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 8px;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 0;
    border: 1px solid var(--gray-200);
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item svg {
    width: 22px;
    height: 22px;
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 6px;
}

.info-item p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 4px;
}

.info-item a {
    color: var(--gold-500);
    font-weight: 500;
}

.info-item a:hover {
    color: var(--gold-400);
}

.contact-info-card.highlight {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    color: var(--white);
    border: none;
}

.contact-info-card.highlight h3 {
    color: var(--white);
}

.contact-info-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.emergency-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-800);
    background: var(--gold-500);
    border-radius: 0;
    transition: var(--transition);
}

.emergency-btn:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    margin-bottom: 80px;
}

.map-placeholder {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    text-align: center;
    color: var(--white);
    max-width: 500px;
    padding: 0 24px;
}

.map-info h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
}

.map-info p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 240px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-info h3 {
        font-size: 28px;
    }
}
