hgroup.hero {
    margin-bottom: 4em;
}

main.location {
    background-color: #f5f5f0
}

/* First Section Redesign */
.location-showcase {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
}

.map-container {
    grid-column: span 8;
    background-color: white;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.location-details {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 15px 11px rgba(6, 52, 26, 0.1);
}

.hotel-card {
    background-color: var(--bg-color);
    padding: 35px;
    color: var(--primary-color);
    flex-grow: 0;
}

.hotel-name {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-lighter);
    border-bottom: 1px solid rgba(227, 217, 191, 0.2);
    padding-bottom: 15px;
}

.hotel-address {
    font-size: 16px;
    line-height: 1.6;
}

.transport-card {
    background-color: var(--primary-lighter);
    padding: 35px;
    flex-grow: 1;
    color: var(--bg-color);
}

.transport-heading {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--bg-color);
    border-bottom: 1px solid rgba(6, 52, 26, 0.1);
    padding-bottom: 15px;
}

.transport-list {
    list-style-type: none;
}

.transport-item {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
}

.transport-item:last-child {
    margin-bottom: 0;
}

.transport-icon {
    background-color: var(--bg-lighter);
    color: var(--primary-lighter);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.transport-icon i {
    color: var(--secondary-color);
    font-size: 16px;
}

.transport-info {
    flex-grow: 1;
}

.transport-label {
    display: block;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--bg-color);
}

.transport-text {
    font-size: 14px;
    line-height: 1.4;
}

/* Location Benefits Section */

p.description {
    color: black;
    font-size: 1.1rem;
    line-height: 2.2rem;
    max-width: 80ch;
    margin: auto;
    text-align: center;
}

.location-benefits {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(6, 52, 26, 0.1);
    margin-top: 35px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.benefit-card:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(10, 67, 37, 0.1);
}

.benefit-icon {
    background-color: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    color: var(--bg-color);
    font-size: 2.2rem;
}

.benefit-icon:after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border: 2px dashed var(--secondary-color);
    border-radius: 50%;
    opacity: 0.5;
}

.benefit-title {
    font-size: 22px;
    color: var(--bg-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-text {
    color: var(--bg-lighter);
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Section */
.cta-container {
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-lighter) 100%);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(6, 52, 26, 0.2);
    margin-bottom: 5em;
}

.cta-container:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: var(--secondary-color);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.cta-container:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.cta-text {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-lighter);
}

.cta-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    background-color: var(--secondary-lighter);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-lighter);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(227, 217, 191, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(6, 52, 26, 0.3);
}

@media (max-width: 992px) {
    .location-showcase {
        grid-template-columns: 1fr;
    }
    
    .map-container, .location-details {
        grid-column: 1;
    }
    
    .map-placeholder {
        height: 350px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card:not(:last-child):after {
        right: 15%;
        top: auto;
        bottom: 0;
        height: 1px;
        width: 70%;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .cta-text {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        display: inline-flex;
        justify-content: center;
    }
    
    .title {
        font-size: 32px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}