/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}
.mt-10{
	margin-top:10px;
}
body {
    font-family: Montserrat, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
	overflow-x:hidden;
}

.container {
    margin: 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: Montserrat, Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Bar */
.top-bar {
    background: #0791be;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content:center;
    align-items: center;
}

.top-bar-content span,
.top-bar-content a {
    display: inline-flex;
    align-items: center;

}
.top-bar-content span:before {
    content: '';
    height: 16px;
    width: 2px;
    background: white;
    right: -1px;
    position: absolute;
}
.top-bar-content span:last-child{
	position:static;
}
.top-bar-content span {
    position: relative;
	padding:0px 10px;
}
span.top-bar-offer{
	color:white;
	font-weight:700;
}
/* Dropdown Menu Styles */
.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-top: 3px solid #f56960;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    border-radius: 0 0 6px 6px;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #f9f9f9;
    color: #f56960;
    border-left-color: #f56960;
    padding-left: 25px;
}


/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    padding: 15px 0px;
	box-shadow:0px -7px 10px rgba(0,0,0,0.5);
}

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

.logo svg {
    display: block;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-item {
    position: relative;
}

.nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #333;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: #f56960;
}

.nav-link .arrow {
    font-size: 16px;
    font-weight: 400;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    margin-top: 15px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    width: 920px;
}

.mega-menu-content {
    display: flex;
    min-height: 400px;
}

/* Mega Menu Sidebar */
.mega-menu-sidebar {
    width: 200px;
    background: #F5F5F5;
    padding: 25px 0;
    border-right: 1px solid #E0E0E0;
    display: flex;
    flex-direction: column;
}

.region-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s;
    cursor: pointer;
}

.region-link:hover,
.region-link.active {
    background: #fff;
    color: #f56960;
}

.region-link.active {
    border-left: 3px solid #f56960;
    padding-left: 22px;
}

.region-arrow {
    font-size: 16px;
    color: #999;
}

.all-destinations {
    display: block;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: auto;
    border-top: 1px solid #E0E0E0;
}

.all-destinations:hover {
    color: #f56960;
}

/* Mega Menu Main Content */
.mega-menu-main {
    flex: 1;
    padding: 30px 35px;
}

.mega-menu-title {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 30px;
    margin-bottom: 25px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu-column a {
    font-size: 14px;
    color: #555;
    transition: color 0.2s;
    font-weight: 400;
}

.mega-menu-column a:hover {
    color: #f56960;
}

.mega-menu-note {
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
    font-size: 12px;
    color: #f56960;
    font-style: italic;
}

.nav-social {
    display: flex;
    gap: 10px;
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
}

.nav-social a {
    font-size: 18px;
}

/* Hero Section */
.banner-container{
	padding:0px 20px;
}
.search-box {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	width:50%;
	border-radius:30px;
	position:relative;
}

.search-box input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    font-size: 15px;
    outline: none;
   	border-radius:30px;
    width: 100%;
}
div#search-results {
    position: absolute;
    top: 55px;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    background: white;
    border-radius: 8px;
    z-index: 1111;
}
div#search-results ul  {
    padding:15px;
}
div#search-results ul li{
	list-style:none;
	color:#000;
	font-size:14px;
	line-height:40px;
	font-weight:500;
}
#search-results::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* hide scrollbar in Webkit browsers */
}



/* Last Minute Deals Section */
.last-minute-deals {
    padding: 60px 0;
    background: #F8F9FA;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.badge {
    display: inline-block;
    background: #f56960;
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
}

.btn-view-all {
    padding: 12px 30px;
    background: #f56960;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-view-all:hover {
    background: #E65A2B;
    transform: translateY(-2px);
}

/* Trip Card */
.trip-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.trip-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.trip-days {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 15px;
    background: #0791be;
    border-radius: 8px;
    color: #fff;
}

.days-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.days-text {
    font-size: 14px;
    margin-top: 3px;
}

.trip-info {
    flex: 1;
}

.trip-info h3 {
    font-size: 18px;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: 600;
}

.trip-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666;
}

.guaranteed,
.seats {
    padding: 4px 10px;
    background: #E8F4F8;
    border-radius: 4px;
    font-size: 13px;
    color: #0791be;
}

.trip-price {
    text-align: right;
    margin-right: 20px;
}

.price-new {
    font-size: 28px;
    font-weight: 700;
    color: #f56960;
    line-height: 1;
}

.price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-top: 5px;
}

.btn-join {
    padding: 14px 28px;
    background: #0791be;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.3s;
}

.btn-join:hover {
    background: #065a7a;
    transform: scale(1.05);
}

.last-minute-note {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: #FFF8E1;
    border-left: 4px solid #FFA726;
    border-radius: 6px;
    margin-top: 25px;
}

.warning-icon {
    font-size: 24px;
}

.last-minute-note p {
    color: #5D4037;
    font-size: 14px;
    line-height: 1.6;
}

/* Experiences Section */
.experiences {
    padding: 60px 0;
    background: #fff;
}

.experiences h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
}

.tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 10px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    transition: 0.3s;
    cursor: pointer;
}

.tab.active {
    color: #0791be;
    border-bottom-color: #0791be;
}

.tab:hover {
    color: #0791be;
}

.explore-link {
    margin-left: auto;
    padding: 12px 20px;
    color: #f56960;
    font-weight: 600;
    font-size: 15px;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    padding: 0 20px;
}

.carousel-wrapper .carousel-arrow {
    opacity: 1;
}

/* Carousel Container */
.experience-carousel {
    overflow: hidden;
    width: 100%;
}

.experience-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: #f56960;
    border-color: #f56960;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-arrow:hover svg {
    stroke: #fff;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-arrow:disabled {
    opacity: 0 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* Experience Cards in Carousel */
.experience-track .experience-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    cursor: pointer;
}

.experience-track .experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.experience-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.experience-content {
    padding: 18px;
}

.location {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0791be;
    margin-bottom: 8px;
}

.experience-content h3 {
    font-size: 16px;
    font-weight: 600;
    color:#0791be;
    margin-bottom: 10px;
    line-height: 1.4;
}

.experience-content .price {
    font-size: 14px;
    color: #666;
}

.experience-content .price strong {
    color: #f56960;
    font-weight: 700;
}

.experience-card a {
    position: relative;
}

.experience-card a span {
    background: rgba(0,0,0,0.5);
    padding: 3px 10px;
    border-radius: 15px;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}
.experience-footer {
    display: flex;
	align-items:center;
}
.experience-footer p{
	margin-bottom:0px;
}
.experience-footer a {
    margin-left: auto;
    color: #0791be;
    font-size: 14px;
    font-weight: 500;
}
/* Hide old grid on desktop */
.experience-grid {
    display: none;
}

/* Sites Section */
.sites {
    padding: 80px 0;
    background: #fff;
}

.sites-header {
    text-align: center;
    margin-bottom: 50px;
}

.sites-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0791be;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.sites-label i {
    font-size: 16px;
}

.sites h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.sites-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    height: 665px;
}

.site-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.site-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}

.site-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
}

.site-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.site-card:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.site-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.site-card:hover img {
    transform: scale(1.1);
}

.site-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #fff;
}

.site-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.package-count {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #2C3E50;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Travel Style Section */
.travel-style {
    padding: 60px 0;
    background: #fff;
}

.travel-style h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: center;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.travel-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.travel-option {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.travel-option img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.travel-option h3 {
    font-size: 22px;
    color: #f56960;
    padding: 25px 25px 10px;
    font-weight: 600;
}

.travel-option p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.btn-outline {
    display: inline-block;
    margin: 0 25px 25px;
    padding: 12px 30px;
    border: 2px solid #0791be;
    color: #0791be;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #0791be;
    color: #fff;
}

/* Inspired Section */
.inspired {
    padding: 60px 0;
    background: #F8F9FA;
}

.inspired h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.inspired-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.inspired-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.3s;
}

.inspired-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.inspired-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.inspired-content {
    padding: 18px;
}

.category {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.inspired-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #2C3E50;
    line-height: 1.5;
}

/* Worldwide Section */
.worldwide {
    padding: 80px 0;
    background: #fff;
}

.worldwide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.worldwide-text h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.worldwide-text h3 {
    font-size: 20px;
    color: #f56960;
    margin-bottom: 25px;
    font-weight: 600;
}

.worldwide-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 15px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #f56960;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    line-height: 1.3;
}

.btn-discover {
    padding: 16px 40px;
    background: #f56960;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.btn-discover:hover {
    background: #E65A2B;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.worldwide-image {
    position: relative;
}

.worldwide-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Adventure Styles Section */
.adventure-styles {
    padding: 60px 0;
    background: #F8F9FA;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: #f56960;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.adventure-styles h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2C3E50;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: #E8F4F8;
    text-align: center;
}

.newsletter h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 220px;
    padding: 15px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

.newsletter-form button {
    padding: 15px 35px;
    background: #f56960;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #E65A2B;
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.checkbox-label a {
    color: #0791be;
    text-decoration: underline;
}

/* Approved Section */

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(to bottom, #2C3E50, #1A252F);
    color: #fff;
    padding: 60px 0 20px;
    overflow: hidden;
}

.footer-mountain {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 150"><path fill="%23354A5F" opacity="0.3" d="M0 80 L200 40 L400 65 L600 30 L800 55 L1000 40 L1200 65 L1200 150 L0 150 Z"/></svg>');
    background-size: cover;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    gap: 10px;
}

.footer-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.footer-form button {
    padding: 12px 25px;
    background: #f56960;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #E65A2B;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #f56960;
    transform: translateY(-3px);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    color: #f56960;
    margin-bottom: 15px;
}

.footer-col p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f56960;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        transition: left 0.3s ease;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.12);
        align-items: flex-start;
        overflow-y: auto;
        z-index: 1001;
        gap: 0;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 14px 0 !important;
        font-size: 15px !important;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .mega-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        box-shadow: none;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
    }

    .mega-menu-content {
        flex-direction: column;
        min-height: auto;
    }

    .mega-menu-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .nav-social {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
        justify-content: center;
    }

    .worldwide-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Carousel adjustments for mobile */
    .carousel-wrapper {
        padding: 0 40px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        opacity: 1;
    }

    .experience-track .experience-card {
        flex: 0 0 250px;
    }

  
    .trip-card {
        flex-wrap: wrap;
    }

    .trip-price {
        margin-right: 0;
    }

    .sites-grid {
        grid-template-columns: 1fr;
    }

    .site-card.large {
        grid-row: span 1;
        height: 280px;
    }

    .travel-options {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .trip-card {
        padding: 20px;
        gap: 15px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    /* Carousel mobile adjustments */
    .carousel-wrapper {
        padding: 0 35px;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .experience-track .experience-card {
        flex: 0 0 220px;
    }
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 1024px) {
    .worldwide-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-card.large {
        grid-column: span 2;
        height: 350px;
    }
}

/* Additional Tablet Responsive Enhancements */
@media (max-width: 768px) {

    /* Top Bar - Hide on mobile */
    .top-bar {
        display: none;
    }

    /* Header adjustments */
    .header {
        padding: 12px 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding: 10px 0;
    }

    .nav-link {
        font-size: 15px;
        padding: 5px 0;
    }

    /* Mega Menu Mobile Toggle */
    .mega-menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-item.has-mega.mobile-active .mega-menu {
        display: block;
    }

    .region-link {
        padding: 10px 20px;
        font-size: 13px;
    }

    .mega-menu-main {
        padding: 20px;
    }

    .mega-menu-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .mega-menu-column a {
        font-size: 13px;
    }

    
    .search-box {
        flex-direction: column;
    }

    .search-box input,
    .search-box button {
        padding: 15px;
    }

    /* Sections padding */
    .last-minute-deals,
    .experiences,
    .sites,
    .travel-style,
    .inspired,
    .worldwide,
    .adventure-styles,
    .newsletter {
        padding: 40px 0;
    }

    /* All section titles */
    .section-header h2,
    .experiences h2,
    .sites h2,
    .travel-style h2,
    .inspired h2,
    .worldwide-text h2,
    .adventure-styles h2,
    .newsletter h2 {
        font-size: 24px;
    }

    /* Trip cards mobile */
    .trip-days {
        min-width: 60px;
        padding: 12px;
    }

    .days-number {
        font-size: 36px;
    }

    .trip-info h3 {
        font-size: 16px;
    }

    .trip-meta {
        font-size: 13px;
        gap: 10px;
    }

    .trip-price {
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }

    .price-new {
        font-size: 24px;
    }

    .btn-join {
        width: 100%;
        padding: 12px 20px;
    }

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

    /* Tabs horizontal scroll */
    .tabs {
        gap: 3px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab,
    .explore-link {
        padding: 10px 15px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Carousel mobile improvements */
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .experience-card img {
        height: 180px;
    }

    .experience-content {
        padding: 15px;
    }

    .experience-content h3 {
        font-size: 15px;
    }

    /* Sites cards */
    .site-card {
        height: 250px;
    }

    .site-card.large {
        height: 250px;
    }

    .site-overlay {
        padding: 20px;
    }

    .site-overlay h3 {
        font-size: 16px;
    }

    /* Travel options */
    .travel-option img {
        height: 220px;
    }

    .travel-option h3 {
        font-size: 20px;
        padding: 20px 20px 10px;
    }

    .travel-option p {
        padding: 0 20px 15px;
        font-size: 14px;
    }

    .btn-outline {
        margin: 0 20px 20px;
    }

    /* Inspired grid */
    .inspired-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .inspired-card img {
        height: 150px;
    }

    .inspired-content {
        padding: 15px;
    }

    .inspired-content h4 {
        font-size: 14px;
    }

    /* Worldwide */
    .worldwide {
        padding: 50px 0;
    }

    .worldwide-text h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .worldwide-text h3 {
        font-size: 18px;
    }

    .worldwide-text p {
        font-size: 14px;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .btn-discover {
        width: 100%;
    }

    /* Newsletter mobile */
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        padding: 14px 18px;
    }

    .checkbox-label {
        font-size: 13px;
    }

    /* Footer mobile */
    .footer {
        padding: 40px 0 15px;
    }

    .footer-top {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-form {
        flex-direction: column;
    }

    .footer-form input,
    .footer-form button {
        width: 100%;
    }

    .footer-main {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 13px;
        padding-top: 20px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Section titles */
    .section-header h2,
    .experiences h2,
    .sites h2,
    .travel-style h2,
    .inspired h2,
    .worldwide-text h2,
    .adventure-styles h2,
    .newsletter h2 {
        font-size: 22px;
    }

    /* Trip cards */
    .trip-card {
        padding: 15px;
    }

    .trip-info h3 {
        font-size: 15px;
    }

    /* Carousel extra small */
    .experience-card img {
        height: 160px;
    }

    .experience-content h3 {
        font-size: 14px;
    }

    .experience-content .price {
        font-size: 13px;
    }

    /* Sites */
    .site-card {
        height: 220px;
    }

    /* Inspired - single column */
    .inspired-grid {
        grid-template-columns: 1fr;
    }

    /* Stats - single column */
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    /* Worldwide */
    .worldwide-text h2 {
        font-size: 24px;
    }

    .worldwide-text h3 {
        font-size: 16px;
    }

    /* Mega Menu - single column */
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {

    .section-header h2,
    .experiences h2,
    .sites h2 {
        font-size: 20px;
    }

    .carousel-wrapper {
        padding: 0 30px;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
    }

    .experience-track .experience-card {
        flex: 0 0 200px;
    }
}



/* Font Awesome Icon Styling */
.top-bar-content i {
    margin-right: 5px;
    font-size: 12px;
}

.nav-social a {
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-social a:hover {
    transform: translateY(-2px);
}

.location i {
    margin-right: 4px;
    font-size: 10px;
}

.stat-number i {
    margin-right: 8px;
    font-size: 0.8em;
}

.image-badge i {
    margin-right: 6px;
}

.social-icons a i {
    font-size: 18px;
}

.footer-col p i {
    margin-right: 8px;
    width: 16px;
    display: inline-block;
    color: #f56960;
}

.trip-meta i {
    margin-right: 4px;
}

.badge i {
    margin-right: 5px;
}

.btn-view-all i,
.explore-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i,
.explore-link:hover i {
    transform: translateX(3px);
}

.warning-icon {
    font-size: 20px;
    color: #FFA726;
}

.search-box button i {
    font-size: 16px;
}

.white-logo {
    max-width: 190px;
    height: 55px;
}

/* ========================================
   ALL CSS UPDATES
   ======================================== */

/* 1. WhatsApp Button Styling */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: #25D366;
    color: #fff !important;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 16px;
}

/* 2. Fix Mega Menu Z-Index and Visibility */
.mega-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    margin-top: 0px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    width: 920px;
}

.nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: flex;
    min-height: auto;
    max-height: 500px;
    overflow: visible;
}

/* 3. Reduce Vertical Spacing Site-Wide */
body {
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

p {
    line-height: 1.6;
    margin-bottom: 0.8rem;
}


.section-title {
    margin-bottom: 20px;
}

.trip-card {
    padding: 18px;
    gap: 15px;
    margin-bottom: 15px;
}

.last-minute-note {
    padding: 15px;
    margin-top: 20px;
}

/* 4. Fix Carousel - Last Item Fully Visible */
.carousel-wrapper {
    position: relative;
    padding: 0 50px;
    overflow: hidden;
}

.experience-carousel {
    overflow: hidden;
    width: 100%;
}

.experience-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.experience-track .experience-card {
    flex: 0 0 280px;
    min-width: 280px;
}

/* 5. Inspired Section Carousel */
.inspired-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.inspired-carousel-wrapper:hover .carousel-arrow {
    opacity: 1;
}

.inspired-carousel {
    overflow: hidden;
    width: 100%;
}

.inspired-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.inspired-track .inspired-card {
    flex: 0 0 250px;
    min-width: 250px;
}

.inspired-grid {
    display: none;
}

/* 6. Modern Worldwide Section */
.worldwide-modern {
    padding: 60px 0 !important;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    position: relative;
}

.worldwide-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(7, 145, 190, 0.1);
    color: #0791be;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.worldwide-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0791be;
    letter-spacing: 1px;
    margin: 15px 0;
    line-height: 1.2;
}

.section-tagline {
    font-size: 18px;
    color: #f56960;
    font-weight: 500;
    margin: 0;
}

.worldwide-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    align-items: center;
}

.worldwide-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.worldwide-img-wrapper:hover {
    transform: translateY(-10px);
}

.worldwide-img-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.badge-confidence {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.badge-confidence i {
    font-size: 20px;
    color: #0791be;
}

.badge-confidence span {
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

.worldwide-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.stats-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0791be 0%, #065a7a 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 24px;
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #0791be;
    line-height: 1;
}

.stat-text {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-top: 4px;
}

.worldwide-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-discover-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #f56960 0%, #e94b42 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(245, 105, 96, 0.3);
}

.btn-discover-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 105, 96, 0.4);
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #25D366;
    color: #fff !important;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* Hide old worldwide section */
.worldwide {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .worldwide-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .carousel-wrapper,
    .inspired-carousel-wrapper {
        padding: 0 40px;
    }

    .experience-track .experience-card {
        flex: 0 0 250px;
        min-width: 250px;
    }

    .inspired-track .inspired-card {
        flex: 0 0 220px;
        min-width: 220px;
    }

    .worldwide-header h2 {
        font-size: 32px;
    }

    .stats-modern {
        grid-template-columns: 1fr;
    }

    .worldwide-img-wrapper img {
        height: 400px;
    }

    .worldwide-cta {
        flex-direction: column;
    }

    .btn-discover-modern,
    .btn-whatsapp-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 10px 0 !important;
    }
	

    .carousel-wrapper,
    .inspired-carousel-wrapper {
        padding: 0 35px;
    }

    .experience-track .experience-card {
        flex: 0 0 220px;
        min-width: 220px;
    }

    .inspired-track .inspired-card {
        flex: 0 0 200px;
        min-width: 200px;
    }
}


/* Global Box Sizing */
* {
    box-sizing: border-box;
}

/* Prevent Horizontal Scroll */
html,
body {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Global Container Spacing - Desktop (13-inch laptop and larger) */


/* Top Bar uses base container padding */

.top-bar-content {
    max-width: 100%;
}

/* Header uses base container padding */

.header-content {
    max-width: 100%;
    width: 100%;
}

/* Hero Section Spacing */
/* Hero content uses base container padding now */

/* All Section Containers now use base container padding */

/* Footer uses base container padding now */

/* Carousel Wrapper Spacing - Reduced for consistency */
.carousel-wrapper,
.inspired-carousel-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0;
    margin-right: 0;
}

/* Grid Containers */
.sites-grid,
.inspired-grid,
.travel-options,
.adventure-grid {
    max-width: 100%;
    margin: 0 auto;
}

/* Mega Menu Spacing */
.mega-menu {
    max-width: 1200px;
}

.mega-menu-content {
    padding: 0;
}

/* Section Headers and Titles */
.section-header,
.experiences h2,
.sites h2,
.travel-style h2,
.inspired h2,
.worldwide-header,
.adventure-styles h2,
.newsletter h2 {
    padding-left: 0;
    padding-right: 0;
}

/* Cards and Content Boxes */
.trip-card,
.experience-card,
.site-card,
.inspired-card,
.travel-option {
    max-width: 100%;
}

/* Buttons and CTAs */
.btn-view-all,
.btn-join,
.btn-discover,
.btn-discover-modern,
.btn-whatsapp-large,
.newsletter-form button {
    max-width: 100%;
}

/* Worldwide Modern Grid Spacing */
.worldwide-grid {
    max-width: 100%;
    padding: 0;
}

.worldwide-image-col,
.worldwide-content-col {
    padding-left: 0;
    padding-right: 0;
}

/* Stats Modern Grid */
.stats-modern {
    max-width: 100%;
}

/* ========================================
   TABLET RESPONSIVE (768px - 1024px)
   ======================================== */
@media (max-width: 1024px) {
    .carousel-wrapper,
    .inspired-carousel-wrapper {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}

/* ========================================
   MOBILE RESPONSIVE (481px - 767px)
   ======================================== */
@media (max-width: 767px) {
    .carousel-wrapper,
    .inspired-carousel-wrapper {
        padding-left: 45px !important;
        padding-right: 45px !important;
    }

    /* Mobile Navigation */
    .main-nav {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ========================================
   SMALL MOBILE (320px - 480px)
   ======================================== */
@media (max-width: 480px) {
    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .carousel-wrapper,
    .inspired-carousel-wrapper {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

/* ========================================
   LARGE SCREENS (1400px+)
   ======================================== */
@media (min-width: 1400px) {

    .carousel-wrapper,
    .inspired-carousel-wrapper {
        padding-left: 70px !important;
        padding-right: 70px !important;
    }
}

/* ========================================
   EXTRA LARGE SCREENS (1920px+)
   ======================================== */
@media (min-width: 1920px) {
    .carousel-wrapper,
    .inspired-carousel-wrapper {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}

/* ========================================
   ENSURE NO CONTENT TOUCHES EDGES
   ======================================== */

/* All text elements */
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
div {
    max-width: 100%;
}

/* All images */
img {
    max-width: 100%;
    height: auto;
}

/* Forms and inputs */
input,
textarea,
select,
button {
    max-width: 100%;
}

/* Navigation items */
.nav-link {
    padding: 10px 5px;
}

/* Ensure mega menu doesn't overflow */
@media (max-width: 1024px) {
    .mega-menu {
        max-width: 90vw;
        left: 5vw !important;
        right: 5vw !important;
    }
}

/* Footer columns */
.footer-col {
    padding: 0;
    max-width: 100%;
}

/* Newsletter form */
.newsletter-form {
    max-width: 100%;
}

/* Trip cards */
.trip-card {
    margin-bottom: 20px;
}

/* Stat boxes */
.stat-box {
    padding: 20px 15px;
}

/* Worldwide CTA buttons */
.worldwide-cta {
    flex-wrap: wrap;
}

/* Section padding for breathing room */


/* Search box in hero */


@media (max-width: 767px) {
    .search-box {
        width: 100%;
    }
}

/* ========================================
   COMPREHENSIVE WEBSITE FIXES
   ======================================== */

/* 1. CAROUSEL FULL WIDTH WITH OVERLAY BUTTONS */

/* Carousel takes full width */
.carousel-wrapper,
.inspired-carousel-wrapper {
    position: relative;
    padding: 0 !important;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.experience-carousel,
.inspired-carousel {
    width: 100%;
    overflow: hidden;
}

.experience-track,
.inspired-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 10px 0 20px 0;
}

/* Cards take proper width */
.experience-track .experience-card {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    max-width: calc(25% - 15px);
}

.inspired-track .inspired-card {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    max-width: calc(25% - 15px);
}

/* Overlay arrows on carousel */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-wrapper:hover .carousel-arrow,
.inspired-carousel-wrapper:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow:hover {
    background: #f56960;
    border-color: #f56960;
    color: #fff;
    transform: translateY(-50%) scale(1.15);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-arrow:hover svg {
    stroke: #fff;
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-arrow:disabled {
    opacity: 0 !important;
    cursor: not-allowed;
}

/* 2. WORLDWIDE-MODERN IN CONTAINER */

.worldwide-modern .worldwide-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.worldwide-modern {
    padding: 60px 0 !important;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    position: relative;
    width: 100%;
}

.worldwide-header {
    text-align: center;
    margin-bottom: 50px;
}

.worldwide-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    align-items: center;
    max-width: 100%;
    width: 100%;
}

.worldwide-img-wrapper,
.worldwide-content-col {
    max-width: 100%;
    width: 100%;
}



/* 4. FIXED HEADER WITH MEGA MENU */

body {
    padding-top: 0;
}


.top-bar {
    position: relative;
    z-index: 1001;
}

/* Mega menu positioning */
.mega-menu {
    position: absolute;
    top: 61px;
    left: 135px;
    transform: translateX(-50%) translateY(-10px);
    margin-top: 0;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    width: 920px;
    max-width: 90vw;
}
.nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 5. ALL CONTENT VISIBLE AND ALIGNED */

/* Prevent horizontal scroll */
html,
body {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* All sections */
section {
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* All images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* All grids */
.sites-grid,
.inspired-grid,
.travel-options,
.stats-modern,
.footer-main,
.adventure-grid {
    max-width: 100%;
    width: 100%;
}

/* All text elements */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
    max-width: 100%;
}

/* All buttons */
button,
.btn,
.btn-view-all,
.btn-join,
.btn-discover,
.btn-discover-modern,
.btn-whatsapp-large {
    max-width: 100%;
}

/* 6. RESPONSIVE BREAKPOINTS */

/* TABLET (768px - 1023px) */
@media (max-width: 1023px) {

    
    .worldwide-modern .worldwide-wrapper {
        padding: 0 30px;
    }


    .experience-track .experience-card {
        flex: 0 0 calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }

    .inspired-track .inspired-card {
        flex: 0 0 calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }

    .worldwide-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

/* MOBILE (481px - 767px) */
@media (max-width: 767px) {
    .worldwide-modern .worldwide-wrapper {
        padding: 0 20px;
    }

    .experience-track .experience-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .inspired-track .inspired-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .header {
        position: relative;
    }

    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
        box-shadow: none;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        display: none;
    }

    .nav-item.has-mega.mobile-active .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .stats-modern {
        grid-template-columns: 1fr;
    }
}

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

    .worldwide-modern .worldwide-wrapper {
        padding: 0 15px;
    }

   
    .experience-track .experience-card {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
        max-width: calc(100% - 0px);
    }

    .inspired-track .inspired-card {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
        max-width: calc(100% - 0px);
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* LARGE SCREENS (1400px+) */
@media (min-width: 1400px) {

    .worldwide-modern .worldwide-wrapper {
        max-width: 1320px;
        padding: 0 50px;
    }
}

/* EXTRA LARGE (1920px+) */
@media (min-width: 1920px) {

    .worldwide-modern .worldwide-wrapper {
        max-width: 1600px;
        padding: 0 60px;
    }
}

/* 7. ENSURE FUTURE PAGES FOLLOW SAME RULES */

/* Global rules for any new content */
main>section,
main>div,
article,
aside {
    max-width: 100%;
}



/* Cards and content boxes */
.card,
.box,
.panel,
.widget {
    max-width: 100%;
}

/* Forms */
form {
    max-width: 100%;
}

input,
textarea,
select {
    max-width: 100%;
    box-sizing: border-box;
}

/* Navigation consistency */
nav {
    max-width: 100%;
}

/* Footer consistency */
footer {
    width: 100%;
    max-width: 100%;
}

/* 8. SPECIFIC SECTION FIXES */

/* Sites grid proper spacing */

.sites-grid {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.travel-options {
    max-width: 100%;
    width: 100%;
}


.newsletter-form {
    max-width: 1200px;
    margin: 0 auto;
}

/* 9. Z-INDEX HIERARCHY */
.carousel-arrow {
    z-index: 100;
}

.mega-menu {
    z-index: 999;
}


.top-bar {
    z-index: 1001;
}

.mobile-toggle {
    z-index: 1002;
}

/* 10. CARD VISIBILITY AND SPACING */
.experience-card,
.inspired-card,
.site-card,
.travel-option,
.inspired-card {
    overflow: visible;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.experience-track,
.inspired-track {
    padding-bottom: 20px;
}

/* ========================================
   NEW PAGES STYLES
   ======================================== */

/* Page Hero Section */
.page-hero {
    position: relative;
    height: 400px;
    background-image:
        linear-gradient(135deg, rgba(7, 145, 190, 0.8) 0%, rgba(5, 90, 122, 0.8) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 1200px;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: #fff;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb i {
    font-size: 10px;
}

/* Package Filters */
.package-filters {
    padding: 30px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.filter-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 25px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0791be;
    border-color: #0791be;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 145, 190, 0.3);
}

/* Packages Grid */
.packages-section {
    padding: 60px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.package-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.package-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    background: #f56960;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.package-badge.new {
    background: #0791be;
}

.package-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-content {
    padding: 25px;
}

.package-category {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(7, 145, 190, 0.1);
    color: #0791be;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.package-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.package-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.package-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.package-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #666;
}

.package-features i {
    color: #f56960;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.package-price .from {
    font-size: 12px;
    color: #999;
}

.package-price .price {
    font-size: 28px;
    font-weight: 800;
    color: #0791be;
}

.btn-package {
    padding: 12px 24px;
    background: linear-gradient(135deg, #f56960 0%, #e94b42 100%);
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 105, 96, 0.4);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-numbers {
    width: 45px;
    height: 45px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
	display:flex;
	align-items:center;
	justify-content:center;
}

.page-numbers:hover:not(:disabled),
.page-numbers.current {
    background: #0791be;
    border-color: #0791be;
    color: #fff;
}

.page-numbers:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0791be 0%, #065a7a 100%);
    text-align: center;
    color: #fff;
    padding-bottom: 160px;
    margin-bottom: -110px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary {
    background: #fff;
    color: #0791be;
}

.btn-cta-primary:hover {
    background: #f56960;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: #25D366;
}

/* Footer Enhanced */
.footer {
    background: #2C3E50;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #f56960;
}

.footer-col i {
    margin-right: 8px;
    color: #0791be;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Active nav link */
.nav-link.active {
    color: #f56960;
}

/* Responsive */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .page-hero {
        height: 350px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .filter-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 28px;
    }

    .package-content h3 {
        font-size: 18px;
    }
}

/* ========================================
   ADDITIONAL PAGES STYLES
   ======================================== */

/* About Page Specific */
.about-hero {
    background-image:
        linear-gradient(135deg, rgba(7, 145, 190, 0.8) 0%, rgba(5, 90, 122, 0.8) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=600&fit=crop');
}

.about-page-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.badge-number {
    font-size: 36px;
    font-weight: 800;
    color: #0791be;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.story-features {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.story-feature i {
    color: #f56960;
    font-size: 18px;
}

.mission-vision {
    padding: 60px 0;
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0791be, #065a7a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.mv-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.about-page-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #0791be, #065a7a);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-item .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.team-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    margin: 15px 0;
}
.about-left .section-header h2 {
    margin: 0px !important;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.member-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s;
}

.member-social a:hover {
    background: #f56960;
}

.team-member h4 {
    font-size: 18px;
    padding: 20px 20px 5px;
    margin: 0;
}

.member-role {
    font-size: 14px;
    color: #0791be;
    font-weight: 600;
    padding: 0 20px;
    margin-bottom: 10px;
}

.member-bio {
    font-size: 13px;
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.6;
}

.why-choose {
    padding: 40px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card i {
    font-size: 48px;
    color: #0791be;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Contact Page */
.contact-hero {
    background-image:
        linear-gradient(135deg, rgba(7, 145, 190, 0.8) 0%, rgba(5, 90, 122, 0.8) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=600&fit=crop');
}

.contact-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-info-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0791be, #065a7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.contact-info-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 50px;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2C3E50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0791be;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0791be, #065a7a);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.quick-contact-wrapper {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 15px;
}

.quick-contact-wrapper h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.quick-contact-buttons {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

.quick-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.quick-btn.phone {
    background: #0791be;
    color: #fff;
}

.quick-btn.email {
    background: #f56960;
    color: #fff;
}

.quick-btn:hover {
    transform: translateX(5px);
}

.quick-btn i {
    font-size: 28px;
}

.office-hours {
    margin: 30px 0;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
}

.office-hours h4 {
    margin-bottom: 15px;
}

.office-hours ul {
    list-style: none;
    margin-bottom: 15px;
}

.office-hours li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-note {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.social-connect {
    margin-top: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.instagram {
    background: #E1306C;
}

.social-link.twitter {
    background: #1DA1F2;
}

.social-link.youtube {
    background: #FF0000;
}

.social-link:hover {
    transform: translateY(-3px);
}

.map-section {
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.map-section p {
    text-align: center;
    margin-bottom: 40px;
}

.map-wrapper {
    height: 450px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 10px;
}

.faq-question {
    display: flex;
    gap: 15px;
}

.faq-question i {
    color: #0791be;
    font-size: 24px;
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 18px;
}

/* Package Detail Page */
.package-detail-hero {
    position: relative;
    height: 450px;
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
}

.package-detail-header h1 {
    font-size: 48px;
    color: #fff;
    margin: 15px 0;
}

.package-meta {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.package-meta span {
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-overview {
    padding: 60px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
}

.package-gallery {
    margin-bottom: 40px;
}

.gallery-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.gallery-thumbs img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-thumbs img:hover {
    transform: scale(1.05);
}

.detail-section {
    margin-bottom: 50px;
}

.detail-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2C3E50;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.highlight-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #0791be, #065a7a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.highlight-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.itinerary-timeline {
    position: relative;
}

.itinerary-day {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.itinerary-day::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: -30px;
    width: 2px;
    background: #e0e0e0;
}

.itinerary-day:last-child::before {
    display: none;
}

.day-number {
    position: absolute;
    left: -42px;
    top: 0;
    width: 45px;
    height: 45px;
    background: #0791be;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.day-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.day-details {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.day-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.inclusion-box,
.exclusion-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.inclusion-box h3,
.exclusion-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusion-box h3 i {
    color: #25D366;
}

.exclusion-box h3 i {
    color: #f56960;
}

.inclusion-box ul,
.exclusion-box ul {
    list-style: none;
}

.inclusion-box li,
.exclusion-box li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.inclusion-box li::before {
    content: '✓ ';
    color: #25D366;
    font-weight: 700;
    margin-right: 8px;
}

.exclusion-box li::before {
    content: '✗ ';
    color: #f56960;
    font-weight: 700;
    margin-right: 8px;
}

.booking-box {
    position: sticky;
    top: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.price-display {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.from-text {
    font-size: 14px;
    color: #999;
}

.price-amount {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #0791be;
    margin: 10px 0;
}

.per-person {
    font-size: 14px;
    color: #666;
}

.booking-features {
    padding: 25px 0;
    border-bottom: 2px solid #f0f0f0;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    font-size: 24px;
    color: #0791be;
}

.feature-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.feature-item span {
    font-size: 14px;
    color: #666;
}

.booking-actions {
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-book-whatsapp {
    padding: 16px;
    background: #25D366;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-book-whatsapp:hover {
    background: #20BA5A;
}

.btn-book-call,
.btn-book-inquiry {
    padding: 14px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-book-call {
    background: #0791be;
    color: #fff;
}

.btn-book-inquiry {
    background: #f8f9fa;
    color: #2C3E50;
    border: 2px solid #e0e0e0;
}

.help-box {
    margin-top: 30px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.help-box i {
    font-size: 48px;
    color: #0791be;
    margin-bottom: 15px;
}

.btn-help {
    display: inline-block;
    padding: 12px 30px;
    background: #0791be;
    color: #fff;
    border-radius: 25px;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-help:hover {
    background: #065a7a;
}

/* Legal Pages */
.page-hero-small {
    padding: 80px 0;
    background: linear-gradient(135deg, #0791be, #065a7a);
    text-align: center;
    color: #fff;
}

.page-hero-small h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.legal-content {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
}

.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-nav {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.sidebar-nav h4 {
    margin-bottom: 20px;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 12px;
}

.sidebar-nav a {
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

.sidebar-nav a:hover {
    color: #0791be;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2C3E50;
}



.contact-info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info-box p {
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 1024px) {

    .story-content,
    .contact-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {

    .mv-grid,
    .features-grid,
    .team-grid,
    .stats-grid,
    .contact-info-grid,
    .highlights-grid,
    .inclusions-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   HOMEPAGE REDESIGNED SECTIONS
   ======================================== */

/* Expert Training Section */
.expert-training {
    background: #fff;
}

.training-grid {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 60px;
    align-items: center;
}

.training-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.training-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.training-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.training-badge i {
    font-size: 24px;
    color: #f56960;
}

.training-badge span {
    font-weight: 700;
    color: #2C3E50;
    font-size: 15px;
}

.training-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #2C3E50;
    margin: 15px 0 20px;
    line-height: 1.3;
}

.training-content>p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.training-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.training-feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.training-feature:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.training-feature i {
    font-size: 32px;
    color: #f56960;
    flex-shrink: 0;
}

.training-feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #2C3E50;
}

.training-feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.btn-join-now {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #f56960 0%, #e94b42 100%);
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(245, 105, 96, 0.3);
}

.btn-join-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 105, 96, 0.4);
}

/* Travel Style Modern */
.travel-style-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 40px;
    font-weight: 800;
    color: #2C3E50;
    margin: 15px 0;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
}

.travel-style-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.style-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
    border: 3px solid transparent;
}

.style-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0791be;
}

.style-card.featured {
    background: linear-gradient(135deg, #0791be 0%, #065a7a 100%);
    transform: scale(1.05);
}

.style-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.style-card.featured h3,
.style-card.featured p,
.style-card.featured .style-features li {
    color: #fff;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f56960;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 105, 96, 0.4);
}

.style-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0791be 0%, #065a7a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    transition: all 0.3s;
}

.style-card.featured .style-icon {
    background: rgba(255, 255, 255, 0.2);
}

.style-card:hover .style-icon {
    transform: rotateY(360deg);
}

.style-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2C3E50;
}

.style-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 60px;
}

.style-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.style-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.style-features i {
    color: #25D366;
    font-size: 16px;
}

.style-card.featured .style-features i {
    color: #fff;
}

.btn-style {
    display: block;
    padding: 14px 28px;
    background: #0791be;
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.style-card.featured .btn-style {
    background: #fff;
    color: #0791be;
}

.btn-style:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Newsletter Modern */
.newsletter-modern {
    padding: 80px 0;
    background-image: linear-gradient(135deg, rgba(7, 145, 190, 0.95) 0%, rgba(5, 90, 122, 0.95) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-bottom: 160px;
    margin-bottom: -110px;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 145, 190, 0.1);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 0.67fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-left {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    color: #fff;
}

.newsletter-left i {
    font-size: 60px;
    color: #fff;
    opacity: 0.9;
}

.newsletter-left h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.newsletter-left p {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.7;
}

.newsletter-form-modern {
    background: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.form-inputs form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    margin-bottom: 20px;
}

.form-inputs form input {
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    min-width: 0;
}

.form-inputs form input:focus {
    outline: none;
    border-color: #fff;
    background: #fff;
}

.form-inputs form .tnp-field-button input {
    padding: 16px 24px;
    background: linear-gradient(135deg, #f56960 0%, #e94b42 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    white-space: nowrap;
}

.form-inputs form .tnp-field-button input:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 105, 96, 0.4);
}
.tnp-field label {
    display: none !important;
}
.tnp-field input {
    height: 55px;
}
.tnp-field.tnp-field-button {
    margin-bottom: 0px !important;
}
.tnp.tnp-subscription {
    margin: 0px;
    max-width: none;
}
.checkbox-label-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
}

.checkbox-label-modern input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label-modern a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

/* Approved Modern */
.approved-modern {
    padding: 60px 0;
    background: #fff;
}

.approved-header {
    text-align: center;
    margin-bottom: 50px;
}

.approved-header h3 {
    font-size: 32px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 10px;
}

.approved-header p {
    font-size: 16px;
    color: #666;
}

.approved-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.approved-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 15px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.approved-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.approved-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0791be 0%, #065a7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

.approved-item span {
    font-size: 13px;
    font-weight: 600;
    color: #2C3E50;
    text-align: center;
}

/* Sites Grid Update for 2 Large Cards */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.site-card.large:first-child {
    grid-row: 1 / 3;
}

.site-card.large:nth-child(2) {
    grid-row: 1 / 3;
}

/* Responsive */
@media (max-width: 1024px) {

    .training-grid,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .travel-style-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .style-card.featured {
        transform: scale(1);
    }

    .approved-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .training-image img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .training-features {
        grid-template-columns: 1fr;
    }

    .travel-style-grid {
        grid-template-columns: 1fr;
    }

    .form-inputs {
        grid-template-columns: 1fr;
    }

    .approved-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-left {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-left h2 {
        font-size: 28px;
    }

    .training-content h2 {
        font-size: 28px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .approved-logos {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PACKAGE DETAIL PAGE - STICKY ANCHOR NAV
   ======================================== */

/* Simple Package Header */
.package-header-simple {
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
}

.package-header-simple .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.package-header-simple .breadcrumb a {
    color: #0791be;
    transition: color 0.3s;
}

.package-header-simple .breadcrumb a:hover {
    color: #f56960;
}

.package-header-simple .breadcrumb i {
    font-size: 10px;
    color: #999;
}

.package-header-simple h1 {
    font-size: 42px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.package-meta-simple {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.package-meta-simple span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
}

.package-meta-simple i {
    color: #0791be;
    font-size: 16px;
}

/* Sticky Anchor Navigation */
.anchor-nav {
    position: sticky;
    top: 80px;
    background: #fff;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    margin: 40px 0;
    z-index: 100;
    transition: all 0.3s;
}

.anchor-nav.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.anchor-nav-container {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.anchor-nav-container::-webkit-scrollbar {
    display: none;
}

.anchor-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 25px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.anchor-link i {
    font-size: 16px;
    color: #0791be;
}

.anchor-link:hover {
    color: #0791be;
    background: #f8f9fa;
}

.anchor-link.active {
    color: #0791be;
    border-bottom-color: #0791be;
    background: #f8f9fa;
}

.anchor-link.active i {
    color: #f56960;
}

/* Smooth scroll offset for sections */
.detail-section {
    scroll-margin-top: 150px;
}

#booking {
    scroll-margin-top: 150px;
}

/* Update Package Gallery */
.package-gallery {
    margin-bottom: 0;
}

/* Revert Sites Grid CSS */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.site-card.large {
    grid-row: span 2;
    height: 620px;
}

/* Mobile Responsive for Anchor Nav */
@media (max-width: 1024px) {
    .anchor-nav {
        top: 60px;
    }

    .detail-section,
    #booking {
        scroll-margin-top: 120px;
    }
}

@media (max-width: 767px) {
    .package-header-simple h1 {
        font-size: 32px;
    }

    .anchor-nav {
        top: 0;
        position: relative;
        margin: 30px 0;
    }

    .anchor-link {
        padding: 16px 20px;
        font-size: 13px;
    }

    .anchor-link span {
        display: none;
    }

    .anchor-link i {
        font-size: 20px;
    }

    .detail-section,
    #booking {
        scroll-margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .package-header-simple h1 {
        font-size: 28px;
    }

    .package-meta-simple {
        flex-direction: column;
        gap: 12px;
    }

    .anchor-link {
        padding: 14px 16px;
    }
}

/* ========================================
   NEW FOOTER WITH APPROVALS & MOUNTAIN
======================================== */

/* Approved By Section */
.approved {
    background: #f8f9fa;
    padding: 50px 0 0 0;
    text-align: center;
}

.approved h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.approved-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.approved-logo {
    height: 50px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.approved-logo:hover {
    opacity: 1;
}

/* Mountain Illustration with Trekkers */
/* Newsletter Section */
.footer-newsletter-section {
    background: #3a3a3a;
    padding: 50px 0;
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.newsletter-form-group {
    flex: 1;
}

.newsletter-form-group h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.newsletter-inputs {
    display: flex;
    gap: 10px;
}

.newsletter-inputs input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: #4a4a4a;
    color: #fff;
}

.newsletter-inputs input::placeholder {
    color: #999;
}

.newsletter-submit {
    padding: 14px 30px;
    background: linear-gradient(135deg, #f56960 0%, #e55a52 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.newsletter-submit:hover {
    background: linear-gradient(135deg, #e55a52 0%, #d54944 100%);
    transform: translateY(-2px);
}

.stay-connected {
    text-align: right;
}

.stay-connected h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.social-icons-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-icons-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.social-icons-footer a:hover {
    transform: translateY(-3px);
}

.social-icons-footer .facebook {
    background: #1877f2;
}

.social-icons-footer .twitter {
    background: #1da1f2;
}

.social-icons-footer .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icons-footer .linkedin {
    background: #0077b5;
}

.social-icons-footer .youtube {
    background: #ff0000;
}

/* Footer Main Content */
.footer-new {
    background: #2a2a2a;
    color: #ccc;
    padding: 30px 0 30px 0;
}
.footer-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-item i {
    color: #f56960;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: #f56960;
    transform: translateX(5px);
}

.footer-bottom-new {
    border-top: 1px solid #444;
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #999;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .stay-connected {
        text-align: center;
    }

    .social-icons-footer {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-inputs {
        flex-direction: column;
    }

    .approved-logos {
        gap: 30px;
    }

    .approved-logo {
        height: 40px;
    }
}

/* Footer Social Icons in First Column */
.footer-social-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-social-section h5 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    line-height: 1;
}

.footer-social-icons a i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.footer-social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-social-icons a.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.footer-social-icons a.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.footer-social-icons a.instagram:hover {
    background: #E1306C;
    border-color: #E1306C;
}

.footer-social-icons a.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.footer-social-icons a.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

/* Sites Section Responsive */
@media (max-width: 1024px) {
    .sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .sites-grid {
        grid-template-columns: 1fr;
    }

    .sites h2 {
        font-size: 28px;
    }
}

/* ========================================
   FAQ HOMEPAGE SECTION
======================================== */
.faq-homepage {
    background: #f8f9fa;
	padding-bottom:60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.67fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Content */
.faq-left {
    align-self: start;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0791be;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.faq-label i {
    font-size: 16px;
}

.faq-left h2 {
    font-size: 38px;
    font-weight: 800;
    color: #2C3E50;
    line-height: 1.2;
    margin-bottom: 20px;
}

.faq-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.btn-view-faqs {
    padding: 14px 28px;
    background: #0791be;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-view-faqs:hover {
    background: #065a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(7, 145, 190, 0.3);
}

/* Right Accordion */
.faq-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-item-home {
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.faq-item-home:hover {
    border-color: #0791be;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item-home.active {
    border-color: #f56960;
}

.faq-question-home {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.faq-number {
    font-size: 24px;
    font-weight: 700;
    color: #f56960;
    flex-shrink: 0;
    width: 40px;
}

.faq-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #666;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item-home.active .faq-icon {
    transform: rotate(45deg);
    color: #f56960;
}

.faq-answer-home {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item-home.active .faq-answer-home {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-home p {
    padding: 0 25px 20px 80px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-left {
        position: static;
    }
}

@media (max-width: 767px) {
    .faq-left h2 {
        font-size: 28px;
    }

    .faq-number {
        font-size: 20px;
        width: 30px;
    }

    .faq-text {
        font-size: 14px;
    }

    .faq-answer-home p {
        padding-left: 60px;
    }
}

/* ========================================
   ADVENTURE TRAVEL STYLES SECTION
======================================== */
.adventure-travel-styles {
    padding: 60px 0;
    background: #ffffff;
}

.adventure-travel-styles .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.adventure-travel-styles .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0791be;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.adventure-travel-styles .section-label i {
    font-size: 16px;
}

.adventure-travel-styles h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2C3E50;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* Adventure Grid Layout */
.adventure-grid {
    display: grid;
    grid-template-columns: 1.56fr 1.56fr 0.94fr 0.94fr;
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
    margin-top: 40px;
}

/* Adventure Card */
.adventure-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.adventure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Card Sizes */
.adventure-card.large {
    grid-column: span 1;
    grid-row: span 2;
}

.adventure-card.medium {
    grid-column: span 2;
    grid-row: span 1;
}

/* Card Image */
.adventure-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.adventure-card:hover img {
    transform: scale(1.08);
}

/* Card Overlay */
.adventure-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    color: white;
    transition: padding 0.3s ease;
}

.adventure-card:hover .adventure-overlay {
    padding-bottom: 35px;
}

.adventure-overlay h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.adventure-card.medium .adventure-overlay h3 {
    font-size: 22px;
}
.adventure-overlay p {
    margin-bottom: 0px !important;
	font-size:12px;
}
.adventure-overlay button {
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-top: 10px;
	background:#f56960;
	color:#fff;
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: inline-block;
    background: white;
    color: #2C3E50;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.adventure-card:hover .package-badge {
    background: #0791be;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .adventure-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 200px);
    }

    .adventure-card.large {
        grid-column: span 1;
        grid-row: span 2;
    }

    .adventure-card.medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .adventure-card.medium:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .adventure-travel-styles {
        padding: 60px 0;
    }

    .adventure-travel-styles h2 {
        font-size: 36px;
    }

    .adventure-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 16px;
    }

    .adventure-card.large,
    .adventure-card.medium {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .adventure-travel-styles {
        padding: 50px 0;
    }

    .adventure-travel-styles h2 {
        font-size: 28px;
    }

    .adventure-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .adventure-card {
        min-height: 250px;
    }

    .adventure-overlay h3 {
        font-size: 22px;
    }

    .adventure-card.medium .adventure-overlay h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .adventure-overlay {
        padding: 20px 18px;
    }

    .adventure-overlay h3 {
        font-size: 20px;
    }

    .package-badge {
        font-size: 13px;
        padding: 6px 14px;
    }
}


/* ========================================
   ABOUT US SECTION
======================================== */

/* About Us Section - Kandoo Style */
.about-us-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* About Card */
.about-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* World Map Background */
.world-map-overlay {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.05;
    width: 800px;
    height: 500px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><path fill="%23d4b896" d="M100,100 L200,80 L300,120 L350,100 L400,140 L450,120 L500,100 L550,80 L600,100 L650,120 L700,100 L750,120 L800,140 L800,300 L750,280 L700,300 L650,280 L600,300 L550,320 L500,300 L450,280 L400,300 L350,280 L300,300 L200,320 L100,300 Z M150,150 L180,160 L200,150 L220,140 L180,130 Z M400,180 L450,190 L480,180 L460,170 L430,180 Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

/* Header */
/* about-section-header replaced by section-header */

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: #2C3E50;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}

.about-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f56960, #0791be);
    border-radius: 2px;
    margin-top: 12px;
}

.about-subtitle {
    font-size: 18px;
    color: #4a4a4a;
    font-weight: 400;
    margin-top: 6px;
    margin-bottom: 0;
}

.about-card .section-header {
    margin-bottom: 30px;
}

/* Main Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Left Content */
.about-left {
    padding-right: 20px;
}

.about-story {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 3px solid #0791be;
}

.about-story:last-of-type {
    border-left-color: #f56960;
}

.story-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0791be;
    margin: 30px 0 20px 0;
}

.story-quote {
    font-style: italic;
    padding-left: 20px;
    border-left: 4px solid #0791be;
    color: #2C3E50;
    font-weight: 500;
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.8;
}

/* Stats Row */
.about-stats {
    display: flex;
    gap: 0;
    margin: 30px 0;
    background: #f4f6f8;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #e4e6e8;
}

.about-stat {
    text-align: center;
    flex: 1;
    padding: 24px 16px;
    position: relative;
}

.about-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(7, 145, 190, 0.15);
}

.about-stat .stat-number {
    font-size: 38px;
    font-weight: 800;
    color: #0791be;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.about-stat .stat-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1.4;
}

/* Right Content - Image Slider */
.about-right {
    position: relative;
}

.about-image-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(7, 145, 190, 0.08);
    height: 600px;
    outline: 3px solid rgba(7, 145, 190, 0.15);
    outline-offset: 6px;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-image.active {
    opacity: 1;
    z-index: 1;
}

/* Carousel Dots */
.image-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.image-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.image-dots .dot.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* Curved Text Badge */
.curved-badge {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    z-index: 10;
}

.curved-badge svg {
    width: 100%;
    height: 100%;
    animation: rotate-badge 20s linear infinite;
}

@keyframes rotate-badge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.curved-badge text {
    fill: #4a4a4a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* Why Choose Features - Three Boxes */
.why-choose-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.feature-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid rgba(7, 145, 190, 0.1);
    border-bottom: 3px solid #f56960;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-bottom-color: #0791be;
}

.feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: #f56960;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #0791be;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #065a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 145, 190, 0.3);
}

.btn-secondary {
    background: white;
    color: #0791be;
    border: 2px solid #0791be;
}

.btn-secondary:hover {
    background: #0791be;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 145, 190, 0.2);
}

/* Responsive */
@media (max-width: 968px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-stats {
        justify-content: space-between;
        gap: 30px;
    }

    .about-title {
        font-size: 36px;
    }

    .curved-badge {
        display: none;
    }

    .about-left {
        padding-right: 0;
    }

    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {

    .about-title {
        font-size: 28px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .about-stat .stat-number {
        font-size: 28px;
    }

    .about-stats {
        gap: 20px;
    }

    .about-image-slider {
        height: 400px;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 25px;
    }

    .feature-icon {
        margin-bottom: 10px;
    }
}
.region-trip-wrapper {
    display: flex;
    column-gap: 10px;
}

/* ================================================
   FINAL MOBILE FIXES — ONLY FOR ≤768px & ≤480px
   Uses !important on key rules to override conflicts
================================================ */

/* ========================================
   MOBILE & TABLET FIXES — max-width 768px & 480px ONLY
   Desktop unchanged. !important beats specificity conflicts.
======================================== */

@media (max-width: 768px) {

    /* ── 1. HIDE LAST MINUTE DEALS ── */
    section.last-minute-deals {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    /* ── 3. HERO ── */
   
    .search-box {
        flex-direction: column;
    }

    .search-box button {
        width: 100%;
        justify-content: center;
        border-radius: 0 0 8px 8px;
    }

    /* ── 4. EXPERIENCES CAROUSEL — native scroll snap on mobile ── */
    .carousel-wrapper {
        padding: 0 !important;
        overflow: visible !important;	
    }
	
    /* Arrows on sides — same as desktop */
    .carousel-wrapper {
        padding-bottom: 0 !important;
    }

    .carousel-wrapper .carousel-arrow {
        display: flex !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        width: 36px !important;
        height: 36px !important;
        opacity: 1 !important;
    }

    .carousel-wrapper .carousel-prev {
        left: 0 !important;
        transform: translateY(-50%) !important;
    }

    .carousel-wrapper .carousel-next {
        right: 0 !important;
        left: auto !important;
        transform: translateY(-50%) !important;
    }

    .carousel-wrapper .carousel-arrow:hover {
        transform: translateY(-50%) scale(1.05) !important;
    }

    .experience-carousel {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding: 0 16px !important;
    }

    .experience-carousel::-webkit-scrollbar {
        display: none !important;
    }

    .experience-track {
        gap: 14px !important;
        padding-right: 16px !important;
    }

    .experience-track .experience-card {
        flex: 0 0 72vw !important;
        min-width: 0 !important;
        max-width: 72vw !important;
        scroll-snap-align: start !important;
    }

    /* ── 5. INSPIRED CAROUSEL — native scroll snap on mobile ── */
    .inspired-carousel-wrapper {
        padding: 0 !important;
        overflow: visible !important;
    }

    /* Arrows on sides — same as desktop */
    .inspired-carousel-wrapper {
        overflow: visible !important;
    }

    .inspired-carousel-wrapper .carousel-arrow {
        display: flex !important;
        top: 50% !important;
        bottom: auto !important;
        width: 36px !important;
        height: 36px !important;
        opacity: 1 !important;
    }

    .inspired-carousel-wrapper .inspired-prev {
        left: 0 !important;
        transform: translateY(-50%) !important;
    }

    .inspired-carousel-wrapper .inspired-next {
        right: 0 !important;
        left: auto !important;
        transform: translateY(-50%) !important;
    }

    .inspired-carousel {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .inspired-carousel::-webkit-scrollbar {
        display: none !important;
    }

    .inspired-track {
        gap: 14px !important;
        padding-right: 16px !important;
    }

    .inspired-track .inspired-card {
        flex: 0 0 72vw !important;
        min-width: 0 !important;
        max-width: 72vw !important;
        scroll-snap-align: start !important;
    }

    /* ── 6. SECTION HEADERS ── */
    .section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px;
    }

    .section-header h2 {
        font-size: 22px !important;
    }

    .btn-view-all {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* ── 7. ABOUT US ── */
 

    .about-card {
        padding: 28px 20px !important;
        border-radius: 16px !important;
    }

    .about-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .about-left {
        padding-right: 0 !important;
    }

    .about-title {
        font-size: 24px !important;
    }

    .about-subtitle {
        font-size: 15px !important;
    }

    .about-stats {
        gap: 0 !important;
    }

    .about-stat .stat-number {
        font-size: 26px !important;
    }

    .about-stat {
        padding: 16px 10px !important;
    }

    .about-image-slider {
        height: 260px !important;
        border-radius: 12px !important;
        outline: none !important;
    }

    .curved-badge {
        display: none !important;
    }

    .about-story {
        font-size: 14px !important;
        padding-left: 12px !important;
    }

    /* ── 8. FEATURE BOXES — left aligned row layout ── */
    .why-choose-features {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-top: 30px !important;
    }

    .feature-box {
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 18px !important;
        gap: 14px !important;
    }

    .feature-icon {
        min-width: 46px !important;
        width: 46px !important;
        height: 46px !important;
        font-size: 20px !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }

    /* ── 9. ADVENTURE TRAVEL STYLES — 2x2 grid ── */
    .adventure-travel-styles {
        padding: 40px 0 !important;
    }
	

    .adventure-travel-styles h2 {
        font-size: 22px !important;
    }

    .adventure-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto !important;
        gap: 12px !important;
    }

    .adventure-card,
    .adventure-card.large,
    .adventure-card.medium {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
        min-height: 160px !important;
    }
	a.adventure-card.large,.adventure-card.medium {
    height: 250px;
}

    .adventure-card.medium:last-child {
        grid-column: span 2 !important;
    }

    /* ── 10. EXPERT TRAINING — hide image ── */
    .training-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .training-image {
        display: none !important;
    }

    .training-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .training-content h2 {
        font-size: 22px !important;
    }

    /* ── 11. FAQ — left, then accordion, then button ── */
    .faq-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    .faq-left {
        position: static !important;
    }

    .btn-view-faqs {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 16px !important;
    }

    .faq-left h2 {
        font-size: 22px !important;
    }

    .faq-text {
        font-size: 14px !important;
    }

    .faq-answer-home p {
        padding: 0 16px 16px 16px !important;
        font-size: 14px !important;
    }

    /* ── 12. FOOTER ── */
    .footer-columns {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
    }

    .footer-social-icons a {
        width: 36px !important;
        height: 36px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {

   

    .experience-track .experience-card {
        flex: 0 0 80vw !important;
        max-width: 80vw !important;
        scroll-snap-align: start !important;
    }

    .inspired-track .inspired-card {
        flex: 0 0 80vw !important;
        max-width: 80vw !important;
        scroll-snap-align: start !important;
    }

    .adventure-grid {
        grid-template-columns: 1fr !important;
    }

    .adventure-card,
    .adventure-card.large,
    .adventure-card.medium {
        min-height: 180px !important;
    }

    .footer-columns {
        grid-template-columns: 1fr !important;
    }

    .section-header h2,
    .faq-left h2,
    .training-content h2 {
        font-size: 20px !important;
    }

    .feature-icon {
        min-width: 40px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 17px !important;
    }

    .about-stat .stat-number {
        font-size: 20px !important;
    }

    .about-stat .stat-label {
        font-size: 10px !important;
    }

    .about-stat {
        padding: 12px 8px !important;
    }
}

/* ========================================
   EXPERIENCES BY REGION SECTION
======================================== */

.region-experiences {
    padding: 60px 0;
    background: #fff;
}

.region-experiences h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
}

/* Wrapper — mirrors .carousel-wrapper exactly */
.region-carousel-wrapper {
    position: relative;
}

.region-carousel-wrapper .carousel-arrow {
    opacity: 1;
}

/* Carousel container — identical to experience-carousel */
.region-carousel {
    overflow: hidden;
    width: 100%;
}

/* Track — identical to experience-track */
.region-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* Cards — identical to experience-card */
.region-track .region-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    cursor: pointer;
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Image — identical to experience-card img */
.region-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Content — identical to experience-content */
.region-info {
    padding: 18px;
}

/* Label — identical to .location */
.region-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0791be;
    margin-bottom: 8px;
}

.region-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Trips count — identical to .price */
.region-trips {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Arrow positions */
.region-prev {
    left: 0;
}

.region-next {
    right: 0;
}
.region-card{
	position:relative;
}
.region-card:before {
    background: rgba(0,0,0,0.5);
    position: absolute;
    content: '';
    z-index: 111;
    width: 100%;
    height: 100%;
}
.region-card a{
	position:relative;
}
.region-card-content-wrapper {
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: #fff;
    z-index: 111;
    width: 100%;
}
.region-card-content-wrapper h3{
	font-size:14px;
	font-weight:500;
	margin-bottom:0px;
}
.region-card-content-wrapper span{
	font-size:12px;
	color:#ddd;
}

.footer-social-icons a i {
		margin: 0px;
	}
.footer-social-icons a:hover{
	background:#f56960 !important;
	border:0px !important;
}
button#wetravel_button_widget {
    font-weight: 800 !important;
    font-family: Montserrat, Arial, 'Helvetica Neue', Helvetica, sans-serif !important;
}
@media (max-width:768px){
	.region-experiences {
        padding: 50px 0;
    }

    .region-carousel-wrapper {
        padding: 0px 0px !important;
    }

    .region-carousel-wrapper .carousel-arrow {
        display: flex !important;
        top: 50% !important;
        bottom: auto !important;
        width: 36px !important;
        height: 36px !important;
        opacity: 1 !important;
    }

    .region-carousel-wrapper .region-prev {
        left: 0 !important;
        transform: translateY(-50%) !important;
    }

    .region-carousel-wrapper .region-next {
        right: 0 !important;
        left: auto !important;
        transform: translateY(-50%) !important;
    }

    .region-carousel {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding: 0 4px !important;
    }

    .region-carousel::-webkit-scrollbar {
        display: none !important;
    }

    .region-track {
        gap: 14px !important;
    }

    .region-track .region-card {
        flex: 0 0 72vw !important;
        min-width: 0 !important;
        max-width: 72vw !important;
        scroll-snap-align: start !important;
    }
	
	.adventure-grid {
		margin-top: 20px;
	}
	.adventure-travel-styles .section-header {
		margin-bottom: 10px;
	}
	section.region-experiences {
		padding: 40px 0px !important;
	}
	section.experiences {
		padding-top: 40px !important;
	}
	.nav-item.has-mega:hover .mega-menu {
		transform: translateX(0%) translateY(0);
	}
	.mega-menu-content {
  		max-height:max-content;
	}
	.dropdown-menu {
		width: 100%;
	}
	.filter-wrapper {
		overflow: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.filter-wrapper::-webkit-scrollbar {
		display: none;
	}
	.packages-section {
		padding: 40px 0;
	}
	.blog-page {
		padding: 40px 0px;
	}
	.story-content {
		gap: 40px;
	}
	.mission-vision {
		padding: 40px 0;
	}
	.team-section {
		padding: 40px 0;
	}
	.footer-img img {
		height: 90px;
	}
	section.newsletter-modern {
		margin-bottom: -75px;
		padding-top:60px !important;
	}
	.cta-section {
		margin-bottom: -75px;
	}
	.newsletter-modern {
		padding-top:40px !important;
		padding-bottom: 140px !important;
	}
	.tnp.tnp-subscription form {
		display: flex;
		flex-direction: column;
	}
	
}
.mega-menu-item-wrapper {
    display:flex;
    align-items: center;
}
span.arrow.mega-arrow {
    position: absolute;
    right: 0px;
    /* padding: 10px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    width: 30px;
    z-index: 1111;
}
div#contactForm p {
    margin: 0px;
    margin-top: 30px;
}
@media (max-width:550px){
	section.experiences {
		padding-top: 20px !important;
	}
	.footer-img img {
		height: 65px;
	}
	.cta-section {
		margin-bottom: -60px;
		padding-top:60px !important;
		padding-bottom: 120px !important;
	}
	section.newsletter-modern {
		margin-bottom: -60px;
		padding-top:60px !important;
	}
	section.contact-form-section {
		padding-top: 40px !important;
		padding-bottom: 0px !important;
	}
	section.contact-info-section {
		padding-top: 40px !important;
	}
	.contact-grid {
		display: flex;
		flex-direction: column;
		gap:10px;
	}
	.quick-contact-wrapper {
		margin-bottom: 40px !important;
	}
	section.map-section {
		padding-top: 40px !important;
		padding-bottom: 0px !important;
	}
	.itinerary-header {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
	}
	.blog-meta {
		flex-flow: row wrap;
		gap: 10px;
	}
}
@media (max-width: 480px) {
    .region-track .region-card {
        flex: 0 0 80vw !important;
        max-width: 80vw !important;
    }
}
