
/* Contact Page Premium Styles (Global) */
.page-template-default.page-id-154 .entry-header { display: none !important; }
.page-id-154 .site-content, .page-id-154 .ast-container { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }

.contact-hero-premium {
    background: linear-gradient(135deg, #00689c 0%, #023047 100%);
    color: white !important;
    padding: 120px 20px 180px;
    text-align: center;
    position: relative;
    width: 100%;
}

.contact-hero-premium h1 {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
}

.contact-hero-premium p {
    font-size: 1.3rem !important;
    color: rgba(255,255,255,0.9) !important;
    max-width: 700px;
    margin: 0 auto !important;
}

.contact-card-premium {
    max-width: 900px;
    margin: -100px auto 100px;
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    position: relative;
    z-index: 100;
    border: 1px solid #f1f5f9;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-card-premium { padding: 30px; margin-top: -60px; }
}

.contact-field-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-field-group label {
    font-size: 0.85rem;
    font-weight: 800;
    color: #023047;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-field-group input, 
.contact-field-group textarea {
    width: 100% !important;
    padding: 18px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 15px !important;
    background: #f8fafc !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.contact-field-group input:focus, 
.contact-field-group textarea:focus {
    background: #ffffff !important;
    border-color: #00689c !important;
    box-shadow: 0 0 0 4px rgba(0,110,182,0.1) !important;
    outline: none !important;
}

.btn-contact-submit {
    grid-column: 1 / -1;
    background: #00689c !important;
    color: #ffffff !important;
    padding: 20px !important;
    border-radius: 15px !important;
    border: none !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 10px 30px rgba(0,110,182,0.3) !important;
    margin-top: 20px;
}

.btn-contact-submit:hover {
    background: #023047 !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15,23,42,0.2);
}

/* Office Info Cards & Layout Styles */
.contact-page-wrapper {
    max-width: 900px;
    margin: -100px auto 100px;
    padding: 0 20px;
    position: relative;
    z-index: 100;
}

.offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.office-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 60px rgba(0, 104, 156, 0.08) !important;
    border-color: #00689c !important;
}

.office-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #00689c;
}

.office-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #023047;
    margin-bottom: 15px;
    line-height: 1.3;
}

.office-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.office-card a {
    color: #00689c;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.office-card a:hover {
    color: #023047;
}

@media (max-width: 991px) {
    .contact-page-wrapper {
        margin-top: -120px !important;
        margin-bottom: 60px !important;
    }
    
    .contact-card-premium {
        padding: 40px 30px !important;
    }
}

@media (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

