/* Package Details Page Styles */

/* CSS Custom Properties for Gallery */
:root {
    --gallery-overlay-bg: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    --gallery-thumb-hover: linear-gradient(135deg, rgba(20, 143, 118, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    --gallery-modal-bg: rgba(0, 0, 0, 0.95);
    --gallery-button-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    --gallery-nav-bg: rgba(255, 255, 255, 0.1);
    --gallery-nav-hover: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.package-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.package-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.package-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.location-badge, .difficulty-badge {
    background: var(--rgba-white-95);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.difficulty-badge {
    background: var(--rgba-secondary-08);
    color: var(--secondary-color);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    font-family: var(--bs-font-sans-serif);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--rgba-white-95);
    max-width: 600px;
}

.package-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--rgba-white-10);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid var(--rgba-white-20);
    flex: 0 0 calc(50% - 10px);
    min-width: 200px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--rgba-white-20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--rgba-white-80);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

/* Booking Card */
.booking-card {
    background: var(--rgba-white-95);
    margin-top: 1rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 20px 60px var(--rgba-black-07);
    border: 1px solid var(--rgba-white-30);
    position: relative;
    z-index: 3;
}

.price-section {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-600);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

.price-note {
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--rgba-primary-02);
}

.btn-book-now {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0.5rem 0;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(20, 143, 118, 0.3);
}

.booking-features {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.feature-item i {
    color: var(--green);
    font-size: 1rem;
}

/* Package Overview Section */
.package-overview {
    padding: 80px 0;
    background: var(--white);
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 20px;
    font-family: var(--bs-font-sans-serif);
}

.overview-content .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.overview-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    margin-top: 40px;
    font-family: var(--bs-font-sans-serif);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--rgba-primary-01);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(20, 143, 118, 0.1);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 24px;
}

.highlight-item span {
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.5;
}

/* Package Info Card */
.package-info-card {
    background: var(--rgba-white-95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--rgba-white-50);
    position: sticky;
    top: 100px;
}

.package-info-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 25px;
    text-align: center;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-100);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.info-item .value {
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

/* Itinerary Section */
.itinerary-section {
    padding: 80px 0;
    background: var(--gray-050);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 15px;
    font-family: var(--bs-font-sans-serif);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.itinerary-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.itinerary-timeline::before {
    content: "";
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(20, 143, 118, 0.3);
}

.day-number {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
    position: relative;
}

.timeline-content::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--white);
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 15px;
    font-family: var(--bs-font-sans-serif);
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.day-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

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

/* Enhanced Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 5;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 15px;
    font-family: var(--bs-font-sans-serif);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    min-height: 600px;
}

.gallery-main {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gray-100);
}

.gallery-main:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-main:hover .gallery-image {
    transform: scale(1.08);
}

/* Enhanced Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 20%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    padding: 60px 30px 30px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-main:hover .gallery-overlay {
    opacity: 1;
}

.btn-view-gallery {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: var(--primary-color);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(20, 143, 118, 0.3);
    transform: translateY(30px);
    border: 2px solid transparent;
}

.gallery-overlay:hover .btn-view-gallery {
    transform: translateY(0);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(20, 143, 118, 0.4);
    border-color: var(--primary-color);
}

.btn-view-gallery:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(20, 143, 118, 0.5);
}

/* Enhanced Thumbnails Grid */
.gallery-thumbnails {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 15px;
    height: fit-content;
}

.thumbnail-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background: var(--gray-100);
    min-height: 120px;
}

.thumbnail-item:nth-child(1) {
    grid-row: span 2;
}

.thumbnail-item:nth-child(2) {
    grid-row: span 1;
}

.thumbnail-item:nth-child(3) {
    grid-row: span 1;
}

.thumbnail-item:nth-child(4) {
    grid-row: span 2;
}

.thumbnail-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.thumbnail-item:hover img {
    transform: scale(1.15);
}

/* Thumbnail overlay for better visibility */
.thumbnail-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 143, 118, 0.15) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.thumbnail-item:hover::before {
    opacity: 1;
}

/* Enhanced Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    cursor: zoom-out;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(15px);
    }
}

.modal-container {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalContentScaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalContentScaleIn {
    from {
        transform: scale(0.7) translateY(50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-main-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.modal-main-image.zoomed {
    cursor: zoom-out;
    transform: scale(1.5);
}

.modal-controls {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    padding: 0 20px;
}

.image-counter {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-modal {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    color: var(--white);
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: -100px;
}

.next-btn {
    right: -100px;
}

/* Thumbnail Navigation Strip */
.thumbnail-strip {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 80vw;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.thumbnail-strip::-webkit-scrollbar {
    display: none;
}

.thumbnail-strip-item {
    width: 80px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    flex-shrink: 0;
}

.thumbnail-strip-item:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.thumbnail-strip-item.active {
    border-color: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(20, 143, 118, 0.4);
}

.thumbnail-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading States */
.gallery-loading {
    position: relative;
    overflow: hidden;
}

.gallery-loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Enhanced Modal Actions */
.modal-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
}

.modal-action-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Inclusions Section */
.inclusions-section {
    padding: 80px 0;
    background: var(--gray-050);
    position: relative;
    z-index: 10;
    margin-top: 0;
    clear: both;
}

.inclusions-card, .exclusions-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.inclusions-card h3, .exclusions-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--bs-font-sans-serif);
}

.inclusions-card h3 {
    color: var(--green);
}

.exclusions-card h3 {
    color: var(--red);
}

.inclusions-list, .exclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions-list li, .exclusions-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-700);
    font-weight: 500;
}

.inclusions-list li i {
    color: var(--green);
    font-size: 1.1rem;
}

.exclusions-list li i {
    color: var(--red);
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--white);
}

.rating-overview {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.overall-rating {
    text-align: center;
    background: var(--rgba-primary-01);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--rgba-primary-02);
}

.rating-score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.rating-stars {
    margin-bottom: 15px;
}

.rating-stars i {
    font-size: 1.5rem;
    margin: 0 2px;
}

.rating-stars i.filled {
    color: var(--yellow);
}

.review-count {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h5 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: var(--gray-800);
}

.review-date {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.review-rating {
    margin-left: auto;
}

.review-rating i {
    color: var(--yellow);
    font-size: 1.1rem;
}

.review-comment {
    color: var(--gray-600);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.btn-load-more {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(216, 160, 95, 0.3);
}

/* Related Packages Section */
.related-packages {
    padding: 80px 0;
    background: var(--gray-050);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.related-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 25px;
}

.related-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
    font-family: var(--bs-font-sans-serif);
}

.related-location {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-weight: 500;
}

.related-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.related-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-view-details {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 143, 118, 0.3);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--rgba-white-20);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--rgba-white-40);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -75px;
}

.next-btn {
    right: -75px;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .nav-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .prev-btn {
        left: -80px;
    }

    .next-btn {
        right: -80px;
    }

    .thumbnail-strip {
        max-width: 90vw;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .package-stats {
        flex-direction: column;
        gap: 15px;
    }

    .booking-card {
        margin-top: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }

    .gallery-main {
        height: 400px;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 200px);
        gap: 15px;
    }

    .thumbnail-item:nth-child(1),
    .thumbnail-item:nth-child(4) {
        grid-row: span 1;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.6) 100%
        );
        padding: 30px 20px 20px;
    }

    .btn-view-gallery {
        transform: translateY(0);
        padding: 15px 25px;
        font-size: 1rem;
    }

    .modal-container {
        max-width: 98vw;
        max-height: 98vh;
    }

    .modal-main-image {
        max-height: 75vh;
        border-radius: 15px;
    }

    .nav-btn {
        display: none;
    }

    .modal-controls {
        top: -70px;
        padding: 0 15px;
    }

    .thumbnail-strip {
        bottom: -100px;
        padding: 12px 20px;
        gap: 12px;
    }

    .thumbnail-strip-item {
        width: 60px;
        height: 45px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline-marker {
        margin-bottom: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .booking-card {
        padding: 20px;
    }

    .amount {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 250px;
    }

    .gallery-thumbnails {
        grid-template-rows: repeat(2, 100px);
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .btn-view-gallery {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .modal-content {
        max-width: 99vw;
        max-height: 99vh;
    }

    .modal-content img {
        border-radius: 10px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .gallery-main,
    .thumbnail-item,
    .gallery-image,
    .btn-view-gallery,
    .nav-btn,
    .modal-action-btn,
    .modal-main-image {
        transition: none;
        animation: none;
    }

    .gallery-modal {
        animation: none;
    }

    .modal-container {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .gallery-overlay {
        background: rgba(0, 0, 0, 0.9);
    }

    .btn-view-gallery {
        background: var(--white);
        color: var(--black);
        border: 2px solid var(--black);
    }

    .thumbnail-item::before {
        background: rgba(0, 0, 0, 0.7);
    }
}

.btn-know-more {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 60px;
    box-shadow: 0 12px 40px var(--rgba-primary-04);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-know-more::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(121, 121, 121, 0.3),
        transparent
    );
    transition: left 0.6s;
}

.btn-know-more:hover::before {
    left: 100%;
}

.btn-know-more:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 20px 50px var(--rgba-primary-05);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
}
