.destination-content {
    padding: 120px 0 60px;
}
.destination-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.destination-header {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.destination-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 40px;
}
.header-overlay h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}
.header-overlay p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
}
.breadcrumb {
    margin-bottom: 30px;
}
.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb a:hover {
    color: #2c5f2d;
}
.breadcrumb span {
    color: #999;
    margin: 0 10px;
}
.destination-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.main-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 30px 0 20px;
    color: #2c5f2d;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}
.main-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}
.highlight-box {
    background: #f0f7f0;
    border-left: 4px solid #2c5f2d;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}
.highlight-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}
.highlight-box ul {
    list-style: none;
    padding-left: 0;
}
.highlight-box li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}
.highlight-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.gallery-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.gallery-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-image:hover img {
    transform: scale(1.05);
}
.sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 140px;
}
.sidebar-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.sidebar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.sidebar-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}
.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}
.info-item:last-child {
    border-bottom: none;
}
.info-label {
    font-weight: 500;
    color: #666;
}
.info-value {
    font-weight: 600;
    color: #2c5f2d;
}
.best-time-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}
.best-time-list li::before {
    /* content: '•'; */
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 20px;
}
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.tag {
    padding: 5px 15px;
    background: #e9f5e9;
    color: #2c5f2d;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.btn-secondary {
    background: transparent;
    border: 2px solid #2c5f2d;
    color: #2c5f2d;
}
.btn-secondary:hover {
    background: #2c5f2d;
    color: #fff;
}
.back-to-gallery {
    text-align: center;
    margin-top: 60px;
}
@media (max-width: 992px) {
    .destination-body {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
    .header-overlay h1 {
        font-size: 32px;
    }
    .header-overlay p {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .destination-header {
        height: 300px;
    }
    .header-overlay {
        padding: 20px;
    }
    .header-overlay h1 {
        font-size: 28px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .destination-content {
        padding: 100px 0 40px;
    }
    .image-gallery {
        grid-template-columns: 1fr;
    }
}
