/* Tour page V2 shell — shared by uej_template and tour pages */
/* Hero image paths use ../img/ because this file lives in css/ (Live Server resolves url() vs the stylesheet) */

body {
    padding-top: 0px !important;
    margin: 0 !important;
}


h2 {
    font-size: 24px;
    text-transform: uppercase;
    color: #303030;
    font-weight: 600;
    margin-bottom: 30px;
}

h4 {
    font-size: 19px;
    line-height: 1.375em;
    color: #303030;
    font-weight: 400;
    margin-bottom: 30px;
}

.jumbotron.jbt {
    background-color: transparent;
}

.jbt {
    background-image: url('../img/Holyland/Kineret.JPG');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 240px 10% 120px 10%;
    font-family: Montserrat, sans-serif;
    min-height: 650px;
    height: auto;
    position: relative;
    display: block;
    text-align: left;
    margin-top: 0 !important;
    overflow: hidden;
}

.jbt::before,
.jbt::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.jbt::before {
    background-image: url('../img/Holyland/Jrslm Jaffa gagte panorama_1.jpg');
    animation: heroFade1 18s ease-in-out infinite;
}

.jbt::after {
    background-image: url('../img/Holyland/Kineret & boat.jpg');
    animation: heroFade2 18s ease-in-out infinite;
}

.jbt>* {
    position: relative;
    z-index: 1;
}

@keyframes heroFade1 {

    0%,
    22.22% {
        opacity: 0;
    }

    33.33%,
    66.66% {
        opacity: 1;
    }

    77.77%,
    100% {
        opacity: 0;
    }
}

@keyframes heroFade2 {

    0%,
    55.55% {
        opacity: 0;
    }

    66.66%,
    88.88% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}



/* 顶部导航菜单融入 Hero 的样式 */
.hero-nav {
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.hero-nav ul li {
    margin: 0 15px;
}

.hero-nav ul li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
}

.hero-label {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 5px;
    letter-spacing: 1px;
    font-weight: bold;
}

.hero-sep {
    margin: 0 15px;
    opacity: 0.4;
}

/* 移动端菜单开关样式 */
.mobile-nav-toggle {
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s;
}

/* 移动端覆盖菜单 - 流光白金重构 */
.mobile-overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 2000;
    display: none;
    flex-direction: column;
    padding: 100px 50px;
    box-sizing: border-box;
}

.mobile-overlay-menu .menu-header {
    margin-bottom: 80px;
    display: flex;
    justify-content: flex-start;
}

.mobile-overlay-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-overlay-menu ul li {
    margin-bottom: 45px;
    opacity: 0;
    transform: translateX(-15px);
    animation: menuFadeSlide 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes menuFadeSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-overlay-menu ul li a {
    color: #222;
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.mobile-overlay-menu ul li a span {
    font-size: 10px;
    margin-right: 25px;
    color: #0052cc;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.6;
}

.mobile-overlay-menu .close-menu {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #333;
    font-size: 28px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.mobile-overlay-menu .menu-footer {
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 40px;
    color: #888;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.hero-nav ul li a:hover {
    color: #0052cc !important;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #ffffff !important;
}

.navbar-logo-wrap {
    position: absolute;
    top: 45px;
    left: 10%;
    z-index: 1000;
    padding: 12px 20px;
    margin: 0;
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}



.navbar-logo-wrap img {
    margin-top: -5px;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.header-txt-wrap {
    position: relative;
    text-shadow: 3px 3px 8px #000;
    font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
    margin-bottom: 20px;
    text-align: left;
    display: block;
    max-width: 95%;
    margin-left: 0;
    margin-right: 0;
    z-index: 5;
}

h1.header-tourname {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.header-tourname-2 {
    font-size: 19px;
    font-weight: 300;
    margin-top: 5px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 95%;
    margin-left: 0;
    margin-right: 0;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.header-tourdura {
    font-size: 14px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 15px;
    background: rgba(0, 0, 0, 0.25);
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.container-fluid {
    padding: 60px 50px;
}

.main-itin {
    padding-top: 5px !important;
    padding-left: 10% !important;
    padding-right: 10% !important;
}

@media only screen and (max-width: 1200px) {
    .main-itin {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
}

@media only screen and (max-width: 768px) {
    .main-itin {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}



.bg-grey {
    background-color: #f6f6f6;
}



.logo {
    color: #69C;
    font-size: 200px;
}







footer .glyphicon {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

footer a {
    color: #e2e2e2;
}





.slideanim {
    visibility: hidden;
}

.slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
}



@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}


.affix {
    top: 110px;
    width: 100%;
    z-index: 9998 !important;
}

.affix+.container-fluid {
    padding-top: 5px;
}

.prod-bar {
    background-color: #FFF;
    box-shadow: 0px 2px 5px #C0C0C0, 0px 4px 5px #E9E9E9, 0px 6px 5px #CCC;
    padding-left: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    margin-top: 0;
    z-index: 10;
    height: auto;
    display: flex;
    align-items: center;
}

.prod-bar .container-fluid {
    width: 100%;
}

.prod-bar.affix {
    position: fixed;
    top: 0px;
    bottom: auto;
    width: 100%;
    z-index: 9999 !important;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.prod-bar a {
    width: auto;
    font-size: 13px;
    font-weight: bold;
    color: #666;
    padding-left: 0;
    padding-right: 25px;
    font-family: 'Roboto Condensed', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
}

.prod-bar a:hover {
    color: #003366;
}

a:focus,
a:active,
button:focus,
button:active,
.btn:focus,
.btn:active {
    outline: none !important;
    text-decoration: none !important;
}


.itin-header {
    font-size: 26px;
    color: #003366;
    text-align: left;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #003366;
    padding-bottom: 10px;
}

.header-price-wrap {
    display: flex;
    align-items: flex-start;
    background: #f0f7ff;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #d0e5ff;
}

.header-price-label {
    font-size: 11px;
    color: #888;
    margin-right: 0px;
    font-weight: normal;
    text-transform: none;
    line-height: 1.2;
    display: block;
}

.tour-cost-label {
    font-size: 14px;
    color: #666;
    margin-right: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

@media screen and (max-width: 768px) {
    .price-flex-res {
        flex-direction: column !important;
        align-items: flex-end !important;
        padding-bottom: 0 !important;
    }

    .tour-cost-label {
        margin-bottom: 2px;
        margin-right: 0 !important;
        font-size: 10px !important;
    }
}

.itin-header i {
    font-size: 24px;
}

.highlights {
    font-size: 22px;
    color: #333;
    text-align: left;
    font-family: 'Gudea', sans-serif;
}

.sideimg img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 25px auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sideimg:hover img {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.incl-excl-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 20px;
}

.incl-excl-col {
    flex: 1;
    min-width: 300px;
}

.bottom-sections {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.bottom-section-item {
    flex: 1;
    min-width: 300px;
}

.incl {
    width: 100%;
    margin-bottom: 20px;
}

.tit-incl {
    background: #AAD2FF;
    height: 30px;
    text-align: left;
    padding-left: 20px;
    padding-top: 5px;
    font-weight: 600;
}

.list-incl,
.list-excl,
.list-note {
    text-align: left;
}

.list-incl>ul>li {
    padding-bottom: 8px;
}



.footer-break {
    display: inline;
}

.custom-bullet-y li {
    display: block;
}

.custom-bullet-x li {
    display: block;
}

.custom-bullet-y li:before {
    /*Using a Bootstrap glyphicon as the bullet point*/
    content: "\e013";
    font-family: 'Glyphicons Halflings';
    font-size: 10px;
    float: left;
    margin-top: 4px;
    margin-left: -17px;
    color: #333;
}

.custom-bullet-x li:before {
    /*Using a Bootstrap glyphicon as the bullet point*/
    content: "\e014";
    font-family: 'Glyphicons Halflings';
    font-size: 10px;
    float: left;
    margin-top: 4px;
    margin-left: -17px;
    color: #333;
}

.main-color {
    color: #036;
}

.init_2 {
    height: 240px;
}

@media only screen and (max-width: 1800px) {

    /* For mobile phones: */
    [class*="my-col-md-6"] {
        width: 100%;
    }

    .init_2 {
        height: 290px;
    }
}

@media only screen and (max-width: 1600px) {
    body {
        padding-top: 0 !important;
    }

    .init_2 {
        height: 290px;
    }

    [class*="col-sm-2"] {
        width: 8%;
    }

    [class*="col-sm-5"] {
        width: 60%;
    }

    [class*="col-sm-7"] {
        width: 85%;
    }

    [class*="col-sm-8"] {
        width: 85%;
    }

    [class*="col-sm-3"] {
        width: 8%;
    }

    .header-txt-wrap {
        position: relative;
        text-shadow: 3px 3px 8px #000;
        font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
        text-align: left;
        display: inline-block;
    }

    .jbt {
        background-size: cover;
        background-position: center center;
        height: 400px;
        margin-top: 0 !important;
    }

    .header-tourname-2 {
        font-size: 22px;
    }

    h1.header-tourname {
        font-size: 44px;
    }

    .header-tourdura {
        font-size: 22px;
    }
}

@media only screen and (max-width: 1400px) {
    body {
        padding-top: 0 !important;
    }

    /* For mobile phones: */
    [class*="my-col-md-6"] {
        width: 100%;
    }

    .init_2 {
        height: 400px;
    }

    .jbt {
        background-size: cover;
        background-position: center center;
        color: #fff;
        padding: 100px 25px;
        font-family: Montserrat, sans-serif;
        height: 450px;
        margin-top: 0 !important;
    }

    .header-txt-wrap {
        position: relative;
        text-shadow: 4px 4px 6px #000;
        font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
        text-align: left;
        display: inline-block;
    }

    .header-tourname-2 {
        font-size: 20px;
        max-width: 90%;
        margin: 5px 0;
    }

    h1.header-tourname {
        font-size: 40px;
    }


}

@media only screen and (max-width: 1300px) {
    body {
        padding-top: 0 !important;
    }

    /* For mobile phones: */
    [class*="my-col-md-6"] {
        width: 100%;
    }

    .jbt {
        background-size: cover;
        background-position: center center;
        color: #fff;
        padding: 180px 25px 80px 25px;
        font-family: Montserrat, sans-serif;
        height: auto;
        min-height: 500px;
        margin-top: 0 !important;
    }

    .header-txt-wrap {
        position: relative;
        text-shadow: 4px 4px 6px #000;
        font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
        text-align: left;
        display: inline-block;
        margin-top: 20px;
    }

    .header-tourname-2 {
        font-size: 18px;
    }

    h1.header-tourname {
        font-size: 36px;
    }

    .header-tourdura {
        font-size: 20px;
    }

    .init_2 {
        height: 400px;
    }

}

@media only screen and (max-width: 1100px) {
    body {
        padding-top: 0 !important;
    }

    /* For mobile phones: */
    [class*="my-col-md-6"] {
        width: 100%;
    }

    .init_2 {
        height: 400px;
    }

    .jbt {
        background-size: cover;
        background-position: center center;
        color: #fff;
        padding: 180px 25px 80px 25px;
        font-family: Montserrat, sans-serif;
        height: auto;
        min-height: 450px;
        margin-top: 0 !important;
    }

    .header-txt-wrap {
        position: relative;
        text-shadow: 4px 4px 6px #000;
        font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
        text-align: left;
        display: inline-block;
        margin-top: 20px;
    }

    .header-tourname-2 {
        font-size: 20px;
    }

    h1.header-tourname {
        font-size: 28px;
    }

    .header-tourdura {
        font-size: 20px;
    }


}



@media screen and (max-width: 768px) {
    body {
        padding-top: 0 !important;
    }

    .logo {
        font-size: 150px;
    }

    .jbt {
        background-position: center center;
        background-repeat: no-repeat;
        color: #fff;
        padding: 160px 20px 80px 20px;
        background-size: cover;
        font-family: Montserrat, sans-serif;
        height: auto;
        min-height: 400px;
        width: 100%;
    }

    .navbar-logo-wrap {
        margin-top: 15px !important;
        padding: 8px 10px;
        border-radius: 10px;
    }

    .navbar-logo-wrap img {
        width: 90px !important;
    }

    .main-itin {
        width: 100%;
    }

    .header-txt-wrap {
        position: relative;
        text-shadow: 3px 3px 5px #111;
        font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
        text-align: left;
        display: inline-block;
    }

    .header-tourname-2 {
        font-size: 16px;
    }

    h1.header-tourname {
        font-size: 22px;
    }

    .header-tourdura {
        font-size: 14px;
    }

    .prod-bar {
        margin-top: 35px;
        background-color: #FFF;
        box-shadow: 0px 2px 5px #C0C0C0, 0px 4px 5px #E9E9E9, 0px 6px 5px #CCC;
        padding-left: 1%;
        height: 35px;
        padding-top: 10px;
        width: 100%;
    }

    .prod-bar a {
        font-size: 11px;
        font-weight: bold;
        color: #666;
        padding-left: 5px;
        padding-right: 5px;
        font-family: 'Roboto Condensed', sans-serif;
    }

    [class*="col-sm-10"] {
        width: 100%;
    }

    [class*="col-sm-7"] {
        width: 100%;
    }

    [class*="col-sm-3"] {
        width: 0px;
    }

    [class*="col-sm-2"] {
        width: 0px;
    }

    .mb-price {
        background: #D1EAF3;
        padding-bottom: 20px;
    }

    .icon-dbl-lines {
        display: none;
    }

    .highlights {
        font-size: 16px;
        color: #333;
        text-align: left;
        font-family: 'Gudea', sans-serif;
    }

    .init_2 {
        height: 420px;
        width: 100%;
    }

    #init_2 {
        width: 100%;
    }

    .price-wrap {
        width: 350px;
        height: 400px;
        text-align: left;
        margin-top: -15px;
    }

    .footer-wrap {
        width: 100%;
    }

    .footer-break {
        display: block;
    }

    .spacer {
        display: none;
    }
}

@media screen and (max-width: 640px) {


    .init_2 {
        height: 420px;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 150px;
    }

    .jbt {
        background-position: center center;
        background-repeat: no-repeat;
        color: #fff;
        padding: 100px 15px 60px 15px;
        background-size: cover;
        font-family: Montserrat, sans-serif;
        height: auto;
        min-height: 380px;
        width: 100%;
    }

    .navbar-logo-wrap {
        margin-top: 10px !important;
        padding: 5px 8px;
        border-radius: 8px;
    }

    .navbar-logo-wrap img {
        width: 75px !important;
    }

    .main-itin {
        width: 100%;
    }

    .header-txt-wrap {
        position: relative;
        text-shadow: 3px 3px 5px #111;
        font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
        text-align: left;
        display: inline-block;
        max-width: 90%;
    }

    .header-tourname-2 {
        font-size: 14px;
        max-width: 95%;
        margin: 5px 0;
        text-align: left;
    }

    h1.header-tourname {
        font-size: 18px;
    }

    .header-tourdura {
        font-size: 11px;
    }

    .prod-bar {
        margin-top: 35px;
        background-color: #FFF;
        box-shadow: 0px 2px 5px #C0C0C0, 0px 4px 5px #E9E9E9, 0px 6px 5px #CCC;
        padding-left: 1%;
        height: 35px;
        padding-top: 10px;
        width: 100%;
    }

    .prod-bar a {
        font-size: 11px;
        font-weight: bold;
        color: #666;
        padding-left: 5px;
        padding-right: 5px;
        font-family: 'Roboto Condensed', sans-serif;
    }

    [class*="col-sm-10"] {
        width: 100%;
    }

    [class*="col-sm-7"] {
        width: 100%;
    }

    [class*="col-sm-3"] {
        width: 0px;
    }

    [class*="col-sm-2"] {
        width: 0px;
    }

    .mb-price {
        background: #D1EAF3;
        padding-bottom: 20px;
    }

    .icon-dbl-lines {
        display: none;
    }

    .highlights {
        font-size: 16px;
        color: #333;
        text-align: left;
        font-family: 'Gudea', sans-serif;
    }

    .init_2 {
        height: 420px;
        width: 100%;
    }

    #init_2 {
        width: 100%;
    }


    .price-wrap {
        width: 350px;
        height: 400px;
        text-align: left;
        margin-top: -15px;
    }

    .footer-wrap {
        width: 100%;
    }

    .footer-break {
        display: block;
    }

    .spacer {
        display: none;
    }
}

/* Important part */
.modal-dialog {
    overflow-y: initial !important
}

.modal-body {
    height: 500px;
    overflow-y: auto;
}

.itin-font {}

/* CTA Optimization Styles */
.btn-cta-primary {
    background: #0052cc;
    color: white !important;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: bold;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 82, 204, 0.4);
    background: #003d99;
    color: white !important;
}

.btn-cta-outline {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    color: white !important;
}

.nav-cta-btn {
    background: #0052cc;
    color: white !important;
    padding: 6px 12px !important;
    font-size: 12px;
    border-radius: 20px;
    margin-left: 10px;
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.2);
    transition: all 0.3s ease;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    opacity: 0;
    pointer-events: none;
}

.nav-cta-btn:hover {
    background: #003d99;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 82, 204, 0.3);
}

/* Show the nav CTA buttons only when the bar is sticky (affix) */
.prod-bar.affix .nav-cta-btn,
.prod-bar.affix .nav-inquire-btn {
    opacity: 1;
    pointer-events: auto;
}

.nav-inquire-btn {
    background: rgba(0, 51, 102, 0.05);
    color: #003366 !important;
    padding: 6px 15px !important;
    border-radius: 20px;
    margin-left: 10px;
    border: 1px solid #003366;
    transition: all 0.3s ease;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    opacity: 0;
    pointer-events: none;
    font-size: 12px;
}

.nav-inquire-btn:hover {
    background: #003366;
    color: white !important;
}

.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    border-top: 1px solid #eee;
}

.mobile-cta-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 1px;
}

.mobile-cta-inquire {
    color: #333;
    background: #fff;
}

.mobile-cta-book {
    color: #fff;
    background: #0052cc;
    flex: 2;
    font-size: 11px;
    padding: 15px 8px;
}

.post-itin-banner {
    background: linear-gradient(135deg, #003366 0%, #001f3f 100%);
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.2);
}

.post-itin-banner h2 {
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
    text-transform: none;
}

.post-itin-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .post-itin-banner {
        padding: 30px 20px;
    }

    .post-itin-banner h2 {
        font-size: 24px;
    }

    .post-itin-banner p {
        font-size: 16px;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
        padding: 12px 20px;
    }

    .hero-btns {
        width: 100%;
    }

    .nav-cta-btn,
    .nav-inquire-btn {
        display: none !important;
    }

    body {
        padding-bottom: 60px !important;
        /* Space for mobile bar */
    }
}

/* Mobile prod-bar patch */
@media screen and (max-width: 768px) {

    .prod-bar .col-sm-3,
    .prod-bar .nav-cta-btn,
    .prod-bar .nav-inquire-btn {
        display: none !important;
    }

    .prod-bar .col-sm-7 {
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding: 0 15px !important;
        -webkit-overflow-scrolling: touch;
        text-align: left !important;
    }

    .prod-bar {
        height: auto !important;
        margin-top: 0 !important;
        padding: 12px 0 !important;
        background: #fff !important;
    }

    .prod-bar a {
        display: inline-block;
        padding: 5px 15px !important;
        float: none !important;
        font-size: 13px !important;
        width: auto !important;
    }
}

/* V2 hero + prod-bar responsive (overrides legacy height-based .jbt rules above) */
@media screen and (max-width: 1600px) {

    .main-itin,
    .jbt {
        padding-left: 6% !important;
        padding-right: 6% !important;
    }

    .navbar-logo-wrap {
        left: 6% !important;
    }

    .jbt {
        padding-top: 220px !important;
        min-height: 650px !important;
        height: auto !important;
    }

    h1.header-tourname {
        font-size: 36px !important;
    }

    .prod-bar .col-sm-1 {
        display: none !important;
    }

    .prod-bar .col-sm-6 {
        width: 60% !important;
        padding-left: 15px !important;
    }

    .prod-bar .col-sm-4 {
        width: 40% !important;
        padding-right: 15px !important;
    }
}

@media screen and (max-width: 1400px) {

    .main-itin,
    .jbt {
        padding-left: 4% !important;
        padding-right: 4% !important;
    }

    .navbar-logo-wrap {
        left: 4% !important;
        top: 25px !important;
    }

    .jbt {
        padding-top: 200px !important;
        min-height: 600px !important;
        height: auto !important;
    }

    h1.header-tourname {
        font-size: 32px !important;
    }

    .navbar-logo-wrap img {
        width: 100px !important;
    }
}

@media screen and (max-width: 1200px) {

    .main-itin,
    .jbt {
        padding-left: 2% !important;
        padding-right: 2% !important;
    }

    .navbar-logo-wrap {
        left: 2% !important;
    }

    h1.header-tourname {
        font-size: 28px !important;
    }

    .header-tourname-2 {
        font-size: 17px !important;
    }

    .prod-bar a {
        padding-right: 15px !important;
        font-size: 12px !important;
    }

    .nav-cta-btn,
    .nav-inquire-btn {
        padding: 6px 10px !important;
        font-size: 10.5px !important;
    }
}

@media screen and (max-width: 992px) {

    .main-itin,
    .jbt {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .navbar-logo-wrap {
        left: 15px !important;
        top: 30px !important;
    }

    .jbt {
        padding-top: 180px !important;
        min-height: 550px !important;
        height: auto !important;
    }

    h1.header-tourname {
        font-size: 24px !important;
    }

    .header-tourname-2 {
        font-size: 15px !important;
    }

    .navbar-logo-wrap img {
        width: 90px !important;
    }
}

@media screen and (max-width: 768px) {
    .jbt {
        padding-top: 160px !important;
        padding-bottom: 80px !important;
        min-height: 450px !important;
        height: auto !important;
    }

    .header-tourdura {
        font-size: 12px !important;
        padding: 10px 20px !important;
    }
}

/* Travel Insurance Buttons */
.btn-insurance {
    background: linear-gradient(135deg, #0052cc 0%, #003366 100%);
    color: #ffffff !important;
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-insurance:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.35);
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
    color: #ffffff !important;
}

.btn-insurance:active {
    transform: translateY(0);
}

.btn-insurance i {
    font-size: 14px;
}

.btn-insurance-logo {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    padding: 8px 24px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 42px;
    box-sizing: border-box;
}

.btn-insurance-logo img {
    height: 20px;
    width: auto;
    display: block;
}

.btn-insurance-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 167, 88, 0.15);
    border-color: #00A758;
}

.btn-insurance-logo:active {
    transform: translateY(0);
}

.btn-insurance-logo.btn-tips img {
    height: 24px;
}

.btn-insurance-logo.btn-tips:hover {
    box-shadow: 0 6px 20px rgba(122, 21, 1, 0.15);
    border-color: #7a1501;
}

.insurance-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.insurance-logo-link:hover {
    transform: translateY(-2px);
}  transform: translateY(-2px);
} transform: translateY(-2px);
}