/* ============================================================
   RAJASTHAN TOURS
   GLOBAL THEME
============================================================ */

:root {

    /* PRIMARY */
    --rj-primary: #8B1E2D;
    --rj-primary-dark: #681521;
    --rj-primary-light: #A72D3E;

    /* GOLD */
    --rj-gold: #C89B3C;
    --rj-gold-dark: #b38704;
    --rj-gold-light: #ffc107;

    /* TERRACOTTA */
    --rj-terracotta: #B85C38;

    /* BACKGROUND */
    --rj-cream: #FBF7EF;
    --rj-cream-dark: #F2E8D7;
    --rj-white: #FFFFFF;

    /* TEXT */
    --rj-heading: #25201D;
    --rj-text: #111111;
    --rj-muted: #111111;

    /* BORDER */
    --rj-border: #E5D9C8;

    /* SHADOW */
    --rj-shadow-sm:
        0 5px 20px rgba(50, 30, 20, 0.08);

    --rj-shadow-md:
        0 12px 35px rgba(50, 30, 20, 0.13);

    /* RADIUS */
    --rj-radius-sm: 5px;
    --rj-radius-md: 10px;
    --rj-radius-lg: 16px;

    /* TRANSITION */
    --rj-transition: all 0.3s ease;

}


/* ============================================================
   GLOBAL
============================================================ */

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    padding: 0;

    font-family:
        "Inter",
        "-apple-system",
        "BlinkMacSystemFont",
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--rj-text);

    background:
        var(--rj-white);

    font-size: 14px;

    line-height: 1.6;

}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* ============================================================
   TOP BAR
============================================================ */

.rj-topbar {

    background:
        var(--rj-primary);

    color:
        rgba(255, 255, 255, 0.9);

    height: 32px;

    display: flex;

    align-items: center;

    font-size: 13px;

}

.rj-topbar-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 32px;

}

.rj-topbar-left {

    display: flex;

    align-items: center;

    gap: 13px;

    font-size: 13px;

}

.rj-topbar a {

    color:
        rgba(255, 255, 255, 0.92);

    display: inline-flex;

    align-items: center;

    gap: 6px;

    transition:
        var(--rj-transition);

}

.carousel-indicators [data-bs-target] {
    border-top: 0px;
    border-bottom: 0px;
    height: 7px;
    border-radius: 3px !important;
}

.rj-topbar a:hover {
    color: var(--rj-gold-light);
}

.rj-topbar i {
    font-size: 13px;
}

.rj-top-divider {

    width: 1px;

    height: 13px;

    background:
        rgba(255, 255, 255, 0.25);

}

.rj-topbar-right a {

    font-weight: 600;

}


/* ============================================================
   MAIN HEADER
============================================================ */

.rj-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.98);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.06);

}

.rj-navbar {

    min-height: 67px;

    padding:
        0;

}


/* ============================================================
   LOGO
============================================================ */

.rj-brand {

    display: flex;

    align-items: center;

    gap: 9px;

}

.rj-logo-mark {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--rj-gold);

    border:
        1px solid var(--rj-gold);

    border-radius:
        4px;

    position: relative;

}

.rj-logo-mark::before {

    content: "";

    position: absolute;

    inset: 4px;

    border:
        1px solid rgba(200, 155, 60, 0.35);

}

.rj-logo-mark i {
    font-size: 22px;
}

.rj-logo-content {

    display: flex;

    flex-direction: column;

    line-height: 1;

}

.rj-logo-title {

    color:
        var(--rj-primary);

    font-size: 15px;

    font-weight: 800;

    letter-spacing:
        0.4px;

}

.rj-logo-content small {

    margin-top: 5px;

    color:
        var(--rj-muted);

    font-size: 8px;

    font-weight: 500;

    letter-spacing:
        0.15px;

}


/* ============================================================
   NAVIGATION
============================================================ */

.rj-nav-list {

    gap: 3px;

}

.rj-nav-link {

    position: relative;

    color:
        #39332F !important;

    font-size: 15px;

    font-weight: 500;

    padding:
        25px 12px !important;

    transition:
        var(--rj-transition);

}

.rj-nav-link:hover {

    color:
        var(--rj-primary) !important;

}

.rj-nav-link::after {

    content: "";

    position: absolute;

    left: 12px;

    right: 12px;

    bottom: 14px;

    height: 2px;

    background:
        var(--rj-primary);

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        var(--rj-transition);

}

.rj-nav-link:hover::after,
.rj-nav-link.active::after {

    transform:
        scaleX(1);

}


/* ============================================================
   NAV CTA
============================================================ */

.rj-nav-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        9px 15px;

    min-height: 34px;

    border-radius:
        4px;

    background:
        var(--rj-primary);

    color:
        var(--rj-white);

    font-size: 12px;

    font-weight: 700;

    transition:
        var(--rj-transition);

}

.rj-nav-cta:hover {

    background:
        var(--rj-primary-dark);

    color:
        var(--rj-white);

    transform:
        translateY(-1px);

    box-shadow:
        var(--rj-shadow-sm);

}


/* ============================================================
   MOBILE TOGGLER
============================================================ */

.rj-navbar-toggler {

    border:
        1px solid var(--rj-border);

    color:
        var(--rj-primary);

    padding:
        7px 10px;

    border-radius:
        5px;

}

.rj-navbar-toggler:focus {

    box-shadow:
        none;

}


/* ============================================================
   HERO
============================================================ */

.rj-hero {

    position: relative;

    width: 100%;

    overflow: hidden;

}

.rj-hero-slide {

    position: relative;

    height:
        480px;

    overflow: hidden;

}

.rj-hero-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transform:
        scale(1.01);

}


/* ============================================================
   HERO OVERLAY
============================================================ */

.rj-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(30, 20, 17, 0.68) 0%,
            rgba(30, 20, 17, 0.42) 38%,
            rgba(30, 20, 17, 0.08) 72%,
            rgba(30, 20, 17, 0.02) 100%);

}


/* ============================================================
   HERO CONTENT
============================================================ */

.rj-hero-content {

    position: relative;

    z-index: 3;

    height: 480px;

    max-width: 570px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-bottom:
        15px;

}

.rj-hero-eyebrow {

    display: inline-block;

    color:
        var(--rj-gold-light);

    font-size: 13px;

    font-weight: 700;

    letter-spacing:
        2px;

    margin-bottom:
        7px;

}

.rj-hero-content h1 {

    margin: 0 0 10px;

    color:
        var(--rj-white);

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing:
        -1.2px;

}

.rj-hero-content p {

    max-width: 500px;

    margin:
        0 0 22px;

    color:
        rgba(255, 255, 255, 0.91);

    font-size: 16px;

    line-height: 1.65;

}


/* ============================================================
   HERO BUTTONS
============================================================ */

.rj-hero-buttons {

    display: flex;

    align-items: center;

    gap: 10px;

}

.rj-btn-primary,
.rj-btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 37px;

    padding:
        9px 17px;

    border-radius:
        4px;

    font-size: 14px;

    font-weight: 700;

    transition:
        var(--rj-transition);

}

.rj-btn-primary {

    color:
        var(--rj-white);

    background:
        var(--rj-primary);

    border:
        1px solid var(--rj-primary);

}

.rj-btn-primary:hover {

    color:
        var(--rj-white);

    background:
        var(--rj-primary-dark);

    border-color:
        var(--rj-primary-dark);

    transform:
        translateY(-2px);

}

.rj-btn-outline {

    color:
        var(--rj-white);

    border:
        1px solid rgba(255, 255, 255, 0.65);

    background:
        rgba(255, 255, 255, 0.04);

}

.rj-btn-outline:hover {

    color:
        var(--rj-heading);

    background:
        var(--rj-white);

    border-color:
        var(--rj-white);

}


/* ============================================================
   HERO ARROWS
============================================================ */

.rj-slider-arrow {

    width:
        70px;

    opacity:
        1;

}

.rj-arrow-icon {

    width:
        40px;

    height:
        40px;

    border-radius:
        50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(25, 20, 18, 0.55);

    border:
        1px solid rgba(255, 255, 255, 0.25);

    transition:
        var(--rj-transition);

}

.rj-arrow-icon:hover {

    background:
        var(--rj-primary);

}

.rj-arrow-icon i {

    font-size:
        10px;

}


/* ============================================================
   HERO INDICATORS
============================================================ */

.rj-hero-indicators {

    margin-bottom:
        12px;

    z-index: 10;

}

.rj-hero-indicators button {

    width:
        6px;

    height:
        6px;

    margin:
        0 4px;

    border:
        1px solid rgba(255, 255, 255, 0.8);

    border-radius:
        50%;

    background:
        transparent;

    opacity:
        1;

}

.rj-hero-indicators button.active {

    width:
        40px;

    border-radius:
        10px;

    background:
        #ffc107;

    border-color:
        #ffc107;

}


/* ============================================================
   DEMO SPACE
============================================================ */

.rj-demo-space {

    min-height:
        250px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    background:
        var(--rj-cream);

}

.rj-demo-space p {

    color:
        var(--rj-muted);

    font-size:
        13px;

}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 991px) {

    .rj-topbar {

        height:
            auto;

        min-height:
            32px;

    }

    .rj-topbar-inner {

        min-height:
            32px;

        padding:
            5px 0;

    }

    .rj-topbar-left {

        gap:
            8px;

    }



    .rj-topbar-right {

        display:
            none;

    }

    .rj-navbar {

        min-height:
            62px;

    }

    .rj-nav-list {

        padding:
            12px 0 15px;

        align-items:
            stretch !important;

    }

    .rj-nav-link {

        padding:
            10px 0 !important;

    }

    .rj-nav-link::after {

        display:
            none;

    }

    .rj-nav-cta {

        margin-top:
            7px;

        text-align:
            center;

    }

    .rj-hero-slide {

        height:
            470px;

    }

    .rj-hero-content {

        height:
            470px;

    }

}


@media (max-width: 575px) {

    .rj-topbar-left a {

        font-size:
            12px;

    }

    .rj-topbar-left a:nth-of-type(3) {

        display:
            none;

    }

    .rj-logo-title {

        font-size:
            13px;

    }

    .rj-logo-content small {

        font-size:
            7px;

    }

    .rj-logo-mark {

        width:
            38px;

        height:
            38px;

    }

    .rj-logo-mark i {

        font-size:
            18px;

    }

    .rj-hero-slide {

        height:
            400px;

    }

    .rj-hero-content {

        height:
            400px;

        max-width:
            100%;

        padding:
            0 15px 10px;

    }

    .rj-hero-content h1 {

        font-size:
            39px;

        letter-spacing:
            -0.8px;

    }

    .rj-hero-content p {

        font-size:
            13px;

        max-width:
            370px;

    }

    .rj-hero-buttons {

        flex-wrap:
            wrap;

    }

    .rj-btn-primary,
    .rj-btn-outline {

        padding:
            9px 13px;

    }

    .rj-slider-arrow {

        width:
            35px;

    }

}

/* =========================================================
   RAJASTHAN ABOUT SECTION
========================================================= */

.rj-about-section {
    position: relative;
    background: var(--rj-cream);
    overflow: hidden;
}


/* Decorative Background */
.rj-about-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(200, 155, 60, 0.14);
    border-radius: 50%;
    left: -150px;
    top: 80px;
}

.rj-about-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(139, 30, 45, 0.08);
    border-radius: 50%;
    right: -80px;
    bottom: 30px;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.rj-about-visual {
    position: relative;
    padding: 18px 18px 25px 0;
}


/* Main Image */
.rj-about-main-img {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: var(--rj-radius-md);
    background: var(--rj-cream-dark);
    box-shadow: var(--rj-shadow-md);
}


/* Image */
.rj-about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}


/* Image Hover */
.rj-about-visual:hover .rj-about-main-img img {
    transform: scale(1.04);
}


/* Image Overlay */
.rj-about-main-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(37, 32, 29, 0.02) 45%,
            rgba(37, 32, 29, 0.42) 100%);
    pointer-events: none;
}


/* =========================================================
   DECORATIVE CORNERS
========================================================= */

.rj-about-corner {
    position: absolute;
    width: 85px;
    height: 85px;
    border-color: var(--rj-gold);
    border-style: solid;
    z-index: 3;
}

.rj-about-corner-top {
    top: 0;
    left: -10px;
    border-width: 2px 0 0 2px;
}

.rj-about-corner-bottom {
    right: 0;
    bottom: 8px;
    border-width: 0 2px 2px 0;
}


/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.rj-about-experience {
    position: absolute;
    top: 40px;
    right: -5px;

    min-width: 145px;
    padding: 15px 17px;

    display: flex;
    align-items: center;
    gap: 12px;

    background: var(--rj-white);
    border: 1px solid var(--rj-border);
    border-radius: var(--rj-radius-sm);

    box-shadow: var(--rj-shadow-md);
    z-index: 5;
}


.rj-about-exp-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rj-primary);
    color: var(--rj-gold-light);

    border-radius: 50%;
    font-size: 15px;
}


.rj-about-experience span {
    display: block;
    font-size: 10px;
    color: var(--rj-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}


.rj-about-experience strong {
    display: inline-block;
    font-size: 22px;
    line-height: 1;
    color: var(--rj-primary);
    margin-right: 4px;
}


.rj-about-experience small {
    font-size: 10px;
    color: var(--rj-text);
}


/* =========================================================
   FLOATING CARD
========================================================= */

.rj-about-floating-card {
    position: absolute;
    left: -18px;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 18px;

    background: var(--rj-primary);
    color: var(--rj-white);

    border-radius: var(--rj-radius-sm);

    box-shadow: var(--rj-shadow-md);
    z-index: 5;
}


.rj-about-floating-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;

    color: var(--rj-gold-light);
    font-size: 15px;
}


.rj-about-floating-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
}


.rj-about-floating-card span {
    display: block;
    margin-top: 2px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}


/* =========================================================
   CONTENT
========================================================= */

.rj-about-content {
    padding-left: 15px;
}


/* Eyebrow */
.rj-about-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    color: var(--rj-gold-dark);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.rj-about-line {
    width: 30px;
    height: 2px;
    background: var(--rj-gold);
    display: inline-block;
}


/* Heading */
.rj-about-title {
    max-width: 580px;

    margin: 0 0 15px;

    color: var(--rj-heading);

    font-size: clamp(29px, 3.2vw, 44px);
    line-height: 1.12;

    font-weight: 700;
    letter-spacing: -0.7px;
}


.rj-about-title span {
    display: block;
    color: var(--rj-primary);
}


/* Paragraph */
.rj-about-description {
    max-width: 570px;

    margin: 0 0 9px;

    color: var(--rj-text);

    font-size: 14px;
    line-height: 1.75;
}


.rj-about-description-small {
    color: var(--rj-muted);
}


/* =========================================================
   FEATURES
========================================================= */

.rj-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;

    margin-top: 22px;
    margin-bottom: 22px;
}


.rj-about-feature {
    display: flex;
    gap: 11px;
    align-items: flex-start;
}


.rj-about-feature-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(200, 155, 60, 0.12);
    color: var(--rj-gold-dark);

    border-radius: var(--rj-radius-sm);

    font-size: 15px;
}


.rj-about-feature h5 {
    margin: 0 0 4px;

    color: var(--rj-heading);

    font-size: 13px;
    font-weight: 700;
}


.rj-about-feature p {
    margin: 0;

    color: var(--rj-muted);

    font-size: 11px;
    line-height: 1.55;
}


/* =========================================================
   STATS
========================================================= */

.rj-about-stats {
    display: flex;
    align-items: center;

    padding: 16px 0;

    border-top: 1px solid var(--rj-border);
    border-bottom: 1px solid var(--rj-border);
}


.rj-about-stat {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 0 15px;

    border-right: 1px solid var(--rj-border);
}


.rj-about-stat:first-child {
    padding-left: 0;
}


.rj-about-stat:last-child {
    border-right: 0;
}


.rj-about-stat-icon {
    color: var(--rj-primary);
    font-size: 15px;
}


.rj-about-stat strong {
    display: block;

    color: var(--rj-heading);

    font-size: 18px;
    line-height: 1.1;

    font-weight: 700;
}


.rj-about-stat span {
    display: block;

    margin-top: 3px;

    color: var(--rj-muted);

    font-size: 12px;
    white-space: nowrap;
}


/* =========================================================
   ACTION
========================================================= */

.rj-about-action {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-top: 22px;
}


/* Button */
.rj-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 19px;

    background: var(--rj-primary);
    color: var(--rj-white);

    border-radius: var(--rj-radius-sm);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: var(--rj-transition);
}


.rj-about-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}


.rj-about-btn:hover {
    color: var(--rj-white);
    background: var(--rj-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--rj-shadow-sm);
}


.rj-about-btn:hover i {
    transform: translateX(4px);
}


/* Trust */
.rj-about-trust {
    display: flex;
    align-items: center;
    gap: 7px;

    color: var(--rj-muted);

    font-size: 14px;
}


.rj-about-trust i {
    color: var(--rj-gold-dark);
    font-size: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .rj-about-visual {
        max-width: 650px;
        margin: 0 auto;
    }

    .rj-about-content {
        padding-left: 0;
    }

    .rj-about-title {
        font-size: 34px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .rj-about-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }


    .rj-about-visual {
        padding: 10px 10px 35px 0;
    }


    .rj-about-main-img {
        height: 350px;
    }


    .rj-about-experience {
        top: 25px;
        right: -3px;
        min-width: 135px;
        padding: 11px 12px;
    }


    .rj-about-exp-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }


    .rj-about-experience strong {
        font-size: 19px;
    }


    .rj-about-floating-card {
        left: 5px;
        bottom: 10px;
        padding: 10px 13px;
    }


    .rj-about-floating-icon {
        width: 32px;
        height: 32px;
    }


    .rj-about-title {
        font-size: 29px;
        line-height: 1.15;
    }


    .rj-about-description {
        font-size: 13px;
        line-height: 1.7;
    }


    .rj-about-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .rj-about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }


    .rj-about-stat {
        padding: 0 7px;
        gap: 5px;
    }


    .rj-about-stat:first-child {
        padding-left: 0;
    }


    .rj-about-stat strong {
        font-size: 15px;
    }


    .rj-about-stat span {
        font-size: 8px;
    }


    .rj-about-action {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .rj-about-main-img {
        height: 300px;
    }

    .rj-about-title {
        font-size: 26px;
    }

    .rj-about-stat-icon {
        display: none;
    }

}

/* =========================================================
   RAJASTHAN TOUR PACKAGE SECTION
========================================================= */

.rj-packages-section {
    padding: 60px 0;
    background: var(--rj-white);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.rj-section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
}

.rj-section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    color: var(--rj-primary);
    margin-bottom: 10px;
}

.rj-section-label i {
    color: var(--rj-gold);
}

.rj-section-heading h2 {
    margin: 0 0 10px;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;

    color: var(--rj-heading);
}

.rj-section-heading h2 span {
    color: var(--rj-primary);
}

.rj-section-heading p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: var(--rj-muted);
}


/* =========================================================
   PACKAGE CARD
========================================================= */

.rj-package-card {
    height: 100%;

    background: var(--rj-white);

    border: 1px solid var(--rj-border);
    border-radius: var(--rj-radius-lg);

    overflow: hidden;

    box-shadow: var(--rj-shadow-sm);

    transition: var(--rj-transition);
}

.rj-package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rj-shadow-md);
}


/* =========================================================
   IMAGE
========================================================= */

.rj-package-image {
    position: relative;
    overflow: hidden;
}

.rj-package-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.rj-package-card:hover .rj-package-image img {
    transform: scale(1.06);
}


/* IMAGE OVERLAY */

.rj-package-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(30, 15, 10, 0.55),
            transparent 55%);

    pointer-events: none;
}


/* BADGE */

.rj-package-badge {
    position: absolute;
    top: 14px;
    left: 14px;

    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 11px;

    background: var(--rj-primary);
    color: var(--rj-white);

    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;
}

.rj-package-badge i {
    color: var(--rj-gold-light);
}


/* DURATION */

.rj-package-duration {
    position: absolute;
    bottom: 14px;
    left: 14px;

    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--rj-white);

    font-size: 13px;
    font-weight: 600;
}

.rj-package-duration i {
    color: var(--rj-gold-light);
}


/* =========================================================
   PACKAGE CONTENT
========================================================= */

.rj-package-content {
    padding: 20px 15px;
}


/* TITLE */

.rj-package-title {
    padding-bottom: 12px;
}

.rj-package-title h3 {
    margin: 0 0 7px;

    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;

    color: var(--rj-heading);
}

.rj-package-title p {
    margin: 0;

    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 13px;
    line-height: 1.5;

    color: var(--rj-muted);
}

.rj-package-title p i {
    color: var(--rj-primary);
}


/* =========================================================
   QUICK INFO
========================================================= */

.rj-package-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 8px;

    padding: 17px 0;
}

.rj-info-item {
    display: flex;
    align-items: center;
    gap: 8px;

    min-width: 0;
}

.rj-info-item>i {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rj-cream);
    color: var(--rj-primary);

    border-radius: 50%;

    font-size: 13px;
}

.rj-info-item span {
    display: flex;
    flex-direction: column;

    font-size: 12px;
    font-weight: 700;

    color: var(--rj-heading);
}

.rj-info-item small {
    margin-bottom: 2px;

    font-size: 10px;
    font-weight: 500;

    color: var(--rj-muted);
}


/* =========================================================
   INCLUSIONS
========================================================= */

.rj-package-inclusions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 7px;

    padding-bottom: 17px;
}

.rj-inclusion {
    text-align: center;

    padding: 10px 4px;

    border: 1px solid var(--rj-border);
    border-radius: 6px;

    background: #fffdf9;

    transition: var(--rj-transition);
}

.rj-inclusion:hover {
    border-color: var(--rj-gold);
    background: var(--rj-cream);
}

.rj-inclusion i {
    display: block;

    margin-bottom: 5px;

    font-size: 15px;
    color: var(--rj-primary);
}

.rj-inclusion span {
    display: block;

    font-size: 11px;
    line-height: 1.2;

    font-weight: 600;

    color: var(--rj-heading);
}


/* =========================================================
   READ MORE
========================================================= */

.rj-read-more {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 11px 0;

    border: 0;
    border-top: 1px solid var(--rj-border);
    border-bottom: 1px solid var(--rj-border);

    background: transparent;

    color: var(--rj-primary);

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}

.rj-read-more i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.rj-read-more:not(.collapsed) i {
    transform: rotate(180deg);
}


/* =========================================================
   DETAILS
========================================================= */

.rj-package-details {
    background: var(--rj-cream);
}

.rj-details-inner {
    padding: 16px 14px;
}

.rj-details-inner h4 {
    display: flex;
    align-items: center;
    gap: 7px;

    margin: 0 0 10px;

    font-size: 14px;
    font-weight: 700;

    color: var(--rj-heading);
}

.rj-details-inner h4 i {
    color: var(--rj-primary);
}

.rj-details-inner ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.rj-details-inner li {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 8px;

    margin-bottom: 8px;

    font-size: 13px;
    line-height: 1.5;

    color: var(--rj-text);
}

.rj-details-inner li:last-child {
    margin-bottom: 0;
}

.rj-details-inner li i {
    flex-shrink: 0;

    margin-top: 4px;

    font-size: 10px;
    color: var(--rj-primary);
}


/* =========================================================
   BOTTOM AREA
========================================================= */

.rj-package-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding-top: 12px;
}


/* PRICE */

.rj-package-price {
    flex-shrink: 0;
}

.rj-package-price small {
    display: block;

    margin-bottom: 1px;

    font-size: 11px;
    color: var(--rj-muted);
}

.rj-package-price strong {
    font-size: 22px;
    font-weight: 800;

    color: var(--rj-primary);
}

.rj-package-price span {
    font-size: 11px;
    color: var(--rj-muted);
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.rj-package-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}


/* ICON BUTTON */

.rj-action-btn {
    width: 37px;
    height: 37px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;

    transition: var(--rj-transition);
}


/* CALL */

.rj-call-btn {
    background: var(--rj-cream-dark);
    color: var(--rj-primary);
}

.rj-call-btn:hover {
    background: var(--rj-primary);
    color: var(--rj-white);
}


/* WHATSAPP */

.rj-whatsapp-btn {
    background: #e9f7ed;
    color: #1b9c50;
}

.rj-whatsapp-btn:hover {
    background: #1b9c50;
    color: var(--rj-white);
}


/* BOOK NOW */

.rj-book-btn {
    height: 37px;
    width: 100%;
    align-items: center;
    gap: 7px;

    padding: 0 13px;

    border: 1px solid var(--rj-primary);
    border-radius: 6px;

    background: var(--rj-primary);
    color: var(--rj-white);

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition: var(--rj-transition);

    margin-top: 10px;
}

.rj-book-btn:hover {
    background: var(--rj-primary-dark);
    border-color: var(--rj-primary-dark);
}

.rj-book-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.rj-book-btn:hover i {
    transform: translateX(3px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .rj-packages-section {
        padding: 60px 0;
    }

    .rj-section-heading h2 {
        font-size: 32px;
    }

}


@media (max-width: 575px) {

    .rj-packages-section {
        padding: 50px 0;
    }

    .rj-section-heading {
        margin-bottom: 30px;
    }

    .rj-section-heading h2 {
        font-size: 28px;
    }

    .rj-section-heading p {
        font-size: 14px;
    }

    .rj-package-image {
        height: 225px;
    }

    .rj-package-content {
        padding: 18px;
    }

    .rj-package-title h3 {
        font-size: 19px;
    }

    .rj-package-info {
        gap: 5px;
    }

    .rj-info-item>i {
        width: 31px;
        height: 31px;
    }

    .rj-package-bottom {
        align-items: flex-end;
    }

    .rj-package-price strong {
        font-size: 20px;
    }

    .rj-package-actions {
        gap: 4px;
    }

    .rj-action-btn {
        width: 34px;
        height: 34px;
    }

    .rj-book-btn {
        height: 34px;
        padding: 0 10px;
        font-size: 11px;
    }

}

/* =========================================================
   RAJASTHAN DESTINATION SECTION
========================================================= */

.rj-destination-section {
    position: relative;

    padding: 60px 0 60px;

    background:
        radial-gradient(circle at 15% 20%,
            rgba(200, 155, 60, 0.07),
            transparent 30%),
        var(--rj-cream);

    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.rj-destination-heading {
    max-width: 700px;

    margin: 0 auto 35px;
}

.rj-destination-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 9px;

    color: var(--rj-primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.rj-destination-eyebrow i {
    color: var(--rj-gold);
    font-size: 8px;
}


.rj-destination-heading h2 {
    margin: 0 0 8px;

    color: var(--rj-heading);

    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;

    text-transform: uppercase;
}

.rj-destination-heading h2 span {
    color: var(--rj-primary);
}


.rj-destination-heading p {
    max-width: 600px;

    margin: 0 auto;

    color: var(--rj-muted);

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   CAROUSEL
========================================================= */

.rj-destination-carousel {
    padding: 5px 3px 12px;
}

.rj-destination-item {
    padding: 0 5px;
}


/* =========================================================
   DESTINATION CARD
========================================================= */

.rj-destination-card {
    position: relative;

    background: var(--rj-white);

    border: 1px solid var(--rj-border);

    border-radius: var(--rj-radius-md);

    overflow: hidden;

    box-shadow: var(--rj-shadow-sm);

    transition: var(--rj-transition);
}

.rj-destination-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--rj-shadow-md);

    border-color: rgba(200, 155, 60, 0.55);
}


/* =========================================================
   IMAGE
========================================================= */

.rj-destination-image {
    position: relative;


    overflow: hidden;
}

.rj-destination-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to bottom,
            transparent 65%,
            rgba(0, 0, 0, 0.22));
}

.rj-destination-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.rj-destination-card:hover .rj-destination-image img {
    transform: scale(1.07);
}


/* =========================================================
   CONTENT
========================================================= */

.rj-destination-content {
    position: relative;

    min-height: 103px;

    padding: 32px 15px 14px;

    text-align: center;

    background: var(--rj-white);
}


/* =========================================================
   ICON
========================================================= */

.rj-destination-icon {
    position: absolute;

    top: -23px;
    left: 50%;

    transform: translateX(-50%);

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rj-white);

    border: 1px solid var(--rj-border);

    border-radius: 50%;

    color: var(--rj-gold);

    font-size: 17px;

    box-shadow: 0 5px 15px rgba(50, 30, 20, 0.10);

    transition: var(--rj-transition);
}

.rj-destination-card:hover .rj-destination-icon {
    background: var(--rj-primary);

    border-color: var(--rj-primary);

    color: var(--rj-white);
}


/* =========================================================
   TITLE
========================================================= */

.rj-destination-content h3 {
    margin: 0 0 3px;

    color: var(--rj-heading);

    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.rj-destination-content p {
    margin: 0;

    color: var(--rj-muted);

    font-size: 12px;
    line-height: 1.4;
}


/* =========================================================
   OWL NAVIGATION
========================================================= */

.rj-destination-carousel .owl-nav {
    margin: 0;
}


.rj-destination-carousel .owl-nav button.owl-prev,
.rj-destination-carousel .owl-nav button.owl-next {
    position: absolute;

    top: 45%;

    width: 38px;
    height: 38px;

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rj-primary) !important;

    color: var(--rj-white) !important;

    border-radius: 50%;

    box-shadow: var(--rj-shadow-sm);

    transition: var(--rj-transition);
}

.rj-destination-carousel .owl-nav button.owl-prev {
    left: -18px;
}

.rj-destination-carousel .owl-nav button.owl-next {
    right: -18px;
}


.rj-destination-carousel .owl-nav button:hover {
    background: var(--rj-primary-dark) !important;

    transform: scale(1.08);
}


.rj-destination-carousel .owl-nav button span {
    display: none;
}


.rj-destination-carousel .owl-nav button.owl-prev::before {
    content: "\f053";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    font-size: 12px;
}


.rj-destination-carousel .owl-nav button.owl-next::before {
    content: "\f054";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    font-size: 12px;
}


/* =========================================================
   OWL DOTS
========================================================= */

.rj-destination-carousel .owl-dots {
    margin-top: 22px;
}

.rj-destination-carousel .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;

    margin: 4px;

    background: var(--rj-gold) !important;

    opacity: 0.45;

    transition: var(--rj-transition);
}

.rj-destination-carousel .owl-dots .owl-dot.active span {
    width: 22px;

    background: var(--rj-primary) !important;

    opacity: 1;
}





@media (max-width: 991px) {

    .rj-destination-section {
        padding: 55px 0 60px;
    }

    .rj-destination-heading h2 {
        font-size: 27px;
    }

    .rj-destination-image {
        height: 220px;
    }

}


@media (max-width: 767px) {

    .rj-destination-heading {
        margin-bottom: 28px;
    }

    .rj-destination-heading h2 {
        font-size: 25px;
    }

    .rj-destination-heading p {
        font-size: 13px;
    }

    .rj-destination-carousel .owl-nav {
        display: none;
    }

}


@media (max-width: 575px) {

    .rj-destination-section {
        padding: 45px 0 50px;
    }

    .rj-destination-heading h2 {
        font-size: 22px;
    }

    .rj-destination-eyebrow {
        font-size: 11px;
    }

    .rj-destination-image {
        height: 230px;
    }

}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.rj-why-section {
    position: relative;

    padding: 60px 0;

    background: var(--rj-white);

    overflow: hidden;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.rj-why-section::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    top: -190px;
    right: -150px;

    border: 1px solid rgba(200, 155, 60, 0.13);

    border-radius: 50%;
}

.rj-why-section::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    bottom: -130px;
    left: -100px;

    border: 1px solid rgba(139, 30, 45, 0.08);

    border-radius: 50%;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.rj-why-visual {
    position: relative;

    max-width: 500px;

    margin: 0 auto;

    padding: 0 25px 25px 0;
}


.rj-why-image-wrap {
    position: relative;

    overflow: hidden;

    border-radius: 16px 16px 70px 16px;

    box-shadow: var(--rj-shadow-md);
}


.rj-why-main-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* IMAGE OVERLAY */

.rj-why-image-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(30, 15, 10, 0.60),
            transparent 48%);

    pointer-events: none;
}


/* =========================================================
   GOLD ORNAMENT
========================================================= */

.rj-why-ornament {
    position: absolute;

    z-index: 2;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 9px;
}

.rj-why-ornament span {
    width: 42px;
    height: 1px;

    background: var(--rj-gold);
}

.rj-why-ornament i {
    color: var(--rj-gold-light);

    font-size: 10px;
}


/* =========================================================
   BIG NUMBER
========================================================= */

.rj-why-big-number {
    position: absolute;

    z-index: 3;

    top: 20px;
    left: -4px;

    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rj-primary);

    border: 6px solid var(--rj-white);

    border-radius: 50%;

    color: var(--rj-white);

    font-size: 16px;
    font-weight: 800;

    box-shadow: var(--rj-shadow-sm);
}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.rj-why-experience {
    position: absolute;

    z-index: 5;

    right: 0;
    bottom: 68px;

    min-width: 205px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 17px;

    background: var(--rj-white);

    border-left: 4px solid var(--rj-gold);

    border-radius: 8px;

    box-shadow: var(--rj-shadow-md);
}


.rj-experience-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rj-cream);

    border-radius: 50%;

    color: var(--rj-gold);

    font-size: 17px;
}


.rj-why-experience strong,
.rj-why-trust strong {
    display: block;

    margin-bottom: 1px;

    color: var(--rj-primary);

    font-size: 21px;
    line-height: 1.1;
    font-weight: 800;
}


.rj-why-experience span,
.rj-why-trust span {
    display: block;

    color: var(--rj-muted);

    font-size: 11px;
    line-height: 1.4;
}


/* =========================================================
   TRUST CARD
========================================================= */

.rj-why-trust {
    position: absolute;

    z-index: 4;

    left: -5px;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 15px;

    background: var(--rj-primary);

    border-radius: 7px;

    box-shadow: var(--rj-shadow-md);
}


.rj-trust-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    color: var(--rj-gold-light);

    font-size: 15px;
}


.rj-why-trust strong {
    color: var(--rj-white);
    font-size: 18px;
}

.rj-why-trust span {
    color: rgba(255, 255, 255, 0.78);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.rj-why-content {
    position: relative;

    z-index: 2;
}


.rj-why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 9px;

    color: var(--rj-primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.rj-why-eyebrow i {
    color: var(--rj-gold);
}


/* HEADING */

.rj-why-content>h2 {
    max-width: 620px;

    margin: 0 0 12px;

    color: var(--rj-heading);

    font-size: 36px;
    line-height: 1.18;
    font-weight: 700;
}

.rj-why-content>h2 span {
    color: var(--rj-primary);
}


/* INTRO */

.rj-why-intro {
    max-width: 620px;

    margin: 0 0 25px;

    color: var(--rj-muted);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   WHY GRID
========================================================= */

.rj-why-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}


/* =========================================================
   WHY ITEM
========================================================= */

.rj-why-item {
    position: relative;

    display: grid;

    grid-template-columns: 20% 80% 1fr;

    align-items: center;

    gap: 9px;

    min-height: 88px;

    padding: 12px;

    background: var(--rj-cream);

    border: 1px solid var(--rj-border);

    border-radius: 9px;

    overflow: hidden;

    transition: var(--rj-transition);
}


.rj-why-item::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background: var(--rj-primary);

    transition: height 0.3s ease;
}


.rj-why-item:hover {
    background: var(--rj-white);

    border-color: rgba(200, 155, 60, 0.55);

    transform: translateY(-3px);

    box-shadow: var(--rj-shadow-sm);
}


.rj-why-item:hover::after {
    height: 100%;
}


/* NUMBER */

.rj-why-item-number {
    color: var(--rj-gold);

    font-size: 11px;
    font-weight: 800;

    text-align: center;
}


/* ICON */

.rj-why-item-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rj-white);

    border: 1px solid var(--rj-border);

    border-radius: 8px;

    color: var(--rj-primary);

    font-size: 16px;

    transition: var(--rj-transition);
}


.rj-why-item:hover .rj-why-item-icon {
    background: var(--rj-primary);

    border-color: var(--rj-primary);

    color: var(--rj-white);
}


/* ITEM CONTENT */

.rj-why-item-content h3 {
    margin: 0 0 4px;

    color: var(--rj-heading);

    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}


.rj-why-item-content p {
    margin: 0;

    color: var(--rj-muted);

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   BOTTOM AREA
========================================================= */

.rj-why-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid var(--rj-border);
}


/* =========================================================
   RATING
========================================================= */

.rj-why-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}


.rj-rating-stars {
    display: flex;
    gap: 2px;
}


.rj-rating-stars i {
    color: var(--rj-gold);

    font-size: 12px;
}


.rj-why-rating strong {
    margin-right: 5px;

    color: var(--rj-heading);

    font-size: 13px;
    font-weight: 800;
}


.rj-why-rating span {
    color: var(--rj-muted);

    font-size: 11px;
}


/* =========================================================
   CTA
========================================================= */

.rj-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 11px 18px;

    background: var(--rj-primary);

    border: 1px solid var(--rj-primary);

    border-radius: 6px;

    color: var(--rj-white);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: var(--rj-transition);
}


.rj-why-btn i {
    font-size: 10px;

    transition: transform 0.3s ease;
}


.rj-why-btn:hover {
    background: var(--rj-primary-dark);

    border-color: var(--rj-primary-dark);

    color: var(--rj-white);
}


.rj-why-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .rj-why-content>h2 {
        font-size: 32px;
    }



}


@media (max-width: 991px) {

    .rj-why-section {
        padding: 65px 0;
    }

    .rj-why-visual {
        max-width: 600px;
        margin-bottom: 20px;
    }



    .rj-why-content>h2 {
        font-size: 30px;
    }

}


@media (max-width: 767px) {

    .rj-why-section {
        padding: 55px 0;
    }

    .rj-why-grid {
        grid-template-columns: 1fr;
    }



    .rj-why-content>h2 {
        font-size: 27px;
    }

    .rj-why-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 575px) {

    .rj-why-visual {
        padding-right: 10px;
    }

    .rj-why-image-wrap {
        border-radius: 12px 12px 50px 12px;
    }

    .rj-why-experience {
        right: -2px;
        bottom: 55px;

        min-width: 180px;

        padding: 10px 12px;
    }

    .rj-why-trust {
        left: 0;
    }

    .rj-why-big-number {
        width: 60px;
        height: 60px;

        font-size: 13px;
    }

    .rj-why-content>h2 {
        font-size: 25px;
    }

    .rj-why-intro {
        font-size: 13px;
    }

    .rj-why-item {
        grid-template-columns: 15% 85% 1fr;

        padding: 11px;
    }

    .rj-why-item-icon {
        width: 40px;
        height: 40px;
    }

    .rj-why-item-content h3 {
        font-size: 13px;
    }

    .rj-why-item-content p {
        font-size: 11.5px;
    }

}

/* =========================================================
   CAB BOOKING SECTION
========================================================= */

.rj-cab-section {
    position: relative;

    padding: 60px 0;

    background: var(--rj-cream);

    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.rj-cab-heading {
    max-width: 680px;

    margin: 0 auto 40px;
}

.rj-cab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 9px;

    color: var(--rj-primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.rj-cab-eyebrow i {
    color: var(--rj-gold);
}


.rj-cab-heading h2 {
    margin: 0 0 9px;

    color: var(--rj-heading);

    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.rj-cab-heading h2 span {
    color: var(--rj-primary);
}


.rj-cab-heading p {
    margin: 0;

    color: var(--rj-muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CAB CARD
========================================================= */

.rj-cab-card {
    height: 100%;

    background: var(--rj-white);

    border: 1px solid var(--rj-border);

    border-radius: var(--rj-radius-lg);

    overflow: hidden;

    box-shadow: var(--rj-shadow-sm);

    transition: var(--rj-transition);
}

.rj-cab-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--rj-shadow-md);

    border-color: rgba(200, 155, 60, 0.55);
}


/* =========================================================
   VEHICLE IMAGE
========================================================= */

.rj-cab-image {
    position: relative;

    height: 220px;

    overflow: hidden;

    background: var(--rj-cream-dark);
}


.rj-cab-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.rj-cab-card:hover .rj-cab-image img {
    transform: scale(1.06);
}


/* IMAGE OVERLAY */

.rj-cab-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to bottom,
            transparent 55%,
            rgba(30, 15, 10, 0.38));

    pointer-events: none;
}


/* VEHICLE TYPE */

.rj-cab-type {
    position: absolute;

    z-index: 2;

    top: 13px;
    left: 13px;

    padding: 6px 10px;

    background: var(--rj-primary);

    color: var(--rj-white);

    border-radius: 4px;

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   BODY
========================================================= */

.rj-cab-body {
    padding: 18px;
}


/* =========================================================
   TITLE
========================================================= */

.rj-cab-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 16px;
}


.rj-cab-category {
    display: block;

    margin-bottom: 3px;

    color: var(--rj-gold-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}


.rj-cab-title h3 {
    margin: 0;

    color: var(--rj-heading);

    font-size: 19px;
    line-height: 1.3;
    font-weight: 750;
}


/* RATING */

.rj-cab-rating {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 4px;

    padding: 5px 7px;

    background: var(--rj-cream);

    border-radius: 5px;

    color: var(--rj-heading);

    font-size: 11px;
    font-weight: 700;
}

.rj-cab-rating i {
    color: var(--rj-gold);
    font-size: 9px;
}


/* =========================================================
   FEATURES
========================================================= */

.rj-cab-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 6px;

    padding: 13px 0;

    border-top: 1px solid var(--rj-border);
    border-bottom: 1px solid var(--rj-border);
}


.rj-cab-features div {
    text-align: center;
}


.rj-cab-features i {
    display: block;

    margin-bottom: 5px;

    color: var(--rj-primary);

    font-size: 14px;
}


.rj-cab-features span {
    display: block;

    color: var(--rj-muted);

    font-size: 10px;
    line-height: 1.2;
}


/* =========================================================
   BOTTOM
========================================================= */

.rj-cab-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding-top: 16px;
}


/* PRICE */

.rj-cab-price small {
    display: block;

    margin-bottom: 1px;

    color: var(--rj-muted);

    font-size: 10px;
}


.rj-cab-price strong {
    color: var(--rj-primary);

    font-size: 23px;
    line-height: 1;

    font-weight: 800;
}


.rj-cab-price span {
    color: var(--rj-muted);

    font-size: 10px;
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.rj-cab-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    height: 38px;

    padding: 0 14px;

    background: var(--rj-primary);

    border: 1px solid var(--rj-primary);

    border-radius: 6px;

    color: var(--rj-white);

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition: var(--rj-transition);
}


.rj-cab-book-btn i {
    font-size: 9px;

    transition: transform 0.3s ease;
}


.rj-cab-book-btn:hover {
    background: var(--rj-primary-dark);

    border-color: var(--rj-primary-dark);
}


.rj-cab-book-btn:hover i {
    transform: translateX(3px);
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.rj-cab-note {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 35px;

    padding: 14px 18px;

    background: var(--rj-white);

    border: 1px solid var(--rj-border);

    border-radius: 8px;
}


.rj-cab-note-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rj-cream);

    border-radius: 50%;

    color: var(--rj-primary);

    font-size: 15px;
}


.rj-cab-note p {
    flex: 1;

    margin: 0;

    color: var(--rj-muted);

    font-size: 12px;
    line-height: 1.5;
}


.rj-cab-note p strong {
    color: var(--rj-heading);
}


.rj-cab-note>a {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--rj-primary);

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}


.rj-cab-note>a:hover {
    color: var(--rj-primary-dark);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .rj-cab-section {
        padding: 60px 0;
    }

    .rj-cab-heading h2 {
        font-size: 30px;
    }

}


@media (max-width: 767px) {

    .rj-cab-heading h2 {
        font-size: 27px;
    }

    .rj-cab-note {
        align-items: flex-start;

        flex-wrap: wrap;
    }

    .rj-cab-note p {
        flex-basis: calc(100% - 55px);
    }

    .rj-cab-note>a {
        margin-left: 51px;
    }

}


@media (max-width: 575px) {

    .rj-cab-section {
        padding: 50px 0;
    }

    .rj-cab-heading {
        margin-bottom: 30px;
    }

    .rj-cab-heading h2 {
        font-size: 24px;
    }

    .rj-cab-heading p {
        font-size: 13px;
    }

    .rj-cab-image {
        height: 210px;
    }

    .rj-cab-body {
        padding: 16px;
    }

    .rj-cab-title h3 {
        font-size: 18px;
    }

}

/* =========================================================
   FAQ SECTION
========================================================= */

.rj-faq-section {
    position: relative;

    padding: 60px 0;

    background: var(--rj-white);

    overflow: hidden;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.rj-faq-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -190px;

    border: 1px solid rgba(200, 155, 60, 0.14);

    border-radius: 50%;
}

.rj-faq-section::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -160px;
    bottom: -150px;

    border: 1px solid rgba(139, 30, 45, 0.08);

    border-radius: 50%;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.rj-faq-intro {
    position: sticky;
    top: 100px;

    z-index: 2;
}


.rj-faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 10px;

    color: var(--rj-primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.rj-faq-eyebrow i {
    color: var(--rj-gold);
}


/* HEADING */

.rj-faq-intro h2 {
    max-width: 400px;

    margin: 0 0 13px;

    color: var(--rj-heading);

    font-size: 36px;
    line-height: 1.18;
    font-weight: 800;
}

.rj-faq-intro h2 span {
    color: var(--rj-primary);
}


/* PARA */

.rj-faq-intro>p {
    max-width: 430px;

    margin: 0 0 25px;

    color: var(--rj-muted);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   QUOTE BOX
========================================================= */

.rj-faq-quote {
    position: relative;

    display: flex;
    align-items: center;

    gap: 13px;

    max-width: 420px;

    padding: 16px;

    background: var(--rj-white);

    border: 1px solid var(--rj-border);

    border-left: 4px solid var(--rj-gold);

    border-radius: 8px;

    box-shadow: var(--rj-shadow-sm);
}


.rj-faq-quote-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rj-cream);

    border-radius: 50%;

    color: var(--rj-gold);

    font-size: 15px;
}


.rj-faq-quote strong {
    display: block;

    margin-bottom: 3px;

    color: var(--rj-heading);

    font-size: 13px;
    font-weight: 800;
}


.rj-faq-quote span {
    display: block;

    color: var(--rj-muted);

    font-size: 11px;
}


/* =========================================================
   CONTACT
========================================================= */

.rj-faq-contact {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-top: 22px;
}


.rj-faq-contact-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rj-primary);

    border-radius: 50%;

    color: var(--rj-white);

    font-size: 14px;
}


.rj-faq-contact span {
    display: block;

    margin-bottom: 2px;

    color: var(--rj-muted);

    font-size: 13px;
}


.rj-faq-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--rj-primary);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}


.rj-faq-contact a i {
    font-size: 9px;

    transition: transform 0.3s ease;
}


.rj-faq-contact a:hover i {
    transform: translateX(3px);
}


/* =========================================================
   FAQ LIST
========================================================= */

.rj-faq-list {
    position: relative;

    z-index: 2;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.rj-faq-item {
    margin-bottom: 11px;

    background: var(--rj-white);

    border: 1px solid var(--rj-border);

    border-radius: 9px;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(50, 30, 20, 0.04);

    transition: var(--rj-transition);
}


.rj-faq-item:last-child {
    margin-bottom: 0;
}


.rj-faq-item:has(.rj-faq-question:not(.collapsed)) {
    border-color: rgba(139, 30, 45, 0.30);

    box-shadow: var(--rj-shadow-sm);
}


/* =========================================================
   QUESTION
========================================================= */

.rj-faq-question {
    position: relative;

    width: 100%;

    display: grid;

    grid-template-columns: 40px 1fr 38px;

    align-items: center;

    gap: 12px;

    padding: 17px 18px;

    border: 0;

    background: var(--rj-white);

    text-align: left;

    cursor: pointer;
}


.rj-faq-number {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rj-cream);

    border: 1px solid var(--rj-border);

    border-radius: 6px;

    color: var(--rj-gold-dark);

    font-size: 11px;
    font-weight: 800;

    transition: var(--rj-transition);
}


/* QUESTION TEXT */

.rj-faq-question-text {
    color: var(--rj-heading);

    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
}


/* =========================================================
   PLUS ICON
========================================================= */

.rj-faq-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rj-cream);

    border-radius: 50%;

    color: var(--rj-primary);

    font-size: 11px;

    transition: var(--rj-transition);
}


.rj-faq-question:not(.collapsed) .rj-faq-number {
    background: var(--rj-primary);

    border-color: var(--rj-primary);

    color: var(--rj-white);
}


.rj-faq-question:not(.collapsed) .rj-faq-icon {
    background: var(--rj-primary);

    color: var(--rj-white);

    transform: rotate(45deg);
}


/* =========================================================
   ANSWER
========================================================= */

.rj-faq-answer {
    padding: 0 18px 18px 18px;
}


.rj-faq-answer p {
    position: relative;

    margin: 0;

    padding: 13px 15px;

    background: var(--rj-cream);

    border-left: 2px solid var(--rj-gold);

    border-radius: 0 6px 6px 0;

    color: var(--rj-muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .rj-faq-section {
        padding: 65px 0;
    }

    .rj-faq-intro {
        position: relative;
        top: auto;
    }

    .rj-faq-intro h2 {
        font-size: 31px;
    }

}


@media (max-width: 767px) {

    .rj-faq-section {
        padding: 55px 0;
    }

    .rj-faq-intro h2 {
        font-size: 28px;
    }

    .rj-faq-question {
        grid-template-columns: 34px 1fr 34px;

        gap: 9px;

        padding: 14px;
    }

    .rj-faq-number {
        width: 32px;
        height: 32px;
    }

    .rj-faq-question-text {
        font-size: 13px;
    }

    .rj-faq-answer {
        padding: 0 14px 15px 14px;
    }

}


@media (max-width: 575px) {

    .rj-faq-section {
        padding: 48px 0;
    }

    .rj-faq-intro h2 {
        font-size: 25px;
    }

    .rj-faq-intro>p {
        font-size: 13px;
    }

    .rj-faq-quote {
        padding: 13px;
    }

    .rj-faq-question {
        grid-template-columns: 32px 1fr 32px;

        gap: 8px;

        padding: 12px;
    }

    .rj-faq-number {
        width: 30px;
        height: 30px;

        font-size: 10px;
    }

    .rj-faq-icon {
        width: 30px;
        height: 30px;
    }

    .rj-faq-question-text {
        font-size: 12.5px;
    }

    .rj-faq-answer {
        padding: 0 12px 13px 12px;
    }

    .rj-faq-answer p {
        padding: 11px 12px;

        font-size: 12px;
    }

}

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.rj-testimonial-section {
    position: relative;

    padding: 60px 0;

    background: var(--rj-cream);

    overflow: hidden;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.rj-testimonial-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -230px;
    top: -220px;

    border: 1px solid rgba(200, 155, 60, 0.14);

    border-radius: 50%;
}

.rj-testimonial-section::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -170px;
    bottom: -160px;

    border: 1px solid rgba(139, 30, 45, 0.08);

    border-radius: 50%;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.rj-testimonial-heading {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 35px;
}


.rj-testimonial-heading-left {
    max-width: 560px;
}


.rj-testimonial-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 9px;

    color: var(--rj-primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.rj-testimonial-eyebrow i {
    color: var(--rj-gold);
}


.rj-testimonial-heading h2 {
    margin: 0;

    color: var(--rj-heading);

    font-size: 35px;
    line-height: 1.18;
    font-weight: 700;
}

.rj-testimonial-heading h2 span {
    color: var(--rj-primary);
}


.rj-testimonial-heading>p {
    max-width: 400px;

    margin: 0;

    color: var(--rj-muted);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   CAROUSEL
========================================================= */

.rj-testimonial-carousel {
    position: relative;
    z-index: 2;
}


/* REMOVE DEFAULT OWL MARGIN */

.rj-testimonial-carousel .owl-stage {
    display: flex;
}

.rj-testimonial-carousel .owl-item {
    display: flex;
    padding: 8px 8px 12px;
}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.rj-testimonial-card {
    position: relative;

    width: 100%;

    display: flex;
    flex-direction: column;

    padding: 22px;

    background: var(--rj-white);

    border: 1px solid var(--rj-border);

    border-radius: 12px;

    transition: var(--rj-transition);
}


.rj-testimonial-card:hover {
    background: var(--rj-white);

    border-color: rgba(200, 155, 60, 0.55);

    transform: translateY(-4px);

    box-shadow: var(--rj-shadow-md);
}


/* GOLD TOP LINE */

.rj-testimonial-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 24px;

    width: 55px;
    height: 3px;

    background: var(--rj-gold);

    border-radius: 0 0 4px 4px;
}


/* =========================================================
   CARD TOP
========================================================= */

.rj-testimonial-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;
}


/* CLIENT */

.rj-client-info {
    display: flex;
    align-items: center;

    gap: 11px;
}


.rj-client-image {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    overflow: hidden;

    border: 2px solid var(--rj-gold);

    border-radius: 50%;

    background: var(--rj-cream-dark);
}


.rj-client-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.rj-client-info h3 {
    margin: 0 0 3px;

    color: var(--rj-heading);

    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}


.rj-client-info span {
    color: var(--rj-muted);

    font-size: 12px;
}


/* =========================================================
   RATING
========================================================= */

.rj-testimonial-rating {
    display: flex;

    gap: 2px;

    padding: 7px 9px;

    background: var(--rj-white);

    border: 1px solid var(--rj-border);

    border-radius: 5px;
}


.rj-testimonial-rating i {
    color: var(--rj-gold);

    font-size: 9px;
}


/* =========================================================
   QUOTE
========================================================= */

.rj-testimonial-quote {
    position: relative;

    flex: 1;

    padding-left: 30px;
}


.rj-testimonial-quote>i {
    position: absolute;

    left: 0;
    top: 0;

    color: var(--rj-primary);

    font-size: 20px;

    opacity: 0.75;
}


.rj-testimonial-quote p {
    margin: 0;

    color: var(--rj-text);

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   FOOTER
========================================================= */

.rj-testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: 22px;
    padding-top: 14px;

    border-top: 1px solid var(--rj-border);
}


.rj-testimonial-trip {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: var(--rj-primary);

    font-size: 10px;
    font-weight: 700;
}


.rj-testimonial-trip i {
    color: var(--rj-gold);

    font-size: 10px;
}


.rj-testimonial-verified {
    display: inline-flex;
    align-items: center;

    gap: 4px;

    color: var(--rj-muted);

    font-size: 9px;
}


.rj-testimonial-verified i {
    color: #3b8f55;

    font-size: 10px;
}


/* =========================================================
   OWL NAVIGATION
========================================================= */

.rj-testimonial-carousel .owl-nav {
    display: flex;

    justify-content: flex-end;

    gap: 8px;

    margin-top: 18px;
}


.rj-testimonial-carousel .owl-nav button {
    width: 38px;
    height: 38px;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    margin: 0 !important;

    background: var(--rj-white) !important;

    border: 1px solid var(--rj-border) !important;

    border-radius: 50%;

    color: var(--rj-primary) !important;

    font-size: 12px !important;

    transition: var(--rj-transition);
}


.rj-testimonial-carousel .owl-nav button:hover {
    background: var(--rj-primary) !important;

    border-color: var(--rj-primary) !important;

    color: var(--rj-white) !important;
}


/* =========================================================
   DOTS
========================================================= */

.rj-testimonial-carousel .owl-dots {
    position: absolute;

    left: 50%;
    bottom: -27px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 5px;
}


.rj-testimonial-carousel .owl-dot span {
    width: 6px !important;
    height: 6px !important;

    margin: 0 !important;

    background: var(--rj-border) !important;
}


.rj-testimonial-carousel .owl-dot.active span {
    width: 20px !important;

    background: var(--rj-primary) !important;
}


/* =========================================================
   STATS
========================================================= */

.rj-testimonial-stats {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 35px;

    margin-top: 55px;

    padding: 18px 25px;

    background: var(--rj-primary);

    border-radius: 10px;

    box-shadow: var(--rj-shadow-md);
}


.rj-testimonial-stat {
    display: flex;
    align-items: center;

    gap: 12px;
}


.rj-testimonial-stat>strong {
    color: var(--rj-gold-light);

    font-size: 25px;
    line-height: 1;

    font-weight: 800;
}


.rj-testimonial-stat span {
    display: block;

    color: rgba(255, 255, 255, 0.65);

    font-size: 10px;
    line-height: 1.5;
}


.rj-testimonial-stat .rj-stat-main {
    margin-bottom: 1px;

    color: var(--rj-white);

    font-size: 11px;
    font-weight: 700;
}


/* STARS */

.rj-stat-stars {
    display: flex;

    gap: 2px;

    margin-bottom: 3px;
}


.rj-stat-stars i {
    color: var(--rj-gold-light);

    font-size: 9px;
}


/* DIVIDER */

.rj-testimonial-stat-divider {
    width: 1px;
    height: 35px;

    background: rgba(255, 255, 255, 0.18);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .rj-testimonial-section {
        padding: 65px 0;
    }

    .rj-testimonial-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;
    }

    .rj-testimonial-heading h2 {
        font-size: 30px;
    }

    .rj-testimonial-heading>p {
        max-width: 600px;
    }

    .rj-testimonial-stats {
        gap: 20px;
    }

}


@media (max-width: 767px) {

    .rj-testimonial-section {
        padding: 55px 0;
    }

    .rj-testimonial-heading h2 {
        font-size: 27px;
    }

    .rj-testimonial-card {
        padding: 18px;
    }

    .rj-testimonial-stats {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .rj-testimonial-stat-divider {
        width: 100%;
        height: 1px;
    }

}


@media (max-width: 575px) {

    .rj-testimonial-section {
        padding: 48px 0;
    }

    .rj-testimonial-heading h2 {
        font-size: 24px;
    }

    .rj-testimonial-heading>p {
        font-size: 12px;
    }

    .rj-testimonial-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .rj-testimonial-rating {
        align-self: flex-start;
    }

    .rj-testimonial-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .rj-testimonial-stats {
        padding: 18px;
    }

}


/* =========================================================
   RAJASTHAN TOURS FOOTER
========================================================= */

.rj-footer {
    position: relative;

    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/footer-bg.webp);
    background-size: cover;
    background-position: center;

    color: var(--rj-white);

    overflow: hidden;
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.rj-footer-main {
    position: relative;

    padding: 55px 0 45px;

    border-top: 2px solid var(--rj-gold);
}


/* SUBTLE BACKGROUND */

.rj-footer-main::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -200px;
    top: -230px;

    border: 1px solid rgba(200, 155, 60, 0.08);

    border-radius: 50%;
}

.rj-footer-main::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -160px;
    bottom: -170px;

    border: 1px solid rgba(200, 155, 60, 0.06);

    border-radius: 50%;
}


/* =========================================================
   BRAND
========================================================= */

.rj-footer-brand {
    position: relative;

    z-index: 2;

    max-width: 290px;
}


.rj-footer-logo {
    display: inline-block;

    margin-bottom: 14px;
}


.rj-footer-logo img {
    width: 250px;
    height: auto;

    display: block;
}


.rj-footer-brand p {
    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.rj-footer-social {
    display: flex;

    align-items: center;

    gap: 7px;
}


.rj-footer-social a {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: rgba(255, 255, 255, 0.75);

    font-size: 10px;

    text-decoration: none;

    transition: var(--rj-transition);
}


.rj-footer-social a:hover {
    background: var(--rj-primary);

    border-color: var(--rj-primary);

    color: var(--rj-white);

    transform: translateY(-3px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.rj-footer-column {
    position: relative;

    z-index: 2;
}


.rj-footer-column h3 {
    position: relative;

    margin: 2px 0 16px;

    padding-bottom: 9px;

    color: var(--rj-white);

    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
}


/* GOLD UNDERLINE */

.rj-footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 2px;

    background: var(--rj-gold);
}


/* =========================================================
   LINKS
========================================================= */

.rj-footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.rj-footer-column ul li {
    margin-bottom: 8px;
}


.rj-footer-column ul li:last-child {
    margin-bottom: 0;
}


.rj-footer-column ul li a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;
    line-height: 1.4;

    text-decoration: none;

    transition: var(--rj-transition);
}


.rj-footer-column ul li a i {
    color: var(--rj-gold);

    font-size: 8px;

    transition: transform 0.25s ease;
}


.rj-footer-column ul li a:hover {
    color: var(--rj-white);

    padding-left: 3px;
}


.rj-footer-column ul li a:hover i {
    transform: translateX(2px);
}


/* =========================================================
   CONTACT
========================================================= */

.rj-footer-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.5;

    text-decoration: none;

    transition: var(--rj-transition);
}


.rj-footer-contact-item:hover {
    color: var(--rj-white);
}


.rj-footer-contact-icon {
    width: 27px;
    height: 27px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(200, 155, 60, 0.10);

    border: 1px solid rgba(200, 155, 60, 0.22);

    border-radius: 5px;

    color: var(--rj-gold);

    font-size: 10px;
}


.rj-footer-whatsapp .rj-footer-contact-icon {
    color: #25D366;

    border-color: rgba(37, 211, 102, 0.25);

    background: rgba(37, 211, 102, 0.07);
}


/* =========================================================
   CAMEL DECORATION
========================================================= */

.rj-footer-camel {
    position: absolute;

    z-index: 1;

    right: 15px;
    bottom: 0;

    display: flex;
    align-items: flex-end;

    gap: 8px;

    opacity: 0.14;

    pointer-events: none;
}


.rj-footer-camel i {
    color: var(--rj-gold);

    font-size: 65px;
}


.rj-footer-camel i:last-child {
    font-size: 45px;

    margin-bottom: -2px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.rj-footer-bottom {
    position: relative;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    background: #08121b;
}


.rj-footer-bottom-inner {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.rj-footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.52);

    font-size: 14px;
}


/* =========================================================
   LEGAL LINKS
========================================================= */

.rj-footer-legal {
    display: flex;
    align-items: center;

    gap: 10px;
}


.rj-footer-legal a {
    color: rgba(255, 255, 255, 0.55);

    font-size: 14px;

    text-decoration: none;

    transition: var(--rj-transition);
}


.rj-footer-legal a:hover {
    color: var(--rj-gold);
}


.rj-footer-legal span {
    width: 1px;
    height: 11px;

    background: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .rj-footer-main {
        padding: 50px 0 40px;
    }

    .rj-footer-brand {
        max-width: 360px;
    }

}


@media (max-width: 767px) {

    .rj-footer-main {
        padding: 45px 0 35px;
    }

    .rj-footer-brand {
        max-width: 100%;
    }

    .rj-footer-column h3 {
        margin-top: 10px;
    }

    .rj-footer-camel {
        opacity: 0.07;
    }

    .rj-footer-bottom-inner {
        padding: 13px 0;

        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }

}


@media (max-width: 575px) {

    .rj-footer-main {
        padding: 40px 0 30px;
    }

    .rj-footer-logo img {
        width: 200px;
    }

    .rj-footer-brand p {
        font-size: 14px;
    }

    .rj-footer-column h3 {
        font-size: 15px;
    }

    .rj-footer-column ul li a,
    .rj-footer-contact-item {
        font-size: 14px;
    }

    .rj-footer-bottom-inner {
        min-height: auto;
    }

    .rj-footer-bottom p,
    .rj-footer-legal a {
        font-size: 12px;
    }

}

/* =========================================================
   CONTACT SECTION
========================================================= */

.rj-contact-section {
    position: relative;

    padding: 85px 0;

    background: var(--rj-cream);

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.rj-contact-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -250px;
    top: -250px;

    border: 1px solid rgba(139, 30, 45, 0.08);

    border-radius: 50%;
}

.rj-contact-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -200px;
    bottom: -220px;

    border: 1px solid rgba(200, 155, 60, 0.14);

    border-radius: 50%;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.rj-contact-heading {
    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: 0 auto 45px;
}


.rj-contact-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 10px;

    color: var(--rj-primary);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.rj-contact-eyebrow i {
    color: var(--rj-gold);
}


.rj-contact-heading h2 {
    margin: 0 0 12px;

    color: var(--rj-heading);

    font-size: 35px;
    line-height: 1.2;

    font-weight: 800;
}


.rj-contact-heading h2 span {
    color: var(--rj-primary);
}


.rj-contact-heading p {
    max-width: 620px;

    margin: 0 auto;

    color: var(--rj-muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT INFO BOX
========================================================= */

.rj-contact-info {
    position: relative;

    z-index: 2;

    height: 100%;

    padding: 35px 30px;

    background: var(--rj-primary);

    border-radius: var(--rj-radius-lg);

    overflow: hidden;

    box-shadow: var(--rj-shadow-md);
}


/* GOLD DECORATIVE CIRCLE */

.rj-contact-info::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -120px;
    top: -110px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 50%;
}


.rj-contact-info::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    left: -90px;
    bottom: -80px;

    border: 1px solid rgba(200, 155, 60, 0.18);

    border-radius: 50%;
}


/* =========================================================
   INFO HEAD
========================================================= */

.rj-contact-info-head {
    position: relative;

    z-index: 2;

    margin-bottom: 27px;
}


.rj-contact-info-head>span {
    display: block;

    margin-bottom: 7px;

    color: var(--rj-gold-light);

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.rj-contact-info-head h3 {
    max-width: 390px;

    margin: 0 0 12px;

    color: var(--rj-white);

    font-size: 28px;

    line-height: 1.25;

    font-weight: 700;
}


.rj-contact-info-head h3 strong {
    color: var(--rj-gold-light);

    font-weight: 800;
}


.rj-contact-info-head p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.rj-contact-detail {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 13px;

    padding: 14px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 9px;

    color: var(--rj-white);

    text-decoration: none;

    transition: var(--rj-transition);
}


.rj-contact-detail:hover {
    background: rgba(255, 255, 255, 0.10);

    border-color: rgba(200, 155, 60, 0.40);

    transform: translateX(4px);
}


.rj-contact-detail-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(200, 155, 60, 0.12);

    border: 1px solid rgba(200, 155, 60, 0.25);

    border-radius: 8px;

    color: var(--rj-gold-light);

    font-size: 15px;
}


.rj-contact-detail-content {
    display: flex;

    flex-direction: column;

    min-width: 0;
}


.rj-contact-detail-content small {
    margin-bottom: 2px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;

    font-weight: 500;
}


.rj-contact-detail-content strong {
    color: var(--rj-white);

    font-size: 14px;

    line-height: 1.4;

    font-weight: 600;

    word-break: break-word;
}


.rj-contact-detail-content em {
    margin-top: 2px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 10px;

    font-style: normal;
}


.rj-contact-arrow {
    margin-left: auto;

    color: rgba(255, 255, 255, 0.35);

    font-size: 11px;

    transition: transform 0.3s ease;
}


.rj-contact-detail:hover .rj-contact-arrow {
    color: var(--rj-gold-light);

    transform: translateX(3px);
}


/* =========================================================
   WHATSAPP BOX
========================================================= */

.rj-contact-whatsapp {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 18px;

    padding: 15px;

    background: var(--rj-white);

    border-radius: 9px;

    color: var(--rj-heading);

    text-decoration: none;

    transition: var(--rj-transition);
}


.rj-contact-whatsapp:hover {
    transform: translateY(-3px);

    box-shadow: var(--rj-shadow-sm);
}


.rj-contact-whatsapp-icon {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #25D366;

    border-radius: 50%;

    color: var(--rj-white);

    font-size: 19px;
}


.rj-contact-whatsapp span:nth-child(2) {
    display: flex;

    flex-direction: column;
}


.rj-contact-whatsapp small {
    margin-bottom: 2px;

    color: #777;

    font-size: 11px;
}


.rj-contact-whatsapp strong {
    color: var(--rj-heading);

    font-size: 13px;

    font-weight: 800;
}


.rj-contact-whatsapp>i {
    margin-left: auto;

    color: var(--rj-primary);

    font-size: 12px;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.rj-contact-form-wrap {
    position: relative;

    z-index: 2;

    height: 100%;

    padding: 34px 32px;

    background: var(--rj-white);

    border: 1px solid var(--rj-border);

    border-radius: var(--rj-radius-lg);

    box-shadow: var(--rj-shadow-sm);
}


/* =========================================================
   FORM HEADER
========================================================= */

.rj-form-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--rj-border);
}


.rj-form-header span {
    display: block;

    margin-bottom: 4px;

    color: var(--rj-gold-dark);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


.rj-form-header h3 {
    margin: 0;

    color: var(--rj-heading);

    font-size: 25px;

    font-weight: 800;
}


.rj-form-header-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--rj-cream);

    border: 1px solid var(--rj-border);

    border-radius: 10px;

    color: var(--rj-primary);

    font-size: 19px;
}


/* =========================================================
   FORM LABEL
========================================================= */

.rj-contact-form label {
    display: block;

    margin-bottom: 7px;

    color: var(--rj-heading);

    font-size: 14px;

    font-weight: 700;
}


/* =========================================================
   INPUT
========================================================= */

.rj-form-input,
.rj-form-textarea {
    position: relative;
}


.rj-form-input>i,
.rj-form-textarea>i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #c69501;

    font-size: 14px;

    pointer-events: none;

    z-index: 2;
}


.rj-form-textarea>i {
    top: 18px;

    transform: none;
}


.rj-form-input input,
.rj-form-input select,
.rj-form-textarea textarea {
    width: 100%;

    border: 1px solid var(--rj-border);

    border-radius: 7px;

    background: #fff;

    color: var(--rj-text);

    font-family: inherit;

    font-size: 14px;

    transition: var(--rj-transition);

    outline: none;
}


.rj-form-input input,
.rj-form-input select {
    height: 49px;

    padding: 0 14px 0 43px;
}


.rj-form-textarea textarea {
    min-height: 115px;

    padding: 13px 14px 13px 43px;

    resize: vertical;

    line-height: 1.6;
}


.rj-form-input input::placeholder,
.rj-form-textarea textarea::placeholder {
    color: #999;

    font-size: 13px;
}


.rj-form-input input:focus,
.rj-form-input select:focus,
.rj-form-textarea textarea:focus {
    border-color: var(--rj-primary);

    box-shadow: 0 0 0 3px rgba(139, 30, 45, 0.07);
}


/* =========================================================
   SELECT
========================================================= */

.rj-form-select::after {
    content: "\f107";

    position: absolute;

    right: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--rj-primary);

    font-family: "Font Awesome 6 Free";

    font-size: 11px;

    font-weight: 900;

    pointer-events: none;
}


.rj-form-input select {
    appearance: none;

    cursor: pointer;
}


/* =========================================================
   SUBMIT
========================================================= */

.rj-form-submit {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 2px;
}


.rj-form-submit button {
    min-width: 175px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 13px 20px;

    border: 0;

    border-radius: 7px;

    background: var(--rj-primary);

    color: var(--rj-white);

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: var(--rj-transition);
}


.rj-form-submit button i {
    font-size: 11px;

    transition: transform 0.3s ease;
}


.rj-form-submit button:hover {
    background: var(--rj-primary-dark);

    transform: translateY(-2px);

    box-shadow: var(--rj-shadow-sm);
}


.rj-form-submit button:hover i {
    transform: translateX(4px);
}


.rj-form-submit p {
    margin: 0;

    color: #888;

    font-size: 13px;

    line-height: 1.5;
}


.rj-form-submit p i {
    margin-right: 4px;

    color: var(--rj-gold-dark);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .rj-contact-section {
        padding: 70px 0;
    }

    .rj-contact-heading {
        margin-bottom: 35px;
    }

}


@media (max-width: 767px) {

    .rj-contact-section {
        padding: 60px 0;
    }

    .rj-contact-heading h2 {
        font-size: 30px;
    }

    .rj-contact-heading p {
        font-size: 14px;
    }

    .rj-contact-info {
        padding: 28px 22px;
    }

    .rj-contact-form-wrap {
        padding: 27px 20px;
    }

    .rj-contact-info-head h3 {
        font-size: 25px;
    }

    .rj-form-submit {
        align-items: flex-start;

        flex-direction: column;
    }

    .rj-form-submit button {
        width: 100%;
    }

}


@media (max-width: 575px) {

    .rj-contact-section {
        padding: 50px 0;
    }

    .rj-contact-heading {
        margin-bottom: 28px;
    }

    .rj-contact-heading h2 {
        font-size: 27px;
    }

    .rj-contact-heading p {
        font-size: 13px;
    }

    .rj-contact-info {
        padding: 24px 17px;
    }

    .rj-contact-form-wrap {
        padding: 24px 16px;
    }

    .rj-form-header h3 {
        font-size: 21px;
    }

    .rj-form-header-icon {
        width: 42px;
        height: 42px;

        font-size: 16px;
    }

    .rj-contact-detail {
        padding: 12px;

        gap: 10px;
    }

    .rj-contact-detail-icon {
        width: 38px;
        height: 38px;

        font-size: 13px;
    }

    .rj-contact-detail-content strong {
        font-size: 13px;
    }

    .rj-contact-detail-content em {
        font-size: 9px;
    }

}

/* Modal Width */
#rjEnquiryModal .modal-dialog {
    max-width: 650px;
}

/* Modal */
#rjEnquiryModal .rj-enquiry-modal {
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

/* Header */
#rjEnquiryModal .rj-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #0b1b2b;
    border: 0;
}

#rjEnquiryModal .rj-modal-mini-title {
    display: block;
    color: #ec3237;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

#rjEnquiryModal .rj-modal-title {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

/* Close Button */
#rjEnquiryModal .rj-modal-close {
    float: none;
    opacity: 1;
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    text-shadow: none;
    border: 0;
    outline: none;
    padding: 0;
    background: transparent;
}

#rjEnquiryModal .rj-modal-close:hover {
    color: #ec3237;
}

/* IMPORTANT - 0px Padding */
#rjEnquiryModal .rj-modal-body {
    padding: 0 !important;
}

/* ============================= STICKY BUTTONS ============================= */
.sticky-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 96px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulse-wa 2.4s infinite;
}

.sticky-whatsapp:hover {
  transform: scale(1.1);
  color: #fff;
}


.sticky-call {
  position: fixed;
  left: 26px;
  bottom: 96px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #095a27;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulse-wa 2.4s infinite;
}

.sticky-call:hover {
  transform: scale(1.1);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}



.special-note {
    background: #fff8e6;
    border: 1px solid #f2c14e;
    padding: 6px 5px;
    border-radius: 8px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin: 20px 0;
}

.special-note strong {
    color: #c47b00;
}

.sbt-policy-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

.sbt-policy-page h1 {
    color: #8b1e1e;
    font-size: 38px;
    margin-bottom: 12px;
}

.sbt-policy-page h2 {
    color: #8b1e1e;
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 10px;
}

.sbt-policy-page p {
    margin-bottom: 15px;
}

.sbt-policy-page a {
    color: #8b1e1e;
    text-decoration: none;
}

.sbt-policy-page a:hover {
    text-decoration: underline;
}

.sbt-policy-intro {
    background: #fff7ed;
    border-left: 4px solid #d89b32;
    padding: 18px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}


.sbt-terms-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

.sbt-terms-page h1 {
    color: #8b1e1e;
    font-size: 38px;
    margin-bottom: 12px;
}

.sbt-terms-page h2 {
    color: #8b1e1e;
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 10px;
}

.sbt-terms-page p {
    margin-bottom: 15px;
}

.sbt-terms-page a {
    color: #8b1e1e;
    text-decoration: none;
}

.sbt-terms-page a:hover {
    text-decoration: underline;
}

.sbt-terms-intro {
    background: #fff7ed;
    border-left: 4px solid #d89b32;
    padding: 18px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}