.golf-details-hero {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff
}

.golf-details-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4)
}

.golf-details-hero .container {
    position: relative;
    z-index: 1
}

.golf-content-section {
    padding: 80px 0;
    background: #fcfcfc
}

.golf-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px
}

.golf-main-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #1a1a1a
}

.golf-meta-info {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05)
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #444
}

.golf-features,
.golf-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.meta-item i {
    color: var(--primary);
    font-size: 1.3rem
}

.golf-description {
    line-height: 1.9;
    color: #555;
    font-size: 1.05rem
}

.golf-features {
    gap: 20px;
    margin: 40px 0
}

.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .04)
}

.feature-box h4 {
    margin-bottom: 10px;
    color: #1a1a1a
}

.golf-gallery {
    gap: 25px;
    margin-top: 50px
}

.golf-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform .3s
}

.golf-gallery img:hover {
    transform: scale(1.02)
}

.golf-sidebar-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    position: sticky;
    top: 110px
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0
}

.btn-stay-golf,
.btn-tee-time {
    display: block;
    width: 100%;
    padding: 18px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    transition: .3s
}

.golf-info-list {
    list-style: none;
    margin-bottom: 35px
}

.golf-info-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    font-size: 1rem;
    color: #444
}

.golf-info-list li i {
    color: var(--primary);
    width: 25px;
    font-size: 1.2rem;
    margin-top: 3px
}

.btn-tee-time {
    background: #1a1a1a;
    margin-bottom: 15px
}

.btn-tee-time:hover {
    background: var(--primary-color);
    transform: translateY(-2px)
}

.btn-stay-golf {
    background: var(--primary)
}

.btn-stay-golf:hover {
    background: var(--primary-dark);
    transform: translateY(-2px)
}

@media (max-width:991px) {
    .golf-details-grid {
        grid-template-columns: 1fr
    }

    .golf-sidebar-card {
        position: static
    }

    .golf-meta-info {
        padding: 0;
        gap: 0
    }

    .golf-features {
        display: inline;
        margin: 40px 3px
    }

    .feature-box,
    .golf-gallery img {
        margin-bottom: 1rem
    }

    .golf-gallery {
        display: inline;
        margin-top: 50px
    }
}