@charset "UTF-8";
/* Slide container */
/*-------- 1.1 Typography --------*/
html * {-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}
body {font-size:14px !important; line-height:1.5; color:#555 !important;background-color:#ffffff; font-family:"Roboto", Helvetica, Arial, sans-serif; font-weight:400; }
h1, h2, h3, h4, h5, h6 {color:#222 ;font-family:"Roboto", Helvetica, Arial, sans-serif; font-weight:400 !important; }



#layerslider {
    position: relative !important;
}

.destinations-carousel,
.destinations-carousel .owl-stage-outer,
.destinations-carousel .owl-stage {
    overflow: hidden;
}

body {
    overflow-x: hidden;
}
.ls-slide {
    position: relative !important;
}

/* target the background image */
.ls-slide .ls-bg {
    display: block;
    width: 100%;
    height: auto;
}

/* text above overlay */
.ls-slide .ls-l {
    position: absolute !important;
    z-index: 10 !important;
}
/*Booking*/
/* ===== DESTINATIONS SECTION ===== */
.destinations-carousel {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

/* ===== DESTINATION CARD ===== */
.destination_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 15px;
}

.destination_card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

/* ===== CARD IMAGE WRAPPER ===== */
.card_image_wrapper {
    position: relative;
    overflow: visible;
    height: 400px;
    background: #f0f0f0;
}

.card_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination_card:hover .card_image {
    transform: scale(1.05);
}

/* ===== BADGES ===== */
.badge {
    position: absolute;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.multi_day {
    top: 15px;
    left: 15px;
    font-size: 10px;
    background: #0099cc;
    color: #fff;
}

.save_badge {
    top: 60px;
    left: 15px;
    font-size: 10px;
    background: rgb(210, 132, 96);
    color: #e6e3e3;
}

/* ===== RATING BADGE - VISIBLE ===== */
.rating_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: #333;
    padding: 4px 7px;
    border-radius: 20px;
    font-size: 12px;
    font-family:monospace;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 20;
}

/* ===== PRICE BADGE ===== */
.price_badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #fff;
    color: #333;
    padding: 12px 18px;
    border-radius: 25px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* ===== CARD CONTENT ===== */
.card_content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card_title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

/* ===== CARD DETAILS ===== */
.card_details {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.detail_item {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail_item .icon {
    font-size: 16px;
}

/* ===== CARD DESCRIPTION ===== */
.card_description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ===== CARD LOCATIONS ===== */
.card_locations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.location_tag {
    font-size: 12px;
    color: #0099cc;
    background: #e3f2fd;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ===== CARD FOOTER ===== */
.card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
   
    margin-top: auto;
}

.price_section {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price_original {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.price_current {
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.price_label {
    font-size: 12px;
    color: #999;
}

/* ===== BUTTON ===== */
.btn_book {
    background: linear-gradient(135deg, #0099cc 0%, #0080b3 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn_book:hover {
    background: #E6D8B2FF;
    color:#383838;
    transform: translateX(2px);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    
}

.testimonials .main_title {
    margin-bottom: 60px;
}
.testimonials .main_title p{
  
    color:#bbbaba;
}

.testimonials .main_title h2{
  
    color:#bbbaba;
}
/* Testimonial Item Card */
.testimonial_item {
    background: #fff;
    padding: 50px;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 20px;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.testimonial_item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Testimonial Content */
.testimonial_content {
    flex-grow: 1;
}

/* Quote Icon */
.quote_icon {
    font-size: 100px;
    font-weight: 300;
    color: #d4af37;
    line-height: 0.8;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Testimonial Text */
.testimonial_text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Stars */
.stars {
    display: flex;
    gap: 4px;
    margin: 25px 0;
}

.star {
    font-size: 16px;
    color: #ddd;
}

.star.filled {
    color: #d4af37;
}

/* User Info */
.user_info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 0;
}

.testimonial_item .user_info img {
    width: 56px;
    height: 56px;
    object-fit: cover;

    border-radius: 50%; /* makes it perfectly round */
}

.user_details {
    flex: 1;
}

.user_details h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.3px;
}

.user_location {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

.testimonial-carousel .owl-dots .owl-dot {
    color: #bbb !important;        /* inactive dot color */
}


.testimonial-carousel .owl-dots .owl-dot.active {
    color: #d4af37 !important;     /* active dot color */
    width: 28px;             /* optional: bigger active dot */
    border-radius: 5px;      /* rounded active dot */
}
/*Added for logo size adjustments */    
/* Make header row flex */

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #d7b54f79 !important;
}

header .row {
    display: flex;
    align-items: center; /* THIS centers vertically */
}

/* Remove extra spacing */
#logo_home h1 {
    margin: 0;
}

/* Ensure nav fills height properly */
header nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#primary_nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end;
    color:white !important;
    height: 100%;
    margin-top: -16px !important;
    padding: 0 !important;
    list-style: none;

    float: none !important;   /* kills bootstrap float */
}
#primary_nav li {
    display: flex !important;
    color:white !important;
    align-items: center;
    float: none !important;
}

#search,
#search .dropdown,
#search .dropdown-toggle {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Contact top adjustmets */
/* Top bar */
.top_bar {
    position:fixed;
	top:0;
	left:0;
	width:100%;
    margin:0;
    background: #0d3557;
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

/* Left contacts */
.top_contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.top_contacts li {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Icons */
.top_contacts i {
    font-size: 13px;
}

/* Social icons */
.top_social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.top_social li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: 0.3s;
}

.top_social li a:hover {
    color: #fff;
}
/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #C0E0F059;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #003d82;
    display: inline;
    margin-right: 5px;
}

.stat-plus {
    font-size: 32px;
    font-weight: 700;
    color: #003d82;
    vertical-align: super;
}

.stat-label {
    font-size: 14px;
    color: #7a8fa0;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 15px;
    margin-bottom: 0;
}

/* ===== VIEW ALL TOURS BUTTON CONTAINER ===== */


.tour-section-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important; /* aligns buttons with bottom of text */
  gap: 20px !important;
  margin-bottom: 40px !important;
}
.header-left {
  max-width: 650px;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  gap: 12px;
  margin-left: auto; /* 🔥 pushes buttons to far right */
}

/* BUTTONS */
.btn-primary {
  background: #2f4ea2;
  color: white;
  border: none;
  padding: 10px 18px;
  
}

.btn-secondary {
  background: #2f4ea2;
  color: white;
  border: none;
  padding: 10px 18px;
 
}

.tour-title{
    font-size: 36px;
    font-weight: 700;
    color: #003d82;
    margin-bottom: 10px;
}
.view_all_tours_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 40px 0;
}

/* ===== VIEW ALL TOURS BUTTON ===== */
.view_all_tours_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    border: 2px solid #0099cc;
    border-radius: 50px;
    color: #0099cc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: transparent;
}

.view_all_tours_btn .hover{
    color:#003d7a !important;
}



/*Subscription secitron*/
.subscribe-section .container {
  padding-left: 0;
  padding-right: 0;
}
.subscribe-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.subscribe-box {
  border-radius: 0px;
  overflow: hidden; /* 🔥 THIS removes the gap visually */
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  background: #fff;
  margin:0;
}
.subscribe-box > [class*="col-"] {
  padding: 0;
}
.subscribe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right content box */
.subscribe-content {
  padding: 50px;
  height: 100%;
}

.subscribe-img,
.subscribe-content {
  border-radius: 0;

}
.subscribe-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.subscribe-content p {
  color: #6c757d;
  margin-bottom: 25px;
}

/* Form styling */
.subscribe-form {
  display: flex;
  align-items: center;
  background: #f1f3f5;
  border-radius: 50px;
  overflow: hidden;
}

.subscribe-form input {
  border: none;
  padding: 12px 20px;
  flex: 1;
  background: transparent;
  outline: none;
}

.subscribe-form button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  margin: 5px;
  transition: 0.3s;
}

.subscribe-form button:hover {
  background: #0056b3;
}


/*About page*/
/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #555;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1527786356703-4b100091cd2c?w=1200&h=1200&fit=crop') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px;
}

.hero-title {
    font-size: 40px !important;
    font-weight: 700;
    line-height: 1.5 !important;
    margin-bottom: 30px !important;
    letter-spacing: -2px;
    animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 20px !important;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-buttons .btn {
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: #0066ff;
    border-color: #0066ff;
}

.hero-buttons .btn-primary:hover {
    background-color: #0052cc;
    border-color: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.hero-buttons .btn-outline-light:hover {
    background-color: white;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.about-content {
    padding: 40px;
}

.about-title {
    align-items: center;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #0a1538;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.about-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 550px;
}

/* Features Section */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 0;
}

.feature-icon {
    margin-top:20px !important;
    width: 50px;
    height: 50px;
    background-color: #e8f0ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066ff;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
}


.feature-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Image Section */
.image-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bus-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.bus-image {
    width: 100%;
    height: auto;
    
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.satisfaction-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #276eda 0%, #10418b 100%);
    color: white;
    padding: 30px 40px;
   
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
    z-index: 10;
    min-width: 200px;
}

.satisfaction-badge .percentage {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.satisfaction-badge .label {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item {
    animation: slideInUp 0.8s ease-out backwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

.bus-image-container {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.satisfaction-badge {
    animation: slideInUp 0.8s ease-out 0.5s both;
}


/*End of about page*/


/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

/* Section Header */
.about-section-header {
    margin-top:0;
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Challenges Card */
.challenges-card {
    background-color: #f8f9fa;
   
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenges-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(122, 151, 194, 0.4);
}

.challenges-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.challenges-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.challenges-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.challenge-label {
    font-size: 14px;
    font-weight: 700;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.challenge-title {
    font-size: 32px;
    font-weight: 800;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.2;
}

.challenges-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.challenge-item {
    display: flex;
    gap: 16px;
}

.challenge-item .challenge-icon {
    padding-top:10px;
    width: 24px;
    height: 24px;
    color: #828d20;
    font-size: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    padding-top: 2px;
}

/* Solution Card */
.solution-card {
    background: #f3f3f3;
 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 40px rgba(156, 175, 204, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(122, 151, 194, 0.4);
}

.solution-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #0052cc;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: white;
}

.solution-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(10, 117, 37, 0.89);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.solution-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.solution-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Solution Features */
.solution-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solution-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.solution-features .feature-icon {
   margin-top: 5px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.solution-features .feature-text {
    font-size: 16px;
    color:#555;
    font-weight: 400; /* 100 is too thin, 300 is more readable */
    border-left: 5px solid #72a5e7;
    padding-left: 15px; /* adds space from the border */
    padding-top:30px;
    padding-bottom:30px;
}

.custom{
    padding: 10px;
    padding-left:0;
    font-size:16px !important;
    padding-bottom:0;
    color:#555 !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    animation: fadeInUp 0.8s ease-out;
}

.challenges-card {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.solution-card {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
/*End of problem section*/



/* Services Grid Section */
.services-grid-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    margin-right:20px;
}

/* Service Card */
.service-card {
    background-color: white;
    padding: 40px;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
   border: 0.1px solid rgb(214, 214, 214);
    box-shadow: 5px 0px rgba(211, 211, 211, 0);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease-out backwards;
    
}

.col-lg-6:nth-child(1) .service-card { animation-delay: 0s; }
.col-lg-6:nth-child(2) .service-card { animation-delay: 0.1s; }
.col-lg-6:nth-child(3) .service-card { animation-delay: 0.2s; }
.col-lg-6:nth-child(4) .service-card { animation-delay: 0.3s; }
.col-lg-6:nth-child(5) .service-card { animation-delay: 0.4s; }
.col-lg-6:nth-child(6) .service-card { animation-delay: 0.5s; }

.service-card:hover {
    background-color: rgba(55, 158, 199, 0.4);

    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover span {
  color: rgb(12, 12, 12);

}
.service-card:hover .service-link{
    color:white;
    background: rgb(12, 12, 12);
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    background-color: #e8f0ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5B4E27;
    font-size: 30px;
    margin-bottom: 24px;
}

/* Service Title */
.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a3980;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Service Text */
.service-text {
    font-size: 12px;
    color: #5a7a99;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Service Link */
.service-link {
    font-size: 14px;
    font-weight: 300;
    border: 0.1px solid rgb(214, 214, 214);
    padding:15px;
    border-radius: 25px;
    color: #0066ff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-link:hover {
    color: #0052cc;
    gap: 12px;
}

.service-link i {
    font-size: 12px;
}
/*Detailed service*/

/* SECTION */
.tours-experiences {
    padding: 80px 0;
    background: #f5f6f8;
}

/* HEADER */
.service-section-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
}

.service-section-title {
    font-size: 38px;
    font-weight: 800;
}

.service-section-label {
    font-size: 25px !important;
    color: #ff6b00;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-section-description {
    color: #666;
    max-width: 500px;
}

.btn-view-all {
    background: #1e3c8c;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
}

/* GRID */
.adventure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* default desktop */
    gap: 25px;
}

/* CARD */
.adventure-card {
    position: relative;
    height: 320px;
    
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: 0.4s ease;
}

/* OVERLAY */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 13, 19, 0.9),
        rgba(19, 25, 39, 0.062),
        transparent
    );
}

/* CONTENT */
.card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: #fff;
    width: 100%;
}

/* TEXT */
.card-label {
    font-size: 12px;
    color: #ff7a00;
    font-weight: 600;
}

.card-title {
    font-size: 22px;
    color:white;
    font-weight: 700;
    margin: 5px 0 15px;
}

/* FEATURES */
.card-features {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 15px;
}

.card-features p {
    margin: 4px 0;
}

.card-features i {
    color: #6585dd;
    margin-right: 6px;
    font-size:14px;
}

/* FOOTER */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
    font-size: 10px;
}

.card-footer span {
    margin-right: 10px;
}

.card-footer i {
    margin-right: 5px;
}

/* BUTTON */
.btn-book {
    background: #fff;
    color: #1e3c8c;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* HOVER */
.adventure-card:hover {
    transform: translateY(-8px) scale(1.02);
}



/*Car Rental*/
/* SECTION */
.mobility-section {
    padding: 80px 0;
    background: #f5f6f8;
}

/* WRAPPER */
.mobility-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT */
.section-label {
    font-size: 12px;
    color: #ff6b00;
    font-weight: 600;
    margin-bottom: 10px;
}

.car-section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-description {
    color: #666;
    margin-bottom: 25px;
}

/* FEATURES GRID */
.mobility-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-box {
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.feature-box i {
    color: #1e3c8c;
    font-size:15px;
    margin-bottom: 8px;
    background:#bac0c948;
    padding: 20px;
    border-radius: 10px;
}

.feature-box h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 12px;
    color: #777;
}

.feature-box:hover {
    transform: translateY(-3px);
}

/* FILTER */
.mobility-filter {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    font-size: 12px;
}

.mobility-filter span {
    cursor: pointer;
    color: #777;
}

.mobility-filter .active {
    color: #1e3c8c;
    font-weight: 600;
}

/* RIGHT IMAGE */
.image-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: url('../img/others/car.png') center/cover;
    display: flex;
    align-items: flex-end;
}

/* OVERLAY */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,30,80,0.8), transparent);
}

/* CONTENT */
.image-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    margin: 20px;
    width: calc(100% - 40px);
}

.image-content h4 {
    margin-bottom: 5px;
}

.image-content p {
    font-size: 12px;
    color: #777;
}

/* BADGE */
.badge {
    background: #ff6b00;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    float: right;
}

/* BUTTON */
.btn-quote {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: #1e3c8c;
    color: #fff;
}

/*End of Car Rental*/


/*Corporate Travel*/
/* SECTION SPACING */
.real-corporate {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* LEFT CARD */
.corporate-image-card {
  position: relative;
  
  overflow: hidden;
  height: 600px;
}

.corporate-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

/* OVERLAY */
.corporate-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.corporate-overlay h3 {
    color:white;
  font-weight: 700;
  margin-bottom: 12px;
}

.corporate-overlay p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-custom {
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 14px;
}

/* RIGHT CONTENT */
.content {
  padding: 10px 20px;
}

.tag {
  color: #ff5a1f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  display: inline-block;
}

.title {
  font-weight: 700;
  color: #1d2b53;
  margin-bottom: 20px;
  line-height: 1.3;
  font-size: 40px;
}

.description {
  color: #6c757d;
  max-width: 520px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* FEATURES */
.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 10px 5px;
}

.feature h6 {
  margin-bottom: 6px;
  font-weight: 600;
}

.feature p {
  font-size: 12.5px;
  color: #6c757d;
  margin: 0;
}

/* ICON */
.icon {
  min-width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* COLORS */
.blue { background: #e7f0ff; color: #3b82f6; }
.orange { background: #fff2e7; color: #f97316; }
.green { background: #e7f8f0; color: #22c55e; }
.purple { background: #f3e8ff; color: #a855f7; }

/* CUSTOM BOX */
.custom-box {
  background: #eef3ff;
  padding: 25px;
  border-radius: 16px;
  margin-top: 30px;
}

.custom-box h6 {
  font-weight: 700;
  margin-bottom: 12px;
}

.custom-box p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

/*End of corporate travel*/

/*hotel booking*/
/* SECTION SPACING */
.hotel-wrapper {
  background: #f1f3f7;

  overflow: hidden; /* VERY IMPORTANT */
}

/* MAIN BOX */
.hotel-box {
  background: #f1f3f7;
  padding: 50px;
 
  height: 100%;
}

/* ICON */
.top-icon {
  width: 60px;
  height: 60px;
  background: #dbeafe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 25px;
}

/* TEXT */
.tag {
  color: #ff5a1f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  display: inline-block;
}

.title {
  font-size: 38px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.description {
  color: #6b7280;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 25px;
}

/* LIST */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  margin-bottom: 14px;
  font-size: 14px;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 8px;

}

.list i {
  color: #22c55e;
  margin-top:-5px;
  background:#92dfae62;
  padding:10px;
  border-radius: 50px;
}

/* INFO BOX */
.info-box {
  background: #dbeafe;
  padding: 18px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e40af;
  font-size: 14px;
  margin-top: 30px;
}

.info-box i {
  background: #2563eb;
  color: white;
  padding: 13px 17px;
  border-radius: 30px;
  font-size: 12px;
}

.hotel-cta {
  margin-top: 28px;
}

.hotel-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f35ff, #337e7a);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(31, 91, 255, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hotel-contact-btn:hover,
.hotel-contact-btn:focus {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(31, 91, 255, 0.22);
  background: #293247;
}

/* IMAGE */
.hotel-image {
  height: 400px;
}

.hotel-image img {
 width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 0;

}
.top-old{display:none;}
.two-images{
    display:flex;
    align-content: center;
    align-self:center;
    flex-direction: column;
}

/*end of hotel booking*/

/*Mechandising*/

  
 .merchandising-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #384f8f;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}


    

/* Merchandising Grid */
.merchandising-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}


/* Merchandising Cards */
.merch-card {
  
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.left-card {
    background: white;
}

.right-card {
    color: rgb(27, 21, 21) !important;
    background: #743810b7;
    
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 24px;
    color: #B47C2C;
    background: rgba(255, 107, 53, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.right-header i{color:white !important;}
.card-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #0f2d7d;
}

.card-header.dark h3 {
    color: white;
}

.card-header.dark i {
    background: rgba(255, 107, 53, 0.2);
}

/* Card Description */
.card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.card-description.dark {
    color: rgba(255, 255, 255, 0.85);
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

/* FEATURE BLOCK */
.mech-feature-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  transition: 0.3s ease;
}

/* HOVER (optional pro touch) */
.mech-feature-block:hover {
  background: rgba(0,0,0,0.03) !important;
}

/* ICON */
.mechandising-feature-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B47C2C;
  font-size: 18px;
  flex-shrink: 0; /* prevents shrinking */
}

/* TEXT */
.mech-feature-block h4 {
  font-size: 13px;
  font-weight: 600;
  color: #046394;
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
/* Card Images */
.card-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 0;
}

.image-item {
    overflow: hidden;
    border-radius: 12px;
    height: 150px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checklist li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checklist li i {
    color: #ff6b35;
    font-size: 18px;
    flex-shrink: 0;
}

/* Right Card Image */
.right-card-image {
    overflow: hidden;
    border-radius: 12px;
    height: 200px;
    margin-bottom: 25px;
}

.right-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.right-card-image:hover img {
    transform: scale(1.05);
}

/* CTA Button */
.btn-request-plan {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-request-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-request-plan:active {
    transform: translateY(0);
}

/* Learn more button styling*/
.btn-slide {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Hover effect */
.btn-slide:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #0096c7);
}

/* Click effect */
.btn-slide:active {
    transform: translateY(0);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

/* End of learn more styling */
/*End of Mechandising*/
/* Search Filter Section */
.search_filter_section {
   
    padding: 50px 15px 30px;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.search_filter_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 153, 255, 0.082) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.062) 0%, transparent 50%);
    pointer-events: none;
}

.search_filter_section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Search Form */
.search_filter_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    background: white;
  
    padding: 25px 20px;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Filter Step */
.filter_step {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Filter Group */
.filter_group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}

.filter_label {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.filter_select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 12px;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.filter_select:hover {
    border-color: #0099ff;
    background-color: white;
}

.filter_select:focus {
    border-color: #0099ff;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
}

.filter_select::placeholder {
    color: #999;
}

/* Button Container */
.filter_buttons_container {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
}

/* Buttons Base Style */
.search_filter_btn,
.filter_back_btn {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    outline: none;
    box-sizing: border-box;
    width: 100%;
}

/* Submit Button */
.search_filter_btn {
    background: linear-gradient(135deg, #0099ff 0%, #0077cc 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}

.search_filter_btn:hover {
    background: linear-gradient(135deg, #0088dd 0%, #0066bb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

.search_filter_btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 153, 255, 0.3);
}

/* Back Button */
.filter_back_btn {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.filter_back_btn:hover {
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: #999;
}

.filter_back_btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search_filter_btn i,
.filter_back_btn i {
    font-size: 12px;
}

 .tour2-kicker {
            display: inline-block;
            margin-bottom: 10px;
            color: #D7B54F;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
@media (max-width: 1024px) {
    /*Search filter*/
    .search_filter_section {
        padding: 70px 20px 50px;
    }

    .search_filter_form {
        padding: 40px 35px;
        gap: 20px;
    }

    .filter_step {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        align-items: flex-end;
    }

    .filter_group {
        flex: 1;
        min-width: 180px;
        gap: 8px;
    }

    .filter_label {
        font-size: 13px;
    }

    .filter_select {
        padding: 12px 15px;
        font-size: 15px;
    }

    .filter_buttons_container {
        flex-direction: row;
        gap: 15px;
        width: auto;
        margin-top: 0;
    }

    .search_filter_btn,
    .filter_back_btn {
        padding: 12px 30px;
        font-size: 14px;
        width: auto;
        min-width: 130px;
    }
    /*Search filter*/
    .card_image_wrapper {
        height: 250px;
    }

    .card_content {
        padding: 20px;
    }

    .card_title {
        font-size: 18px;
    }

    .card_details {
        gap: 15px;
    }
}
@media (max-width: 480px) {
    
    .view_all_tours_container {
        margin-top: 40px;
        padding: 20px 0;
    }

    .view_all_tours_btn {
        padding: 12px 28px;
        font-size: 14px;
        border-width: 1.5px;
    }

    
    /*destination booking*/
    .destination_card {
        margin: 10px 5px;
    }

    .card_image_wrapper {
        height: 180px;
    }

    .card_content {
        padding: 15px;
    }

    .badge {
        padding: 6px 10px;
        font-size: 11px;
    }

    .multi_day {
        top: 10px;
        left: 10px;
    }

    .save_badge {
        top: 10px;
        left: 85px;
        font-size: 10px;
    }

    .rating_badge {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 5px 10px;
    }

    .price_badge {
        bottom: 10px;
        right: 10px;
        font-size: 14px;
        padding: 10px 12px;
    }

    .card_title {
        font-size: 15px;
    }

    .card_details {
        gap: 10px;
        margin-bottom: 10px;
    }

    .card_description {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .price_current {
        font-size: 20px;
    }

    .btn_book {
        font-size: 13px;
        padding: 10px 20px;
    }
    /*destination booking*/

    .top_contacts li {
        font-size: 10px;
    }

    .top_contacts i {
        font-size: 10px;
    }

    .top_social li a {
        font-size: 11px;
    }

    /* Optional: hide location to save space */
    .top_contacts li:nth-child(3) {
        display: none;
    }
    .email_item {
        display: none !important;
    }
    /*Stats section*/

    .stats-section{
        padding:30px 0 !important;
    }

    .stats-container {
        flex-wrap: nowrap;
        gap: 10px !important;
    }

    .stat-number {
        font-size: 30px !important;
    }

    .stat-plus {
        font-size: 14px;
    }

    .stat-label {
        font-size: 6px;
    }
    .stat-item{
        min-width: 80px;
    }
    /*End*/

    /*MECHANDISING*/
    .section-title {
        font-size: 24px;
    }

    .merch-card {
        padding: 20px;
    }

    .card-header i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .card-header h3 {
        font-size: 16px;
    }
     .mech-feature-block h4 {
        text-align: left;
     margin-top:-10px;
    }

    /*MECHANDISING*/
}
/* Responsive adjustments */
@media (max-width: 768px) {
    

/*Problems and solutions */
.problem-section {
        padding: 60px 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .challenges-image,
    .solution-image {
        height: 220px;
    }

    .challenges-content,
    .solution-content {
        padding: 25px;
    }

    .challenge-label,
    .solution-label {
        font-size: 11px;
    }

    .challenge-title,
    .solution-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .challenge-item {
        gap: 12px;
    }

    .challenge-text {
        font-size: 14px;
    }

    .solution-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .feature-text {
        font-size: 14px;
    }

    .solution-features {
        gap: 16px;
    }
    /*End of problem and solutions*/
/*About us*/

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .features-container {
        gap: 25px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .satisfaction-badge {
        left:30%;
        bottom: -40px !important;
        padding: 20px 30px;
    }

    .satisfaction-badge .percentage {
        font-size: 32px;
    }

    .satisfaction-badge .label {
        font-size: 14px;
    }
    /*End of about */

    /*Subscription section*/
    .subscribe-img img {
    border-radius: 10px 10px 0 0;
  }

 .subscribe-content {
    padding: 30px;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
  }

  .subscribe-form button {
    width: 100%;
    margin: 0;
  }

  /*End of subscription*/

   

    /*view all button*/
    .view_all_tours_container {
        margin-top: 50px;
        padding: 30px 0;
    }

    .view_all_tours_btn {
        padding: 14px 32px;
        font-size: 15px;
    }
    /*End of view all button*/
    /*Destination booking*/
    .destinations-carousel {
        flex-direction: column;
        gap: 15px;
    }

    .destination_card {
        margin: 10px 0;
    }

    .card_image_wrapper {
        height: 220px;
    }

    .card_content {
        padding: 18px;
    }

    .card_title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .card_details {
        gap: 12px;
        margin-bottom: 12px;
    }

    .detail_item {
        font-size: 12px;
    }

    .card_description {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .card_footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn_book {
        width: 100%;
        justify-content: center;
    }

    .save_badge {
        left: 90px;
    }
    /*destination booking*/

     .stats-section {
        padding: 40px 0;
    }

    .stats-container {
        gap: 10px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-plus {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }
 .hotel-image{
    margin-top:0 !important;
  }
    
   /*MECHANDISING*/
   .merchandising-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .merch-card {
        padding: 30px;
    }

    .card-header h3 {
        font-size: 18px;
    }

    .card-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .image-item {
        height: 200px;
    }

    .right-card-image {
        height: 250px;
    }

     .features-grid {
    grid-template-columns: 1fr !important; /* 🔥 single column */
    gap: 12px;
  }

  .mech-feature-block {
    padding: 10px;
  }

  .mech-feature-block h4 {
    font-size: 12px;
  }
    

   
    /*END OF MECHANDISING*/
     .section-header {
    flex-direction: column !important;   /* stack everything */
    align-items: flex-start !important;
  }

  .header-right {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;

    /* optional: control alignment */
    justify-content: flex-start; /* left aligned */
    /* justify-content: center; */ /* OR center */
  }
}
/* Responsive */
@media (max-width: 991px) {


    /*Problem side*/
     .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .challenge-title,
    .solution-title {
        font-size: 28px;
    }

    .challenges-content,
    .solution-content {
        padding: 30px;
    }

    /*End of problem side */
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-description {
        font-size: 16px;
    }

    .image-section {
        margin-top: 60px;
    }

    .satisfaction-badge {
        bottom: -15px;
        padding: 25px 35px;
    }

    .satisfaction-badge .percentage {
        font-size: 36px;
    }
    
/*Tour*/
 .adventure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* LEFT SIDE */
    .header-left {
    max-width: 600px;
    }

    /* RIGHT SIDE */
    .header-right {
    display: flex;
    gap: 12px;
    align-items: center;
    }
    /*Car rental*/
    .mobility-wrapper {
        grid-template-columns: 1fr;
    }

    .image-card {
        height: 350px;
    }
/*HOTEL*/
.hotel-section {
    margin-top: 50px;
    margin-bottom: 50px;
  }
 .hotel-image{
    margin-top:0;
  }
  .second-image{
    display:none;
  }

  .hotel-box {
    padding: 35px;
  }

  .title {
    font-size: 30px;
  }

  .hotel-image {
    margin-top: 30px;
  }
   .hotel-image img {
    height: 300px;
  }
  .hotel-box {
   padding: 20px 20px !important;
   margin-top:-50px !important;

  }

  .description {
    max-width: 100%;
  }
  /*End of hotel*/
   /*Mechandising*/
   .merch-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .card-light,
  .card-dark {
    padding: 35px;
  }

  .main-title {
    font-size: 30px;
  }
  /*End of mechandising*/
}
@media (max-width: 1200px) {
   
}

@media (max-width: 576px) {
    .hero-title {
    font-size: 25px !important;
    font-weight: 700;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
    margin-top:80px !important;
   
    animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 15px !important;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: slideInUp 0.8s ease-out 0.2s both;
}
    .section-title {
        font-size: 24px;
    }

    .challenge-title,
    .solution-title {
        font-size: 20px;
    }

    .challenges-content,
    .solution-content {
        padding: 20px;
    }

    .challenges-list,
    .solution-features {
        gap: 15px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

/* Tour */
.tour-section-head{
    flex-direction: column !important;
}
.header-right {
    flex-direction: column;
    margin-bottom: 50px;
    width: 100%;
  }

  .header-right button {
    width: 100%;
  }

    .adventure-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }

    .adventure-card {
        height: 260px;
    }

   /* Car rental */
    .section-title {
        font-size: 26px;
    }

    .mobility-features {
        grid-template-columns: 1fr;
    }
    /*HOTEL*/
      .top-new{
    display:none !important;
  }
  .top-old{
    display:block !important;
  
    .real-corporate {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .hotel-box {
   padding: 20px 20px !important;
   margin-top:-100px !important;

  }
  .hotel-image img {
    height: 220px;
    object-fit: cover;
  }

  .top-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .title {
    font-size: 24px;
  }

  .description {
    font-size: 14px;
  }

  .list li {
    font-size: 13px;
  }


  .info-box {
    flex-direction: row;
    font-size: 13px;
    padding: 15px;
  }

  .hotel-image img {
    height: 250px;
  }
  /*End of hotel*/
   
  /*Mechandising*/
   .merch-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .card-light,
  .card-dark {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .main-title {
    font-size: 24px;
  }

  .mini-item h6 {
    font-size: 13px;
  }

  .mini-item p {
    font-size: 11px;
  }

  .feature-list li {
    font-size: 13px;
  }
   .mech-feature-block h4 {
        text-align: left;
        padding-top:-40px !important;
    }
  /*End of mechandising*/
}
}
@media (max-width: 1400px) {

    .service-card .service-text{
        font-size: 12px !important;
    }
    /*hotel*/
    .hotel-section {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .title {
    font-size: 44px;
  }

  .hotel-box {
    padding: 60px;
  }
  /*End of hotel*/
  /*Mechandising*/
   .merch-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .main-title {
    font-size: 42px;
  }
  /*End of mechandising*/
}




@media (max-width: 600px) {
    .hotel-box {
   padding: 20px 20px !important;
   margin-top:-50px !important;


  }
    .top-new{
    display:none !important;
  }
  .top-old{
    display:block !important;
}
}
@media (max-width: 400px) {
    .hotel-box {
   padding: 20px 20px !important;
   margin-top:-100px !important;

  }
  .hotel-image{
    margin-top:0;
  }
  .top-new{
    display:none !important;
  }
  .top-old{
    display:block !important;
}}
@media (max-width: 968px) {
    .merchandising-grid {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .search_filter_section {
        padding: 55px 15px 40px;
    }

    .search_filter_form {
        padding: 28px 22px;
        gap: 15px;
    }

    .filter_step {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        align-items: flex-end;
    }

    .filter_group {
        flex: 0 1 calc(50% - 8px);
        min-width: 140px;
        gap: 7px;
    }

    .filter_label {
        font-size: 12px;
    }

    .filter_select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .filter_buttons_container {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        margin-top: 8px;
    }

    .search_filter_btn,
    .filter_back_btn {
        padding: 10px 24px;
        font-size: 12px;
        width: 50%;
        flex: 1;
    }
}
@media (min-width: 600px) and (max-width: 767px) {
    .search_filter_section {
        padding: 45px 12px 30px;
    }

    .search_filter_form {
        padding: 22px 16px;
        gap: 14px;
    }

    .filter_step {
        flex-direction: column;
        gap: 14px;
    }

    .filter_group {
        width: 100%;
        gap: 6px;
    }

    .filter_label {
        font-size: 12px;
    }

    .filter_select {
        padding: 11px 11px;
        font-size: 13px;
        min-height: 40px;
    }

    .filter_buttons_container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .search_filter_btn,
    .filter_back_btn {
        padding: 11px 18px;
        font-size: 12px;
        width: 100%;
        min-height: 40px;
    }
}
@media (min-width: 480px) and (max-width: 599px) {
    .search_filter_section {
        padding: 40px 10px 25px;
    }

    .search_filter_form {
        padding: 18px 14px;
        gap: 14px;
    }

    .filter_step {
        flex-direction: column;
        gap: 14px;
    }

    .filter_group {
        width: 100%;
        gap: 6px;
    }

    .filter_label {
        font-size: 11px;
    }

    .filter_select {
        padding: 11px 10px;
        font-size: 13px;
        border-radius: 6px;
        min-height: 40px;
    }

    .filter_buttons_container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .search_filter_btn,
    .filter_back_btn {
        padding: 11px 16px;
        font-size: 12px;
        width: 100%;
        min-height: 40px;
        gap: 6px;
    }

    .search_filter_btn i,
    .filter_back_btn i {
        font-size: 11px;
    }
}

/* ========================================
   MOBILE: 400px - 479px
   ======================================== */
@media (min-width: 400px) and (max-width: 479px) {
    .search_filter_section {
        padding: 35px 8px 22px;
    }

    .search_filter_form {
        padding: 16px 12px;
        gap: 14px;
    }

    .filter_step {
        flex-direction: column;
        gap: 14px;
    }

    .filter_group {
        width: 100%;
        gap: 6px;
    }

    .filter_label {
        font-size: 11px;
        font-weight: 600;
    }

    .filter_select {
        padding: 10px 9px;
        font-size: 12px;
        border-radius: 6px;
        border-width: 1px;
        min-height: 40px;
    }

    .filter_buttons_container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .search_filter_btn,
    .filter_back_btn {
        padding: 11px 14px;
        font-size: 11px;
        width: 100%;
        min-height: 40px;
        gap: 5px;
    }

    .search_filter_btn i,
    .filter_back_btn i {
        font-size: 10px;
    }
}

/* ========================================
   SMALL MOBILE: Below 400px
   ======================================== */
@media (max-width: 399px) {
    .search_filter_section {
        padding: 30px 6px 18px;
    }

    .search_filter_form {
        padding: 14px 10px;
        gap: 14px;
    }

    .filter_step {
        flex-direction: column;
        gap: 14px;
    }

    .filter_group {
        width: 100%;
        gap: 6px;
    }

    .filter_label {
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .filter_select {
        padding: 10px 8px;
        font-size: 12px;
        border-radius: 5px;
        border-width: 1px;
        min-height: 40px;
    }

    .filter_buttons_container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .search_filter_btn,
    .filter_back_btn {
        padding: 11px 12px;
        font-size: 11px;
        width: 100%;
        min-height: 40px;
        gap: 5px;
    }

    .search_filter_btn i,
    .filter_back_btn i {
        font-size: 10px;
    }
}
.about-hero + .parallax-mirror img,
.parallax-mirror img[src*="cruise-departure.jpeg"] {
    object-fit: cover !important;
    object-position: 50% 8% !important;
}
