/* Location Map Section */
.location-map {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-map h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #9B773B;
    text-align: center;
}

.location-map > p {
    color: #666;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.map-container {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.location-map-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.nearest-places {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.nearest-places h3 {
    font-size: 1.5rem;
    color: #9B773B;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.places-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.place-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #9B773B;
    transition: all 0.3s ease;
}

.place-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.place-name {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    flex: 1;
}

.place-distance {
    font-weight: 600;
    color: #9B773B;
    font-size: 0.95rem;
    background: rgba(155, 119, 59, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    min-width: 50px;
    text-align: center;
}

/* Location Section Responsive */
@media (max-width: 1024px) {
    .location-map {
        padding: 35px;
    }
    
    .location-map h2 {
        font-size: 1.8rem;
    }
    
    .location-map-image {
        height: 280px;
    }
    
    .nearest-places {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .location-map {
        padding: 30px 25px;
    }
    
    .location-map h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .location-map > p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .location-map-image {
        height: 250px;
    }
    
    .nearest-places {
        padding: 25px 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border: 1px solid rgba(155, 119, 59, 0.1);
    }
    
    .nearest-places h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
        text-align: center;
        color: #9B773B;
        font-weight: 600;
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(155, 119, 59, 0.1);
    }
    
    .places-list {
        gap: 15px;
    }
    
    .place-item {
        padding: 18px 20px;
        background: rgba(155, 119, 59, 0.03);
        border-radius: 12px;
        border-left: 4px solid #9B773B;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .place-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, #9B773B, #c9a96e);
        transition: width 0.3s ease;
    }
    
    .place-item:hover {
        background: rgba(155, 119, 59, 0.08);
        transform: translateX(5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    
    .place-item:hover::before {
        width: 6px;
    }
    
    .place-name {
        font-size: 1rem;
        font-weight: 500;
        color: #333;
        line-height: 1.4;
    }
    
    .place-distance {
        font-size: 0.9rem;
        font-weight: 700;
        color: white;
        background: linear-gradient(45deg, #9B773B, #c9a96e);
        padding: 6px 12px;
        border-radius: 20px;
        min-width: 50px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(155, 119, 59, 0.3);
    }
}

@media (max-width: 480px) {
    .location-map {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .location-map h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .location-map > p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .map-container {
        margin-bottom: 30px;
        border-radius: 10px;
    }
    
    .location-map-image {
        height: 220px;
    }
    
    .nearest-places {
        padding: 18px 15px;
        border-radius: 10px;
    }
    
    .nearest-places h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .places-list {
        gap: 10px;
    }
    
    .place-item {
        padding: 10px 12px;
        border-radius: 6px;
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
    
    .place-name {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .place-distance {
        font-size: 0.8rem;
        padding: 2px 8px;
        min-width: 40px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .location-map {
        padding: 20px 15px;
    }
    
    .location-map h2 {
        font-size: 1.3rem;
    }
    
    .location-map > p {
        font-size: 0.85rem;
    }
    
    .location-map-image {
        height: 200px;
    }
    
    .nearest-places {
        padding: 15px 12px;
    }
    
    .nearest-places h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .place-item {
        padding: 8px 10px;
    }
    
    .place-name {
        font-size: 0.8rem;
    }
    
    .place-distance {
        font-size: 0.75rem;
        padding: 2px 6px;
        min-width: 35px;
    }
}

/* Location & Connectivity Section */
.location-connectivity-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-connectivity-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.location-connectivity-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-badge {
    display: inline-block;
    background: linear-gradient(45deg, #9B773B, #c9a96e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.location-main-title {
    font-size: 3rem;
    color: #9B773B;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Gilroy', sans-serif;
    overflow: hidden;
}

.location-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.location-connectivity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.map-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.connectivity-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background-color:#EBEDEC;
}

.location-map-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.nearest-places {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Location Connectivity Responsive */
@media (max-width: 1024px) {
    .location-connectivity-section {
        padding: 60px 0;
    }
    
    .location-connectivity-container {
        padding: 0 30px;
    }
    
    .location-connectivity-header {
        margin-bottom: 50px;
    }
    
    .location-main-title {
        font-size: 2.5rem;
    }
    
    .location-connectivity-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .location-connectivity-section {
        padding: 50px 0;
    }
    
    .location-connectivity-container {
        padding: 0 20px;
    }
    
    .location-connectivity-header {
        margin-bottom: 40px;
    }
    
    .location-badge {
        font-size: 10px;
        padding: 6px 16px;
    }
    
    .location-main-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .location-subtitle {
        font-size: 1rem;
    }
    
    .location-connectivity-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-section,
    .connectivity-section {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .location-connectivity-section {
        padding: 40px 0;
    }
    
    .location-connectivity-container {
        padding: 0 15px;
    }
    
    .location-connectivity-header {
        margin-bottom: 30px;
    }
    
    .location-badge {
        font-size: 9px;
        padding: 5px 14px;
    }
    
    .location-main-title {
        font-size: 1.8rem;
    }
    
    .location-subtitle {
        font-size: 0.9rem;
    }
    
    .location-connectivity-content {
        gap: 25px;
    }
    
    .map-section,
    .connectivity-section {
        padding: 20px 15px;
        border-radius: 12px;
    }
}

/* Additional Location Page Styles */

/* CTA Section */
.location-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #9B773B, #c9a96e);
    color: white;
    text-align: center;
}

.location-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.location-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Gilroy', sans-serif;
}

.location-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: white;
    color: #9B773B;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}