/* ------------------------------------------------------------------
   Modern Full Day Desert Safari page layer. Scoped entirely under
   body.fullday-page so it never touches other pages.
   Content/copy unchanged — visual polish only, mirroring the
   home/about/contact/desert-safari design language.
-------------------------------------------------------------------*/

.fullday-page {
    --gdr-primary: #8b1537;
    --gdr-primary-soft: rgba(139, 21, 55, 0.08);
    --gdr-gradient: linear-gradient(135deg, #8b1537 0%, #b3275a 55%, #d1476f 100%);
    --gdr-ease: cubic-bezier(.22, .61, .36, 1);
}

.fullday-page h1,
.fullday-page h2,
.fullday-page h3,
.fullday-page h4,
.fullday-page h5,
.fullday-page h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0;
    text-wrap: balance;
}

.fullday-page .section_heading_center h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 500;
    line-height: 1.22;
}

/* ---------- Scroll reveal engine (Framer-style spring reveal) ---------- */
.fullday-page [data-animate] {
    opacity: 0;
    transform: translateY(36px) scale(.98);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
    transition-delay: var(--d, 0s);
    will-change: opacity, transform;
}

.fullday-page [data-animate="left"] {
    transform: translateX(-55px) scale(.98);
}

.fullday-page [data-animate="right"] {
    transform: translateX(55px) scale(.98);
}

.fullday-page [data-animate="zoom"] {
    transform: scale(.9);
}

.fullday-page [data-animate="fade"] {
    transform: none;
}

.fullday-page [data-animate].gdr-in-view {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .fullday-page [data-animate] {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

.fullday-page p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.85;
    color: var(--paragraph-color);
}

.fullday-page .heading_theme {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 22px;
}

.fullday-page .three_heading_area {
    color: var(--gdr-primary);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.fullday-page .btn_theme,
.fullday-page .btn_navberrr {
    font-family: 'Poppins', sans-serif;
    letter-spacing: .5px;
}

/* ---------- Quick facts strip ---------- */
.fullday-page .gdr_quick_contact_strip {
    position: relative;
    z-index: 5;
    margin-top: -60px;
}

.fullday-page .gdr_quick_contact_card {
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 24px 50px rgba(43, 37, 64, .14);
    padding: 10px 20px;
}

.fullday-page .gdr_quick_contact_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 10px;
    transition: transform .35s var(--gdr-ease);
}

.fullday-page .gdr_quick_contact_item:hover {
    transform: translateY(-4px);
}

.fullday-page .gdr_icon_circle {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gdr-gradient);
    box-shadow: 0 10px 22px rgba(139, 21, 55, .28);
}

.fullday-page .gdr_icon_circle i {
    border: none;
    color: var(--white-color);
    font-size: 18px;
}

.fullday-page .gdr_quick_contact_item h5 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: var(--gdr-primary);
}

.fullday-page .gdr_quick_contact_item p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--black-color);
}

/* ---------- Tour details ---------- */
.fullday-page .tour_details_boxed {
    box-shadow: 0 14px 34px rgba(43, 37, 64, .06);
    border-radius: 16px;
}

.fullday-page .tour_details_img_wrapper img {
    border-radius: 16px;
}

.fullday-page .tour_details_img_wrapper .slider-nav .slick-slide {
    margin: 0 6px;
}

.fullday-page .tour_details_img_wrapper .slider-nav .slick-list {
    margin: 0 -6px;
}

.fullday-page .tour_details_right_boxed {
    border-radius: 16px;
    box-shadow: 0 20px 44px rgba(43, 37, 64, .08);
    padding: 30px 26px 34px;
}

.fullday-page .tour_details_right_box_heading h3 {
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 8px;
}

.fullday-page .tour_details_right_box_heading h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    background: var(--gdr-gradient);
    border-radius: 3px;
}

.fullday-page .valid_date_area {
    display: block;
    padding-top: 10px;
}

.fullday-page .valid_date_area_one {
    display: block;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(43, 37, 64, .12);
}

.fullday-page .valid_date_area_one:last-child {
    border-bottom: none;
}

.fullday-page .valid_date_area_one h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 4px;
    padding: 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--gdr-primary);
}

.fullday-page .valid_date_area_one h5 i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gdr-primary-soft);
    color: var(--gdr-primary);
    font-size: 13px;
}

.fullday-page .valid_date_area_one p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--black-color);
    padding-left: 40px;
}

.fullday-page .tour_details_right_boxed .class {
    margin-top: 22px;
}

.fullday-page .tour_details_right_boxed .btn_navberrr {
    width: 100%;
    text-align: center;
    justify-content: center;
    border-radius: 30px;
}

.fullday-page .tour_select_offer_bar_bottom button {
    border-radius: 0 0 16px 16px;
}

.fullday-page .gdr_highlight_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fullday-page .gdr_highlight_chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gdr-primary-soft);
    border: 1px solid rgba(139, 21, 55, .16);
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--black-color);
    transition: background .3s var(--gdr-ease), transform .3s var(--gdr-ease);
}

.fullday-page .gdr_highlight_chip i {
    color: var(--gdr-primary);
    font-size: 12px;
}

.fullday-page .gdr_highlight_chip:hover {
    background: var(--gdr-gradient);
    color: var(--white-color);
    transform: translateY(-2px);
}

.fullday-page .gdr_highlight_chip:hover i {
    color: var(--white-color);
}

.fullday-page .gdr_sticky_sidebar {
    position: sticky;
    top: 100px;
}

/* ---------- Terrain / heritage editorial blocks ---------- */
.fullday-page #three_about_area {
    padding: 90px 0;
}


.fullday-page .three_about_left img {
    border-radius: 16px;
    box-shadow: 0 20px 44px rgba(43, 37, 64, .1);
}

.fullday-page .three_about_right h4.three_heading_area,
.fullday-page .three_about_right h4 {
    color: var(--gdr-primary);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.fullday-page .three_about_right h2 {
    margin-bottom: 18px;
}

/* ---------- Itinerary / value items ---------- */
.fullday-page #gdr_itinerary {
    position: relative;
    background-color: #fdf8f6;
    background-image: radial-gradient(rgba(139, 21, 55, .12) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    padding: 90px 0 100px !important;
    margin-bottom: 60px;
    overflow: hidden;
}

.fullday-page #gdr_itinerary::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: var(--gdr-gradient);
    opacity: .08;
    border-radius: 50%;
    pointer-events: none;
}

.fullday-page #gdr_itinerary::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 320px;
    height: 320px;
    background: var(--gdr-gradient);
    opacity: .06;
    border-radius: 50%;
    pointer-events: none;
}

.fullday-page #gdr_itinerary .container {
    position: relative;
    z-index: 1;
}

.fullday-page [id="gdr_itinerary"] .row,
.fullday-page [id="gdr_safety"] .row {
    row-gap: 24px;
}

.fullday-page #gdr_safety {
    padding-top: 30px !important;
}

.fullday-page .gdr_value_item {
    text-align: center;
    background: var(--white-color);
    border: 1px solid rgba(43, 37, 64, .08);
    border-radius: 16px;
    padding: 34px 24px;
    height: 100%;
    box-shadow: 0 10px 26px rgba(43, 37, 64, .08);
    transition: transform .4s var(--gdr-ease), box-shadow .4s var(--gdr-ease), border-color .4s var(--gdr-ease);
}

.fullday-page .gdr_value_item:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 21, 55, .2);
    box-shadow: 0 22px 44px rgba(139, 21, 55, .16);
}

.fullday-page [id="gdr_safety"] .gdr_value_item {
    margin-bottom: 22px;
}

.fullday-page [id="gdr_safety"] .gdr_value_item:last-child {
    margin-bottom: 0;
}

.fullday-page .gdr_value_icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gdr-primary-soft);
    color: var(--gdr-primary);
    font-size: 22px;
}

.fullday-page .gdr_value_item[style*="text-align:left"] .gdr_value_icon {
    margin: 0 0 16px;
}

.fullday-page .gdr_value_item h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.fullday-page .gdr_value_item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--paragraph-color);
    margin-bottom: 0;
}

/* ---------- Itinerary timeline ---------- */
.fullday-page .gdr_timeline {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    margin-top: 20px;
}

.fullday-page .gdr_timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(139, 21, 55, .28) 0, rgba(139, 21, 55, .28) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}

.fullday-page .gdr_timeline_item {
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.fullday-page .gdr_timeline_marker {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.fullday-page .gdr_timeline_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gdr-gradient);
    color: var(--white-color);
    font-size: 22px;
    box-shadow: 0 12px 26px rgba(139, 21, 55, .3);
    border: 4px solid var(--white-color);
    transition: transform .4s var(--gdr-ease), box-shadow .4s var(--gdr-ease);
}

.fullday-page .gdr_timeline_item:hover .gdr_timeline_icon {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 18px 34px rgba(139, 21, 55, .4);
}

.fullday-page .gdr_timeline_card {
    background: var(--white-color);
    border: 1px solid rgba(43, 37, 64, .08);
    border-radius: 16px;
    padding: 26px 20px;
    flex: 1;
    box-shadow: 0 10px 26px rgba(43, 37, 64, .08);
    transition: transform .4s var(--gdr-ease), box-shadow .4s var(--gdr-ease), border-color .4s var(--gdr-ease);
}

.fullday-page .gdr_timeline_item:hover .gdr_timeline_card {
    transform: translateY(-6px);
    border-color: rgba(139, 21, 55, .2);
    box-shadow: 0 22px 44px rgba(139, 21, 55, .16);
}

.fullday-page .gdr_timeline_card h4 {
    font-size: 16.5px;
    margin-bottom: 8px;
}

.fullday-page .gdr_timeline_card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--paragraph-color);
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .fullday-page .gdr_timeline {
        flex-direction: column;
        gap: 20px;
    }

    .fullday-page .gdr_timeline::before {
        top: 30px;
        bottom: 30px;
        left: 30px;
        width: 2px;
        height: auto;
        right: auto;
        background: repeating-linear-gradient(180deg, rgba(139, 21, 55, .28) 0, rgba(139, 21, 55, .28) 8px, transparent 8px, transparent 16px);
    }

    .fullday-page .gdr_timeline_item {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }

    .fullday-page .gdr_timeline_marker {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

/* ---------- Gallery ---------- */
.fullday-page #gdr_gallery {
    position: relative;
    background-color: #fdf8f6;
    background-image: repeating-linear-gradient(45deg, rgba(139, 21, 55, .05) 0, rgba(139, 21, 55, .05) 1px, transparent 1px, transparent 18px);
    padding: 90px 0 100px !important;
    overflow: hidden;
}

.fullday-page #gdr_gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gdr-gradient);
    opacity: .5;
}

.fullday-page #gdr_gallery::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border: 40px solid var(--gdr-primary);
    opacity: .05;
    border-radius: 50%;
    pointer-events: none;
}

.fullday-page #gdr_gallery .container {
    position: relative;
    z-index: 1;
}

.fullday-page #gdr_gallery img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    transition: transform .5s var(--gdr-ease), box-shadow .5s var(--gdr-ease);
    box-shadow: 0 14px 32px rgba(43, 37, 64, .1);
}

.fullday-page #gdr_gallery img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 48px rgba(139, 21, 55, .2);
}

/* ---------- Best time to visit ---------- */
.fullday-page #gdr_best_time {
    background: white;
    border-bottom: 1px solid #f6ebec;
}

.fullday-page #gdr_best_time .three_heading_area {
    display: inline-block;
    margin-bottom: 14px;
}

.fullday-page #gdr_best_time h2 {
    margin-bottom: 20px;
}

.fullday-page #gdr_best_time p {
    margin-bottom: 30px;
}

.fullday-page #gdr_best_time img {
    box-shadow: 0 20px 44px rgba(43, 37, 64, .1);
}

/* ---------- Guest quote cards (matches home/about/desert-safari) ---------- */
.fullday-page #gdr_guest_reviews {
    background: var(--white-color);
    padding: 90px 0 !important;
}

.fullday-page .gdr_guest_review_slider .owl-stage-outer {
    padding: 10px 0 20px;
    background: transparent;
}
.fullday-page .gdr_guest_review_slide {
    height: 100%;
}
.fullday-page .gdr_guest_review_slider .owl-stage {
    display: flex;
    align-items: stretch;
}
.fullday-page .gdr_guest_review_slider .owl-item {
    display: flex;
    height: auto;
}

.fullday-page .gdr_quote_card {
    position: relative;
    overflow: hidden;
    background: var(--gdr-gradient);
    border: none;
    box-shadow: 0 18px 40px rgba(139, 21, 55, .22);
    border-radius: 18px;
    padding: 34px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .35s var(--gdr-ease), box-shadow .35s var(--gdr-ease);
}

.fullday-page .gdr_quote_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 52px rgba(139, 21, 55, .32);
}

.fullday-page .gdr_quote_card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 160px;
    height: 160px;
    background-image: url('../img/logo-footer.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .12;
    pointer-events: none;
    z-index: 0;
}

.fullday-page .gdr_quote_card>* {
    position: relative;
    z-index: 1;
}

.fullday-page .gdr_quote_icon {
    font-size: 26px;
    color: var(--white-color);
    opacity: .45;
    margin-bottom: 14px;
}

/* ---------- Google Reviews branding ---------- */
.fullday-page .gdr_google_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5f6368;
}
.fullday-page .gdr_google_g {
    width: 20px;
    height: 20px;
}
.fullday-page .gdr_google_rating_line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.fullday-page .gdr_google_rating_score {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--black-color);
}
.fullday-page .gdr_google_rating_stars i {
    color: #fbbc05;
    font-size: 14px;
    margin-right: 2px;
}
.fullday-page .gdr_google_rating_count {
    font-size: 13px;
    color: var(--paragraph-color);
}
.fullday-page .gdr_quote_google_icon {
    width: 30px;
    height: 30px;
    background: var(--white-color);
    border-radius: 50%;
    padding: 6px;
    margin-bottom: 14px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
}

.fullday-page .gdr_quote_card .review_star_all {
    margin-bottom: 16px;
}

.fullday-page .gdr_quote_card .review_star_all i {
    font-size: 14px;
    margin-right: 2px;
    color: var(--white-color);
}

.fullday-page .gdr_quote_card p {
    flex-grow: 1;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 22px;
}

.fullday-page .gdr_quote_author {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .25);
}

.fullday-page .gdr_quote_author h4 {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 2px;
}

.fullday-page .gdr_quote_author span {
    font-size: 12.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ---------- Compare Packages ---------- */
.fullday-page .gdr_compare_table_wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(43, 37, 64, .08);
}

.fullday-page .gdr_compare_table th {
    background: var(--gdr-gradient) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* ---------- Our Process (accordion-hover bento, matches home/about/desert-safari) ---------- */
.fullday-page #gdr_our_process {
    background: #c136641a;
    padding: 90px 0 !important;
}

.fullday-page .gdr_process_bento {
    display: flex;
    gap: 4px;
    height: 100%;
}

.fullday-page .gdr_process_step {
    display: flex;
    flex-direction: column;
    flex: 0.7 1 0;
    min-width: 0;
    height: 100%;
    transition: flex .6s var(--gdr-ease);
}

.fullday-page .gdr_process_step_1 {
    flex: 2 1 0;
}

.fullday-page .gdr_process_bento:hover .gdr_process_step {
    flex: 0.7 1 0;
}

.fullday-page .gdr_process_bento .gdr_process_step:hover {
    flex: 2 1 0;
}

.fullday-page .gdr_process_head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
    padding: 10px 14px 10px 10px;
    width: fit-content;
    background: linear-gradient(145deg, #ffffff, #f6ebec);
    border-radius: 16px;
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, .8),
        inset -2px -2px 4px rgba(139, 21, 55, .08),
        0 6px 14px rgba(43, 37, 64, .07);
    transition: background .4s var(--gdr-ease), box-shadow .4s var(--gdr-ease);
}

.fullday-page .gdr_process_number {
    position: relative;
    flex-shrink: 0;
    margin: 0;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: var(--gdr-gradient) !important;
    box-shadow: 0 10px 22px rgba(139, 21, 55, .35);
    font-size: 15px;
    transition: transform .5s var(--gdr-ease);
}

.fullday-page .gdr_process_step:hover .gdr_process_number {
    transform: scale(1.12);
}

.fullday-page .gdr_process_card {
    position: relative;
    overflow: hidden;
    background: var(--white-color);
    border-radius: 20px;
    padding: 28px 26px 30px;
    flex-grow: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    box-shadow: 0 10px 26px rgba(43, 37, 64, .06);
    transition: transform .5s var(--gdr-ease), box-shadow .5s var(--gdr-ease);
}

.fullday-page .gdr_process_card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gdr-gradient);
    transform: translateX(-100%);
    transition: transform .6s cubic-bezier(.65, 0, .35, 1);
    z-index: 0;
}

.fullday-page .gdr_process_step_1 .gdr_process_card::before {
    transform: translateX(0);
}

.fullday-page .gdr_process_bento:hover .gdr_process_card::before {
    transform: translateX(-100%);
}

.fullday-page .gdr_process_bento .gdr_process_step:hover .gdr_process_card::before {
    transform: translateX(0);
}

.fullday-page .gdr_process_step_1 .gdr_process_head,
.fullday-page .gdr_process_bento .gdr_process_step:hover .gdr_process_head {
    background: rgba(255, 255, 255, .16) !important;
    border: 1px solid rgba(255, 255, 255, .3) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15) !important;
}

.fullday-page .gdr_process_bento:hover .gdr_process_head {
    background: linear-gradient(145deg, #ffffff, #f6ebec);
    border-color: transparent;
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, .8),
        inset -2px -2px 4px rgba(139, 21, 55, .08),
        0 6px 14px rgba(43, 37, 64, .07);
}

.fullday-page .gdr_process_step_1 .gdr_process_head h5,
.fullday-page .gdr_process_bento .gdr_process_step:hover .gdr_process_head h5 {
    color: var(--white-color);
}

.fullday-page .gdr_process_step_1 .gdr_process_number,
.fullday-page .gdr_process_bento .gdr_process_step:hover .gdr_process_number {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .4), 0 6px 14px rgba(0, 0, 0, .2);
}

.fullday-page .gdr_process_card::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: -18px;
    width: 120px;
    height: 120px;
    background-image: url('../img/logo_black.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .12;
    z-index: 0;
    pointer-events: none;
}

.fullday-page .gdr_process_card>* {
    position: relative;
    z-index: 1;
}

.fullday-page .gdr_process_step:hover .gdr_process_card {
    transform: translateY(-8px);
    box-shadow: 0 26px 50px rgba(139, 21, 55, .2);
}

.fullday-page .gdr_process_card h5 {
    font-size: 14px;
    margin-bottom: 0;
    transition: transform .5s var(--gdr-ease);
}

.fullday-page .gdr_process_step:hover .gdr_process_card h5 {
    transform: translateY(-3px);
}

.fullday-page .gdr_process_card p {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 14.5px;
    color: var(--black-color-opacity);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .5s var(--gdr-ease), opacity .35s ease, margin-top .5s var(--gdr-ease);
}

.fullday-page .gdr_process_step_1 .gdr_process_card p,
.fullday-page .gdr_process_bento .gdr_process_step:hover .gdr_process_card p {
    max-height: 160px;
    opacity: 1;
    margin-top: 10px;
    color: rgba(255, 255, 255, .9) !important;
}

.fullday-page .gdr_process_bento:hover .gdr_process_card p {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.fullday-page .gdr_process_bento .gdr_process_step:hover .gdr_process_card p {
    transition: max-height .5s var(--gdr-ease) .1s, opacity .4s ease .15s, margin-top .5s var(--gdr-ease) .1s;
}

@media only screen and (max-width: 991px) {
    .fullday-page .gdr_process_bento {
        flex-direction: column;
    }

    .fullday-page .gdr_process_bento .gdr_process_step,
    .fullday-page .gdr_process_step_1,
    .fullday-page .gdr_process_bento:hover .gdr_process_step,
    .fullday-page .gdr_process_bento:hover .gdr_process_step_1,
    .fullday-page .gdr_process_bento .gdr_process_step:hover {
        flex: 1 1 auto;
    }

    .fullday-page .gdr_process_step {
        margin-bottom: 20px;
    }
}

/* ---------- FAQ accordion ---------- */
.fullday-page #faqs_main_arae .accordion-item {
    border: 1px solid rgba(139, 21, 55, .08) !important;
    border-radius: 0 !important;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 10px 26px rgba(43, 37, 64, .05);
    transition: box-shadow .35s var(--gdr-ease), transform .35s var(--gdr-ease);
}

.fullday-page #faqs_main_arae .accordion-item:hover {
    box-shadow: 0 16px 34px rgba(139, 21, 55, .12);
    transform: translateY(-3px);
}

.fullday-page #faqs_main_arae .accordion-button {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 17px;
    padding: 22px 26px;
    color: var(--white-color) !important;
    background: var(--black-color) !important;
    border-radius: 0 !important;
}

.fullday-page #faqs_main_arae .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.fullday-page #faqs_main_arae .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(139, 21, 55, .2);
}

.fullday-page #faqs_main_arae .accordion-button::after {
    background-image: none !important;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2) !important;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: transform .35s var(--gdr-ease), background .35s var(--gdr-ease), color .35s var(--gdr-ease);
}

.fullday-page #faqs_main_arae .accordion-button:not(.collapsed)::after {
    background: rgba(255, 255, 255, .3) !important;
    color: var(--white-color);
    transform: rotate(45deg);
}

.fullday-page #faqs_main_arae .accordion-body {
    padding: 4px 26px 24px;
}

.fullday-page #faqs_main_arae .accordion-body p {
    font-size: 14.5px;
    line-height: 1.7;
}.fullday-page #gdr_tripadvisor {
    padding: 90px 0;
}

.fullday-page .gdr_ta_widget {
    background: var(--white-color);
    border: 1px solid rgba(43, 37, 64, .06);
    box-shadow: none;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    height: 100%;
    transition: transform .35s var(--gdr-ease);
}

.fullday-page .gdr_ta_widget:hover {
    transform: translateY(-6px);
    box-shadow: none;
}

.fullday-page .gdr_ta_widget img {
    max-width: 180px;
}

.fullday-page .gdr_ta_intro_logo {
    display: block;
    width: 150px;
    margin-bottom: 18px;
}

.fullday-page .gdr_ta_intro p {
    margin-bottom: 26px;
}

.fullday-page .gdr_ta_intro .btn_theme {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.fullday-page .gdr_ta_bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.fullday-page .gdr_ta_bento_item {
    display: flex;
}

.fullday-page .gdr_ta_bento_item .gdr_ta_widget {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ---------- Real Tripadvisor guest-review slider ---------- */
.fullday-page .gdr_ta_review_slider .owl-stage-outer {
    padding: 10px 0 20px;
}
.fullday-page .gdr_ta_review_slide {
    height: 100%;
}
.fullday-page .gdr_ta_review_slider .owl-item {
    display: flex;
    height: auto;
}
.fullday-page .gdr_ta_review_card {
    background: var(--white-color);
    border: 1px solid rgba(43, 37, 64, .06);
    box-shadow: none;
    border-radius: 18px;
    padding: 22px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .35s var(--gdr-ease);
}
.fullday-page .gdr_ta_review_card:hover {
    transform: translateY(-6px);
    box-shadow: none;
}
.fullday-page .gdr_ta_review_head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.fullday-page .gdr_ta_review_avatar {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.fullday-page .gdr_ta_review_avatar_fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gdr-primary-soft);
    color: var(--gdr-primary);
    font-size: 15px;
}
.fullday-page .gdr_ta_review_head h5 {
    font-size: 14.5px;
    margin-bottom: 2px;
}
.fullday-page .gdr_ta_review_stars i {
    font-size: 10.5px;
    color: #ffb400;
    margin-right: 1px;
}
.fullday-page .gdr_ta_review_badge {
    margin-left: auto;
    color: #34e0a1;
    font-size: 20px;
}
.fullday-page .gdr_ta_review_text {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--paragraph-color);
    font-style: italic;
    flex-grow: 1;
}
.fullday-page .gdr_ta_review_photo {
    width: 150px !important;
    height: 100px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    margin: 13px 0 !important;
    max-width: 150px;
    max-height: 100px;
    align-self: flex-start;
}
.fullday-page .gdr_ta_review_date {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(43, 37, 64, .45);
}

.fullday-page .gdr_ta_bento_item_1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.fullday-page .gdr_ta_bento_item_2 {
    grid-column: 2;
    grid-row: 1;
}

.fullday-page .gdr_ta_bento_item_3 {
    grid-column: 2;
    grid-row: 2;
}

@media only screen and (max-width: 991px) {
    .fullday-page .gdr_ta_intro {
        margin-bottom: 30px;
    }

    .fullday-page .gdr_ta_bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .fullday-page .gdr_ta_bento_item_1,
    .fullday-page .gdr_ta_bento_item_2,
    .fullday-page .gdr_ta_bento_item_3 {
        grid-column: auto;
        grid-row: auto;
    }
}
