.gyg-detail-page {
    background: #fff;
    padding: 2rem 0 4rem;
}

section.gyg-detail-page .container .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 24px;
}

section.gyg-detail-page .container .row .col-lg-8 {
    flex: 0 0 calc(66.666667% - 12px) !important;
    max-width: calc(66.666667% - 12px) !important;
    width: calc(66.666667% - 12px) !important;
    float: none !important;
}

section.gyg-detail-page .container .row .col-lg-4 {
    flex: 0 0 calc(33.333333% - 12px) !important;
    max-width: calc(33.333333% - 12px) !important;
    width: calc(33.333333% - 12px) !important;
    float: none !important;
}

@media (max-width: 991px) {
    section.gyg-detail-page .container .row {
        flex-wrap: wrap !important;
    }
    section.gyg-detail-page .container .row .col-lg-8,
    section.gyg-detail-page .container .row .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

.gyg-title-section {
    margin-bottom: 1.5rem;
}

.gyg-header-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.gyg-header-meta-simple {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.gyg-badge-best {
    background: #1a2b49;
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.gyg-rating-compact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.gyg-rating-compact i {
    color: #FFC107;
    font-size: 0.875rem;
}

.gyg-rating-compact strong {
    margin-left: 0.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.gyg-review-link-simple {
    color: #666;
    text-decoration: none;
}

.gyg-review-link-simple:hover {
    text-decoration: underline;
}

.gyg-separator {
    color: #ccc;
}

.gyg-provider-simple {
    color: #666;
}

.gyg-header-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.gyg-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.gyg-action-btn i {
    font-size: 1.125rem;
}

.gyg-action-btn:hover {
    background: #103474;
    border-color: #103474;
    color: #fff;
    transform: scale(1.08);
}

.gyg-action-btn.gyg-wishlist-btn:hover {
    background: #ff4757;
    border-color: #ff4757;
    color: #fff;
}

.gyg-action-btn.gyg-wishlist-btn.active {
    background: #ff4757;
    border-color: #ff4757;
    color: #fff;
}

.gyg-action-btn.gyg-wishlist-btn.active i {
    font-weight: 900;
}

.gyg-action-btn.gyg-report-btn:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.gyg-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gyg-header-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.gyg-info-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gyg-info-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #555;
}

.gyg-info-tag i {
    color: #1a73e8;
    font-size: 1rem;
}



.gyg-content-section {
    margin-bottom: 2.5rem;
}

.gyg-section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e0e0e0;
}

.gyg-gallery-container {
    display: grid;
    grid-template-columns: 66.66% 33.33%;
    gap: 8px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.gyg-gallery-main {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px 0 0 12px;
}

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

.gyg-gallery-main:hover img {
    transform: scale(1.02);
}

.gyg-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gyg-gallery-item {
    position: relative;
    height: 246px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.gyg-gallery-item:first-child {
    border-radius: 0 12px 0 0;
}

.gyg-gallery-item:last-child {
    border-radius: 0 0 12px 0;
}

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

.gyg-gallery-item:hover img {
    transform: scale(1.05);
}

.gyg-gallery-more {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    pointer-events: none;
}

.gyg-gallery-more i {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.gyg-gallery-more span {
    font-size: 1.5rem;
    font-weight: 700;
}

.gyg-gallery-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.gyg-gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gyg-gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.gyg-gallery-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 100000;
}

.gyg-gallery-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.gyg-gallery-prev,
.gyg-gallery-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 100000;
}

.gyg-gallery-prev:hover,
.gyg-gallery-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.gyg-gallery-prev {
    left: 20px;
}

.gyg-gallery-next {
    right: 20px;
}

.gyg-gallery-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    z-index: 100000;
}



.gyg-content-section {
    margin-bottom: 3rem;
}

.gyg-section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.gyg-section-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.gyg-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gyg-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.gyg-info-item i {
    font-size: 1.5rem;
    color: #333;
    width: 24px;
    flex-shrink: 0;
}

.gyg-info-item strong {
    display: block;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.gyg-info-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.gyg-text-link {
    color: #0052cc;
    text-decoration: underline;
}

.gyg-text-link:hover {
    color: #003d99;
}

.gyg-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gyg-review-count {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

.gyg-show-all-reviews-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    margin-top: 1.5rem;
    background: #103474;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gyg-show-all-reviews-btn:hover {
    background: #0d2a5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 52, 116, 0.3);
}

.gyg-show-all-reviews-btn i {
    font-size: 1.125rem;
}

.gyg-review-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
}

.gyg-review-top {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gyg-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0052cc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.gyg-review-author {
    flex: 1;
}

.gyg-review-author strong {
    color: #1a1a1a;
    font-size: 1rem;
}

.gyg-review-date {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.gyg-review-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.gyg-review-rating i {
    color: #FFC107;
    font-size: 0.9rem;
}

.gyg-review-rating strong {
    margin-left: 0.25rem;
    font-size: 1rem;
    color: #1a1a1a;
}

.gyg-review-comment {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.gyg-button-outline {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid #0052cc;
    border-radius: 8px;
    background: white;
    color: #0052cc;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gyg-button-outline:hover {
    background: #0052cc;
    color: white;
}

.gyg-description-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.gyg-description-content {
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.7;
    max-height: 200px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.gyg-description-content.expanded {
    max-height: none;
}

.gyg-description-content:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}

.gyg-show-more-btn {
    display: block;
    margin: 1rem auto 0;
    padding: 0.5rem 1.5rem;
    background: white;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    color: #333;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gyg-show-more-btn:hover {
    background: #f8f9fa;
    border-color: #999;
}

.gyg-highlights-card,
.gyg-includes-card,
.gyg-not-includes-card,
.gyg-faq-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.gyg-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.gyg-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.gyg-feature-icon {
    font-size: 1.5rem;
    color: #1a73e8;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.gyg-feature-item strong {
    display: block;
    font-size: 0.9375rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.gyg-feature-item p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.gyg-includes-list,
.gyg-not-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.875rem;
}

.gyg-includes-list li,
.gyg-not-includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.6;
}

.gyg-includes-list li i {
    color: #20a577;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.gyg-not-includes-list li i {
    color: #dc3545;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.gyg-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gyg-faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.gyg-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border: none;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gyg-faq-question:hover {
    background: #e9ecef;
}

.gyg-faq-question i {
    color: #666;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.gyg-faq-question.active i {
    transform: rotate(180deg);
}

.gyg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.gyg-faq-answer.show {
    max-height: 500px;
}

.gyg-faq-answer p {
    padding: 1rem 1.25rem;
    margin: 0;
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.7;
}

.gyg-booking-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    z-index: 100;
    height: fit-content;
}

.gyg-booking-box {
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 1.25rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gyg-booking-box::-webkit-scrollbar {
    width: 6px;
}

.gyg-booking-box::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.gyg-booking-box::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 10px;
}

.gyg-booking-box::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

.gyg-price-section {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.gyg-price-label {
    font-size: 0.8125rem;
    color: #333;
    margin-bottom: 0.125rem;
    font-weight: 400;
}

.gyg-price-old {
    font-size: 0.8125rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.gyg-price-main {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.gyg-price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #d32f2f;
    line-height: 1;
}

.gyg-price-currency {
    font-size: 1.375rem;
    font-weight: 700;
    color: #d32f2f;
}

.gyg-price-per {
    font-size: 0.875rem;
    color: #333;
    font-weight: 400;
    margin-left: 0.5rem;
}

.gyg-booking-form-main {
    margin-bottom: 1rem;
}

.gyg-booking-form-main .row {
    margin-bottom: 0.5rem;
}

.gyg-booking-form-main .row .gyg-form-group {
    margin-bottom: 0;
}

.gyg-datetime-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.gyg-date-field,
.gyg-time-field {
    display: flex;
    flex-direction: column;
}

.gyg-input-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.gyg-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
}

.gyg-input-wrapper:hover {
    border-color: #bbb;
}

.gyg-input-wrapper:focus-within {
    border-color: #1a73e8;
    box-shadow: 0 0 0 1px #1a73e8;
}

.gyg-input-wrapper i {
    font-size: 1.125rem;
    color: #666;
}

.gyg-date-input,
.gyg-time-input {
    border: none;
    outline: none;
    font-size: 0.9375rem;
    color: #1a1a1a;
    font-weight: 400;
    background: transparent;
    width: 100%;
    font-family: inherit;
}

.gyg-date-input::-webkit-calendar-picker-indicator,
.gyg-time-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

.gyg-date-input::-webkit-calendar-picker-indicator:hover,
.gyg-time-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.gyg-form-group {
    margin-bottom: 0.5rem;
    position: relative;
}

.gyg-form-group > .gyg-field-label {
    font-size: 0.6875rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: block;
}

.gyg-form-field-box {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gyg-form-group.open .gyg-form-field-box {
    border-color: #1a73e8;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 0 0 1px #1a73e8;
}

.gyg-form-field-box:hover {
    border-color: #999;
}

.gyg-field-icon {
    font-size: 1.125rem;
    color: #333;
    width: 18px;
    flex-shrink: 0;
}

.gyg-field-text {
    flex: 1;
}

.gyg-field-label {
    font-size: 0.6875rem;
    color: #666;
    font-weight: 500;
    display: block;
    margin-bottom: 0.0625rem;
}

.gyg-field-display {
    font-size: 0.875rem;
    color: #1a1a1a;
    font-weight: 500;
}

.gyg-field-chevron {
    color: #666;
    font-size: 0.8125rem;
    transition: transform 0.3s ease;
}

.gyg-form-group.open .gyg-field-chevron {
    transform: rotate(180deg);
}

.gyg-form-dropdown {
    display: none;
    background: white;
    border: 1px solid #1a73e8;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 0.875rem;
    margin-top: -1px;
    box-shadow: 0 0 0 1px #1a73e8;
}

.gyg-form-group.open .gyg-form-dropdown {
    display: block;
}

.gyg-participant-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
}

.gyg-participant-label strong {
    display: block;
    font-size: 0.9375rem;
    color: #1a1a1a;
    margin-bottom: 0.125rem;
    font-weight: 600;
}

.gyg-participant-label small {
    font-size: 0.75rem;
    color: #666;
}

.gyg-participant-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gyg-counter-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #d0d5dd;
    background: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.gyg-counter-button:hover {
    border-color: #1a73e8;
    color: #1a73e8;
}

.gyg-counter-button:active {
    transform: scale(0.92);
}

.gyg-participant-counter input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.gyg-form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    height: 40px;
}

.gyg-form-input:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 1px #1a73e8;
}

.gyg-form-input-inline {
    width: 100%;
    border: none;
    padding: 0;
    font-size: 0.875rem;
    color: #1a1a1a;
    font-weight: 500;
    background: transparent;
}

.gyg-form-input-inline:focus {
    outline: none;
}

.gyg-form-input-inline::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.gyg-form-textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.2s ease;
    min-height: 60px;
}

.gyg-form-textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 1px #1a73e8;
}

.gyg-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    cursor: pointer;
}

.gyg-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.gyg-extras-section {
    margin-bottom: 0.5rem;
}

.gyg-extras-section > .gyg-field-label {
    font-size: 0.6875rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.gyg-extras-list-booking {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.gyg-extra-checkbox-card {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.gyg-extra-checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.gyg-extra-checkbox-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    background: white;
    transition: all 0.2s ease;
}

.gyg-extra-checkbox-card input[type="checkbox"]:checked ~ .gyg-extra-checkbox-content {
    border-color: #1a73e8;
    background: #e3f2fd;
}

.gyg-extra-checkbox-content strong {
    display: block;
    font-size: 0.75rem;
    color: #1a1a1a;
    margin-bottom: 0.0625rem;
}

.gyg-extra-price {
    display: block;
    font-size: 0.6875rem;
    color: #666;
    font-weight: 500;
}

.gyg-extra-checkbox-content i {
    color: #1a73e8;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.gyg-extra-checkbox-card input[type="checkbox"]:checked ~ .gyg-extra-checkbox-content i {
    opacity: 1;
}

.gyg-program-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gyg-program-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.gyg-program-day {
    display: inline-block;
    background: #1a73e8;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.gyg-program-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.gyg-program-desc {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

.gyg-extras-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.gyg-extras-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gyg-extra-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.gyg-extra-item:hover {
    border-color: #1a73e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gyg-extra-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.gyg-extra-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.gyg-extra-link {
    font-size: 0.875rem;
    color: #1a73e8;
    text-decoration: none;
}

.gyg-extra-link:hover {
    text-decoration: underline;
}

.gyg-flow-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.gyg-related-section {
    margin: 3rem 0;
}

.gyg-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.gyg-related-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.gyg-view-all-btn {
    padding: 0.5rem 1.5rem;
    background: #1a73e8;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.gyg-view-all-btn:hover {
    background: #1557b0;
    color: white;
}

.gyg-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gyg-related-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.gyg-related-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.gyg-related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gyg-related-info {
    padding: 1rem;
}

.gyg-related-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gyg-related-link {
    font-size: 0.875rem;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.gyg-related-link:hover {
    text-decoration: underline;
}

.gyg-booking-submit-button {
    width: 100%;
    padding: 0.6875rem;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.25rem;
}

.gyg-booking-submit-button:hover {
    background: #1557b0;
    box-shadow: 0 2px 8px rgba(26,115,232,0.3);
}

.gyg-booking-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e8;
}

.gyg-booking-info-item {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.gyg-booking-info-item:last-child {
    margin-bottom: 0;
}

.gyg-booking-info-item i {
    color: #20a577;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.gyg-booking-info-item strong {
    display: block;
    font-size: 0.8125rem;
    color: #1a1a1a;
    margin-bottom: 0.125rem;
    font-weight: 600;
}

.gyg-booking-info-item p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.gyg-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.gyg-modal-content {
    background-color: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.gyg-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: none;
}

.gyg-modal-filter {
    display: flex;
    gap: 0.5rem;
    padding: 0 2rem 1rem;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.gyg-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gyg-filter-btn:hover {
    background: #e8e8e8;
    border-color: #ccc;
}

.gyg-filter-btn.active {
    background: #103474;
    border-color: #103474;
    color: #fff;
}

.gyg-filter-btn i {
    color: #FFC107;
    font-size: 0.75rem;
}

.gyg-filter-btn.active i {
    color: #FFC107;
}

.gyg-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.gyg-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: #333;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.gyg-modal-close:hover {
    background: #e0e0e0;
}

.gyg-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.gyg-modal-body .gyg-review-card {
    margin-bottom: 1.5rem;
}

.gyg-modal-body .gyg-review-card:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .gyg-title {
        font-size: 1.5rem;
    }
    
    .gyg-header-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gyg-info-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    
    
    .gyg-gallery-container {
        height: 300px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 100px;
    }
    
    .gyg-gallery-main {
        grid-column: span 2;
    }
    
    .gyg-gallery-side {
        grid-column: span 2;
        flex-direction: row;
    }
    
    .gyg-gallery-prev {
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .gyg-gallery-next {
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .gyg-gallery-close {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .gyg-booking-wrapper {
        position: static;
        top: auto;
        margin-top: 2rem;
    }
    
    .gyg-description-content {
        max-height: 150px;
    }
    
    .gyg-price-num {
        font-size: 2rem;
    }
    
    .gyg-price-sym {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .gyg-extras-list-booking {
        grid-template-columns: 1fr;
    }
    
    .gyg-datetime-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .gyg-header-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .gyg-header-meta-simple {
        font-size: 0.8125rem;
        gap: 0.5rem;
    }
    
    .gyg-badge-best {
        font-size: 0.625rem;
        padding: 0.2rem 0.5rem;
    }
    
    .gyg-title {
        font-size: 1.35rem;
    }
    
    .gyg-header-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .gyg-action-btn {
        width: 40px;
        height: 40px;
    }
    
    .gyg-action-btn i {
        font-size: 1rem;
    }
    
    .gyg-gallery-container {
        height: 250px;
        grid-template-rows: 150px 100px;
    }
    
    .gyg-section-heading {
        font-size: 1.25rem;
    }
    
    .gyg-gallery-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .gyg-gallery-counter {
        bottom: 15px;
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .gyg-gallery-prev {
        left: 5px;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .gyg-gallery-next {
        right: 5px;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .gyg-booking-wrapper {
        position: static;
        top: auto;
    }
    
    .gyg-description-card,
    .gyg-highlights-card,
    .gyg-includes-card,
    .gyg-not-includes-card,
    .gyg-faq-card,
    .gyg-program-card,
    .gyg-extras-card,
    .gyg-flow-card {
        padding: 1.25rem;
    }
    
    .gyg-features-grid {
        grid-template-columns: 1fr;
    }
    
    .gyg-extras-list {
        grid-template-columns: 1fr;
    }
    
    .gyg-related-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
}
    
    .gyg-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .gyg-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .gyg-modal-header h2 {
        font-size: 1.25rem;
    }
    
    .gyg-modal-body {
        padding: 1.5rem;
    }
}

.detail-tabs-container {
    margin-top: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

.detail-tabs-nav {
    display: flex;
    gap: 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e8e8e8;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.detail-tabs-nav::-webkit-scrollbar {
    display: none;
}

.detail-tab-btn {
    padding: 1rem 1.25rem;
    border: none;
    background: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    position: relative;
    border-bottom: 3px solid transparent;
}

.detail-tab-btn:hover {
    color: var(--primary-color);
    background: rgba(16, 52, 116, 0.03);
}

.detail-tab-btn.active {
    color: var(--primary-color);
    background: white;
    border-bottom-color: var(--primary-color);
}

.detail-tab-btn i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.tab-badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.detail-tabs-content {
    padding: 0;
}

.detail-tab-panel {
    display: none;
    padding: 1.5rem;
    animation: fadeIn 0.3s ease;
}

.detail-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.includes-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .detail-tabs-nav {
        padding: 0 0.5rem;
    }
    
    .detail-tab-btn {
        padding: 0.85rem 1rem;
        font-size: 0.8rem;
    }
    
    .detail-tab-btn i {
        display: none;
    }
    
    .detail-tab-panel {
        padding: 1rem;
    }
}

.provider-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(16, 52, 116, 0.08);
}

.provider-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.provider-info-box {
    display: flex;
    gap: 1.25rem;
    flex: 1;
}

.provider-avatar-box {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 52, 116, 0.2);
}

.provider-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-avatar-box span {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.provider-details {
    flex: 1;
}

.provider-type-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.provider-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}

.provider-bio-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 0.75rem;
}

.provider-contact-links {
    display: flex;
    gap: 0.5rem;
}

.provider-contact-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.provider-contact-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.provider-contact-links a.whatsapp {
    color: #25d366;
}

.provider-contact-links a.instagram {
    color: #e4405f;
}

.provider-view-profile {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.provider-view-profile:hover {
    background: #0d2a5c;
    color: white;
    transform: translateY(-2px);
}

.provider-products-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(16, 52, 116, 0.1);
}

.provider-products-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem;
}

.provider-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.provider-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.provider-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.provider-product-image {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.provider-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.provider-product-card:hover .provider-product-image img {
    transform: scale(1.05);
}

.provider-product-info {
    padding: 0.75rem;
}

.provider-product-info h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.provider-product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .provider-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .provider-section {
        padding: 1.25rem;
    }
    
    .provider-section-header {
        flex-direction: column;
    }
    
    .provider-info-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .provider-contact-links {
        justify-content: center;
    }
    
    .provider-view-profile {
        width: 100%;
        justify-content: center;
    }
    
    .provider-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


