/* ------------------------------------------------------------------
   Revamp components (2026) — shared across about / home / contact /
   desert-safari / full-day-desert-safari. Colors & spacing match the
   existing theme tokens (--white-color, --black-color, #8b1537).
-------------------------------------------------------------------*/

/* Stats / trust bar */
.gdr_stats_bar {
    padding: 20px 0 10px;
}
.gdr_stat_item {
    text-align: center;
    padding: 20px 10px;
}
.gdr_stat_item .gdr_stat_icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 1px solid #8b1537;
    color: #8b1537;
    font-size: 22px;
}
.gdr_stat_item h2 {
    font-size: 30px;
    font-weight: 600;
    color: #8b1537;
    margin-bottom: 5px;
}
.gdr_stat_item p {
    margin-bottom: 0;
}

/* Service cards (Featured Services / Services grid) */
.gdr_service_card {
    background: var(--white-color);
    border: 1px solid rgba(221, 221, 221, 0.4);
    box-shadow: 4px 8px 14px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.gdr_service_card:hover {
    box-shadow: 4px 14px 28px rgba(0, 0, 0, 0.1);
}
.gdr_service_card_img {
    height: 220px;
    overflow: hidden;
}
.gdr_service_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gdr_service_card:hover .gdr_service_card_img img {
    transform: scale(1.08);
}
.gdr_service_card_body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.gdr_service_card_body h4 {
    margin-bottom: 12px;
}
.gdr_service_card_body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    flex-grow: 1;
}
.gdr_service_card_body ul li {
    padding: 4px 0;
    color: var(--black-color-opacity);
}
.gdr_service_card_body ul li i {
    color: #8b1537;
    margin-right: 8px;
}
.gdr_service_card_meta {
    font-size: 13px;
    color: #8b1537;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Category filter pills */
.gdr_filter_tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.gdr_filter_tabs button {
    border: 1px solid #8b1537;
    background: transparent;
    color: #8b1537;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.gdr_filter_tabs button.active,
.gdr_filter_tabs button:hover {
    background: #8b1537;
    color: var(--white-color);
}

/* Our Values */
.gdr_value_item {
    text-align: center;
    padding: 25px 15px;
}
.gdr_value_item .gdr_value_icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(139, 21, 55, 0.08);
    color: #8b1537;
    font-size: 24px;
}
.gdr_value_item h4 {
    margin-bottom: 10px;
}

/* Our Process (numbered steps) */
.gdr_process {
    position: relative;
    padding-top: 10px;
}
.gdr_process_row {
    position: relative;
}
.gdr_process_row::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(139, 21, 55, 0.25);
    z-index: 0;
}
.gdr_process_step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 15px;
}
.gdr_process_step .gdr_process_number {
    width: 48px;
    height: 48px;
    line-height: 48px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #8b1537;
    color: var(--white-color);
    font-weight: 600;
}
.gdr_process_step h5 {
    margin-bottom: 8px;
}

/* Final CTA banner */
.gdr_cta_banner {
    background: repeating-linear-gradient(135deg, #8b1537, #8b1537 10px, #741027 10px, #741027 20px);
    border-radius: 12px;
    padding: 45px 40px;
    color: var(--white-color);
}
.gdr_cta_banner h2 {
    color: var(--white-color);
    margin-bottom: 20px;
}
.gdr_cta_banner .btn {
    margin: 6px;
}
.gdr_cta_banner .btn_outline_white {
    color: var(--white-color);
    border: 1px solid var(--white-color);
    background: transparent;
    padding: 12px 28px;
    border-radius: 6px;
    display: inline-block;
    transition: var(--transition);
}
.gdr_cta_banner .btn_outline_white:hover {
    background: var(--white-color);
    color: #8b1537;
}
.gdr_cta_form .form-control {
    height: 46px;
    border: none;
    border-radius: 6px;
}
.gdr_cta_form button.btn_outline_white {
    height: 46px;
    padding: 0 10px;
    margin: 0;
    white-space: nowrap;
}

/* Comparison table */
.gdr_compare_table_wrapper {
    overflow-x: auto;
}
.gdr_compare_table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.gdr_compare_table th,
.gdr_compare_table td {
    padding: 14px 16px;
    text-align: center;
    border: 1px solid rgba(221, 221, 221, 0.6);
}
.gdr_compare_table th {
    background: #8b1537;
    color: var(--white-color);
    font-weight: 500;
}
.gdr_compare_table td:first-child,
.gdr_compare_table th:first-child {
    text-align: left;
}
.gdr_compare_table i.fa-check {
    color: #2e7d32;
}
.gdr_compare_table i.fa-times {
    color: #c62828;
}

/* Quick contact strip (contact.php) */
.gdr_quick_contact_strip {
    padding: 30px 0;
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
}
.gdr_quick_contact_item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    padding: 10px;
}
.gdr_quick_contact_item i {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #8b1537;
    color: #8b1537;
    font-size: 18px;
}
.gdr_quick_contact_item h5 {
    margin-bottom: 2px;
    font-size: 14px;
}
.gdr_quick_contact_item p,
.gdr_quick_contact_item p a {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--black-color-opacity);
}

@media only screen and (max-width: 767px) {
    .gdr_process_row::before {
        display: none;
    }
    .gdr_cta_banner {
        text-align: center;
        padding: 35px 20px;
    }
}

/* Footer — Quick Links / Destinations / Newsletter / Contact Us */
#footer_area {
    background: var(--bg-color);
    padding: 70px 0 50px;
}
.footer_heading_area h5 {
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: .6px;
    margin-bottom: 4px;
}
.footer_link_area ul li {
    padding-bottom: 12px;
}
.footer_link_area ul li a {
    position: relative;
    display: inline-block;
    transition: transform .3s ease, color .3s ease;
}
.footer_link_area ul li a:hover {
    transform: translateX(4px);
}
.footer_newsletter_area p,
.footer_contact_area p {
    padding-top: 18px;
    font-size: 14.5px;
    color: var(--paragraph-color);
    line-height: 1.65;
    margin-bottom: 0;
}
.footer_contact_area p {
    padding-top: 0;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer_contact_area p:first-child {
    margin-top: 18px;
}
.footer_contact_area p i {
    color: #8b1537;
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}
.footer_newsletter_area p a,
.footer_contact_area p a {
    color: var(--black-color);
    font-weight: 500;
}
.footer_newsletter_area p a:hover,
.footer_contact_area p a:hover {
    color: #8b1537;
}
.footer_newsletter_form {
    margin-top: 18px;
}
.footer_newsletter_group {
    display: flex;
    align-items: stretch;
    background: var(--white-color);
    border: 1px solid rgba(43, 37, 64, .12);
    border-radius: 30px;
    padding: 4px;
    box-shadow: 0 8px 20px rgba(43, 37, 64, .05);
    transition: border-color .3s ease, box-shadow .3s ease;
}
.footer_newsletter_group:focus-within {
    border-color: #8b1537;
    box-shadow: 0 8px 20px rgba(139, 21, 55, .12);
}
.footer_newsletter_form input[type="email"] {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 16px;
    border: none;
    background: transparent;
    font-size: 13.5px;
}
.footer_newsletter_form input[type="email"]:focus {
    outline: none;
}
.footer_newsletter_form button {
    height: 42px;
    padding: 0 20px;
    border: none;
    border-radius: 26px;
    background: linear-gradient(135deg, #8b1537 0%, #b3275a 100%);
    color: var(--white-color);
    font-weight: 600;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    transition: transform .3s ease, box-shadow .3s ease;
}
.footer_newsletter_form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 21, 55, .3);
}
.footer_contact_area .soical_icon_footer {
    margin: 4px 0 20px;
    gap: 10px;
}
.footer_contact_area .soical_icon_footer li {
    padding-right: 0;
}
.footer_contact_area .soical_icon_footer li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(43, 37, 64, .15);
    color: var(--black-color);
    transition: var(--transition);
}
.footer_contact_area .soical_icon_footer li a:hover {
    background: #8b1537;
    border-color: #8b1537;
    color: var(--white-color);
}
.footer_map_area {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(43, 37, 64, .1);
    box-shadow: 0 10px 24px rgba(43, 37, 64, .08);
}
.footer_map_area iframe {
    display: block;
    height: 130px;
}

/* Site-wide serif section-heading typography (matches homepage editorial style) */
.section_heading_center h2,
.we_offer_area_three h2,
.three_about_right h2,
.tour_details_top_heading h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0;
}
.three_heading_area {
    font-family: 'Poppins', sans-serif;
}

/* Banner slider nav (used on all inner pages: about, contact, tour pages, etc.) */
.banner_slider {
    position: relative;
}
.banner_slider.owl-carousel .owl-nav {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0 24px;
    pointer-events: none;
}
.banner_slider.owl-theme .owl-nav [class*="owl-"] {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(4px);
    color: var(--white-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .3s ease, background .3s ease, border-color .3s ease;
}
.banner_slider.owl-carousel:hover .owl-nav [class*="owl-"] {
    opacity: 1;
}
.banner_slider.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #8b1537;
    border-color: #8b1537;
    color: var(--white-color);
}
.banner_slider.owl-theme .owl-nav .disabled {
    opacity: 0 !important;
    pointer-events: none;
}

/* Banner heading — modern serif typography (matches home/about hero style) */
.common_bannner_text h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4.2vw, 46px);
    letter-spacing: 0;
    text-wrap: balance;
}
.common_bannner_text ul {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .6px;
}
.common_bannner_text ul li a {
    transition: color .3s ease;
}

