:root {
    scroll-behavior: unset !important;
}

.flight-card {
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    margin: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.flight-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.flight-card-header {
    background: linear-gradient(135deg, #6b7bff, #764ba2);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.flight-card-body {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.flight-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.flight-logo img {
    max-width: 80px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.flight-date-badge {
    margin-top: 8px;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.flight-info {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.flight-route {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.flight-time-section {
    text-align: center;
    min-width: 100px;
}

.time {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 4px;
}

.city {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flight-duration-section {
    text-align: center;
    min-width: 120px;
    position: relative;
}

.duration {
    font-size: 0.85rem;
    color: #495057;
    font-weight: 600;
    margin-bottom: 6px;
}

.divider {
    border-top: 2px dashed #dee2e6;
    width: 100%;
    margin: 8px 0;
    position: relative;
}

.divider::after {
    content: "✈";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #f8f9fa;
    padding: 0 8px;
    color: #667eea;
    font-size: 0.9rem;
}

.direct {
    color: #667eea;
    font-weight: 600;
    font-size: 0.85rem;
    background: #e7e9fd;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
}

.via-details {
    margin-top: 6px;
    font-size: 0.8rem;
    color: #dc3545;
    font-weight: 500;
}

.flight-fare-section {
    text-align: right;
    min-width: 140px;
    padding-left: 20px;
    border-left: 2px solid #e9ecef;
}

.fare-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.fare-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 4px;
}

.fare-currency {
    font-size: 1rem;
    color: #28a745;
    font-weight: 600;
}

.lowest-fare-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flight-change-btn {
    cursor: pointer;
}

.flight-change-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-1px);
}

.flight-change-btn:active {
    transform: translateY(0);
}

.flight-action-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 160px;
}

.flight-change-btn-body {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
}

.flight-change-btn-body:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.flight-change-btn-body:active {
    transform: translateY(0);
}

.flight-change-btn-list {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
}

.flight-change-btn-list:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.flight-change-btn-list:active {
    transform: translateY(0);
}

.flight-item {
    transition: all 0.2s ease;
}

.flight-item:hover {
    border-color: #2563eb !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15) !important;
    transform: translateY(-1px);
}

.flight-item .select-flight-btn:hover {
    background: #1d4ed8 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.hover-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .flight-card-body {
        flex-direction: column;
        gap: 16px;
    }

    .flight-info {
        flex-direction: column;
        width: 100%;
    }

    .flight-route {
        width: 100%;
        justify-content: space-between;
    }

    .flight-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .flight-card-header>div:last-child {
        width: 100%;
        justify-content: space-between;
    }

    .flight-change-btn {
        font-size: 0.875rem;
        padding: 5px 12px;
    }

    .flight-action-section {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
        min-width: auto;
    }

    .flight-change-btn-body {
        width: 100%;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.rightModal {
    max-width: 600px;
    position: fixed;
    height: 100%;
    background: rgb(254 251 242);
    right: -600px;
    /* start off-screen */
    top: 0;
    z-index: 9999;
    padding: 10px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .76);

    opacity: 0;
    pointer-events: none;
    transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
    overflow-y: auto;
}

.rightModal.active {
    right: 0;
    opacity: 1;
    pointer-events: auto;
}

/* Gallery Image Hover Overlay Styles */
.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-image-wrapper img {
    transition: transform 0.3s ease;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-image-wrapper:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: white;
    padding: 35px 12px 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-service-name {
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    word-wrap: break-word;
}

/* Responsive adjustments for smaller images */
.column_2 .gallery-overlay {
    padding: 25px 8px 8px;
}

.column_2 .gallery-service-name {
    font-size: 18px;
}

/* Modern Package Details Card Styles */
.modern-package-details-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 0;
    overflow: visible;
}

.modern-package-details-section .container {
    overflow: visible;
}

.modern-package-details-section .row {
    overflow: visible;
}

.modern-package-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 30px;
    /* height: 100%; */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.modern-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.package-card-header {
    margin-bottom: 25px;
}

.package-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.package-info-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-block:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.info-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6b7bff, #764ba2);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    color: #1a202c;
    font-weight: 600;
}

.package-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
    margin: 25px 0;
}

.included-services {
    margin-top: 20px;
}

.services-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    background: #e9ecef;
    border-color: #667eea;
    transform: translateY(-3px);
}

.service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6b7bff, #764ba2);
    border-radius: 10px;
    color: white;
}

.service-name {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    text-align: center;
}

/* Pricing Card Styles */
.pricing-card {
    background: linear-gradient(135deg, #6b7bff, #764ba2);
    color: white;
}

.pricing-card.sticky-top {
    position: sticky;
    top: 20px;
    overflow: visible;
    z-index: 10;
    height: auto !important;
    align-self: flex-start;
}

/* Ensure parent column allows sticky positioning */
.col-lg-4:has(.pricing-card.sticky-top),
.pricing-sticky-wrapper {
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.pricing-title {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-pdf-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.pricing-pdf-chip:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.pricing-pdf-chip .material-symbols-outlined {
    font-size: 18px;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    opacity: 0.9;
}

.current-price {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    width: 100%;
}

.original-price {
    font-size: 20px;
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 500;
}

.discount-badge {
    background: #ffd700;
    color: #1a202c;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.occupancy-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.occupancy-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.modern-cta-button {
    width: 100%;
    background: #ffffff;
    color: #667eea;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modern-cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.modern-cta-button:active {
    transform: translateY(0);
}

.modern-cta-button svg {
    transition: transform 0.3s ease;
}

.modern-cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-package-details-section {
        padding: 30px 0;
    }

    .modern-package-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .package-title {
        font-size: 24px;
    }

    .current-price {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

@media (max-width: 768px) {
    .package-title {
        font-size: 22px;
    }

    .current-price {
        font-size: 36px;
    }

    .package-info-blocks {
        grid-template-columns: 1fr;
    }

    .info-block {
        padding: 12px 15px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Modern Accordion Styles */
.accordion-modern {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 16px;
    --bs-accordion-inner-border-radius: 16px;
    --bs-accordion-btn-padding-x: 1.5rem;
    --bs-accordion-btn-padding-y: 1.25rem;
    --bs-accordion-body-padding-x: 1.5rem;
    --bs-accordion-body-padding-y: 1.5rem;
    --bs-accordion-active-color: #064d8a;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(6, 77, 138, 0.15);
    gap: 1rem;
}

.itinerary-accordion-item {
    border: none;
    border-radius: 16px;
    background: #ffffff;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.itinerary-accordion-item:hover {
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12); */
    transform: translateY(-2px);
}

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

.accordion-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 16px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 77, 138, 0.05), transparent);
    transition: left 0.5s ease;
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #064d8a 0%, #4a8ac1 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(6, 77, 138, 0.3);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(6, 77, 138, 0.15);
    border-color: transparent;
}

.accordion-header-content {
    width: 100%;
}

.day-number-badge {
    /* width: 48px; */
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #064d8a 0%, #4a8ac1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(6, 77, 138, 0.25);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) .day-number-badge {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.day-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.accordion-button:not(.collapsed) .day-number {
    color: #ffffff;
}

.locatetitle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.locatetitle strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.accordion-button:not(.collapsed) .locatetitle strong {
    color: #ffffff;
}

.destination-name {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

.accordion-button:not(.collapsed) .destination-name {
    color: rgba(255, 255, 255, 0.95);
}

.included-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accordion-button:not(.collapsed) .included-label {
    color: rgba(255, 255, 255, 0.9);
}

.service-count-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.service-count-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
    border: 1px solid #656a6f7d;
    padding: 1px;
}

.accordion-button:not(.collapsed) .service-count-list li {
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid #d7e1eacc;
}

.service-count-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.8;
}

.service-count-list li span {
    font-weight: 600;
    color: #656a6f;
}

.accordion-button:not(.collapsed) .service-count-list li span {
    color: #ffffff;
}

.service-label {
    font-size: 0.8125rem;
}

.accordion-collapse {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 0 0 16px 16px;
}

.service-divider {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid #e9ecef;
    opacity: 0.5;
}

.service-divider:last-child {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accordion-modern {
        --bs-accordion-btn-padding-x: 1rem;
        --bs-accordion-btn-padding-y: 1rem;
        --bs-accordion-body-padding-x: 1rem;
        --bs-accordion-body-padding-y: 1.25rem;
    }

    .day-number-badge {
        /* width: 40px; */
        height: 40px;
    }

    .day-number {
        font-size: 1.125rem;
    }

    .locatetitle strong {
        font-size: 1rem;
    }

    .destination-name {
        font-size: 0.875rem;
    }

    .service-count-list {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .service-count-list li {
        font-size: 0.8125rem;
    }

    .accordion-header-content {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem;
    }

    .rightitidiscrip {
        width: 100%;
        justify-content: flex-start !important;
    }
}

@media (max-width: 576px) {
    .accordion-modern {
        --bs-accordion-btn-padding-x: 0.875rem;
        --bs-accordion-btn-padding-y: 0.875rem;
    }

    .day-number-badge {
        /* width: 36px; */
        height: 36px;
    }

    .day-number {
        font-size: 1rem;
    }

    .service-count-list {
        gap: 0.5rem;
    }

    .included-label {
        font-size: 0.75rem;
    }
}

/* Package Themes Styling */
.package-themes {
    padding: 1.5rem;
}

.themes-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.themes-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6b7bff, #764ba2);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.themes-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.themes-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.3px;
}

.themes-list {
    margin-top: 0;
}

.theme-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.theme-tag-item {
    position: relative;
    padding: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: var(--theme-bg, #667eea);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.theme-tag-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.theme-tag-item:hover::before {
    left: 100%;
}

.theme-tag-content {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    color: var(--theme-color, #ffffff);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}

.theme-tag-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.theme-tag-item:active {
    transform: translateY(-1px) scale(1);
}

@media (max-width: 768px) {
    .package-themes {
        padding: 1.25rem;
    }

    .themes-header {
        margin-bottom: 1rem;
    }

    .themes-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .themes-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .themes-title {
        font-size: 1rem;
    }

    .theme-tags {
        gap: 0.75rem;
    }

    .theme-tag-content {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 576px) {
    .package-themes {
        padding: 1rem;
    }

    .themes-header {
        gap: 0.625rem;
        margin-bottom: 0.875rem;
    }

    .themes-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .themes-icon-wrapper svg {
        width: 16px;
        height: 16px;
    }

    .themes-title {
        font-size: 0.9375rem;
    }

    .theme-tags {
        gap: 0.625rem;
    }

    .theme-tag-content {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
}

/* Sticky Navigation Menu */
.sticky-nav-menu {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
    margin-top: 0;
    border-bottom: 1px solid #e9ecef;
}

.sticky-nav-menu .container {
    padding: 0 15px;
}

.scrollable-nav {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #667eea #f1f1f1;
    padding: 12px 0;
}

.scrollable-nav::-webkit-scrollbar {
    height: 4px;
}

.scrollable-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scrollable-nav::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 2px;
}

.scrollable-nav .nav-link {
    display: inline-block;
    padding: 10px 20px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    position: relative;
}

.scrollable-nav .nav-link:hover {
    color: #667eea;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.scrollable-nav .nav-link.active {
    color: #667eea;
    border-bottom-color: #667eea;
    font-weight: 600;
}

.scrollable-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #667eea;
}

/* Things To Pack Section */
.policy-card.thing-to-pack {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e3f0ff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.08);
}

.policy-card.thing-to-pack .policy-card-header {
    border-bottom: 1px solid rgba(0, 102, 204, 0.15);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.policy-card.thing-to-pack .policy-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.15);
}

.policy-card.thing-to-pack .policy-title {
    color: #0f172a;
    font-weight: 700;
}

.things-to-pack-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.things-to-pack-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    padding-left: 0px !important;
}

.things-to-pack-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.things-to-pack-icon {
    font-size: 32px;
    color: #0066cc;
    flex-shrink: 0;
    margin-top: 2px;
    background: #e7f3ff;
    padding: 8px;
    border-radius: 12px;
}

.things-to-pack-description {
    flex: 1;
    line-height: 1.7;
    color: #1f2937;
    font-weight: 500;
}

.things-to-pack-description strong {
    color: #0f172a;
}

.things-to-pack-description span {
    display: inline-block;
    margin-top: 6px;
    color: #475569;
}

@media (max-width: 768px) {
    .policy-card.thing-to-pack {
        border-radius: 12px;
    }

    .things-to-pack-item {
        flex-direction: row;
        gap: 12px;
    }

    .things-to-pack-icon {
        font-size: 28px;
        padding: 6px;
    }

    .things-to-pack-description {
        font-size: 0.95rem;
    }
}

/* Contact Details Section */
.policy-card-contact {
    border-left: 4px solid transparent;
}

.policy-card-contact .policy-card-header {
    border-bottom-color: #ede9fe;
}

.policy-icon-contact {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
}

.policy-card-contact .policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-card-contact .policy-content ul li::after {
    content: '●';
    position: absolute;
    left: 5px;
    top: 12px;
    color: #ffffff;
    font-size: 8px;
    line-height: 1;
    font-weight: bold;
}

.policy-card-contact .policy-content a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.policy-card-contact .policy-content a:hover {
    color: #7c3aed;
    text-decoration: underline;
}

/* Smooth scroll offset for sticky menu */
html {
    scroll-behavior: smooth;
}

[id^="section-"] {
    scroll-margin-top: 80px;
}

/* Weather Details Styles */
.weather-details {
    width: 100%;
}

.weather-content {
    margin-top: 0.5rem;
}

.weather-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: #667eea;
}

.weather-info {
    width: 100%;
}

.weather-location h6 {
    color: #1a202c;
    font-size: 1.125rem;
}

.weather-main {
    padding: 1rem 0;
}

.weather-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.weather-temp .temperature {
    color: #1a202c;
    line-height: 1.2;
}

.weather-temp .condition {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.weather-stats {
    margin-top: 1rem;
}

.weather-detail-item {
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.weather-detail-item small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.weather-detail-item strong {
    display: block;
    font-size: 1rem;
    color: #1a202c;
    font-weight: 600;
}

.weather-forecast {
    margin-top: 1rem;
    padding-top: 1rem;
}

.weather-error {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Weather Tabs Styles */
.weather-tabs-wrapper {
    margin-top: 1.25rem;
    margin-bottom: 1rem;
}

.weather-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: #f8f9fa;
    padding: 0.375rem;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.weather-tab-btn {
    flex: 1;
    min-width: 0;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    background: transparent;
    border: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.weather-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.weather-tab-btn:hover::before {
    left: 100%;
}

.weather-tab-btn:hover {
    color: #667eea;
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.15);
}

.weather-tab-btn.active {
    color: #ffffff;
    background: linear-gradient(135deg, #6b7bff, #764ba2);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
    transform: translateY(-1px);
}

.weather-tab-btn.active:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.weather-tab-text {
    position: relative;
    z-index: 1;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.weather-tab-btn.active .weather-tab-text {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Hourly Weather Chart Styles */
.weather-hourly-chart {
    width: 100%;
}

.hourly-chart-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.hourly-chart-container::-webkit-scrollbar {
    height: 4px;
}

.hourly-chart-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.hourly-chart-container::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 2px;
}

.hourly-chart-container::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

.hourly-chart-scroll {
    min-width: 100%;
}

.hourly-chart-bars {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    padding: 0.5rem 0;
    min-width: max-content;
}

.hourly-chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 45px;
    gap: 0.25rem;
    padding: 0.25rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hourly-chart-item:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateY(-2px);
}

.hourly-chart-item.current-hour {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid #667eea;
}

.hourly-time {
    font-size: 0.7rem;
    color: #6c757d;
    font-weight: 500;
    white-space: nowrap;
}

.hourly-chart-item.current-hour .hourly-time {
    color: #667eea;
    font-weight: 600;
}

.hourly-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    margin: 0.25rem 0;
}

.hourly-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.hourly-temp-bar-wrapper {
    width: 8px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hourly-temp-bar {
    width: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    min-height: 4px;
    transition: all 0.3s ease;
}

.hourly-chart-item.current-hour .hourly-temp-bar {
    background: linear-gradient(180deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.hourly-temp {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a202c;
    white-space: nowrap;
}

.hourly-chart-item.current-hour .hourly-temp {
    color: #667eea;
    font-weight: 700;
}

@media (max-width: 768px) {
    .weather-icon img {
        width: 56px;
        height: 56px;
    }

    .weather-temp .temperature {
        font-size: 1.75rem;
    }

    .weather-detail-item {
        padding: 0.625rem;
    }
}

@media (max-width: 576px) {
    .weather-icon img {
        width: 48px;
        height: 48px;
    }

    .weather-temp .temperature {
        font-size: 1.5rem;
    }

    .weather-location h6 {
        font-size: 1rem;
    }

    .weather-tabs {
        gap: 0.375rem;
        padding: 0.25rem;
    }

    .weather-tab-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .weather-tabs {
        gap: 0.25rem;
        padding: 0.25rem;
    }

    .weather-tab-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        flex: 1 1 calc(50% - 0.25rem);
    }

    .hourly-chart-item {
        min-width: 40px;
    }

    .hourly-time {
        font-size: 0.65rem;
    }

    .hourly-temp {
        font-size: 0.7rem;
    }

    .hourly-temp-bar-wrapper {
        height: 50px;
    }
}