/* Location Page Styles */
.location-page-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: calc(100vh - 100px);
}

.location-header {
    margin-bottom: 40px;
}

.location-header .breadcrumb {
    font-size: 14px;
    color: #30deee; /* Updated color */
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.location-header h1 {
    font-size: 48px;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
}

.location-card {
    background-color: #061a1c; /* Dark greenish/blue background */
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    min-height: 600px;
    position: relative;
}

.address-header h2 {
    font-size: 24px;
    font-weight: 400;
    color: #9DABAD; /* Updated address color */
    margin-bottom: 60px;
    line-height: 1.4;
    max-width: 300px;
    position: absolute;
    top: 60px;
    left: 60px;
}

.location-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push content to bottom */
    max-width: 50%;
    position: relative;
}

.location-map {
    flex: none;
    width: 550px;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-map iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.image-stack-container {
    position: relative;
    height: 240px;
    width: 100%;
    margin-bottom: 40px;
}

.stack-card {
    position: absolute;
    width: 180px;
    height: 240px;
    border-radius: 8px;
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.card-1 {
    background-color: #fca5a5; /* Pinkish */
    left: 0;
    top: 10px;
    transform: rotate(-5deg);
    z-index: 1;
}

.card-2 {
    background-color: #a3a3a3; /* Grey */
    left: 80px;
    top: 0;
    z-index: 3;
    transform: scale(1.05);
}

.card-3 {
    background-color: #450a0a; /* Dark Red */
    left: 160px;
    top: 10px;
    transform: rotate(5deg);
    z-index: 2;
    color: #fff;
}

.location-description h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #fff;
}

.location-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #9dabad; /* Updated description color */
    max-width: 400px;
}

@media (max-width: 992px) {
    /* Location Page */
    .location-card {
        flex-direction: column;
    }
    .location-info {
        max-width: 100%;
        padding: 40px;
    }
    .location-map {
        width: 100%;
        padding: 0;
        border-radius: 24px;
    }
    .location-map iframe {
        min-height: 360px;
        border-radius: 18px;
    }
    .image-stack-container {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    .stack-card {
        position: static;
        transform: none !important;
        width: 30%;
        height: 150px;
    }
}

