@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Playfair+Display:wght@300;400;500;600;700;800;900&family=Permanent+Marker&display=swap');
:root {
    --primary-color: #603813;
    --secondary-color: #f7941d;
    --text-color: #1c1c1c;
    --white: #fff;
    --black: #000;
    --border-color: #c2c2c2;
    --youtube: #FF0000;
    --instagram: #C32AA3;
    --whatsapp: #25D366;
    --facebook: #1877F2;
    --email: #f7941d;
    --phone: #521A97;
    --font-primary: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-secondary: "Playfair Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, serif;
}

body {
    margin: 0;
    padding: 0;
    top: 0 !important;
    overflow-x: hidden;
    font-family: var(--font-primary);
    font-size: 16px;
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url(../images/pattern-2.jpg);
    background-size: 700px;
    background-repeat: repeat;
    background-position: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul li {
    list-style: none;
}

ul {
    padding-left: 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-secondary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.topbar {
    background-color: var(--primary-color);
    padding: 5px 0;
}

.topbar-contact {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.topbar-contact li {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.topbar-contact li a {
    font-size: 15px;
    color: var(--white);
    margin-right: 5px;
}

.topbar-contact li h5 {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 0;
    margin-right: 10px;
}

.topbar-hide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.navbar .navbar-brand img {
    width: 100px;
}

a.navbar-brand {
    padding: 0;
}

.navbar {
    background-color: #ffffff;
    position: absolute;
    width: 100%;
    z-index: 5;
}

.navbar-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.topbar-hide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link {
    color: var(--black);
    transition: .5s;
}

.navbar-fixed .nav-link {
    color: var(--text-color);
}

.hero-section {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: #f0f0f0;
}

.hero-section img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    background-attachment: fixed;
}

.hero-content h1 {
    font-size: 70px;
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.hero-content h3 {
    color: var(--white);
    font-weight: 400;
    font-size: 25px;
}

.hero-content p {
    color: var(--white);
    width: 60%;
    margin: 0 auto;
}

.btn-fill {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0;
    border: 1px solid var(--primary-color);
    transition: .5s;
}

.btn-fill:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 1px solid var(--secondary-color);
}

.btn-fill-1 {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 0;
    border: 1px solid var(--primary-color);
    transition: .5s;
}

.btn-fill-1:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 1px solid var(--secondary-color);
}

.btn-white {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0;
    border: 1px solid var(--primary-color);
    transition: .5s;
}

.btn-white:hover {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.over-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
}

#heroSplide .splide__arrow {
    background-color: transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid var(--white);
}

#heroSplide .splide__arrow svg {
    fill: var(--white);
    font-size: 30px;
}

.logo-header {
    width: 140px !important;
}

.navbar .logo-header {
    filter: brightness(1) invert(0);
}

.navbar.navbar-fixed .logo-header {
    filter: brightness(1) invert(0);
}

.header-section {
    padding: 10px 0px 10px 15px;
    text-align: center;
    position: relative;
}

.header-section h1 {
    margin-bottom: 0px;
}

.header-section h1 span {
    color: var(--primary-color);
}

.dest-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.dest-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.dest-box img:hover {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.dest-heading {
    position: absolute;
    bottom: 0;
    left: 0;
    color: var(--white);
    padding: 10px 15px;
    z-index: 3;
}

.dest-heading h3 {
    font-size: 25px;
}

.not-image {
    position: absolute;
    transform: translate(-50%, -50%);
    height: 100px;
    width: 100%;
    left: 50%;
}

.button-class {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.btn-border {
    background-color: transparent;
    color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 0;
    border: 2px solid var(--primary-color);
    display: block;
    width: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.btn-border:hover {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--white);
}

.about-home {
    background-image: url(../images/abt-back.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 10px;
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.about-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.about-home::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.about-hm-cntnt {
    color: #fff;
    text-align: center;
    position: relative;
}

.about-hm-cntnt h1,
.about-hm-cntnt h2 {
    color: #fff !important;
}

.about-hm-cntnt p {
    color: #fff !important;
    margin-bottom: 6px;
}

.about-hm-cntnt .btn-white {
    margin-top: 20px;
    margin-right: 10px;
}

.packg-section {
    padding: 1px 0;
}

.hero-content .btn-white {
    margin-right: 10px;
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.pckg-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.pckg-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.pckg-box img:hover {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.pckg-description {
    position: absolute;
    bottom: 0;
    left: 0;
    color: var(--white);
    padding: 25px 25px;
    z-index: 3;
}

.pckg-description h3 {
    margin-bottom: 3px;
}

.pckg-description p {
    margin-bottom: 10px;
}

.overlayer-pckg {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    z-index: 2;
    pointer-events: none;
}

.service-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    z-index: 1;
}

.service-section .container {
    position: relative;
    z-index: 2;
}

.service-box {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-box:nth-child(1) {
    border-color: rgba(255, 107, 107, 0.3);
}

.service-box:nth-child(2) {
    border-color: rgba(78, 205, 196, 0.3);
}

.service-box:nth-child(3) {
    border-color: rgba(69, 183, 209, 0.3);
}

.service-box:nth-child(4) {
    border-color: rgba(150, 206, 180, 0.3);
}

.service-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 25px;
    position: relative;
}

.service-box:nth-child(1) .service-icon i {
    background: linear-gradient(135deg, #fbb03b, #ee5a24);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.service-box:nth-child(3) .service-icon i {
    background: linear-gradient(135deg, #45b7d1, #3742fa);
    color: white;
    box-shadow: 0 8px 25px rgba(69, 183, 209, 0.4);
}

.service-box:nth-child(4) .service-icon i {
    background: linear-gradient(135deg, #96ceb4, #2ed573);
    color: white;
    box-shadow: 0 8px 25px rgba(150, 206, 180, 0.4);
}

.service-icon i {
    font-size: 45px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    border: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-icon i::before {
    z-index: 2;
    position: relative;
}

.service-icon i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.service-box:hover .service-icon i {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.service-box:hover .service-icon i::after {
    width: 100px;
    height: 100px;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    line-height: 1.3;
    background: linear-gradient(85deg, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.service-box:hover .service-content h3 {
    background: linear-gradient(45deg, #2c3e50, #161616);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.service-box:hover .service-content p {
    color: #333;
}

.hero-content h3 {
    padding: 3px 10px;
    background-color: var(--primary-color);
    display: inline-block;
    margin-bottom: 0;
    font-weight: bold;
}

.hero-content .btn-white-1 {
    margin-bottom: 10px;
    margin-right: 5px;
}

.hero-content h1 {
    margin-bottom: 20px;
    line-height: 1.1;
    margin-top: 10px;
}

.btn-white-1 {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 0;
    border: 2px solid var(--white);
}

.btn-white-1:hover {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--white);
}

.ftr-bg {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, .2), rgba(0, 0, 0, 0.507)), url(../images/ftr.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 170px 0 20px 0;
    color: #fff;
    position: relative;
}

.footer-transition {
    z-index: 1;
    width: 100%;
    display: block;
}

.link-head h3 {
    margin-bottom: 15px;
    font-size: 34px;
}

.link-head ul li a {
    color: #fff;
}

.link-head ul li {
    margin-bottom: 5px;
}

.ct ul li {
    font-size: 18px;
}

.copyright-section {
    text-align: center;
    padding: 15px 0;
}

.bdr-btm {
    border-bottom: 2px solid var(--white);
    padding-bottom: 20px;
}

.copyright-section a {
    color: var(--white);
    transition: .3s ease;
}

.copyright-section p {
    margin-top: 10px;
}

.copyright-section a:hover {
    color: var(--primary-color);
}

.links .contact-social {
    align-items: center;
    align-content: center;
    margin-bottom: 20px;
}

.contact-social ul {
    display: flex;
    justify-content: center;
}

.contact-social a {
    text-decoration: none;
}

.contact-social a i {
    margin-right: 10px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    display: block;
    border: 1px solid var(--white);
    transition: 0.3s ease;
}

.contact-social a .bi-facebook:hover {
    background-color: #ffffff;
    color: #3b5998;
}

.contact-social a .bi-whatsapp:hover {
    background-color: #ffffff;
    color: #25d366;
}

.contact-social a .bi-google:hover {
    background-color: #ffffff;
    color: #ea4335;
}

.contact-social a .bi-instagram:hover {
    background-color: #ffffff;
    color: #c32aa3;
}

.contact-social a .bi-tiktok:hover {
    background-color: #ffffff;
    color: #000000;
}

.contact-social a .bi-twitter-x:hover {
    background-color: #ffffff;
    color: #000000;
}

.contact-social a .bi-threads:hover {
    background-color: #ffff;
    color: #000000;
}

.contact-social a .bi-youtube:hover {
    background-color: #ffff;
    color: #FF0000;
}

.contact-social a .fa-tripadvisor:hover {
    background-color: #ffff;
    color: #00af87;
}

.page-banner {
    position: relative;
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.banner-content ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content ul li {
    padding-right: 10px;
}

.banner-content ul a {
    color: var(--white);
    transition: .3s ease;
}

.banner-content ul a:hover {
    color: var(--primary-color);
}

.banner-content ul li:not(:last-child)::after {
    content: " / ";
    margin-left: 10px;
}

.abt-head p {
    font-size: 20px;
    font-weight: 300;
}

.abt-head ul li {
    font-size: 22px;
}

.abt-head ul li i {
    color: green;
}

.abt-head h3 {
    position: relative;
    padding-bottom: 10px;
}

.abt-head h3::before {
    position: absolute;
    width: 13%;
    height: 3px;
    bottom: 0;
    left: 0;
    content: "";
    background-color: var(--primary-color);
}

.abt-logo img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 10px;
}

.abt-top {
    padding-top: 30px;
}

.mv-box {
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.abt-top-1 {
    padding-top: 50px;
}

.mv-box p i {
    color: #9a9a9a;
}

.contact-box {
    border-left: 10px solid var(--primary-color);
    padding-left: 20px;
}

.contact-box h4 i {
    color: var(--secondary-color);
}

.contact-form {
    width: 100%;
}

.contact-form .input-group {
    margin-bottom: 15px;
}

.contact-form .input-group input,
.contact-form .input-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    font-size: 16px;
    background-color: #1a55a399;
    color: #fff;
}

.contact-form .input-group input:focus,
.contact-form .input-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.mt-35 {
    margin-top: 35px;
}

.my-social {
    display: flex;
    margin-bottom: 20px;
}

.my-social a i {
    margin-right: 10px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    display: block;
}

.my-social a .fa-facebook {
    background-color: #3b5998;
}

.my-social a .fa-whatsapp {
    background-color: #25d366;
}

.my-social a .fa-google-plus {
    background-color: #ea4335;
}

.my-social a .fa-instagram {
    background-color: #c32aa3;
}

.my-social a .bi-tiktok {
    background-color: #000;
}

.my-social a .bi-twitter-x {
    background-color: #222222;
}

.dest-details img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.dest-details {
    margin-bottom: 20px;
}

.dest-detail-cntn h3 {
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 10px;
    background: linear-gradient(to right, rgba(26, 85, 163, .5), transparent);
    margin-top: 10px;
    padding: 10px 10px;
    margin-bottom: 20px;
}

#dtSplide .splide__arrow {
    background-color: var(--primary-color);
}

#dtSplide .splide__arrow svg {
    fill: #ffffff;
}

.tour-package-itn h3 {
    padding: 10px 0;
    color: #000000;
    margin-bottom: 10px;
    font-size: 28px;
    border-bottom: 2px solid var(--primary-color);
}

.accordion-toggle {
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
    font-size: 25px;
    font-weight: 400;
}

.accordion-toggle:hover {
    color: var(--secondary-color);
}

.panel-body {
    display: none;
}

.round-tour-details ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.round-tour-details ul li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "➤";
    font-size: 14px;
    color: #333;
    color: var(--primary-color)
}

.round-tour-details ul {
    padding-left: 20px;
    padding-bottom: 20px;
    margin-bottom: 5px;
    border-bottom: 1px solid #000;
}

.contact-form-2 {
    margin: 0 auto;
    padding: 20px 40px;
    background-color: #f1f1f1;
    margin-top: 15px;
}

.contact-form-2 .input-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.contact-form-2 input[type="text"],
.contact-form-2 input[type="email"],
.contact-form-2 textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form-2 input::placeholder,
.contact-form-2 textarea::placeholder {
    color: #999;
    font-size: 14px;
}

.contact-form-2 .submit-btn {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    font-size: 18px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.accordion-toggle {
    position: relative;
    padding-left: 40px;
}

.accordion-toggle::before {
    position: absolute;
    content: "+";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--white);
    background-color: var(--primary-color);
    text-align: center;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.place-box {
    background-color: #ffffff;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.place-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.place-box::before {
    content: "♡";
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 24px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 3;
}

.place-box:hover::before {
    background: rgba(255, 255, 255, 0.9);
    color: #ff4757;
    content: "♥";
}

.place-image {
    overflow: hidden;
    border-radius: 0;
    position: relative;
    height: 350px;
}

.place-image::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(to top, #fff, transparent 40%);
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.place-image img:hover {
    transform: scale(1.05);
}

.place-details {
    padding: 10px 10px 15px;
    text-align: center;
    color: var(--text-color);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-top: -40px;
    z-index: 1;
}

.place-details h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    line-height: 1.3;
}

.place-details h3 i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.place-details p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.place-details .rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.place-details .rating .stars {
    color: #ffa726;
    font-size: 14px;
}

.place-details .rating .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.all-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    text-decoration: none;
}

.all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.all-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.all-btn:hover i {
    transform: translateX(3px);
}

.side-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.side-btn .btn {
    background: linear-gradient(135deg, #fbb03b, #fbb03b);
    border: none;
    color: black;
    padding: 15px 30px;
    border-radius: 0px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.side-btn .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #603813;
    transition: left 0.4s ease;
    z-index: -1;
}

.side-btn .btn:hover::before {
    left: 0;
}

.side-btn .btn:hover {
    transform: translateY(-3px);
    color: white;
}

.side-btn .btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.side-btn .btn:hover i {
    transform: translateX(5px);
}

#destinationSplide .splide__arrow {
    border-radius: 50%;
    background: #fff;
    margin-top: -30px;
    top: 50%;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    border: none;
    transition: all 0.3s ease;
}

#destinationSplide .splide__arrow:hover {
    background: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

#destinationSplide .splide__arrow--next {
    top: 50%;
    right: -25px;
}

#destinationSplide .splide__arrow--prev {
    top: 50%;
    left: -25px;
    right: auto !important;
}

#destinationSplide .splide__arrow svg {
    fill: var(--primary-color) !important;
    width: 20px;
    height: 20px;
}

#destinationSplide .splide__arrow:hover svg {
    fill: var(--white) !important;
}

#destinationSplide {
    padding: 0 10px;
}

#destinationSplide .splide__list {
    align-items: stretch;
}

.tour-card {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tour-card::before {
    content: "♡";
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 24px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tour-card:hover::before {
    background: rgba(255, 255, 255, 0.9);
    color: #ff4757;
    content: "♥";
}

.tour-photo {
    overflow: hidden;
    position: relative;
    height: 250px;
}

.tour-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-photo img:hover {
    transform: scale(1.05);
}

.tour-photo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.tour-dt {
    padding: 10px 20px 20px 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-dt h3 {
    font-weight: 600;
    font-family: var(--font-secondary);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.3;
}

.tour-dt p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
    flex-grow: 1;
    margin-bottom: 15px;
}

.tour-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.tour-rating .stars {
    color: #f7941d;
    font-size: 14px;
}

.tour-rating .price {
    display: none;
}

.tour-dt .btn-fill {
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    margin-top: auto;
}

#packageSplide .splide__arrow {
    border-radius: 50%;
    background: #fff;
    margin-top: -30px;
    top: 50%;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    border: none;
    transition: all 0.3s ease;
}

#packageSplide .splide__arrow:hover {
    background: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

#packageSplide .splide__arrow--next {
    top: 50%;
    right: -25px;
}

#packageSplide .splide__arrow--prev {
    top: 50%;
    left: -25px;
    right: auto !important;
}

#packageSplide .splide__arrow svg {
    fill: var(--primary-color) !important;
    width: 20px;
    height: 20px;
}

#packageSplide .splide__arrow:hover svg {
    fill: var(--white) !important;
}

#packageSplide {
    padding: 0 10px;
}

#packageSplide .splide__list {
    align-items: stretch;
}

#contactForm {
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-dt p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}

.brush-slider {
    width: 100% !important;
    height: 70px !important;
}

.custom-shape-divider-bottom-1740541296 {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1740541296 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 147px;
}

.custom-shape-divider-bottom-1740541296 .shape-fill {
    fill: #FFFFFF;
}

#contactForm h3 {
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
}

.Language {
    cursor: pointer;
    position: fixed;
    bottom: 30%;
    right: 0;
    z-index: 5;
    transition: .5s;
}

#languageSelect {
    background-color: var(--white);
    color: #333;
    border: 1px solid var(--primary-color);
    padding: 5px;
    border-radius: 0;
    color: var(--primary-color);
}

.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

.Language .nice-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-weight: 400;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 0;
    border: none
}

.Language .nice-select .option {
    color: var(--primary-color);
    line-height: 20px;
    min-height: 20px;
}

.Language .nice-select.open .list {
    border-radius: 0;
    padding: 5px 0;
}

.Language .nice-select::after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

.preloader1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.preloader1 img {
    animation: pulse 1.5s infinite ease-in-out;
    width: 180px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.custom-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 0px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 50px 0;
}

.custom-form h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding-top: 20px;
}

.custom-form .search-box-single {
    margin-bottom: 20px;
}

.custom-form .search-box-single label {
    font-weight: bold;
    color: #555;
    margin-bottom: 8px;
    display: inline-block;
}

.custom-form .search-box-single input,
.custom-form .search-box-single select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.custom-form .search-box-single input[type="radio"],
.custom-form .search-box-single input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.custom-form .radio-group,
.custom-form .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.custom-form .error-message {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: -10px;
    margin-bottom: 5px;
}

.custom-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.tour-photo .price-overlay {
    position: absolute;
    bottom: -8px;
    right: 0;
    background: #fbb03b;
    color: rgb(0, 0, 0);
    padding: 8px 10px;
    border-radius: 0px;
    font-weight: 500;
    font-size: 16px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tour-rating .price {
    display: none;
}

.hero-section .splide__slide {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.hero-section .splide__slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.over-layer {
    background: rgba(0, 0, 0, 0.3) !important;
}

.tour-card .tour-rating {
    background: #fff;
}

.tour-card .tour-rating .stars {
    color: #f7941d;
    font-size: 18px;
    font-weight: bold;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.social-slide-buttons {
    position: fixed;
    top: 50%;
    right: -160px;
    transform: translateY(-50%);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
}

.social-slide-buttons:hover {
    right: 0;
}

.social-slide-buttons .social-btn {
    display: block;
    width: 150px;
    padding: 12px 20px;
    margin-bottom: 2px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-slide-buttons .social-btn i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.social-slide-buttons .social-btn:hover {
    transform: translateX(-10px);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
}

.social-slide-buttons .facebook {
    background: linear-gradient(135deg, #3b5998, #4c70ba);
}

.social-slide-buttons .whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-slide-buttons .instagram {
    background: linear-gradient(135deg, #e4405f, #833ab4, #fcb045);
}

.social-slide-buttons .twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-slide-buttons .youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-slide-buttons .tripadvisor {
    background: linear-gradient(135deg, #00af87, #008c6f);
}

.social-slide-buttons::before {
    content: 'Contact Us';
    position: absolute;
    left: -65px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: var(--primary-color);
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}

.custom-shape-divider-top-1750399223 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-top-1750399223 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 35px;
}

.custom-shape-divider-top-1750399223 .shape-fill {
    fill: #fffffff9;
}

.custom-shape-divider-top-1750402903 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1750402903 svg {
    position: relative;
    display: block;
    width: calc(114% + 1.3px);
    height: 18px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1750402903 .shape-fill {
    fill: #FFFFFF;
}

.not-images {
    position: absolute;
    transform: translate(-50%, -50%);
    transform: rotate(180deg);
    width: 100%;
    top: 0;
}

.button-class {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.contact-social ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content .btn-white,
.hero-content .btn-white-1 {
    display: inline-block;
    margin: 5px;
    min-width: 120px;
}

.service-section .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.link-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-slide-buttons {
    position: fixed;
    top: 50%;
    right: -160px;
    transform: translateY(-50%);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .container,
    .container-fluid {
        padding-left: 15px;
        padding-right: 8px;
    }
    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    .hero-content p {
        width: 90%;
        font-size: 1.1rem;
    }
    .btn-white,
    .btn-white-1,
    .btn-fill {
        padding: 12px 24px;
        font-size: 14px;
    }
    .service-section .row {
        grid-template-columns: repeat(2, 1fr);
    }
    .navbar-nav {
        flex-direction: column;
        text-align: center;
    }
    .social-slide-buttons {
        right: -130px;
    }
    .social-slide-buttons:hover {
        right: 0;
    }
    .link-head h3 {
        font-size: 1.8rem;
    }
    .contact-social ul {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content {
        width: 95%;
        padding: 0 15px;
    }
    .hero-content h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .hero-content h3 {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 15px;
    }
    .hero-content p {
        width: 100%;
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .hero-content .btn-white,
    .hero-content .btn-white-1 {
        display: block;
        width: 200px;
        margin: 10px auto;
        padding: 12px 20px;
        text-align: center;
        font-size: 14px;
    }
    .button-class {
        flex-direction: column;
        align-items: center;
    }
    .btn-border,
    .btn-fill,
    .all-btn {
        width: 80%;
        max-width: 250px;
        text-align: center;
        margin: 10px auto;
        display: block;
    }
    .service-section .row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .service-box {
        margin-bottom: 20px;
        padding: 25px 15px;
    }
    .navbar {
        padding: 10px 15px;
    }
    .navbar-brand img {
        width: 80px;
    }
    .social-slide-buttons {
        right: -130px;
        font-size: 12px;
    }
    .social-slide-buttons .social-btn {
        width: 120px;
        padding: 10px 15px;
        font-size: 12px;
    }
    .link-head {
        padding: 20px 10px;
    }
    .link-head h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .link-head p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .contact-social ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact-social a i {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }
    .gallery-img img {
        height: 250px;
    }
    .place-box,
    .tour-card {
        margin-bottom: 20px;
    }
    .place-image,
    .tour-photo {
        height: 250px;
    }
    .contact-form-2 {
        padding: 15px;
        margin: 15px 0;
    }
    .custom-form {
        padding: 20px 15px;
        margin: 30px 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 500px;
    }
    .hero-content {
        width: 100%;
        padding: 0 10px;
    }
    .hero-content h1 {
        font-size: clamp(1.5rem, 10vw, 2rem);
        margin-bottom: 10px;
    }
    .hero-content h3 {
        font-size: clamp(0.9rem, 5vw, 1.1rem);
        margin-bottom: 10px;
    }
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    .hero-content .btn-white,
    .hero-content .btn-white-1 {
        width: 90%;
        max-width: 200px;
        padding: 10px 15px;
        font-size: 13px;
        margin: 8px auto;
    }
    .btn-border,
    .btn-fill,
    .all-btn {
        width: 95%;
        padding: 10px 15px;
        font-size: 13px;
    }
    .navbar-brand img {
        width: 70px;
    }
    .social-slide-buttons {
        right: -110px;
    }
    .social-slide-buttons .social-btn {
        width: 100px;
        padding: 8px 10px;
        font-size: 11px;
    }
    .link-head h3 {
        font-size: 50px;
    }
    .link-head h5 {
        font-size: 0.8rem;
    }
    .contact-social a i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
        margin-right: 5px;
    }
    .gallery-img img {
        height: 200px;
    }
    .place-image,
    .tour-photo {
        height: 200px;
    }
    .place-details,
    .tour-dt {
        padding: 15px 10px;
    }
    .page-banner {
        height: 35vh;
    }
    .banner-content h1 {
        font-size: 1.5rem;
    }
    .banner-content p {
        font-size: 1rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    .hero-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    .hero-content .btn-white,
    .hero-content .btn-white-1 {
        padding: 8px 16px;
        font-size: 12px;
        margin: 5px;
    }
    .social-slide-buttons {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: high) {
     :root {
        --primary-color: #603813;
        --secondary-color: #f7941d;
        --text-color: #000000;
        --white: #ffffff;
        --black: #000000;
    }
}

@media print {
    .social-slide-buttons,
    .navbar-toggler,
    .preloader1 {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
    }
    .btn {
        border: 1px solid black;
        background: white;
        color: black;
    }
}

.page-pd {
    padding: 8px 0;
    margin: 5px 0;
}

.place-box a,
.tour-card a,
.dest-box a,
.pckg-box a {
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.place-box a img,
.tour-card a img,
.dest-box a img,
.pckg-box a img {
    pointer-events: none;
}

.place-box,
.tour-card,
.dest-box,
.pckg-box {
    position: relative;
    z-index: 1;
}

.dest-section,
.packg-section {
    z-index: 10;
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
        padding: 5px;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
        padding: 4px;
    }
}


/* Gallery Styles */

.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    padding: 30px 0;
}

.gallery-container h1 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
    font-weight: bold;
    color: var(--primary-color);
}

.gallery-container p.page-description {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    color: #999;
    max-width: 600px;
}

.tz-gallery {
    padding: 20px 0;
}

.tz-gallery .row>div {
    padding: 0px;
}

.gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 4px;
}

.gallery-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-img:hover img {
    transform: scale(1.05);
}

.gallery-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 148, 29, 0.3);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border-radius: 8px;
}

.gallery-img:hover .overlay {
    opacity: 1;
}

.gallery-img .overlay .zoom-icon {
    color: #fff;
    font-size: 48px;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-img:hover .overlay .zoom-icon {
    transform: scale(1);
}


/* Responsive gallery styles */

@media (max-width: 768px) {
    .gallery-img img {
        height: 250px;
    }
    .gallery-container {
        padding: 20px 0;
    }
    .tz-gallery {
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .gallery-img img {
        height: 200px;
    }
    .gallery-container h1 {
        font-size: 1.8rem;
        margin-top: 10px;
    }
    .gallery-container p.page-description {
        font-size: 16px;
        margin: 15px auto;
    }
}


/* Vehicle Booking Section Styles */

.vehicle-book-section {
    padding: 0px 0;
    background: linear-gradient(135deg, rgba(46, 49, 146, 0.05) 0%, rgba(46, 49, 146, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.vehicle-book-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 176, 59, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.vehicle-book-section::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 49, 146, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.vehicle-book-section .container {
    position: relative;
    z-index: 2;
}

.vehicle-card {
    background: #ffffff;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vehicle-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 176, 59, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.vehicle-card:hover::before {
    left: 100%;
}

.vehicle-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(46, 49, 146, 0.15);
    border-color: var(--secondary-color);
}

.vehicle-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
}

.vehicle-card:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 25px rgba(46, 49, 146, 0.2));
}

.vehicle-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    position: relative;
    z-index: 2;
}

.vehicle-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.vehicle-card .btn {
    background: #603813;
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.vehicle-card .btn:hover {
    background: #f7941d;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(46, 49, 146, 0.3);
    color: white;
}

.vehicle-card .btn:active {
    transform: scale(0.98);
}


/* Special styling for different vehicle types */

.vehicle-card:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(251, 176, 59, 0.02) 100%);
}

.vehicle-card:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(46, 49, 146, 0.02) 100%);
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .vehicle-book-section {
        padding: 60px 0;
    }
    .vehicle-card {
        margin-bottom: 30px;
        padding: 20px 15px;
    }
    .vehicle-card img {
        height: 150px;
    }
    .vehicle-card h3 {
        font-size: 1.2rem;
    }
    .vehicle-card p {
        font-size: 0.9rem;
    }
    .vehicle-card .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .vehicle-card img {
        height: 120px;
    }
    .vehicle-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .vehicle-card p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
}


/* Vehicle Slider Specific Styles */

#vehicleSplide {
    padding: 0 10px;
}

#vehicleSplide .splide__list {
    align-items: stretch;
}

#vehicleSplide .vehicle-card {
    height: 100%;
    margin-bottom: 0;
}


/* Override the grid layout for slider */

.vehicle-book-section .splide .vehicle-card {
    margin-bottom: 0 !important;
}