/* Google Map Page Specific Styles - Premium Redesign */

:root {
    --map-primary: #ea4335; /* Google Red */
    --map-secondary: #4285f4; /* Google Blue */
    --map-accent: #fbbc05; /* Google Yellow */
    --map-surface: #f1f5f9;
}

.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(0,0,0,0.35), rgba(0,0,0,0.6)), url('../images/about_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;
}

/* Map Layout */
.map-container-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: var(--white);
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.map-wrapper {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e2e8f0;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.1);
}

/* Info Sidebar */
.map-sidebar {
    padding: 20px;
}

.loc-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 5px solid var(--map-secondary);
}

.loc-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.loc-card h3 i {
    color: var(--map-primary);
}

.loc-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

.landmark-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #64748b;
}

.landmark-item i {
    width: 32px;
    height: 32px;
    background: #eff6ff;
    color: var(--map-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--map-secondary);
    color: var(--white);
    padding: 18px 30px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(66, 133, 244, 0.2);
}

.directions-btn:hover {
    background: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(66, 133, 244, 0.3);
}

/* Metro Section */
.transit-box {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
}

.transit-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e293b;
}

.transit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.transit-tag {
    padding: 8px 16px;
    background: #f1f5f9;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.transit-tag.metro { border-left: 4px solid #ef4444; }
.transit-tag.bus { border-left: 4px solid #10b981; }

/* Responsive */
@media (max-width: 1200px) {
    .map-container-box { grid-template-columns: 1fr; }
    .map-wrapper { height: 240px; }
}

@media (max-width: 768px) {
    .banner-title { font-size: 42px; }
}
