/*------------------------------------------------------------------
* Project:        Tour Packer
* Author:         Crenoveative
* URL:            http://crenoveative.com
* Version:        1.0.0
* Created:        06/03/2016
* Last change:    06/03/2016
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
* Table of Content
* 1. Header
* 2. Navbar Mini
* 3. Sticky Header
* 4. Hero Image
* 5. Page Title & Breadcrumb
* 6. Main Search Form
* 7. Sidebar
* 8. Sorting
* 9. Pager
* 10. Featured Items
* 11. Destinations
* 12. Tour Package
* 13. itinerary
* 14. Why us
* 15. Testimonial
* 16. Newsletter
* 17. About Us
* 18. Review
* 19. Faq
* 20. Payment
* 21. Confirmation
* 22. Social
* 23. Contact Us
* 24. Blog
* 25. Image Overlay
* 26. Footer
* 27. Sign-in/up
* 28. REVIEW / RATING SECTION 4029
* 29. AUTHORISED & LICENSED BADGE
-------------------------------------------------------------------*/


/**
 * Header
 */
/* ========================
   FINAL NAVBAR FIX
   Desktop + Mobile
   Sticky + No Shrink
======================== */
.desktop-sticky .navbar-bottom {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15); /* shadow thoda strong kiya */
    height: 60px;
    line-height: 60px;
    display: flex;
    align-items: center;
}


/* Navbar base */
.navbar {
    border-bottom: 0;
    min-height: 0;
    margin: 0;
    width: 100%;
}

.navbar-primary {
    background: #F56961;
}

.navbar-bottom {
    background: #FFF;
}

/* Logo */
.navbar-logo {
    float: left;
    display: block;
    margin-right: 10px;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-logo img {
    height: auto;
    width: auto;
    max-height: 50px !important;
    transition: none !important; /* No shrink on scroll */
}

.navbar-sticky .navbar-logo img {
    max-height: 50px !important; /* Fixed size */
}

/* Phone at Header */
.navbar-phone {
    font-weight: 800;
    font-size: 14px;
    color: #ffffff;
    text-align: right;
    animation: shake 3s infinite;
}

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}


/* Main Menu Dropdown */
.navbar-nav {
    margin: 0;
}

.navbar-nav li a {
    font-weight: 600;
    font-size: 14px;
    color: #636363;
}

.navbar-nav > li {
    margin-right: 30px;
}

.navbar-nav > li > a {
    line-height: 60px;
    padding: 0 5px;
}

/* Hover color - OLD RED like before */
.navbar-nav > li > a:hover {
    color: #F56961;
}

.navbar-nav li {
    position: relative;
}

.navbar-nav li ul {
    z-index: 9999;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 60px;
    left: 0;
    width: 351px;
    display: none;
    border: 1px solid #E3E3E3;
    border-top: 2px solid #F56961;
    background: #FFF;
}

.navbar-nav li ul li {
    border-bottom: 1px solid #f56961;
    padding: 0 14px;
}

.navbar-nav li ul li a {
    border-bottom: 0;
    display: block;
    padding: 8px 0;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.25;
    font-weight: 400;
}

.navbar-nav li ul li:hover > a {
    color: #F56961;
}

/* Mega Menu */
.navbar-nav > li.mega-menu {
    position: inherit!important;
    left: 0;
    color: #636363;
}

.navbar-nav > li.mega-menu ul {
    left: 0%;
    width: 100%;
    top: 50px;
    padding: 20px 30px;
}

/* Menu Arrow */
.navbar-arrow > ul > li .arrow-indicator {
    margin-left: 7px;
    color: #CCC;
}

.navbar-arrow ul ul > li .arrow-indicator {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -8px;
    font-size: 16px;
    color: #CCC;
}

/* ========================
   MOBILE FIX
======================== */
@media (max-width: 991px) {
    /* Sticky top for mobile */
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    /* Body padding so content not hidden under navbar */
    body {
        padding-top: 40px; /* Adjusted to remove extra gap */
    }

    /* Logo size mobile */
    .navbar-logo img {
        max-height: 40px !important;
    }

    /* Navbar bottom auto for mobile */
    .navbar-bottom {
        height: auto;
        line-height: normal;
        padding: 5px 10px;
    }

    /* Top red bar height */
    .navbar-top {
        height: 45px;
        line-height: 45px;
    }

    /* Menu links spacing mobile */
    .navbar-nav > li > a {
        line-height: normal;
        padding: 10px 15px;
    }
}



/***end-here*****/
@media (min-width: 768px) {
    .navbar-nav > li.mega-menu ul {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .navbar-nav > li.mega-menu ul {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .navbar-nav > li.mega-menu ul {
        width: 1170px;
    }
}

@media (min-width: 768px) {
    .navbar {
        -webkit-transition: all 0.1s ease-in-out 0s;
        -moz-transition: all 0.1s ease-in-out 0s;
        -ms-transition: all 0.1s ease-in-out 0s;
        -o-transition: all 0.1s ease-in-out 0s;
        transition: all 0.1s ease-in-out 0s;
    }
    .navbar-brand {
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-logo {
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
        margin-top: 6px;
    }
    .navbar-nav li ul li a {
        -webkit-transition: all 0.2s ease-in-out 0s;
        -moz-transition: all 0.2s ease-in-out 0s;
        -ms-transition: all 0.2s ease-in-out 0s;
        -o-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s;
    }
    .navbar-nav > li > a {
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }
    .navbar-sticky .navbar-logo {
        margin-top: 0;
    }
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
    .navbar-logo {
        padding: 0;
        margin: 0;
    }
    .navbar-logo img {
        width : 25% !important;
        margin: 0;
    }
    .navbar-arrow > ul > li .arrow-indicator,
    .navbar-arrow ul ul > li .arrow-indicator {
        display: none !important;
    }
    .navbar-sticky .navbar-logo {
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .navbar-fixed-top {
        clear: both;
    }
    .navbar-logo img {
        width: 25% !important;
    }
    .navbar-logo {
        margin-top: 5px;
        margin-bottom: 5px;
        float: none;
    }
    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 23px;
    }
}

@media (max-width: 479px) {}


/**
 * Navbar Mini
 */

.navbar-mini {}

.navbar-mini > ul {
    line-height: 55px;
    margin: 0;
    margin-top: -2px;
    padding: 0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

.navbar-mini > ul > li {
    float: left;
    margin-left: 15px;
}

.navbar-mini > ul > li:last-child {
    border-right: none;
}

.navbar-mini > ul > li > a {
    color: rgba(255, 255, 255, 1);
    font-size: 13px;
    font-weight: 600;
}

.navbar-mini > ul > li > a:hover,
.navbar-mini > ul > li > a:focus {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-mini > ul > li > a.btn {
    border: 2px solid #FFF;
    font-size: 11px;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-mini > ul > li > a.btn:hover,
.navbar-mini > ul > li > a.btn:focus {
    border-color: rgba(255, 255, 255, 0.8);
}

.navbar-mini .dropdown-menu {
    min-width: 80px;
    padding: 10px;
}

.navbar-mini .dropdown-menu > li > a {
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 400;
}

.navbar-mini .dropdown-menu > li:first-child > a {
    padding-top: 5px;
}

.navbar-mini .dropdown-menu > li:last-child > a {
    padding-bottom: 5px;
}

.navbar-mini .dropdown-menu > li > a:hover,
.navbar-mini .dropdown-menu > li:hover > a,
.navbar-mini .dropdown-menu > li > a:focus {
    color: #BA0600 !important;
    background: none !important;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
    .navbar-mini {
        margin-right: 45px;
    }
    .navbar-mini > ul {
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
        transition: none;
        line-height: 50px;
    }
    .navbar-mini > ul > li > a.btn {
        padding: 6px 6px;
    }
}

@media (max-width: 767px) {
    .navbar-mini > ul > li {
        margin-left: 10px;
    }
    .navbar-mini > ul > li > a.btn {
        border: 0;
    }
}

@media (max-width: 479px) {
    .navbar-mini {
        margin-right: 35px;
    }
    .navbar-mini > ul > li {
        margin-left: 0;
    }
}


/**
 * Sticky Header
 */

.navbar-sticky {
    border-color: #232F49;
}

.navbar-sticky hr {
    display: none;
}

.navbar-sticky.navbar-primary {
    padding-top: 0;
}

.navbar-sticky .navbar-logo {
    padding-top: 1px;
    padding-bottom: 1px;
}

.navbar-sticky .navbar-phone {
    line-height: 40px;
}

.navbar-sticky .navbar-nav > li > a {
    line-height: 40px;
}

.navbar-sticky .navbar-nav > li > a:hover,
.navbar-sticky .navbar-nav > li > a:focus {
    color: #D65049;
    background-color: transparent
}

.navbar-sticky .navbar-nav > li > ul {
    top: 40px;
}

.navbar-sticky .navbar-nav > li.mega-menu ul {
    top: 40px;
}

.navbar-sticky .navbar-nav > .active > a,
.navbar-sticky .navbar-nav > .active > a:hover,
.navbar-sticky .navbar-nav > .active > a:focus {
    color: #0D7CC9;
    background-color: transparent;
}

.navbar-sticky .navbar-nav > .disabled > a,
.navbar-sticky .navbar-nav > .disabled > a:hover,
.navbar-sticky .navbar-nav > .disabled > a:focus {
    color: #444444;
    background-color: transparent;
}

.navbar-sticky .navbar-second {
    padding-top: 5px;
}

@media (min-width: 768px) {
    .navbar-sticky {
        -webkit-box-shadow: 0px 3px 8px -6px rgba(0, 0, 0, 0.43);
        -moz-box-shadow: 0px 3px 8px -6px rgba(0, 0, 0, 0.43);
        box-shadow: 0px 3px 8px -6px rgba(0, 0, 0, 0.43);
    }
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
    .navbar-sticky .navbar-logo {
        padding-top: 7px;
    }
}

@media (max-width: 767px) {}

@media (max-width: 479px) {}

/* =====================================================
   SAFE DROPDOWN FIX PATCH
   (Paste at very bottom of your CSS file)
===================================================== */

/* Remove fixed top problem */
.navbar-nav > li > ul,
.navbar-sticky .navbar-nav > li > ul {
    top: 100% !important;
}

/* Smooth dropdown animation */
.navbar-nav > li > ul {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block !important;
    width: max-content !important;     /* Auto width */
    min-width: 180px;                  /* Minimum safety */
    white-space: nowrap;               /* Line break na ho */
}

.navbar-nav > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Submenu desktop slight left + different shade */
@media (min-width: 768px) {

    .navbar-nav li ul li {
        position: relative;
    }

    .navbar-nav li ul li ul {

        right: 98% !important;
        left: auto !important;
        top: 0 !important;

        width: max-content !important;     /* Auto width */
        min-width: 180px;                  /* Minimum safety */
        white-space: nowrap;               /* Line break na ho */

        background: #e3e5e8 !important;
        border-left: 3px solid #F56961;

        opacity: 0;
        visibility: hidden;
        transform: translateX(6px);
        transition: all 0.3s ease;
        display: block !important;
    }

    .navbar-nav li ul li:hover > ul {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}


.megamenu-container .arrow-indicator {
    display: none !important;
}
/****add-here*******/
.main-search-wrapper .column-item.for-btn{
	display: table;
    float: none!important;
    margin: 0 auto;
}

.marquee-ads {
        margin-top: 0px;
        padding: 5px 0px;
        background: rgb(235, 235, 235);
    }

/* car-rental SECTION */
.car-rental {
    padding: 60px 20px;
    background: #fffaf4;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.car-rental .section-title {
    background: #fffaf2;   /* halka off white */
    padding: 2px 3px 10px;
    border-radius: 14px;
    border: 1px solid #f1e2cf;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.car-rental .section-title h2 {
    font-size: 32px;
    margin: 0 0 12px;
    line-height: 1.3;
}

.colorful-heading {
    font-size: 15px;
    color: #f06b07;
}

/* GRID WRAPPER */
.car-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

/* TABLET */
@media (max-width: 992px) {
    .car-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .car-wrapper {
        grid-template-columns: 1fr;
    }

    .car-rental .section-title h2 {
        font-size: 24px;
    }
    
    .colorful-heading {
        font-size: 10px;
    }
}

/* CARD */
.car {
    background: #fff;
    border: 1px #fff1;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.car:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.car-img img {
    width: 100%;
    display: block;
}

/* TEXT */
.car-text {
    padding: 18px;
}

.car-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    font-weight: 600;
}

.car-text p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* BUTTONS */
.card-actions {
    display: flex;
    gap: 8px;
}

.card-actions a {
    flex: 1;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-call {
    background: #f8bc5e;
    color: #000;
}

.btn-book {
    background: #f56961;
    color: #fff;
}

.card-actions a:hover {
    opacity: 0.85;
}

.gallery .clearfix{
    height:30px;
    width:100%;
    display:table;
}
.gallery img{
    cursor: -webkit-zoom-in;
}
.without-g{
    height: 250px;
}
.gallery .popup-g {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    cursor: -webkit-zoom-out;
    transition:0.8s;
}
.gallery .popup-g img{
    cursor: -webkit-zoom-out;
}
.gallery .popup-g img {
    max-width: 700px;
    width: 100%;
    margin: 165px auto 0;
    display: table;
}
.g-inner {
    max-width: 700px;
    margin: 0 auto;
    display: table;
    position: relative;
}
.g-inner i.fa {
    position: absolute;
    top: 142px;
    right: 0px;
    color: #fff;
    z-index: 99999;
    font-size: 22px;
    cursor: pointer;
}
.gallery .g-popup{
    display:table;
    transition:0.8s;
}


/**
 * Hero Image
 */

.hero {
    position: relative;
    padding: 130px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    text-align: center;
}

.hero::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: ""
}

.hero h1 {
    font-family: 'Cinzel', serif;
    color: rgba(255, 255, 255, 1);
    font-size: 38px;
    font-weight: 400;
    margin-top: 0;
}

.hero p.lead {
    margin-bottom: 0px;
    font-size: 25px;
    line-height: 31px;
    font-weight: 300;
}

.hero .btn {
    padding-left: 40px;
    padding-right: 40px;
}

.hero.windows-height-bg {
    overflow: hidden;
}

.seo-heading {
  position: absolute;
  left: -9999px; /* hides from users */
  visibility: hidden; /* ensures not visible */
}


@media (min-width: 768px) {}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
    .hero {
        padding: 40px 0;
    }
    .hero h1 {
        font-size: 26px;
    }
    .hero p.lead {
        font-size: 15px;
        line-height: 1.4;
    }
}

@media (max-width: 479px) {
    .hero h1 {
        font-size: 22px;
        margin-top: 2px;
        line-height: 25px;
    }
    .hero p.lead {
        font-size: 12px;
    }
}

/**
 * Page Title & Breadcrumb
 */
.page-title {
    position: relative;
    padding: 40px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.page-title::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    content: "";
    z-index: 0;
}

.page-title h1 {
    font-family: 'Cormorant Garamond', serif;
    color: rgba(255, 255, 255, 1); /* white text */
    margin: 0 0 5px;
    font-weight: 700;
}


.page-title h5,
.page-title p {
    color: rgba(255, 255, 255, 0.9);
}

.page-title p.lead {
    font-weight: 300;
}

/* Text above overlay */
.page-title * {
    position: relative;
    z-index: 1;
}

.page-title.detail-page-title {
    padding: 220px 0 30px;
    text-align: left;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .page-title.detail-page-title {
        padding: 100px 0 30px;
    }
}


ol.breadcrumb-list li {
    display: inline-block;
    line-height: 1;
    color: rgba(255, 255, 255, 1);
    font-size: 12px;
}

ol.breadcrumb-list li a {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

ol.breadcrumb-list li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

ol.breadcrumb-list li a:after {
    content: "/";
    margin: 0 7px;
}

ol.breadcrumb-list li span {
    font-weight: 600;
}

ol.breadcrumb-list.booking-step li a:after,
ol.breadcrumb-list.booking-step li:not(:last-child) span:after {
    font-family: 'FontAwesome';
    content: "\f105 ";
    margin: 0 7px;
}

.breadcrumb-wrapper {
    padding: 10px 0;
}

.breadcrumb-wrapper ol.breadcrumb-list li a {
    color: #F56961;
}

.breadcrumb-wrapper ol.breadcrumb-list li a:hover {
    color: #D65049;
}

.breadcrumb-wrapper ol.breadcrumb-list li span,
.breadcrumb-wrapper ol.breadcrumb-list li a:after {
    color: #666;
}

.page-title.detail-page-title .list-col {
    line-height: 1;
}

.page-title.detail-page-title ul.list-col li:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.8);
    bottom: auto;
    height: 33px;
}

.page-title.detail-page-title .list-col li.rating-box::after {
    top: -1px;
}

.page-title.detail-page-title .list-col li.fav-box::after {
    top: 1px;
}

.page-title.detail-page-title .btn-fav {
    background: none;
    color: #FFF;
    padding: 0;
}

.page-title.detail-page-title .list-col .duration-box .meta {
    display: inline-block;
}

.page-title.detail-page-title .list-col .duration-box .meta:not(:last-child) {
    margin-right: 7px;
}

.page-title.detail-page-title .meta span {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.page-title.detail-page-title {}

.availabily-wrapper {}

ul.availabily-list {}

ul.availabily-list li {
    border-bottom: 1px solid #E3E3E3;
    line-height: 1.2;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

ul.availabily-list li > div {
    display: inline-block;
    width: 19.5%;
    vertical-align: middle;
    padding: 0;
    margin: 0;
}

ul.availabily-list li > div span {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

ul.availabily-list li > div.date-from,
ul.availabily-list li > div.date-to {
    width: 23%;
}

ul.availabily-list li > div.date-from {
    padding-right: 10px;
}

ul.availabily-list li > div.date-to {
    padding-left: 10px;
}

ul.availabily-list li > div.price {
    width: 12.5%;
}

ul.availabily-list li > div.status,
ul.availabily-list li > div.price {
    text-align: center;
}

ul.availabily-list li > div.action {
    text-align: right;
}

ul.availabily-list li > div.action .btn {
    margin-right: -8px;
}

ul.availabily-list li.availabily-heading {
    font-size: 12px;
    color: #999;
    padding-bottom: 5px;
}

ul.availabily-list li.availabily-content.sold-out:after {
    content: "";
    position: absolute;
    left: 0;
    right: 5px;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    display: block;
}

ul.availabily-list li > div span.availabily-heading-label {
    display: none;
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

ul.availabily-list li > div.date-from {
    position: relative;
}

ul.availabily-list li.availabily-content > div.date-from:after {
    font-family: 'FontAwesome';
    content: "\f058";
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -4px;
    display: block;
    color: #F56961;
}

ul.availabily-list li.availabily-content.sold-out > div.date-from:after {
    display: none;
}

.detail-content-wrapper {
    padding-right: 15px;
}

.detail-content {
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 40px;
    margin-bottom: 50px;
}

.detail-content .map-route {
    width: 50%;
    float: right;
    margin: 5px 0;
    margin-left: 15px;
}

@media (min-width: 768px) {}

@media only screen and (max-width: 1199px) {
    ul.availabily-list li > div.action .btn {
        margin-right: -4px;
    }
    .detail-content-wrapper {
        padding-right: 0;
    }
}

@media only screen and (max-width: 991px) {
    ul.availabily-list li {
        font-size: 13px;
    }
    ul.availabily-list li > div span {
        display: block;
        font-size: 14px;
    }
    ul.availabily-list li > div.action .btn {
        font-size: 10px;
        margin-right: 0px;
    }
}

@media only screen and (max-width: 767px) {
    ul.availabily-list li.availabily-heading {
        display: none;
    }
    ul.availabily-list li > div {
        display: block;
        width: 100% !important;
        position: relative;
        padding-left: 95px !important;
        text-align: left !important;
        margin-bottom: 15px;
    }
    ul.availabily-list li > div span.availabily-heading-label {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        text-align: right;
        width: 80px;
    }
    ul.availabily-list li.availabily-content > div.date-from:after {
        top: 0;
        right: auto;
        left: 0;
        margin-top: 0;
    }
    .page-title.detail-page-title {
        padding: 100px 0 30px;
    }
}

@media (max-width: 479px) {}


/**
 * Main Search Form
 */

.main-search-wrapper {}

.main-search-wrapper > .inner {}

.main-search-wrapper .column-item {}

.main-search-wrapper .form-control {
    height: 40px;
    border-color: #FFF;
}

.main-search-wrapper .btn {
    padding-top: 13px;
    padding-bottom: 12px;
}

.main-search-wrapper .select2-container .select2-selection--single {
    height: 40px;
    border-color: #FFF;
}

.main-search-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 9px;
}

.main-search-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
}

.main-search-wrapper .select2-container--default .select2-selection--single:focus {
    border-color: #FFF !important;
}

.main-search-wrapper .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #CCC;
}

.main-search-wrapper .select2-dropdown {
    border: 1px solid #FFF !important;
}

.main-search-wrapper .select2-container .select2-selection--multiple {
    height: 40px;
    border-color: #FFF;
    overflow: hidden;
}

.main-search-wrapper .select2-container--default.select2-container--open .select2-selection--multiple {
    border-color: #CCC;
}

.main-search-wrapper .select2-container .select2-selection--multiple .select2-selection__rendered {
    padding-top: 2px;
}

.main-search-wrapper.full-width {
    width: 80%;
    margin: 15px auto 0;
}

.main-search-wrapper.full-width > .inner {
    margin-left: -10px;
    margin-right: -10px;
}

.main-search-wrapper.full-width .column-item {
    float: left;
    width: 25%;
    padding: 0 10px;
}

.main-search-wrapper.at-right > .inner {
    margin-left: 50%;
}

.main-search-wrapper.at-left {
    width: 330px;
    padding-right: 50px;
}

.main-search-holder {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 3;
    color: #FFF;
    padding-top: 130px;
}

.main-search-holder h1 {
    color: rgba(255, 255, 255, 1);
    font-size: 58px;
    font-weight: 400;
    margin-top: 0;
    text-align: center;
    letter-spacing: 0;
}

.main-search-holder p.lead {
    margin-bottom: 30px;
    font-size: 25px;
    line-height: 31px;
    font-weight: 300;
    text-align: center;
}

.main-search-holder .btn {
    padding-left: 40px;
    padding-right: 40px;
}

@media (min-width: 768px) {}

@media only screen and (max-width: 1199px) {
    .main-search-full-wrapper {
        width: 100%;
    }
    .main-search-wrapper.full-width {
        width: 90%;
    }
}

@media only screen and (max-width: 991px) {
    .main-search-full-wrapper {
        width: 50%;
    }
    .main-search-full-wrapper .column-item {
        width: 100%;
    }
    .main-search-wrapper.full-width {
        width: 75%;
    }
    .main-search-wrapper.full-width .column-item {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .main-search-full-wrapper {
        width: 60%;
        margin: 0 auto;
    }
    .main-search-wrapper.full-width {
        width: 90%;
        margin-top: 5px;
    }
    .main-search-wrapper.full-width .column-item {
        width: 50%;
    }
    .main-search-holder {
        padding: 35px 0;
    }
    .main-search-holder h1 {
        font-size: 36px;
    }
    .main-search-holder p.lead {
        font-size: 17px;
        line-height: 1.4;
    }
}

@media (max-width: 479px) {
    .main-search-full-wrapper {
        width: 80%;
    }
    .main-search-wrapper.full-width .column-item {
        width: 100%;
    }
    .main-search-holder h1 {
        font-size: 28px;
        margin-top: 5px;
    }
    .main-search-holder p.lead {
        font-size: 15px;
    }
}


/**
 * Sidebar
 */

.sidebar {}

.sidebar-inner {
    border: 4px solid #EEE;
    padding: 30px 20px 0;
    border-radius: 3px;
}

.sidebar-inner.no-border {
    border: 0;
    padding: 0;
}

.sidebar-inner.for-blog a {
    color: #777;
    font-weight: 400;
}

.sidebar-inner.for-blog a:hover {
    color: #D65049;
}

.sidebar-module {
    padding: 0 0 30px;
}

.sidebar-box {
    padding: 30px 0 0;
}

.sidebar-title {
    color: #333;
    margin-top: 0;
}

.sidebar-title.text-primary {
    text-transform: uppercase;
}

.sidebar-header {
    clear: both;
}

.sidebar-header h4 {
    float: left;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.sidebar-reset-filter {
    float: right;
    color: #999;
    font-size: 12px;
}

.sidebar-search-wrapper {
    padding: 20px;
    margin: 0 0 30px;
    border-radius: 3px;
}

.sidebar-search-header h4 {
    text-transform: uppercase;
    margin: 0 0 12px;
}

.btn-more-less {
    background: none;
    padding: 0;
    font-size: 10px;
    font-weight: 600;
}

.btn-more-less.collapsed:before {
    content: '+ ';
}

.btn-more-less:before {
    content: '- ';
}

.more-less-inner {
    margin: 0;
}

.read-more-div-open {
    display: block;
}

.read-more-div-close {}

ul.sidebar-category,
ul.sidebar-archives {
    margin-top: 15px;
}

ul.sidebar-category li,
ul.sidebar-archives li {
    border-bottom: 1px solid #F0F0F1;
    padding-bottom: 10px;
    margin-bottom: 10px;
    line-height: 1.4;
}

ul.sidebar-category li:last-child,
ul.sidebar-archives li:last-child {
    margin-bottom: 0;
}

ul.sidebar-category li a,
ul.sidebar-archives li a {
    display: block;
}

ul.sidebar-category li a span,
ul.sidebar-archives li a span {
    float: right;
    font-size: 12px;
    color: #A3A3A3;
}

ul.sidebar-category li a:hover,
ul.sidebar-archives li a:hover {
    padding-left: 5px;
}

ul.sidebar-post {
    margin-top: 15px;
}

ul.sidebar-post li {
    border-bottom: 1px solid #F0F0F1;
    padding-bottom: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
}

ul.sidebar-post li:last-child {
    margin-bottom: 0;
}

ul.sidebar-post li h6 {
    margin: 0 0 5px;
}

ul.sidebar-post li h6 {
    color: #333;
    font-weight: 400;
}

ul.sidebar-post li a:hover h6 {
    color: #D65049;
}

ul.sidebar-post li .image {
    width: 80px;
    float: left;
    margin-top: 5px;
}

ul.sidebar-post li .image img {
    display: block;
}

ul.sidebar-post li .content {
    margin-left: 90px;
}

ul.sidebar-post li .recent-post-sm-meta {
    margin: 10px 0 0;
    color: #A3A3A3 !important;
    font-size: 12px;
}

.tag-cloud {
    margin-top: 15px;
    margin-bottom: -5px;
}

.tag-cloud span {
    display: block;
    float: left;
    line-height: 1;
    padding: 5px 7px;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 5px;
}

.tag-cloud a {
    border: 1px solid;
    background: linear-gradient(to top, #ffe9c2, #f6efe7);
    line-height: 1;
    font-size: 12px;
    padding: 5px 7px;
    margin-left: 3px;
    margin-bottom: 5px;
    display: block;
    float: left;
    color: #777;
    border-radius: 3px;
}

.tag-cloud a:hover {
    background: #D65049;
    color: #FFF !important;
    border-color: #D65049;
}

.tag-cloud-wrapper {
    border-top: 1px solid #EFEFEF;
    position: relative;
    margin: 20px 0 0;
    padding: 20px 0 0;
}

.tag-cloud-wrapper .tag-cloud-heading {
    float: left;
}

.tag-cloud-wrapper .tag-cloud {
    margin-left: 50px;
    margin-top: 5px;
}

.sidebar-text-widget ul {
    margin: 0;
    margin-left: 25px;
    padding: 0;
}

.sidebar-text-widget ul li {
    list-style: circle;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
    .sidebar {
        margin-bottom: 30px;
    }
}

@media (max-width: 479px) {}


/**
 * Sorting
 */

.sorting-wrappper {
    margin: 0 0 23px;
}

.sorting-wrappper h3 {
    line-height: 1.2;
    margin: 0;
}

.sorting-wrappper h3 small {
    font-size: 70%;
}

.sorting-header {
    margin: 0 0 15px;
}

.sort-by-wrapper {
    line-height: 1.2;
    display: table;
}

.sorting-label {
    vertical-align: middle;
    display: table-cell;
    font-weight: 400;
}

.sorting-middle-holder {
    display: inline-block;
    margin: 0;
    margin-left: 7px;
    line-height: 1;
    vertical-align: middle;
}

.sorting-middle-holder .form-control {
    margin: 0;
}

ul.sort-by {
    margin: 0;
    padding: 0;
    clear: both;
    line-height: 1.2;
}

ul.sort-by li {
    display: inline-block;
    margin: 5px 10px;
}

ul.sort-by li a {
    display: block;
    position: relative;
    color: #666;
}

ul.sort-by li a:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
}

ul.sort-by li.active a,
ul.sort-by li a:hover {
    color: #F56961;
}

ul.sort-by li.active a:after {
    background: #F56961;
}

.btn-sorting {
    border: 0;
    padding: 4px 0 0;
    font-size: 16px;
    line-height: 1.2;
    color: #999;
}

.btn-sorting.active,
.btn-sorting:hover {
    color: #F56961;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
    ul.sort-by li {
        display: inline-block;
        margin: 5px;
    }
}

@media only screen and (max-width: 767px) {}

@media (max-width: 479px) {
    .sort-by-wrapper {
        line-height: 1.2;
        display: block;
    }
    .sorting-label {
        display: block;
    }
    .sorting-middle-holder {
        display: block;
        margin: 10px 0 0;
    }
    ul.sort-by li {
        margin-left: 0;
        margin-right: 7px;
    }
}


/**
 * Pager
 */

.pager-wrappper {
    margin-top: 15px;
}

.pager-inner {
    line-height: 1;
    display: table;
}

.pager-label {
    vertical-align: middle;
    display: table-cell;
    font-weight: 400;
}

.pager-middle-holder {
    display: inline-block;
    margin: 0;
    margin-left: 7px;
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle;
}

.pager-right {
    float: right;
}

.pagination {
    margin: 9px 0 0;
}

.pagination > li > a,
.pagination > li > span {
    padding: 0;
    margin: 0 3px;
    color: #337ab7;
    border: 0;
    display: block;
    width: 24px;
    height: 24px;
    line-height: 23px;
    border-radius: 50%;
    text-align: center;
    color: #666;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    color: #D65049;
    background-color: #FFF;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #F56961;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
    .pager-right {
        float: left;
    }
}

@media only screen and (max-width: 767px) {}

@media (max-width: 479px) {}


/**
 * Featured 
 */

.featured-item:not(:last-child) {
    margin-bottom: 30px;
}

.featured-item h4 {
    color: #333;
}

.featured-item .content .icon {
    float: left;
    font-size: 56px;
    color: #F56961;
    margin-top: 5px;
}

.featured-item .content p {
    margin-left: 70px;
}

.featured-count {
    line-height: 1.2;
    margin: 15px 0;
}

.featured-count .icon {
    width: 44px;
    float: left;
    font-size: 47px;
}

.featured-count .content {
    margin-left: 55px;
    padding-top: 5px;
}

.featured-count h6 {
    color: #333;
    margin: 0 0 5px;
}

/* Call at Header */

    .call-icon {
    width: 10px;
    height: 10px;
}

ul.featured-list-sm {
    margin-top: 25px;
}

ul.featured-list-sm li {
    position: relative;
    padding-left: 50px;
    margin: 15px 0 25px;
    line-height: 1.5;
}

ul.featured-list-sm li:last-child {
    margin-bottom: 0;
}

ul.featured-list-sm li .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    display: block;
    line-height: 30px;
    text-align: center;
    color: #F56961;
    border: 2px solid #F56961;
    font-size: 16px;
    border-radius: 3px;
}

ul.featured-list-sm li h6 {
    text-transform: uppercase;
    margin: 0 0 10px;
}

.featured-icon-item {
    margin: 50px 15px 0;
}

.featured-icon-item .icon {
    font-size: 54px;
    color: #00AFF1;
    margin: 0 0 25px;
    width: 90px;
    height: 90px;
    line-height: 95px;
    text-align: center;
    border: 2px solid #00AFF1;
    border-radius: 50%;
}

.featured-icon-item h4 {
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 20px;
}

.promo-box {
    background: #00AFF1;
    color: #FFF;
    text-align: center;
    padding: 90px 0;
    line-height: 1;
    font-size: 42px;
    font-weight: 300;
}

.process-item {
    padding: 0 20px;
    position: relative;
}

.process-item .process-step {
    width: 34px;
    height: 34px;
    line-height: 32px;
    text-align: center;
    color: #F5F8FB;
    position: absolute;
    top: -17px;
    left: 2px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    background: #00AFF1;
    border: 2px solid #F5F8FB;
}

.process-item .image {
    width: 160px;
    margin: 15px 0 20px;
}

.process-item .image img {
    border-radius: 3px;
}

.process-item a {
    line-height: 1;
}

.process-item a i {
    margin-left: 7px;
}

.icon-fearured .icon {
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 3px;
    text-align: center;
    font-size: 21px;
    margin: 0 0 20px;
}


/*** Destinations - SECTION***/
.destinations {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(
    180deg,
    #ffe9c2 0%,
    #efe3d2 50%,
    #ffe9c2 100%
  );
  margin: 0 0px;
  border-radius: 6px;
  overflow-x: hidden;
}

.destinations h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
  color: #4a2e12;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.destinations h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6b4a2b;
  margin-bottom: 20px;
}

/* ===============================
   ROW LAYOUT (FLEX)
   Desktop: 6 | Tablet: 3 | Mobile: 2
================================ */
.destination-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 45px;
}

/* Desktop – 6 items */
.destination-card {
  flex: 0 0 calc(100% / 6 - 25px);
  max-width: calc(100% / 6 - 25px);
  text-align: center;
  text-decoration: none;
  color: #000;
}

/* ===============================
   IMAGE
================================ */
.destination-card img {
  display: block;
  margin: 0 auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  padding: 2px;                 /* gap kam */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  outline: 2px solid #54350b;
  outline-offset: 2px;          /* gap kam */
}

/* Image hover */
.destination-card:hover img {
  transform: scale(1.05);
  outline-color: #f06b07;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

/* ===============================
   TEXT (PERFECT CENTER)
================================ */
.destination-card span {
  display: block;
  width: max-content;
  margin: 12px auto 0;
  font-size: 15px;
  font-weight: 500;
  color: #3b2a1a;
  position: relative;
  text-align: center;
  transition: color 0.3s ease;
}

/* underline (center se) */
.destination-card span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #54350b, #f06b07);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 5px;
}

/* Text hover */
.destination-card:hover span {
  color: #f06b07;
}

.destination-card:hover span::after {
  width: 100%;
}

/* Tablet – 3 items */
@media (max-width: 1024px) {
  .destination-card {
    flex: 0 0 calc(100% / 3 - 25px);
    max-width: calc(100% / 3 - 25px);
  }
}

/* Mobile – 2 items */
@media (max-width: 480px) {
  .destinations {
    padding: 40px 15px;
    margin: 0 0px;
  }

  .destination-card {
    flex: 0 0 calc(100% / 2 - 18px);
    max-width: calc(100% / 2 - 18px);
  }

  .destination-card img {
    width: 115px;
    height: 115px;
  }

  .destination-card span {
    font-size: 13.5px;
    margin-top: 10px;
  }
}




/*** Tour Package – FIXED & CLEAN*/

/* CARD */
/* ===== Package Grid ===== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* ===== Single Package Card ===== */
.package-grid-item {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.package-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ===== Image ===== */
.package-grid-item .image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.package-grid-item .image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===== Duration badge ===== */
.absolute-in-image .duration {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #386f36;
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
}

/* ===== Itinerary Icons ===== */
.itnry {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.itnry li {
    text-align: center;
    font-size: 12px;
    color: var(--primary-color);
}

.itnry li img {
    max-width: 32px;
    display: block;
    margin: 0 auto 4px;
}

/* Wrapper styling */
            .itnry-icon-wrapper {
                padding: 6px 0;
            }
            
            /* Icons list */
            .itnry-icons {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0;
                margin: 0;
                list-style: none;
                border-top: 1px solid #cfcfcf;
                border-bottom: 1px solid #cfcfcf;
                gap: 12px; /* horizontal gap between icons */
            }
            
            /* Single icon item */
            .itnry-icons li {
                flex: 1;
                text-align: center;
                font-size: 12px; /* smaller text */
            }
            
            /* Figure styling */
            .itnry-icons li figure {
                margin: 0;
            }
            
            /* Icon Image */
            .itnry-icons li img {
                max-width: 28px;   /* smaller icon size */
                height: auto;
                display: block;
                margin: 0 auto 3px; /* distance between icon & text */
                filter: none;       /* no filter, color controlled via text */
            }
            
            /* Text styling under icon */
            .itnry-icons li p {
                margin: 0;
                font-size: 12px; /* smaller text size */
                font-weight: 600;
            }
            
            /* Icon & text color same */
            .itnry-icons li:nth-child(1) img,
            .itnry-icons li:nth-child(1) p { color: #b204a9; }  /* Hotels - purple */
            .itnry-icons li:nth-child(2) img,
            .itnry-icons li:nth-child(2) p { color: #0887be; }  /* Sightseeing - blue */
            .itnry-icons li:nth-child(3) img,
            .itnry-icons li:nth-child(3) p { color: #10a54e; }  /* Meals - green */
            .itnry-icons li:nth-child(4) img,
            .itnry-icons li:nth-child(4) p { color: #e99900; }  /* Transfers - orange */
            .itnry-icons li:nth-child(5) img,
            .itnry-icons li:nth-child(5) p { color: #e53935; }  /* Guide - red */
            
            /* Distance between icon & text */
            .itnry-icons li figure + p {
                margin-top: -5px; /* less distance */
            }
            
            /* Mobile responsiveness */
            @media only screen and (max-width: 767px) {
                .itnry-icons {
                    gap: 6px; /* reduce horizontal gap */
                }
                .itnry-icons li img {
                    max-width: 22px;
                }
                .itnry-icons li p {
                    font-size: 10px;
                }
                .itnry-icons li figure + p {
                    margin-top: 1px;
                }
            }
            
/* ===== Content ==== */
.package-grid-item .content {
    padding: 0px 14px;
    margin: 0px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 100%;
    box-sizing: border-box;
}


.package-grid-item .absolute-in-content {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.package-grid-item .absolute-in-content .price {
    background: #f56961;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .package-grid {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
    .absolute-in-content {
        position: relative;
        margin-top: 10px;
        text-align: center;
    }
}


/**
 * Itinerary
 */

.itinerary-wrapper {
    padding-left: 15px;
}

.itinerary-item-wrapper {
    border-left: 1px dashed #CCC;
    padding-left: 30px;
    margin-top: 10px;
    margin-left: 11px;
}

.itinerary-item {
    margin-bottom: 30px;
}

.itinerary-item h5,
.itinerary-item h5 a {
    font-size: 17px;
    margin: 0;
    color: #333;
    line-height: 1;
}

.itinerary-item.intro-item {
    position: relative;
    padding-left: 40px;
}

.itinerary-item.intro-item:before {
    font-family: 'FontAwesome';
    content: "\f12a";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    background: #F56961;
    color: #FFF;
    border-radius: 50%;
    display: block;
    text-align: center;
    font-size: 12px;
}

.itinerary-item.intro-item .intro-item-body {
    margin-top: 20px;
}

.itinerary-item-wrapper .panel-heading a:before,
.panel-heading a:after,
.itinerary-item-wrapper .panel-heading.active a:after {
    display: none;
}

.itinerary-item-wrapper .panel-heading .absolute-day-number {
    position: absolute;
    top: -1px;
    left: -42px;
    background: #F56961;
    border: 2px solid #F56961;
    color: #FFF;
    width: 22px;
    height: 22px;
    line-height: 18px;
    border-radius: 50%;
    display: block;
    text-align: center;
    font-size: 12px;
}

.itinerary-item-wrapper .panel-heading.active .absolute-day-number {
    background: #FFF;
    border: 2px solid #F56961;
    color: #F56961;
}

.itinerary-item-wrapper .panel-title a {
    padding: 0;
}

.itinerary-item-wrapper .itinerary-item:not(:last-child) {
    margin-bottom: 30px;
}

.itinerary-item-wrapper .panel-body {
    padding: 20px 0 0;
}

ul.itinerary-meta {
    margin-left: 0;
}

ul.itinerary-meta li {
    float: left;
    margin-right: 25px;
    font-weight: 600;
    font-size: 12px;
    list-style: none;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
    .itinerary-wrapper {
        padding-left: 0;
    }
}

@media (max-width: 479px) {}


/**
 * Why us
 */

.why-us-half-image-wrapper {
    padding: 0;
}

.why-us-half-image-wrapper .image-bg {
    width: 100%;
    min-height: 320px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.why-us-half-image-content {
    padding: 105px;
}

@media only screen and (max-width: 1199px) {
    .why-us-half-image-content {
        padding: 105px 80px;
    }
}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
    .why-us-half-image-content {
        padding: 60px 20px;
    }
}

@media (max-width: 479px) {}


/**
 * About Us
 */

.about-us-grid-block .image-bg {
    width: 100%;
}

.about-us-grid-block-item {
    background: #F56961;
    color: #FFF;
    padding: 30px;
}

.team-item {
    text-align: center;
}

.team-item .image {
    width: 150px;
    margin: 0 auto;
}

.team-item h5,
.team-item h6 {
    margin: 25px 0 10px;
    line-height: 1.1;
    color: #333;
}

.team-item p {
    margin: 0 0 8px;
    line-height: 1.1;
}

.team-item ul.social {
    margin: 0;
}

.team-item ul.social li {
    display: inline-block;
    margin: 0 5px;
}

.team-item ul.social li a {
    color: #999;
}

.team-item ul.social li a:hover {
    color: #D65049;
}

.partner-image-item {
    text-align: center;
}

.partner-image-item img {
    width: auto;
    display: inline-block;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
    .about-us-grid-block .image-bg {
        height: 100px;
    }
}

@media (max-width: 479px) {}


/**
 * Review
 */

.review-header {
    line-height: 1.2;
    margin-bottom: 30px;
}

.review-header h5,
.review-header h6 {
    color: #333;
    line-height: 1;
    margin: 0 0 10px;
}

.review-header h6 {
    margin-top: 3px;
}

.review-overall-breakdown {
    border-left: 1px solid #E3E3E3;
    padding-left: 30px;
}

.review-overall-point {
    font-size: 15px;
    margin: 0;
}

.review-overall-point span {
    font-weight: 600;
    color: #F56961;
    font-size: 19px;
}

.review-overall-breakdown .rating-wrapper {
    width: 110px;
    float: left;
}

.review-overall-breakdown .rating-wrapper .raty-wrapper > div {
    display: inline-block;
    vertical-align: middle;
}

.review-overall-breakdown .progress {
    width: 110px;
    float: left;
    margin: 0;
    margin-top: 4px;
}

.review-overall-breakdown .breakdown-count {
    width: 40px;
    float: left;
    text-align: right;
    margin-top: 1px;
}

ul.breakdown-list {
    margin-top: 20px;
}

ul.breakdown-list li:not(:last-child) {
    margin: 0 0 5px;
}

ul.breakdown-list.for-avg li {
    line-height: 1.23;
}

ul.breakdown-list.for-avg li:not(:last-child) {
    margin: 1px 0 7px;
}

.review-content .row > div > h5 {
    color: #333;
    line-height: 1;
    margin: 7px 0 10px;
}

ul.review-list {
    margin-top: 15px;
    border-top: 1px solid #E3E3E3;
    padding-top: 25px;
}

ul.review-list > li {
    position: relative;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

ul.review-list > li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

ul.review-list li .image {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

ul.review-list li .content {
    padding-left: 70px;
    float: left;
}

ul.review-list li .content h6 {
    color: #333;
    line-height: 1.2;
    margin: 0 0 10px;
}

ul.review-list li .content h6 span {
    font-weight: 400;
    color: #999;
}

ul.review-list li .content .review-date {
    text-align: right;
    line-height: 1;
    margin: 0 0 10px;
    font-size: 11px;
    color: #999;
}

ul.review-list li .rating-wrapper {
    margin: 10px 0;
}

.review-form {
    margin-top: 20px;
}

.review-form-title {
    color: #333;
    line-height: 1;
}

.review-text ul,
.review-text ol {
    list-style: disc;
    margin-left: 20px;
    line-height: 25px;
}

.review-text ul li,
.review-text ol li {
    margin-bottom: 7px;
}

.review-text ul ul,
.review-text ol ol {
    margin-top: 7px;
}

.review-text > ul,
.review-text > ol {
    margin-bottom: 15px;
}

.review-text ol {
    list-style: decimal;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
    .review-overall-breakdown {
        border-left: 0;
        padding-left: 0;
        padding-top: 30px;
    }
    ul.review-list li .image {
        width: 40px;
        height: 40px;
    }
    ul.review-list li .content {
        padding-left: 55px;
    }
    ul.review-list li .content .review-date {
        text-align: left;
    }
}

@media (max-width: 479px) {}


/*** Faq*/
/* ===== OLD FAQ WRAPPER ===== */
.faq-wrapper {
    padding-left: 15px;
}

.faq-wrapper h3 {
    margin: 0 0 25px;
}

.faq-section {
    border-bottom: 1px solid #E3E3E3;
    margin: 0 0 40px;
}

.faq-section h4 {
    margin: 8px 0 0;
}

.faq-section .panel-body {
    padding-top: 0;
    padding-bottom: 10px;
}

.faq-alt-2-wrapper {}

.faq-alt-2-wrapper .bootstarp-accordion .panel-heading {
    border-bottom: 1px dotted #E3E3E3;
    margin-left: 25px;
    padding: 15px 0;
}

.faq-alt-2-wrapper .bootstarp-accordion .panel-heading a {
    padding: 0;
    line-height: 1;
    font-size: 14px;
}

.faq-alt-2-wrapper .bootstarp-accordion .panel-heading a:before {
    content: '\f059';
    right: auto;
    left: -25px;
    top: -1px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    color: #F56961;
}

.faq-alt-2-wrapper .bootstarp-accordion .panel-heading.active a:before {
    content: '\f128';
}

.faq-alt-2-wrapper .panel-body {
    margin-left: 25px;
}

.for-faq-page .scrollspy-sidenav {
    padding-top: 0;
    border: 0;
}

.for-faq-page.scrollspy-sidebar .nav > li > a {
    padding-left: 0;
    border-left: 4px solid #FFF !important;
    border-right: 4px solid #FFF;
}

.for-faq-page.scrollspy-sidebar .nav > li > a:hover {
    border-right: 4px solid #F56961;
}

.for-faq-page.scrollspy-sidebar .nav > li > a:focus {
    border-right: 4px solid #EEEEEE;
}

.for-faq-page.scrollspy-sidebar .nav > .active > a,
.for-faq-page.scrollspy-sidebar .nav > .active:hover > a,
.for-faq-page.scrollspy-sidebar .nav > .active:focus > a {
    border-right: 4px solid #F56961 !important;
    border-left: 4px solid #FFF !important;
}

/* ===== Step 1: Paragraph Styling ===== */

/* FAQ paragraphs */
.faq-thread p,
.faq-wrapper .panel-body p,
.faq-alt-2-wrapper .panel-body p {
    text-align: justify;      /* Replace inline style */
    line-height: 1.7;         /* Comfortable reading */
    color: #555;              /* Text color */
    margin-bottom: 12px;      /* Space between paragraphs */
    font-size: 13px;          /* Consistent font size */
}

/* Itinerary paragraphs */
.itinerary-item p {
    text-align: justify;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    font-size: 15px;
}

/* Key Features / Overview paragraphs */
.section-title + p {
    text-align: justify;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    font-size: 13px;
}

.section-title + div p {
    text-align: justify;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    font-size: 13px;
}

/* ===== MEDIA QUERIES ===== */
@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
    .faq-wrapper {
        padding-left: 0;
    }
}

@media (max-width: 479px) {}



/**
 * Payment
 */

.payment-container {
    border-left: 1px dashed #CCC;
    padding-left: 40px;
    margin-left: 13px;
    padding-right: 15px;
}

.payment-box {
    margin: 0 0 40px;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 30px;
}

.payment-header {
    position: relative;
}

.payment-header:before {
    content: "";
    width: 25px;
    position: absolute;
    left: -30px;
    top: 9px;
    border-top: 1px dashed #CCC;
}

.payment-header .number {
    width: 26px;
    height: 26px;
    line-height: 26px;
    border-radius: 50%;
    background: #F56961;
    color: #FFF;
    text-align: center;
    position: absolute;
    top: -4px;
    left: -53px;
    font-weight: 600;
    font-size: 12px;
}

.payment-content .control-label {}

.payment-content input[type='radio'] + label:before {
    top: 12px;
}

.payment-traveller {
    margin: 0 0 30px;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 20px;
    position: relative;
}

.traveller-remove {
    position: absolute;
    left: 0;
    top: 13px;
}

.price-summary-wrapper {
    border: 4px solid #EEE;
    border-radius: 3px;
    padding: 30px 20px;
}

ul.price-summary-list li {
    margin-bottom: 18px;
    line-height: 1.2;
}

ul.price-summary-list li p {
    margin-top: 5px;
}

ul.price-summary-list li.divider {
    border-top: 1px solid #EEE;
}

ul.price-summary-list li.total-price {
    background: #F56961;
    color: #FFF;
    margin: 25px -19px -29px;
    padding: 20px 19px;
}

@media only screen and (max-width: 1199px) {
    .payment-container {
        padding-right: 0;
    }
}

@media only screen and (max-width: 991px) {
    .traveller-remove {
        left: auto;
        right: 0;
    }
}

@media only screen and (max-width: 767px) {}

@media (max-width: 479px) {}


/**
 * Confirmation
 */

.confirmation-wrapper {
    padding-right: 15px;
}

.payment-success {
    margin: 0 0 40px;
}

.payment-success .icon {
    font-size: 56px;
    width: 70px;
    float: left;
}

.payment-success .content {
    margin-left: 70px;
}

.payment-success .content h2 {
    margin-bottom: 5px;
}

.payment-success .content p {
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    color: #777;
}

.confirmation-content {
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

ul.book-sum-list li {
    position: relative;
    margin: 20px 0;
    padding-left: 140px;
    line-height: 1.2;
}

ul.book-sum-list li:first-child {
    margin-top: 0;
}

ul.book-sum-list li:last-child {
    margin-bottom: 0;
}

ul.book-sum-list li span {
    position: absolute;
    left: 0
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
    .confirmation-wrapper {
        padding-right: 0;
    }
    .payment-success .content h2 {
        font-size: 20px;
    }
    .payment-success .content p {
        font-size: 17px;
        line-height: 1.4;
    }
}

@media (max-width: 479px) {
    .payment-success .content h2 {
        font-size: 17px;
    }
    .payment-success .content p {
        font-size: 15px;
    }
}


/**
 * Social Share
 */

ul.social-share-sm {
    position: relative;
    display: inline-block;
    line-height: 1;
    float: left;
}

ul.social-share-sm li {
    display: inline-block;
    margin: 0 0 5px;
}

ul.social-share-sm li span,
ul.social-share-sm li a {
    position: relative;
    display: inline-block;
    padding-right: 10px;
    margin-right: 10px;
}

ul.social-share-sm:after,
ul.social-share-sm li span:after,
ul.social-share-sm li a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 1px;
    width: 1px;
    height: 13px;
    background: #E3E3E3;
}

ul.social-share-sm.pull-right {
    margin-right: -10px;
}

ul.social-share-sm.pull-right:after {
    display: none;
}

ul.social-share-sm li a:after {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 6px;
    right: -3px;
}

ul.social-share-sm li:last-child a {
    margin-right: 0;
}

ul.social-share-sm li:last-child a:after {
    display: none;
}

ul.social-share-sm li a {
    font-weight: 400;
    color: #999;
}

ul.social-share-sm li a:hover {
    color: #D65049;
}

ul.social-share-sm.for-useful {
    float: right;
}

ul.social-share-sm.for-useful:after {
    display: none;
}

ul.social-share-sm.for-useful li:not(:last-child) {
    margin-right: 10px;
}

ul.social-share-sm.for-useful li span {
    margin-right: 0;
}

ul.social-share-sm.for-useful li a {
    margin-right: 0;
    padding-right: 0;
}

ul.social-share-sm.for-useful li a:after {
    display: none;
}

.review-list ul.social-share-sm {
    margin-top: 20px;
}


/**
 * Contact Us
 */

.top-place-wrapper {
    background: #F0F0F0;
}

.top-place-inner {
    margin-left: -15px;
    margin-right: -15px;
}

.top-place-item {
    padding: 30px 15px;
}

.top-place-item .icon {
    width: 33px;
    float: left;
}

.active .top-place-item {
    -webkit-box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.35);
}

.top-place-item .content {
    margin-left: 48px;
    line-height: 22px;
}

.top-place-item .content h3 {
    line-height: 1.1;
    margin: 0 0 17px;
}

.top-place-item .content p {
    margin: 0 0 12px;
}

.top-place-item .content a {
    text-transform: uppercase;
    font-size: 12px;
}

.contact-form-wrapper .form-group {
    margin: 0 0 17px;
}

.contact-form-wrapper .help-block {
    line-height: 1.2;
    font-size: 12px;
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #FFFAFA;
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}

.boxed-social {
    margin: 25px 0 20px;
    font-size: 18px;
    line-height: 1;
}

.boxed-social a {
    font-size: 20px;
    margin-right: 2px;
    margin-bottom: 2px;
    width: 36px;
    height: 36px;
    display: block;
    float: left;
    text-align: center;
    line-height: 36px;
    background: #F56961;
    color: #FFF;
    border-radius: 3px;
}

.boxed-social a:hover {
    background: #D65049;
}

ul.address-list li {
    position: relative;
    line-height: 1.4;
    margin: 0 0 10px;
    padding-left: 25px;
}

ul.address-list li:last-child {
    margin: 0 !important;
}

ul.address-list li i {
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 16px;
    line-height: 1;
}

.infobox-inner ul.address-list li {
    margin: 0 0 8px;
    padding-left: 18px;
}

.infobox-inner ul.address-list li i {
    font-size: 12px;
}


/**
 * Blog
 */

.blog-wrapper {
    padding-right: 15px;
}

.blog-item {
    display: block;
    margin-bottom: 40px;
    background: #FFF;
    overflow: hidden;
    border-bottom: 1px solid #E3E3E3;
    padding: 0 0 30px;
}

.blog-item:last-child {
    margin-bottom: 0
}

.blog-item.blog-single {
    border-bottom: 0;
    margin-bottom: 0;
}

.blog-media {
    position: relative;
    margin: 0 0 25px;
}

.blog-media a {
    display: block;
}

.blog-content {}

.blog-content h3 {
    line-height: 1.4;
    margin: 0 0 20px;
    color: #333;
}

.blog-content h3 a {
    color: #333;
    display: block;
}

.blog-content h3 a:hover {
    color: #D65049;
}

.blog-entry {
    padding: 0 0 20px;
}

.blog-entry ul,
.blog-entry ol {
    list-style: disc;
    margin-left: 20px;
    line-height: 25px;
}

.blog-entry ul li,
.blog-entry ol li {
    margin-bottom: 7px;
}

.blog-entry ul ul,
.blog-entry ol ol {
    margin-top: 7px;
}

.blog-entry > ul,
.blog-entry > ol {
    margin-bottom: 15px;
}

.blog-entry ol {
    list-style: decimal;
}

ul.blog-meta {
    margin: 0 0 25px;
    line-height: 1.2;
    font-size: 12px;
}

ul.blog-meta li {
    display: block;
    color: #999;
    margin-right: 30px;
    float: left;
    position: relative;
}

ul.blog-meta li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #E1E1E1;
    border-radius: 6px;
    position: absolute;
    right: -19px;
    top: 5px;
}

ul.blog-meta li:after {
    content: "";
    width: 2px;
    height: 2px;
    background: #FFF;
    border-radius: 2px;
    position: absolute;
    right: -17px;
    top: 7px;
}

ul.blog-meta li:last-child:before,
ul.blog-meta li:last-child:after {
    display: none;
}

.blog-extra {
    background: #F2F2F2;
    padding: 28px 20px 25px;
    margin: 20px 0 40px;
    border-radius: 3px;
}

.blog-author {
    padding: 0;
    position: relative;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.blog-author h5 a {
    color: #333;
}

.blog-author h5 a:hover {
    color: #D65049;
}

.author-details {
    margin-left: 120px;
    position: relative;
}

.author-label {
    position: absolute;
    width: 100px
}

.author-label img {
    width: 100%
}

.blog-author .social {
    float: right;
    margin-top: -5px
}

#comment-wrapper {
    background: #FFF;
    padding: 30px 0 20px;
    position: relative
}

ul.comment-item {
    list-style: none;
    padding: 0;
    margin: 0
}

ul.comment-item li {
    position: relative;
    display: block;
    padding-left: 65px;
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #EBE8E6
}

ul.comment-item li li:last-child,
ul.comment-item li li li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

ul.comment-item ul {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #EBE8E6;
    margin-left: -20px;
}

.comment-item h6 {
    margin-bottom: 5px;
}

.comment-item .comment-avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%
}

.comment-item .comment-avatar img {
    width: 100%;
    width: 100%;
    border-radius: 50%
}

.comment-item .comment-time {
    display: block;
    font-style: italic;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    line-height: 1.2;
}

.comment-item a.comment-reply {
    float: right;
    font-size: 10px;
    line-height: 1;
    padding: 3px 7px;
    text-transform: uppercase;
    border: 2px solid #F56961;
    border-radius: 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: block
}

.comment-item a.comment-reply:hover {
    color: #FFF;
    border-color: #D65049;
    background: #D65049;
}

@media only screen and (max-width: 1199px) {
    .blog-wrapper {
        padding-right: 0;
    }
}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {}

@media (max-width: 479px) {}


/**
 * Image Overlay
 */

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    overflow: hidden;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: opacity .25s ease, background-color .45s ease;
    transition: opacity .25s ease, background-color .45s ease;
    background: rgba(0, 0, 0, 0);
}

.overlay-box:hover .image-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.image-overlay:before {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    content: ""
}

.overlay-content {
    display: inline-block;
    vertical-align: middle;
    color: #fff
}

.overlay-icon {
    margin-bottom: 6px;
    color: #fff;
    border: 2px solid #FFF;
    padding: 10px 10px;
    border-radius: 3px;
    -webkit-transition: opacity .25s ease, background-color .45s ease;
    transition: opacity .25s ease, background-color .45s ease;
    opacity: 0;
    filter: alpha(opacity=0);
}

.overlay-box:hover .overlay-icon {
    opacity: 1;
    filter: alpha(opacity=100);
}

.overlay-icon i {
    color: #fff;
    font-size: 56px;
}

/* Content Box Style */
.content-box {
    text-align: justify;
    background-color: #fffaf4;
    padding: 15px 18px;
    border-radius: 5px;
    line-height: 1.7;
    color: #444;
    border: 1px solid rgba(180,139,60,0.15);   /* subtle golden touch */
}

/* Footer  */
/* ===============================
   MODERN PREMIUM FOOTER
================================ */

.footer-modern {
    background: linear-gradient(135deg, #1B222C, #0f172a);
    color: #cbd5e1;
    padding: 70px 0 30px;
    font-size: 14px;
    box-shadow: inset 0 20px 40px rgba(0,0,0,0.4);
}

.footer-modern a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Smooth underline grow */
.footer-modern a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #ff6b00;
    transition: width 0.3s ease;
}

.footer-modern a:hover::after {
    width: 100%;
}

.footer-modern a:hover {
    color: #ffffff;
}

/* ===============================
   LOGO CENTER STYLE
================================ */

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #ff6b00, transparent);
}

.footer-logo {
    width: 180px;
    margin: 0 25px;
}

.footer-about {
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.7;
    text-align: center;
}

/* Premium Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ff6b00, transparent);
    margin: 45px 0;
}

/* ===============================
   6 COLUMN GRID
================================ */

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 35px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 15px;
    position: relative;
}

/* Heading Accent Line */
.footer-col h4::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #ff6b00;
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* List Styling */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
}

/* Premium Dot Before Links */
.footer-col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #ff6b00;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(255,107,0,0.6);
}

.footer-col ul li:hover::before {
    transform: scale(1.3);
}

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

.footer-bottom {
    text-align: center;
    font-size: 13px;
}

.footer-bottom p {
    margin: 6px 0;
}

/* Social Icons Premium */

.footer-social {
    margin: 20px 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin: 0 6px;
    background: #1e293b;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ff6b00;  /* Hover color moved to background */
    color: #ffffff;      /* Icon stays same */
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(255,107,0,0.4);
}

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

@media (max-width: 1200px) {
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left; /* keep left aligned */
    }
}

@media (max-width: 576px) {

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left; /* keep desktop style */
    }

    /* Keep logo side lines same as desktop */
    .footer-logo-wrapper {
        flex-direction: row;
    }

    .logo-line {
        flex: 1;
    }
    
    .footer-modern {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-links-grid {
        gap: 25px;
    }

    .footer-col ul li {
        padding-left: 20px; /* dot ke liye safe spacing */
    }

}




/**
 * Sign-in/up
 */

.modal.modal-border-transparent .modal-content {
    border: 5px solid rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border-radius: 3px;
}

.modal.modal-login .modal-content {
    width: 380px;
    margin: 0 auto;
    position: relativel
}

.modal.modal-login .form-control::-moz-placeholder {}

.modal.modal-login .form-control:-ms-input-placeholder {}

.modal.modal-login .form-control::-webkit-input-placeholder {}

.modal.modal-login .modal-footer {
    border-top: 1px solid #CCC;
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 20px;
}

.modal .modal-content .btn-close {
    position: absolute;
    top: 3px;
    right: 3px;
    z-index: 1052;
    font-size: 12px;
}

.modal-seperator {
    border-bottom: 1px solid #CCC;
    text-align: center;
    margin: 20px 0 45px;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}

.modal-seperator span {
    width: 40px;
    height: 40px;
    border: 1px solid #CCC;
    border-radius: 50%;
    margin: 0 auto;
    line-height: 38px;
    display: block;
    margin-bottom: -20px;
    background: #FFF;
    font-weight: 600;
}

.login-modal-tab-wrapper {}

ul.login-modal-tab-nav {
    background: #EAEAEA;
    padding: 0;
    margin: 0;
}

ul.login-modal-tab-nav li {
    float: left;
    width: 50%;
    text-align: center;
}

ul.login-modal-tab-nav li a {
    display: block;
    padding: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #565656;
}

ul.login-modal-tab-nav li.active a {
    background: #FFF;
}

ul.login-modal-tab-nav li a:hover {
    color: #489FF0;
}

.btn.btn-facebook {
    background: #3b5998;
    color: #FFF;
}

.btn.btn-facebook:hover {
    opacity: 0.8;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {}

@media (max-width: 479px) {
    .modal.modal-login .modal-content {
        width: 100%;
    }
}


/**
 * Static Page
 */

.for-static-page .sidebar-module {
    margin-right: 30px;
}

ul.static-page-menu li a {
    display: block;
    color: #636363;
    padding: 8px 20px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    line-height: 1;
    padding-left: 0;
    border-left: 4px solid #FFF !important;
    border-right: 4px solid #FFF;
    margin-right: -4px;
    margin-left: -4px;
    margin-bottom: 1px;
    font-size: 12px;
}

ul.static-page-menu li a:hover,
ul.static-page-menu li.active a {
    border-right: 4px solid #F56961;
    color: #F56961;
}

.static-wrapper h1:first-child,
.static-wrapper h2:first-child,
.static-wrapper h3:first-child,
.static-wrapper h4:first-child,
.static-wrapper h5:first-child,
.static-wrapper h6:first-child {
    margin-top: 0;
}

.static-wrapper ul,
.static-wrapper ol {
    list-style: disc;
    margin-left: 20px;
    line-height: 25px;
}

.static-wrapper ul li,
.static-wrapper ol li {
    margin-bottom: 7px;
}

.static-wrapper ul ul,
.static-wrapper ol ol {
    margin-top: 7px;
}

.static-wrapper > ul,
.static-wrapper > ol {
    margin-bottom: 15px;
}

.static-wrapper ol {
    list-style: decimal;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
    .for-static-page .sidebar-module {
        margin-right: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .for-static-page .sidebar-module {
        margin-right: 0;
    }
}

@media (max-width: 479px) {}

.slider.gallery-nav img {
    height: 90px;
}

.gallery-slideshow img{
	height: 410px;
}

.toggle-icon {
    transition: transform 0.3s ease; /* Smooth rotation over 0.3s */
}




/* === COLORFUL HEADING ANIMATION === */

.colorful-heading {
    font-weight: bold;
    font-size: 20px;
    font-family: Arial, sans-serif;
    animation: colorChange 3s infinite;
}

@keyframes colorChange {
    30% {
        color: green;
    }
    30% {
        color: red;
    }
    30% {
        color: blue;
    }
    10% {
        color: yellow;
    }
}

/* === SECTION LINES ===== */
.section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #ff6b00, transparent);
}


.section-line-1,
.section-line-2 {
    height: 3px;
  }

.section-line-1,
.section-line-2,
.section-line-3,
.section-line-4 {
  width: 100%;
  max-width: 550px;
  height: 4px;
  margin: 10px auto;
  border-radius: 10px;
}

.section-line-1 {
  background: linear-gradient(90deg, #54350b, #f06b07);
  margin-bottom: 30px;
}

.section-line-2 {
  background: linear-gradient(90deg, #f06b07, #54350b);
  margin-bottom: 35px;
}

.section-line-3 {
  background: linear-gradient(90deg, #54350b, #f06b07, #54350b);
  margin-bottom: 35px;
}

.section-line-4 {
  background: linear-gradient(90deg, #f06b07, #54350b, #f06b07);
  margin-bottom: 35px;
}

/* ===============================
   TOUR FRAME – FINAL RESPONSIVE CSS
   =============================== */

/* ===== COMMON FRAME ===== */
.tour-frame {
    text-align: center;
    background: linear-gradient(180deg, #f6efe7 0%, #efe3d2 50%, #c9882c 100%);
    padding: 30px 40px;
    border-radius: 6px;
    margin: 40px;
    box-sizing: border-box;
}

.tour-frame-title {
    display: inline-block;
    background: #b05a1a;
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 35px;
}

.tour-frame-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop */
    gap: 20px;
}

.tour-frame-item {
    display: flex;
    align-items: center;
    background: #fff3e4;
    border: 2px solid #b77a2f;
    border-radius: 10px;
    padding: 12px 18px;
    text-decoration: none;
    outline: none;
    transition: border-color 0.25s ease,
                box-shadow 0.25s ease,
                transform 0.25s ease;
}

.tour-frame-icon {
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    border: 2px solid #bd8e548f;
    background: transparent;
    overflow: hidden;
    font-size: 24px;
    transition: border-color 0.25s ease;
}

.tour-frame-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: none !important;
    box-shadow: inset 0 0 0 2px #8a3f00;
    transition: box-shadow 0.25s ease;
}

.tour-frame-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    text-align: left;
    position: relative;
    transition: color 0.25s ease;
}

/* ===== UNDERLINE ===== */
.tour-frame-text::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #54350b, #f06b07);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 5px;
}

.tour-frame-item:is(:hover, :active, :focus-visible) {
    border-color: #f06b07;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.tour-frame-item:is(:hover, :active, :focus-visible) .tour-frame-text {
    color: #f06b07;
}

.tour-frame-item:is(:hover, :active, :focus-visible) .tour-frame-text::after {
    width: 100%;
}

.tour-frame-item:is(:hover, :active, :focus-visible) .tour-frame-icon {
    border-color: #f06b07;
}

.tour-frame-item:is(:hover, :active, :focus-visible) .tour-frame-icon img {
    box-shadow: inset 0 0 0 2px #f06b07;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {

    .tour-frame {
        padding: 20px 25px;
    }

    .tour-frame-title {
        font-size: 22px;
        padding: 9px 24px;
    }

    .tour-frame-grid {
        grid-template-columns: repeat(3, 1fr); /* Tablet: 3 */
        gap: 16px;
    }

    .tour-frame-icon {
        min-width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .tour-frame-text {
        font-size: 16px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {

    .tour-frame {
        margin: 12px;
        padding: 20px 15px;
    }

    .tour-frame-title {
        font-size: 16px;
        padding: 8px 18px;
        margin-bottom: 22px;
    }

    .tour-frame-grid {
        grid-template-columns: repeat(2, 1fr); /* 🔥 Mobile: 2 cards */
        gap: 12px;
    }

    .tour-frame-item {
        padding: 10px 12px;
    }

    .tour-frame-icon {
        min-width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 10px;
    }

    .tour-frame-text {
        font-size: 14px;
        line-height: 1.4;
    }
}


/* =================================================
   TOP CITY SIGHTSEEING 
   ================================================= */
.top-city-card,
.brand-ratings__card,
.testimonial-review-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.testimonial-review-card {
    opacity: 1 !important;
}

.top-city {
    background: #fff;
    border-radius: 10px;
    padding: 40px 50px;
    max-width: 1200px;
    margin: 50px auto;
    border: 2px solid #ececec;
    box-shadow: 0 10px 40px rgba(0,0,0,0.10);
    overflow: hidden;
}

.top-city-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    line-height: 1.25;
    margin-bottom: 45px;
    background: linear-gradient(90deg, #ff6b00, #ac0303);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.top-city-heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f9c907, #ff6b00);
}

/* Grid */
.top-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.top-city-card {
    position: relative;
    width: 100%;
    height: 230px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border: 1.5px solid #a54646;
    box-shadow: 0 6px 22px rgba(0,0,0,0.10);
    display: flex;
    align-items: flex-end;

}
/* Overlay */
.top-city-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.40), rgba(0,0,0,.05));
    z-index: 1;
}

/* Text */
.top-city-rating {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(255,255,255,0.88);
    text-align: center;
    padding: 6px 8px;
}

.top-city-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #111;
}

.top-city-sub {
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
    color: #444;
}

.top-city-card:hover {
    transform: translateY(-14px) scale(1.03);
    border-color: rgba(255,122,24,.9);
    box-shadow:
        0 18px 40px rgba(0,0,0,.28),
        0 6px 14px rgba(0,0,0,.22);
}
.top-city-card:hover .top-city-title,
.top-city-card:hover .top-city-sub {
    color: #ff7a18;
}
.top-city-card:active {
    transform: scale(0.97);
}

@media (max-width: 767px) {
    .top-city {
        padding: 28px 20px;
    }

    .top-city-heading {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .top-city-card {
        height: 170px;
    }

    .top-city-title {
        font-size: 13px;
    }

    .top-city-sub {
        font-size: 10px;
    }
}
@media (max-width: 767px) {
    .top-city-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
@media (max-width: 420px) {
    .top-city-card {
        height: 160px;
    }
}

/* ===============================
   TEXT CITY LINK SECTION
================================ */

.top-city-links {
    background: #ffffff ;
    border-radius: 10px;
    padding: 40px 50px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    border: 2px solid #ececec;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.top-city-links-heading {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #222;
}

/* GRID */
.top-city-links-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}

/* CARD */
.city-link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: #f6efe7;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    color: #222;
    border: 1px solid #ddd;
    transition: all .3s ease;
}

/* Hover */
.city-link-card:hover {
    background: linear-gradient(90deg, #f9b707, #ff6b00);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

@media (max-width: 767px) {

    .top-city-links {
        padding: 28px 20px;
    }

    .top-city-links-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .city-link-card {
        height: 30px;
        font-size: 10px;
    }
}


/* ===============================
   REVIEW / Brand -RATING SECTION
================================ */

.brand-ratings {
    background: #fffaf4;
    border-radius: 6px;
    padding: clamp(24px, 4vw, 60px) clamp(16px, 4vw, 40px);
    margin: 40px auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.10);
    max-width: 1200px;
    width: calc(100% - 24px);
    border: 2px solid #ececec;
    overflow: hidden;
}

.brand-ratings__heading {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(90deg, #ff6b00, #ac0303);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 14px;
}

.brand-ratings__heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f9b707, #ff6b00);
}

/* ===== GRID (AUTO ADJUST) ===== */
.brand-ratings__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.brand-ratings__card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 6px 22px rgba(0,0,0,0.10);
    border: 2px solid #e5e2e2;
    display: flex;
    flex-direction: column;

}
.brand-ratings__card:hover {
    transform: translateY(-14px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.22);
    border-color: #f06b07;
}

.brand-ratings__logo img {
    max-width: 120px;
    margin: 0 auto 18px;
    display: block;
}

/* Rating */
.brand-ratings__stars {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-ratings__stars-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.brand-ratings__score {
    font-weight: 700;
    font-size: 18px;
    margin-right: 6px;
    color: #111;
}

.brand-ratings__star {
    font-size: 22px;
    color: #f9b707;
    position: relative;
}

.brand-ratings__star.half {
    color: #ddd;
}

.brand-ratings__star.half::before {
    content: '★';
    color: #f9b707;
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
}

.brand-ratings__count p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #333;
    font-weight: 700;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {

    .brand-ratings {
        padding: 28px 20px;
    }

    .brand-ratings__heading {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .brand-ratings__heading::after {
        width: 70px;
        height: 3px;
        bottom: -6px;
    }

    /* ===== MOBILE GRID: STRICT 2 COLUMNS ===== */
    .brand-ratings__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    /* ===== LAST ODD CARD → TRUE FULL WIDTH ===== */
    .brand-ratings__card:last-child:nth-child(odd) {
        grid-column: 1 / -1;   /* full grid width */
        width: 100%;
        margin: 0;             /* kill side gaps */
        justify-self: stretch; /* no centering */
    }

    .brand-ratings__logo img {
        max-width: 85px;
        margin-bottom: 12px;
    }

    .brand-ratings__score {
        font-size: 15px;
    }

    .brand-ratings__star {
        font-size: 18px;
    }

    .brand-ratings__count p {
        font-size: 12px;
    }
}

/*-- Tour Packages --*/   



/* === AUTHORISED ======= */
.auth-badge-section {
    width: 100%;
    padding: 40px 15px;
    background: linear-gradient(to top, #ffe9c2, #f6efe7);
}

.auth-container {
    max-width: 1200px;
    margin: auto;
}

.auth-badge-box {
    position: relative;
    background: rgb(168, 123, 78);
    padding: 20px;
    min-height: 180px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Characters  */
.auth-left-man,
.auth-right-woman {
    position: absolute;
    bottom: 0;
    width: auto;
    object-fit: contain;
}

.auth-left-man {
    left: 0;
    max-height: 220px;
}

.auth-right-woman {
    right: 0;
    max-height: 220px;
}

/* Center content */
.auth-center-content {
    text-align: center;
    color: #fff;
    z-index: 5;
}

.auth-logo {
    width: 160px;
    margin: auto;
}

.auth-title {
    font-size: 15px;
    font-weight: bold;
    color: #dfd6d6;
    margin-top: 5px;
}

.auth-subtitle {
    font-size: 13px;
    color: #cec6c6;
}

/* Tablet */
@media (max-width: 768px) {
    .auth-left-man,
    .auth-right-woman {
        max-height: 150px;
    }

    .auth-logo {
        width: 120px;
    }

    .auth-badge-box {
        min-height: 150px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .auth-badge-box {
        min-height: 120px;
        padding: 12px;
    }

    .auth-left-man {
        max-height: 90px;
        left: -5px;
    }

    .auth-right-woman {
        max-height: 90px;
        right: -5px;
    }

    .auth-logo {
        width: 90px;
    }

    .auth-title {
        font-size: 10px;
        margin-top: 2px;
    }

    .auth-subtitle {
        font-size: 8px;
    }
}

/* == AUTHORISED & LICENSED SECTION === */
.auth-section {
    padding: 40px 15px;
    background: linear-gradient(to top, #f6efe7, #ffe9c2);
    overflow: hidden;
}
  
.auth-section-2 {
    padding: 40px 15px;
    background: #fff;
    overflow: hidden;
}
.auth-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.auth-heading p {
    font-family: "Poltawski Nowy", serif;
    font-size: 22px;
    color: #7b3f00;
    margin: 0 15px;
    font-weight: 600;
    text-align: center;
}

.auth-heading .arrow img {
    width: 22px;
    height: 22px;
}

.auth-heading .rotate {
    transform: rotate(180deg);
}

.auth-box {
    max-width: 1100px;
    margin: auto;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.auth-slider {
    display: flex;
    gap: 20px;

    overflow: hidden;
    white-space: nowrap;
}

.license-card {
    flex: 0 0 auto;

    width: 180px;
    height: 110px;

    background: #ffffff;
    padding: 15px;

    border-radius: 8px;
    box-sizing: border-box;

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

    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.license-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

    display: block;
    margin: auto;
}

@media (max-width: 575px) {

    .auth-heading p {
        font-size: 16px;
        margin: 0 8px;
    }

    .auth-heading .arrow img {
        width: 18px;
        height: 18px;
    }

    .auth-box {
        padding: 10px;
    }

    .license-card {
        width: 150px;
        height: 95px;
        padding: 12px;
    }
}

.license-card {
    width: 180px;
    height: 110px;

    background: #ffffff;
    padding: 15px;

    border-radius: 8px;
    box-sizing: border-box;

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

    box-shadow: 0 0px 0px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.license-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

    display: block;
    margin: auto;

    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;

    transform: none !important;
    transition: none !important;
}

.license-card:hover img {
    filter: none !important;
    transform: none !important;
}

@media (max-width: 575px) {

    .auth-heading p {
        font-size: 16px;
        margin: 0 8px;
    }

    .auth-heading .arrow img {
        width: 18px;
        height: 18px;
    }

    .auth-box {
        padding: 10px;
    }

    .license-card {
        width: 150px;
        height: 95px;
        padding: 12px;
    }
}
                
                
/*====== CAB & CARD HOME ========= */
.page-start-section {
    padding: 40px 15px;
    background: #f6efe7;
}
                    
.page-container {
    max-width: 1200px;
    margin: auto;
}

.page-heading {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 2px 10px 10px;
  text-transform: capitalize;   /* ✅ capitalize */
}

/* MAIN BOX */
.page-main-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    align-items: center;
    text-align: justify;
}
                
/*====== CAB & CARD HOME ========= */
.cab-badge-section {
    padding: 40px 15px;
    background: #f6efe7;
}

.rental-section {
  background: #f6efe7;
  padding: 60px 20px;
}

.cab-container {
    max-width: 1200px;
    margin: auto;
}

/* MAIN BOX */
.cab-badge-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* SIDE IMAGES */
.cab-side img {
    max-height: 180px;
    width: auto;
    display: block;
}

/* CENTER CONTENT */
.cab-content {
    text-align: center;
    flex: 1;
}

.cab-title {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b00;
    letter-spacing: 1px;
}

.cab-heading {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: linear-gradient(90deg, #ff6b00, #ac0303);
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 2px 10px 10px;
}

.cab-subtitle {
    font-size: 15px;
    margin-top: 10px;
    color: #333;
}

/* BUTTONS */
.cab-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.cab-actions a {
    flex: 1 1 50%;
    min-width: 0;
    white-space: nowrap;   /* text break na ho */
}

.btn1 {
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-call {
    background: #ff6b00;
    color: white;
}

.btn-call:hover {
    background: #e55d00;
}

.btn-book1 {
    border: 2px solid #ff6b00;
    color: #ff6b00;
}

.btn-book1:hover {
    background: #ff6b00;
    color: white;
}

@media (max-width: 992px) {

    .cab-side img {
        max-height: 140px;
    }

    .cab-badge-box {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {

    .cab-badge-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }

    .cab-side img {
        max-height: 120px;
    }

    .cab-title {
        font-size: 15px;
    }

    .cab-heading {
        font-size: 28px;
      }
  
    .cab-subtitle {
        font-size: 13px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}


/*** Testimonial  SECTION
=================================*/

.testimonial-reviews {
  padding: 20px 0px 60px;
  background: linear-gradient(to top, #ffe9c2, #f6efe7);
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.testimonial-heading {
  text-align: center;
  margin-bottom: 25px;
}

.testimonial-label {
  font-size: 14px;
  font-weight: 600;
  color: #9c5a00;
  letter-spacing: 1px;
}

.testimonial-label-wrap {
  margin-bottom: 30px;
}

.testimonial-label-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  background: #f4f4f4;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.testimonial-brand-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.testimonial-review-avatars {
  display: flex;
  align-items: center;
  margin: 0 6px;
}

.testimonial-review-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.testimonial-review-avatars img:first-child {
  margin-left: 0;
}

.testimonial-label-text {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

.testimonial-slider-wrap {
  position: relative;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 5px;
  scroll-behavior: auto;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

/* Cards */

.testimonial-review-card {
  min-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.testimonial-review-card h4 {
  margin: 0;
  font-size: 15px;
}

.testimonial-date {
  font-size: 12px;
  color: #777;
}

/* User row */

.testimonial-user {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-user-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

/* Stars */

.testimonial-stars {
  color: #f4b400;
  font-size: 22px;
  margin: 8px 0;
}

/* Paragraph */

.testimonial-review-card p {
  font-size: 15px;
  color: #444;
}

/* Read more */

.testimonial-read {
  font-size: 13px;
  color: #9c5a00;
  cursor: pointer;
}

.testimonial-verified {
  margin-left: 6px;
  color: #1e8e3e;
  font-size: 14px;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  cursor: pointer;
  z-index: 2;
}

.testimonial-arrow.left {
  left: -15px;
}

.testimonial-arrow.right {
  right: -15px;
}

.testimonial-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.testimonial-modal-box {
  background: #fff;
  padding: 25px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  position: relative;
}

.testimonial-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 600px) {

  .testimonial-label-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    padding: 12px 10px;
  }

  .testimonial-brand-logo {
    height: 18px;
  }

  .testimonial-review-avatars img {
    width: 24px;
    height: 24px;
    margin-left: -6px;
  }

  .testimonial-label-text {
    width: 100%;
    text-align: center;
    font-size: 13px;
    margin-top: 4px;
  }
}

@media (max-width: 768px) {

  .testimonial-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
    background: rgba(255,255,255,0.95);
  }

  .testimonial-arrow.left {
    left: 6px;
  }

  .testimonial-arrow.right {
    right: 6px;
  }
}


/*** Newsletter*/

.newsletter-text {
    margin: 30px 0;
    line-height: 1.4;
}

.newsletter-text .icon {
    width: 90px;
    height: 90px;
    line-height: 98px;
    text-align: center;
    background: #F56961;
    border-radius: 50%;
    color: #FFF;
    float: left;
    font-size: 45px;
}

.newsletter-text .content {
    margin-left: 110px;
    padding-top: 5px;
}

.newsletter-text h3 {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #f9b707, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 5px;
}

.newsletter-form {
    margin-top: 5px;
    -webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.16);
}

.newsletter-form .form-control {
    height: 40px;
    padding-left: 15px;
    padding-top: 7px;
}

.newsletter-form .btn {
    margin-right: -1px;
    height: 40px;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
    .newsletter-wrapper {
        padding: 20px 0 60px;
    }
    .newsletter-form {
        margin: 0 110px;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter-form {
        margin-right: 30px;
    }
}

@media (max-width: 479px) {
    .newsletter-form {
        margin: 0;
    }
}




    /* =====================================
       CARD CONTENT AREA
       ===================================== */
     
    
       .section-title-1 {
        margin: 0px 0px 35px;
        padding: 0px 0px 1px;
        text-align: center;
    }
    
    .section-title-1 h2 {
        font-family: 'Playfair Display', serif;
        background: linear-gradient(90deg, #f9b707, #ff6b00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin: 0px 0px 35px;
        padding: 0px 0px 1px;
    }
    
    .package-grid-item .content {
        padding: 0px 14px;
        margin: 0px 0px 0px;
        display: flex;
        flex-direction: column;
        gap: 2px;
        height: 100%;
        box-sizing: border-box;
        color: #0f0f0f;
    }
    
    .pkg-title {
        margin: 0px 0px 4px 0px;
        margin-top: 4px;
        font-size: 16px;
        line-height: 1.45;
        font-weight: 600;
        color: #333333;
    }
    
    
    .package-grid-item .card-actions a {
        color: #ffffff;
        font-weight: 600;
    }
    
    
    .package-grid-item > a {
        color: #0f0f0f; !important;
        font-weight: 1000;
    }
    
    .package-grid-item .pkg-title {
        color: #333;
    }
    
    .package-grid-item .content p {
        color: #555;
        font-weight: 400;
    }
    /* =====================================
       TOUR DURATION
       ===================================== */
    
    .tour-duration {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 700;
        color: #f56961;
        margin: 0px 0px 8px 0px;
    }
    
    /* Calendar Icon */
    .icon-calendar {
        width: 14px;
        height: 14px;
        border: 2px solid #f56961;
        border-radius: 3px;
        position: relative;
        box-sizing: border-box;
        flex-shrink: 0;
        padding: 1px 1px;
    }
    
    .card-actions {
        display: flex;
        gap: 8px;
        margin-top: 0px;
        margin-bottom: 4px; 
        width: 100%;
        box-sizing: border-box;
    }
    
    .card-actions .price,
    .card-actions .whatsapp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    
        width: 100%;
        flex: 1 1 50%;
    
        height: 40px;            /* 🔥 FIXED HEIGHT */
        line-height: 40px;       /* 🔥 SAME TEXT HEIGHT */
    
        font-size: 14px;
        font-weight: 600;
    
        padding-left: 0px !important;
        padding-right: 0px !important;
    
        border-radius: 4px;
        box-sizing: border-box;
    
        text-align: center;
        white-space: nowrap;
    
        text-decoration: none !important;   /* 🔥 NO UNDERLINE */
    }
    
    .package-grid-item .price {
        background-color: #f56961;
        color: #ffffff;
    }
    
    .whatsapp-btn {
        background-color: #25D366;
        color: #ffffff !important;   /* 🔥 FIX */
        gap: 6px;
    }
    
    .wa-icon {
        width: 14px;
        height: 14px;
        background: #ffffff;
        border-radius: 50%;
        position: relative;
        flex-shrink: 0;
    }
    
    .wa-icon::after {
        content: "☎";
        font-size: 10px;
        color: #25D366;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -55%);
    }
    
    .package-grid-item .price:hover {
        background-color: #e85b53;   /* soft darker shade */
        color: #fff;
    }
    .whatsapp-btn:hover {
        background-color: #166333;   /* soft green */
        color: #ffffff;
    }
    
    @media (max-width: 767px) {
        .card-actions {
            margin-bottom: 8px;   /* 👈 niche ka gap */
            margin-left: -6px;
            margin-right: 0px;
        }
    }
    
    .package-grid-item a,
    .package-grid-item a:hover,
    .package-grid-item a:focus,
    .package-grid-item a:active {
        text-decoration: none !important;
    }
    
    .package-grid-item a h3,
    .package-grid-item a h3:hover,
    .package-grid-item a .pkg-title,
    .package-grid-item a .tour-duration,
    .package-grid-item a span {
        text-decoration: none !important;
    }
                            
            .hotel-item .content h3,
            .hotel-item .content h5, 
            .hotel-item .content h6 {
            color: #fffafa;
            line-height: 1;
            padding: 10px;
            margin: 0;
            font-size: 14px;
        }
                       
            .hotel-item .content {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            o-transition: all 0.3s ease-out;
            -ms-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -webkit-transition: all 0.3s ease-out;
             }
             
            .hotel-item-wrapper {
            margin-bottom: 20px;
            }

            .hotel-item {
                position: relative;
            }
            
            .hotel-item a {
                display: block;
            }

            .hotel-item:hover .content {
                background: rgba(0, 0, 0, 0.7);
            }
            
            .hotel-item .image {
  width: 100%;
}

.hotel-item .image img {
  width: 100%;
  height: auto;   /* Height automatic ho jayegi */
  display: block;
}


/* Desktop equal height */
@media (min-width: 768px) {
  .hotel-item .image {
    height: 220px;
    overflow: hidden;
  }

  .hotel-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Mobile full responsive */
@media (max-width: 767px) {
  .hotel-item .image img {
    width: 100%;
    height: auto;
  }
}
            
            
 
/* ===============================
   PKG LIST – FINAL STABLE VERSION
================================ */

/* ===== SECTION ===== */
.pkg-list {
    padding: 70px 0;
    background: linear-gradient(135deg, #fffaf3, #f3e8d8);
    color: #3e2c1c;
    width: 100%;
}

/* Make sure container never overflows */
.pkg-list .container {
    max-width: 100%;
    overflow: hidden;
}

/* ===== HEADING ===== */
.pkg-list-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #b22222;
    position: relative;
}

.pkg-list-heading::after {
    content: '';
    width: 60px;
    height: 2px;
    background: #ff6b00;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.pkg-list-desc {
    margin-bottom: 35px;
    max-width: 850px;
    color: #4b3a28;
}

/* ===== TABLE WRAPPER ===== */
.pkg-list-responsive {
    width: 100%;
    overflow: hidden;
}

/* ===== TABLE ===== */
.pkg-list-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;   /* Prevent overflow */
    background: #f6efe4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(120, 72, 32, 0.2);
}

/* Header */
.pkg-list-table thead th {
    background: #ead7b7;
    color: #3b2a1a;
    padding: 14px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    border-bottom: 2px solid #ff6b00;
}

/* Cells */
.pkg-list-table td {
    padding: 14px;
    font-size: 14px;
    color: #2e1f12;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    word-wrap: break-word;
    transition: background 0.3s ease;
}

/* Zebra */
.pkg-list-table tbody tr:nth-child(even) {
    background: #efe2cf;
}

/* Hover */
.pkg-list-table tbody tr:hover {
    background: #f7c873;
}

/* Price Highlight */
.pkg-list-table td:nth-child(4) {
    font-weight: 700;
    color: #c45500;
}

/* Links */
.pkg-list-table a {
    color: #7a1f1f;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

/* Underline animation same */
.pkg-list-table a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #f52c2c;
    transition: width 0.3s ease;
}

.pkg-list-table a:hover::after {
    width: 100%;
}

.pkg-list-table a:hover {
    color: #000;
}

/* Note */
.pkg-list-note {
    margin-top: 20px;
    font-size: 13px;
    color: #5c4432;
}

/* ===== MOBILE OPTIMIZED ===== */
@media (max-width: 768px) {

    .pkg-list-heading {
        font-size: 22px;
    }

    .pkg-list-table thead th {
        font-size: 12px;
        padding: 8px;
    }

    .pkg-list-table td {
        font-size: 12px;
        padding: 8px;
    }
}

 