/* Modern Gallery Styles */
.modern-gallery-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.main-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}
.image-overlay-info {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}
.thumbnails-container {
    display: flex;
    gap: 10px;
    padding: 20px;
    overflow-x: auto;
    scrollbar-width: thin;
}
.thumbnails-container::-webkit-scrollbar {
    height: 6px;
}
.thumbnails-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.thumbnails-container::-webkit-scrollbar-thumb {
    background: #95735b;
    border-radius: 10px;
}
.thumbnail-wrapper {
    flex-shrink: 0;
}
.thumbnail-img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}
.thumbnail-img:hover {
    transform: scale(1.05);
    border-color: #95735b;
}
.thumbnail-img.active {
    border-color: #95735b;
    box-shadow: 0 4px 12px rgba(149, 115, 91, 0.3);
}
/* Modern Package Info Styles */
.modern-package-info {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}
.package-header-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f8f9fa;
}
.modern-package-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 15px;
}
.price-section {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 15px;
}
.price-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}
.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #95735b;
}
.price-note {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}
/* Package Details Grid */
.package-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.detail-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}
.detail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #95735b, #b8956b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}
.detail-content {
    display: flex;
    flex-direction: column;
}
.detail-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.detail-value {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 600;
    margin-top: 2px;
}
/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
.btn-book-now {
    background: linear-gradient(135deg, #95735b, #b8956b);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(149, 115, 91, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-book-now:hover {
    background: linear-gradient(135deg, #7a5d47, #95735b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 115, 91, 0.4);
}
.btn-contact {
    background: transparent;
    color: #95735b;
    border: 2px solid #95735b;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-contact:hover {
    background: #95735b;
    color: white;
    transform: translateY(-2px);
}
/* Features Section */
.package-features-section {
    padding-top: 25px;
    border-top: 2px solid #f8f9fa;
}
.features-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}
.features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #495057;
}
.feature-item i {
    color: #28a745;
    font-size: 16px;
    width: 20px;
}
/* Modern Tabs Container */
.modern-tabs-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}
.modern-nav-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    overflow-x: auto;
}
.modern-tab-btn {
    flex: 1;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #6c757d;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}
.modern-tab-btn:hover {
    color: #95735b;
    background: rgba(149, 115, 91, 0.1);
}
.modern-tab-btn.active {
    color: #95735b;
    background: white;
}
.modern-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #95735b, #b8956b);
}
.modern-tab-content {
    position: relative;
}
.tab-panel {
    display: none;
    padding: 30px;
    min-height: 300px;
}
.tab-panel.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.content-wrapper {
    max-width: 100%;
}
.content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}
.content-body {
    color: #495057;
    line-height: 1.8;
    font-size: 15px;
}
.content-body h3,
.content-body h4,
.content-body h5 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
}
.content-body ul,
.content-body ol {
    padding-left: 20px;
    margin-bottom: 20px;
}
.content-body li {
    margin-bottom: 8px;
}
.content-body p {
    margin-bottom: 15px;
}
/* Responsive Design */
@media (max-width: 992px) {
    .modern-package-info {
        margin-top: 30px;
        position: static;
    }
    .package-details-grid {
        grid-template-columns: 1fr;
    }
    .main-image-container {
        height: 350px;
    }
}
@media (max-width: 768px) {
    .modern-nav-tabs {
        flex-direction: column;
    }
    .modern-tab-btn {
        text-align: left;
        padding: 15px 20px;
    }
    .modern-package-title {
        font-size: 1.5rem;
    }
    .price-amount {
        font-size: 1.5rem;
    }
    .action-buttons {
        flex-direction: column;
    }
    .tab-panel {
        padding: 20px;
    }
    .main-image-container {
        height: 250px;
    }
    .thumbnail-img {
        width: 80px;
        height: 60px;
    }
}
@media (max-width: 576px) {
    .modern-package-info {
        padding: 20px;
    }
    .thumbnails-container {
        padding: 15px;
    }
    .detail-item {
        padding: 12px;
    }
    .modern-package-title {
        font-size: 1.3rem;
    }
}
