/* Office Address Page Specific Styles - Premium Redesign */

:root {
    --office-primary: #1e40af; /* Royal Blue */
    --office-secondary: #64748b;
    --office-bg: #f8fafc;
    --office-card-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.section-padding {
    padding: 50px 0;
}

/* Inner Banner */
.inner-banner {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 64, 175, 0.45), rgba(30, 64, 175, 0.9)), url('../images/contact_banner.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Office Details Card */
.office-container {
    max-width: 1000px;
    margin: 0 auto;
}

.office-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--office-card-shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.office-info {
    padding: 60px;
}

.office-map-mock {
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.office-map-mock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--office-primary);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.office-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--office-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--office-secondary);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-text p {
    font-size: 16px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.6;
}

/* Operating Hours */
.hours-box {
    background: #0f172a;
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-top: 20px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hour-row:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 992px) {
    .office-card { grid-template-columns: 1fr; }
    .office-info { padding: 40px; }
    .office-map-mock { height: 240px; }
}

@media (max-width: 768px) {
    .banner-title { font-size: 42px; }
}
