/* ============================================
   RESPONSIVE NAVBAR CSS
   ============================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    padding-top: 80px;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== TOPBAR ===== */
.topbar {
    background: #0B1F3A;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.topbar.hide-top {
    transform: translateY(-100%);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #15325A;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 15px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 65px;
    height: auto;
    display: block;
}

/* ===== NAV LINKS ===== */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    display: flex;
    align-items: center;
    height: 80px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #ffc107;
}

.nav-links .active {
    color: #ffc107;
}

/* ===== NAVBAR RIGHT ===== */
.navbar-right {
    display: flex;
    align-items: center;
    height: 80px;
    gap: 18px;
    flex-shrink: 0;
}

/* Phone */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-phone i {
    font-size: 16px;
}

.nav-phone:hover {
    color: #B86008;
}

/* WhatsApp */
.whatsapp-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #1ebe5c;
}

/* Plan My Trip */
.plan-trip-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: #CF860C;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.plan-trip-btn:hover {
    background: #B8860B;
    color: #fff;
    transform: translateY(-2px);
}

.plan-trip-btn i {
    font-size: 11px;
}

/* ===== MENU TOGGLE ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px 10px;
    line-height: 1;
    flex-shrink: 0;
}

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

/* ===== LAPTOP / TABLET (max-width: 1150px) ===== */
@media (max-width: 1150px) {
    
    body {
        padding-top: 70px;
    }

    .navbar {
        height: 70px;
    }

    .nav-flex {
        height: 70px;
        gap: 10px;
    }

    .logo img {
        width: 50px;
    }

    /* Hide desktop nav links */
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 20px 25px;
        gap: 8px;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        display: block;
        padding: 14px 18px;
        border-radius: 10px;
        color: #1a1a1a;
        font-size: 15px;
        font-weight: 500;
        height: auto;
        transition: all 0.3s;
        border-bottom: 1px solid #f0f0f0;
    }

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

    .nav-links a:hover {
        background: #f0f4f8;
        color: #10bea6;
        padding-left: 24px;
    }

    .nav-links .active {
        color: #10bea6;
        background: #f0f4f8;
    }

    /* Hide right side on mobile */
    .navbar-right {
        display: none;
    }

    /* Show hamburger */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ===== TABLET (max-width: 768px) ===== */
@media (max-width: 768px) {
    
    body {
        padding-top: 65px;
    }

    .navbar {
        height: 65px;
    }

    .nav-flex {
        height: 65px;
        gap: 8px;
    }

    .logo img {
        width: 45px;
    }

    .topbar {
        font-size: 13px;
        padding: 6px 0;
    }

    .flex-between {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .container {
        padding: 0 12px;
    }

    .menu-toggle {
        font-size: 22px;
        padding: 5px 8px;
        width: 40px;
        height: 40px;
    }

    .nav-links {
        top: 65px;
        padding: 16px 20px;
        gap: 6px;
    }

    .nav-links a {
        font-size: 14px;
        padding: 12px 16px;
    }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    
    body {
        padding-top: 60px;
    }

    .navbar {
        height: 60px;
    }

    .nav-flex {
        height: 60px;
        gap: 6px;
    }

    .logo img {
        width: 38px;
    }

    .topbar {
        font-size: 11px;
        padding: 5px 0;
    }

    .container {
        padding: 0 10px;
    }

    .menu-toggle {
        font-size: 18px;
        width: 34px;
        height: 34px;
        padding: 0;
    }

    .nav-links {
        top: 60px;
        padding: 12px 16px;
        gap: 4px;
        border-radius: 0 0 12px 12px;
    }

    .nav-links a {
        font-size: 13px;
        padding: 10px 14px;
    }

    .topbar .flex-between span {
        font-size: 10px;
    }
}


@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 8px;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .navbar-right {
        gap: 22px;
    }
}

/* ===== MEDIUM SCREEN FIX (1050px - 1150px) ===== */
@media (max-width: 1050px) and (min-width: 769px) {
    
    
    .nav-phone span {
        display: none;
    }

    .nav-phone {
        padding: 8px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

    .nav-phone i {
        font-size: 18px;
        margin: 0;
    }

    /* Hide Plan My Trip text, show only icon */
    .plan-trip-btn span {
        display: none;
    }

    .plan-trip-btn {
        padding: 10px 14px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

    .plan-trip-btn i {
        font-size: 16px;
        margin: 0;
    }

    /* Reduce gap between nav items */
    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .navbar-right {
        gap: 12px;
    }
}



/* ===== ACTIVE MENU ITEM INDICATOR ===== */
.nav-links a.active {
    color: #ffc107;
}

@media (max-width: 1150px) {
    .nav-links a.active {
        color: #10bea6;
        background: #f0f4f8;
    }
}




/* ===== HERO BASE ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: url("/images/background img.jpg") center/cover;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.hero-container{

    width:90%;

    max-width:1350px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:110px;

    position:relative;

    z-index:2;
     top: -65px;

}

/* ===== LEFT SIDE ===== */
.hero-left{
    max-width:580px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.small-title{

    display:block;

    font-family:" Display",serif;

    font-size:38px;

    font-style:italic;

    font-weight:600;

    color:#D4A017;

    margin-bottom:12px;

    letter-spacing:0;

    text-transform:none;

}
.hero-title{
    font-family: " Display", serif;
    font-weight: 800;
    font-size: 55px;
    line-height: 1.02;
    letter-spacing: -1px;
}
.hero-description{

    max-width:540px;

    font-size:20px;

    line-height:1.7;

    color:rgba(255,255,255,.9);

    margin-bottom:35px;

    font-weight:400;

}


.hero-left p{
    max-width:520px;
    font-size:17px;
    line-height:1.6;
    color:rgba(255,255,255,.9);
    margin-bottom:28px;
}

/* ===== BUTTONS ===== */
.hero-buttons{
    display:flex;
    gap:18px;
}

.hero-buttons .btn{

    padding:8px 26px;

    font-size:16px;

    font-weight:600;

    border-radius:10px;

    text-decoration:none;

    transition:.3s;

}

.hero-buttons .primary{

    background:#CF860C;

    color:#fff;

    border:none;

}

.hero-buttons .primary:hover{

    background:#c48d14;

}

.hero-buttons .secondary{

    border:2px solid rgba(255,255,255,.45);

    color:#fff;

    background:transparent;

}

.hero-buttons .secondary:hover{

    background:#fff;

    color:#15325A;

}

/* ===== RIGHT SIDE - BOOKING CARD ===== */
.booking-card {
    width: 420px;
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    flex-shrink: 0;
}

.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.tabs button {
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #666;
    padding: 12px 5px;
    white-space: nowrap;
    position: relative;
}
.tabs button::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f4b400;
    transition: width 0.3s;
    
}

.tabs button.active {
    color: #CF860C;
    
}

.tabs button.active::after {
    width: 100%;
}

.tabs button:hover:not(.active) {
    color: #15325A;
}

.booking-card input,
.booking-card select {
    width: 100%;
    height: 55px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
    background: #fff;
}

.booking-card input:focus,
.booking-card select:focus {
    border-color: #15325A;
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 50, 90, 0.1);
}

.booking-card input[type="date"]{
    appearance: auto;
    -webkit-appearance: auto;

    background: #fff;
    color: #333;

    font-size: 16px;
    padding: 0 15px;

    min-width: 0;
}



.booking-card input::placeholder {
    color: #999;
}

.row {
    display: flex;
    gap: 15px;
}

.row input {
    flex: 1;
}

.booking-card select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.search-btn {
    width: 100%;
    height: 55px;
    background: #15325A;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
}

.search-btn:hover {
    background: #1a4070;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(21, 50, 90, 0.3);
}

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

/* ===== LAPTOP (max-width: 1200px) ===== */
@media (max-width: 1200px) {
    .hero-container {
        gap: 50px;
        width: 92%;
    }

    .hero-title {
        font-size: 60px;
    }

    .booking-card {
        width: 380px;
    }
}

/* ===== TABLET / LAPTOP (max-width: 992px) ===== */
@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        width: 90%;
    }

    .hero-left {
        max-width: 100%;
        width: 100%;
    }

    .hero-left p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 55px;
    }

    .hero-title span {
        display: inline-block;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .booking-card {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }
}

/* ===== TABLET (max-width: 768px) ===== */
/* ===== MOBILE BOOKING CARD FIX ===== */
@media (max-width: 768px) {

    .booking-card {
        width: calc(100% - 40px);
        margin: 30px auto 0;
        padding: 28px 24px;
        border-radius: 35px;
        box-sizing: border-box;
    }

    .booking-card .tabs {
        display: flex;
        justify-content: space-between;
        gap: 5px;
        margin-bottom: 25px;
    }

    .booking-card .tabs button {
        flex: 1;
        padding: 12px 5px;
        font-size: 15px;
        white-space: nowrap;
    }

    .booking-card form {
        width: 100%;
    }

    .booking-card form > input,
    .booking-card form > select {
        width: 100%;
        height: 62px;
        margin-bottom: 14px;
        box-sizing: border-box;
    }

    /* Date inputs */
    .booking-card .row {
        display: flex;
        width: 100%;
        gap: 10px;
        margin: 0 0 14px 0;
        padding: 0;
        box-sizing: border-box;
    }

    .booking-card .row input {
        width: 50%;
        min-width: 0;
        height: 62px;
        margin: 0;
        box-sizing: border-box;
    }

    .booking-card .search-btn {
        width: 100%;
        height: 62px;
        margin-top: 5px;
    }
}

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

     .hero {
        padding: 100px 0 40px;  /* ⬆️ 80px से बढ़ाकर 100px किया - इससे content नीचे आएगा */
    }

    .hero-left {
        max-width: 100%;
        width: 100%;
        margin-top: 3rem;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-container {
        gap: 30px;
        width: 94%;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .small-title {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

    .hero-left p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
        text-align: center;
        justify-content: center;
    }

    .booking-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .tabs {
        gap: 8px;
    }

    .tabs button {
        font-size: 12px;
        padding: 5px 12px;
        flex: 1;
        min-width: 60px;
        text-align: center;
    }

    .tabs button.active {
        padding: 5px 14px;
    }

    .booking-card input,
    .booking-card select {
        height: 44px;
        font-size: 12px;
        padding: 0 12px;
        margin-bottom: 12px;
        border-radius: 8px;
    }

    .search-btn {
        height: 44px;
        font-size: 14px;
        border-radius: 8px;
    }

    .booking-card form {
        margin-top: 0;
    }
}

/* ===== VERY SMALL MOBILE (max-width: 360px) ===== */
@media (max-width: 360px) {
    .hero {
        padding: 70px 0 30px;
    }

    .hero-title {
        font-size: 26px;
    }

    .small-title {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-left p {
        font-size: 13px;
    }

    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .booking-card {
        padding: 16px 12px;
    }

    .tabs button {
        font-size: 11px;
        padding: 4px 10px;
        min-width: 50px;
    }

    .booking-card input,
    .booking-card select {
        height: 40px;
        font-size: 11px;
        padding: 0 10px;
        margin-bottom: 10px;
    }

    .search-btn {
        height: 40px;
        font-size: 13px;
    }
}

/* ============================================
   LARGE SCREEN OPTIMIZATION
   ============================================ */

/* ===== LARGE DESKTOP (min-width: 1600px) ===== */
@media (min-width: 1600px) {
    .hero-container {
        max-width: 1500px;
        gap: 100px;
    }

    .hero-title {
        font-size: 95px;
    }

    .hero-left p {
        font-size: 20px;
        max-width: 600px;
    }

    .booking-card {
        width: 480px;
        padding: 35px;
    }

    .hero-buttons .btn {
        padding: 18px 45px;
        font-size: 20px;
    }
}

/* ============================================
   ANIMATIONS (Optional)
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left {
    animation: fadeInUp 0.8s ease forwards;
}

.booking-card {
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

/* ============================================
   ADDITIONAL IMPROVEMENTS
   ============================================ */

/* Better spacing for mobile touch targets */
@media (max-width: 768px) {
    .tabs button,
    .search-btn,
    .booking-card input,
    .booking-card select {
        touch-action: manipulation;
    }
}

/* Smooth transition for all interactive elements */
.booking-card input,
.booking-card select,
.search-btn,
.tabs button,
.hero-buttons .btn {
    -webkit-tap-highlight-color: transparent;
}
/*================ FEATURES =================*/

.features-bar {

    width: 100%;
    background: #fff;

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

    padding: 30px 8%;

    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);

    gap: 30px;
}

.feature-item {

    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {

    font-size: 35px;
    color: #f4b400;
}

.feature-item h4 {

    font-size: 18px;
    margin-bottom: 5px;
}

.feature-item p {

    color: #777;
    font-size: 14px;
}

/* ============================================
   TRUST SECTION - RESPONSIVE CSS
   (Based on your existing styling)
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f5f5f5;
}

.trust-section {
    width: 100%;
    padding: 0 15px;
    margin-top: -35px;
    position: relative;
    z-index: 10;
}

.trust-container {
    max-width: 1300px;
    width: 100%;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.trust-item {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-right: 1px solid #eee;
}

.trust-item:last-child {
    border-right: none;
}

.icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.icon{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.icon i{
    font-size:34px;
    color:#D4A017;
    transition:.3s ease;
}
.overview-card .icon i{
    font-size:34px;
    color:#0c315e;
    transition:.3s ease;
}

.trust-item:hover .icon i{
    color:#F4B400;
    transform:scale(1.1);
}

.text h4 {
    font-size: 13px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.2;
}

.text p {
    font-size: 11px;
    color: #777;
    line-height: 1.3;
}

.rating-stars {
    color: #D89B00;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 3px;
}

/* ===== SCROLLBAR ===== */
.trust-container::-webkit-scrollbar {
    height: 5px;
}

.trust-container::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 20px;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 992px) {
    .trust-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        overflow: hidden;
    }

    .trust-item {
        border-right: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 15px 12px;
        flex: 1;
    }

    .trust-item:nth-child(3) {
        border-right: none;
    }

    .trust-item:nth-child(4),
    .trust-item:nth-child(5),
    .trust-item:nth-child(6) {
        border-bottom: none;
    }

    .trust-item:nth-child(4) {
        border-right: 1px solid #eee;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (SCROLL)
   ============================================ */
@media (max-width: 768px) {
    .trust-section {
        padding: 15px 0;
        margin-top: -20px;
    }

    .trust-container {
        width: 95%;
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 12px 15px;
        border-radius: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 auto;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    }

    .trust-container::-webkit-scrollbar {
        display: none;
    }

    .trust-item {
        min-width: 160px;  /* 220px se kam kiya */
        max-width: 180px;  /* Max width set kiya */
        flex: 0 0 auto;
        scroll-snap-align: start;
        border-right: none;
        flex-direction: column;
        text-align: center;
        padding: 12px 10px;  /* Padding kam kiya */
        background: #fafafa;
        border-radius: 8px;
        border: 1px solid #f0f0f0;
        gap: 6px;  /* Gap kam kiya */
    }

    .icon {
        width: 32px;  /* 45px se kam kiya */
        height: 32px;
    }

    .icon img {
        width: 32px;
        height: 32px;
    }

    .text h4 {
        font-size: 12px;  /* 14px se kam kiya */
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .text p {
        font-size: 10px;  /* 12px se kam kiya */
        line-height: 1.2;
    }
}


/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .trust-section {
        padding: 15px 0;
        margin-top: -20px;
    }

    .trust-container {
        width: 92%;
        padding: 12px 15px;
        gap: 12px;
        border-radius: 10px;
    }

    .trust-item {
        min-width: 180px;
        padding: 14px 12px;
        gap: 8px;
    }

    .icon {
        width: 38px;
        height: 38px;
    }

    .icon img {
        width: 38px;
        height: 38px;
    }

    .text h4 {
        font-size: 13px;
    }

    .text p {
        font-size: 11px;
    }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL MOBILE
   ============================================ */
@media (max-width: 360px) {
    .trust-container {
        padding: 10px 12px;
        gap: 10px;
        width: 95%;
    }

    .trust-item {
        min-width: 150px;
        padding: 12px 10px;
    }

    .icon {
        width: 32px;
        height: 32px;
    }

    .icon img {
        width: 32px;
        height: 32px;
    }

    .text h4 {
        font-size: 12px;
    }

    .text p {
        font-size: 10px;
    }
}


/* ============================================
   TRENDING DESTINATIONS - COMPLETE CSS
   ============================================ */

.trending-destinations {
    width: 100%;
    padding: 50px 6%;
    background: #ffffff;
    overflow: hidden;
}

/* =========================================
   HEADER
========================================= */
.trending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.trending-header h2 {
    margin: 0;
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #111827;
}

/* =========================================
   DESTINATION TABS
========================================= */
.destination-tabs {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 30px;
    padding: 4px;
}

.destination-tab {
    border: none;
    background: transparent;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 15px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.destination-tab.active {
    background: #1455a5;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(20, 85, 165, 0.25);
}

/* =========================================
   SWIPER
========================================= */
.destinationSwiper {
    width: 100%;
    padding: 5px 0 50px;
    overflow: hidden;
}

.destinationSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
}

/* =========================================
   DESTINATION CARD
========================================= */
.destination-card {
    position: relative;
    display: block;
    width: 100%;
    max-width: 235px;
    height: 320px;
    overflow: hidden;
    border-radius: 120px;
    background: #ddd;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* =========================================
   IMAGE
========================================= */
.destination-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

/* =========================================
   DARK GRADIENT
========================================= */
.destination-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0));
    pointer-events: none;
}

/* =========================================
   DESTINATION NAME
========================================= */
.destination-name {
    position: absolute;
    top: 35px;
    left: 10px;
    right: 10px;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* =========================================
   SWIPER ARROWS
========================================= */
.destinationSwiper .swiper-button-prev,
.destinationSwiper .swiper-button-next {
    width: 45px;
    height: 45px;
    margin-top: -25px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.destinationSwiper .swiper-button-prev::after,
.destinationSwiper .swiper-button-next::after {
    font-size: 20px;
    font-weight: 700;
    color: #1455a5;
}

.destinationSwiper .swiper-button-prev {
    left: 0;
}

.destinationSwiper .swiper-button-next {
    right: 0;
}

/* =========================================
   PAGINATION
========================================= */
.destination-pagination {
    bottom: 5px !important;
}

.destination-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    background: #d1d5db;
}

.destination-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 10px;
    background: #1455a5;
}

/* =========================================
   RESPONSIVE - TABLET (max-width: 992px)
========================================= */
@media (max-width: 992px) {
    .trending-destinations {
        padding: 45px 5%;
    }

    .destination-card {
        max-width: 210px;
        height: 330px;
        border-radius: 110px;
    }

    .destination-name {
        font-size: 25px;
    }
}

/* =========================================
   RESPONSIVE - MOBILE (max-width: 768px)
========================================= */
@media (max-width: 768px) {
    .trending-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-bottom: 30px;
    }

    .trending-header h2 {
        font-size: 27px;
    }

    .destinationSwiper {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }

    .destination-card {
        max-width: 210px;
        height: 320px;
        border-radius: 105px;
    }

    .destination-name {
        font-size: 23px;
        top: 30px;
    }

    /* Arrow position adjustment */
    .destinationSwiper .swiper-button-prev {
        left: 5px;
    }

    .destinationSwiper .swiper-button-next {
        right: 5px;
    }

    .destinationSwiper .swiper-button-prev,
    .destinationSwiper .swiper-button-next {
        width: 38px;
        height: 38px;
        margin-top: -19px;
    }

    .destinationSwiper .swiper-button-prev::after,
    .destinationSwiper .swiper-button-next::after {
        font-size: 16px;
    }
}

/* =========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
========================================= */
@media (max-width: 480px) {
    .trending-destinations {
        padding: 35px 15px;
    }

    .trending-header {
        gap: 15px;
        margin-bottom: 25px;
    }

    .trending-header h2 {
        font-size: 24px;
    }

    .destination-tabs {
        width: 100%;
        max-width: 300px;
        border-radius: 25px;
    }

    .destination-tab {
        flex: 1;
        padding: 10px 15px;
        font-size: 13px;
        border-radius: 20px;
        text-align: center;
    }

    .destinationSwiper {
        padding-left: 25px !important;
        padding-right: 25px !important;
        padding-bottom: 40px;
    }

    .destination-card {
        max-width: 190px;
        height: 300px;
        border-radius: 95px;
    }

    .destination-name {
        font-size: 20px;
        top: 28px;
        left: 8px;
        right: 8px;
    }

    /* Arrows smaller */
    .destinationSwiper .swiper-button-prev,
    .destinationSwiper .swiper-button-next {
        width: 32px;
        height: 32px;
        margin-top: -16px;
    }

    .destinationSwiper .swiper-button-prev {
        left: 0px;
    }

    .destinationSwiper .swiper-button-next {
        right: 0px;
    }

    .destinationSwiper .swiper-button-prev::after,
    .destinationSwiper .swiper-button-next::after {
        font-size: 14px;
    }

    /* Pagination */
    .destination-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .destination-pagination .swiper-pagination-bullet-active {
        width: 18px;
    }
}

/* =========================================
   RESPONSIVE - EXTRA SMALL (max-width: 360px)
========================================= */
@media (max-width: 360px) {
    .trending-destinations {
        padding: 30px 12px;
    }

    .trending-header h2 {
        font-size: 20px;
    }

    .destination-tabs {
        max-width: 100%;
        border-radius: 20px;
    }

    .destination-tab {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 16px;
    }

    .destinationSwiper {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 35px;
    }

    .destination-card {
        max-width: 160px;
        height: 260px;
        border-radius: 80px;
    }

    .destination-name {
        font-size: 18px;
        top: 25px;
    }

    .destinationSwiper .swiper-button-prev,
    .destinationSwiper .swiper-button-next {
        width: 28px;
        height: 28px;
        margin-top: -14px;
    }

    .destinationSwiper .swiper-button-prev::after,
    .destinationSwiper .swiper-button-next::after {
        font-size: 12px;
    }
}

/* =========================================
   RESPONSIVE - LARGE DESKTOP (min-width: 1400px)
========================================= */
@media (min-width: 1400px) {
    .trending-destinations {
        padding: 15px 8%;
    }

    .destination-card {
        max-width: 280px;
        height: 380px;
        border-radius: 140px;
    }

    .destination-name {
        font-size: 32px;
        top: 40px;
    }

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

    .destination-tab {
        padding: 14px 35px;
        font-size: 17px;
    }
}

/* =========================================
   FIX FOR SWIPER SLIDES VISIBILITY
========================================= */
@media (max-width: 480px) {
    .destinationSwiper .swiper-slide {
        width: auto;
    }
}

/* =========================================
   FIX FOR TAB WRAPPING ON VERY SMALL SCREENS
========================================= */
@media (max-width: 400px) {
    .destination-tabs {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 15px;
        padding: 3px;
        gap: 3px;
    }

    .destination-tab {
        flex: 0 0 auto;
        padding: 8px 14px;
        font-size: 12px;
        min-width: 80px;
    }
}

/* =========================================
   SMOOTH TRANSITIONS FOR ALL DEVICES
========================================= */
.destination-card,
.destination-tab,
.destinationSwiper .swiper-button-prev,
.destinationSwiper .swiper-button-next {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* =========================================
   PRINT STYLES
========================================= */
@media print {
    .trending-destinations {
        padding: 20px 0;
    }

    .destinationSwiper .swiper-button-prev,
    .destinationSwiper .swiper-button-next,
    .destination-pagination {
        display: none !important;
    }

    .destination-card {
        break-inside: avoid;
        max-width: 200px;
        height: 280px;
    }
}



/* ===========================
   POPULAR DESTINATION SECTION
=========================== */

/* SECTION */

.top-packages {
    width: 90%;
    max-width: 1250px;
    margin: 70px auto;
}

/* HEADING */

.packages-heading {
    position: relative;
    text-align: center;
    margin-bottom: 35px;
}

.packages-heading-content h2 {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.packages-heading-content p {
    font-size: 16px;
    color: #777;
}

/* ============================================
   PACKAGES VIEW ALL LINK - RESPONSIVE FIX
   ============================================ */

.packages-view-all {
    text-decoration: none;
    color: #CF860C;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.packages-view-all:hover {
    color: #C27E08;
}

/* ============================================
   HEADING CONTAINER FIX
   ============================================ */

.packages-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

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

/* ===== TABLET (max-width: 992px) ===== */
@media (max-width: 992px) {
    .packages-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .packages-view-all {
        font-size: 15px;
        white-space: nowrap;
    }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
    .packages-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 25px;
    }

    .packages-heading-content h2 {
        font-size: 24px;
    }

    .packages-heading-content p {
        font-size: 13px;
    }

    .packages-view-all {
        font-size: 14px;
        white-space: nowrap;
    }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    .packages-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 20px;
    }

    .packages-heading-content h2 {
        font-size: 20px;
    }

    .packages-heading-content p {
        font-size: 12px;
    }

    .packages-view-all {
        font-size: 13px;
        white-space: nowrap;
    }
}

/* ===== EXTRA SMALL MOBILE (max-width: 360px) ===== */
@media (max-width: 360px) {
    .packages-heading {
        gap: 8px;
        margin-bottom: 18px;
    }

    .packages-heading-content h2 {
        font-size: 18px;
    }

    .packages-heading-content p {
        font-size: 11px;
    }

    .packages-view-all {
        font-size: 12px;
        white-space: nowrap;
    }
}

/* ============================================
   ARROW ICON (Optional - if you have one)
   ============================================ */

.packages-view-all i {
    transition: transform 0.3s ease;
}

.packages-view-all:hover i {
    transform: translateX(4px);
}

/* ============================================
   IF YOU WANT ARROW ON MOBILE TOO
   ============================================ */

@media (max-width: 480px) {
    .packages-view-all i {
        font-size: 12px;
    }
}
/* SWIPER */

.packagesSwiper {
    padding: 10px 5px 10px;
}

.packagesSwiper .swiper-slide {
    height: auto;
}

/* CARD */

.package-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
    transition: .3s;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

/* IMAGE */

.package-image {
    position: relative;
    height: 190px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

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



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

.package-badge{
    position: absolute;
    top: 15px;
    left: 15px;

    background: #D4A017;
    color: #fff;

    padding: 5px 10px;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;

    border-radius: 6px;

    z-index: 5;

    box-shadow: 0 5px 12px rgba(0,0,0,.15);
}

.package-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

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

.package-title-overlay {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);

    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;

    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;

    text-shadow: 2px 2px 8px rgba(0, 0, 0, .45);
    transform: translateX(-50%);

    z-index: 100;
}

@media (max-width: 768px) {
    .package-title-overlay {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 24px;
        letter-spacing: 1.5px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .package-title-overlay {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
        letter-spacing: 1px;
    }
}


/* BADGE */


/* CONTENT */

.package-content {
    padding: 18px;
}

/* TITLE */

.package-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.package-top h3 {
    font-size: 20px;
    font-weight: 700;
    color: #154a87;
    margin: 0;
}

.package-duration {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

/* LOCATION */

.package-location {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* BOTTOM */

.package-bottom{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-top:18px;
    gap:15px;
}

.package-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:120px;
    height:40px;

    background: #D89216;
    color:#111;
    text-decoration:none;

    font-size:15px;
    font-weight:700;

    border-radius:8px;

    transition:.3s ease;
    box-shadow:0 4px 12px rgba(217,152,0,.28);

    white-space:nowrap;
}

.package-btn:hover{
    background:#C27E08;
    color:#FFFFFF;
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.package-btn:active{
    transform:translateY(0);
}

.ts-content{
    padding:18px 22px;
    background:#fff;
}

.ts-content h3{
    font-size:20px;
    font-weight:700;
    color:#222;
    margin-bottom:6px;
    line-height:1.3;
}

.ts-duration{
    position:absolute;
    right:22px;
    top:22px;
    font-size:14px;
    color:#666;
    font-weight:600;
}

.ts-top{
    position:relative;
    padding-right:130px;
    margin-bottom:15px;
}

.ts-features{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:18px;
    border-bottom:1px solid #eee;
    padding-bottom:15px;
}

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

.ts-features i{
    color:#777;
    font-size:14px;
}

.ts-bottom{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
}

.ts-price small{
    display:block;
    font-size:14px;
    color:#777;
    margin-bottom:3px;
}

.ts-price h4{
    font-size:32px;
    font-weight:700;
    color:#222;
    margin:0;
}

.ts-price span{
    display:block;
    font-size:13px;
    color:#777;
    margin-top:3px;
}

.ts-btn{
    background:#f4a300;
    color:#222;
    text-decoration:none;
    padding:11px 24px;
    border-radius:6px;
    font-weight:700;
    transition:.3s;
}

.ts-btn:hover{
    background:#d99000;
    color:#fff;
}

.package-features{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    margin:18px 0;
    padding-bottom:18px;
    border-bottom:1px solid #ececec;
}

.package-features span{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:14px;
    color:#555;
    font-weight:500;
}

.package-features span i{
    font-size:15px;
    color:#666;
}

.package-bottom{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-top:15px;
}

.package-price small{
    display:block;
    font-size:14px;
    color:#777;
    margin-bottom:3px;
}

.package-price h4{
    font-size:20px;
    font-weight:700;
    color:#222;
    margin:0;
    line-height:1.2;
}

.package-price span{
    display:block;
    font-size:14px;
    color:#777;
    margin-top:4px;
}

.package-price h4,
.package-price span{
    display:inline-block;
    vertical-align:bottom;
}

.package-price span{
    margin-left:8px;
    color:#777;
    font-size:14px;
}


@media (max-width:992px){

.top-packages{
    width:95%;
    margin:50px auto;
}

.packages-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

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

.packages-heading-content p{
    font-size:14px;
}

.package-image{
    height:220px;
}

.package-content{
    padding:18px;
}

.package-top{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
}

.package-duration{
    font-size:14px;
}

.package-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.package-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

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

}



/* =========================================
   WHY US SECTION
========================================= */
/* ============================================
   WHY US - FIXED (Text visible on all screens)
   ============================================ */

.why-us {
    width: 100%;
    padding: 25px 0;
    background: #001B2A;
    border-radius: 16px;
}

.why-us .container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================================
   HEADING
========================================= */
.why-us h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

/* =========================================
   GRID
========================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    gap: 0;
}

/* =========================================
   WHY CARD - FIXED (No text hiding)
========================================= */
.why-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    min-width: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Remove border from last card */
.why-card:last-child {
    border-right: none;
}

/* =========================================
   ICON
========================================= */
.why-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B86008;
    font-size: 26px;
}

/* =========================================
   CONTENT - FIXED (Text visible)
========================================= */
.why-content {
    min-width: 0;
    flex: 1;
    overflow: visible !important;  /* Text hide na ho */
}

.why-content h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    /* Text visible rahe */
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-wrap: break-word;
    word-break: break-word;
}

.why-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    /* Text visible rahe */
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-wrap: break-word;
    word-break: break-word;
}

/* =========================================
   RESPONSIVE - LAPTOP (max-width: 1200px)
========================================= */
@media (max-width: 1200px) {
    .why-us {
        padding: 20px 0;
    }

    .why-us h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }

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

    .why-card {
        padding: 8px 14px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .why-card:nth-child(3),
    .why-card:nth-child(6) {
        border-right: none;
    }

    .why-icon {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .why-content h3 {
        font-size: 13px;
        white-space: normal !important;
        overflow: visible !important;
    }

    .why-content p {
        font-size: 11px;
        white-space: normal !important;
        overflow: visible !important;
    }
}

/* =========================================
   RESPONSIVE - TABLET (max-width: 768px)
========================================= */
@media (max-width: 768px) {
    .why-us {
        padding: 18px 0;
        border-radius: 12px;
    }

    .why-us .container {
        width: 96%;
    }

    .why-us h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .why-grid {
        display: flex;
        overflow-x: auto;
        gap: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 5px 0;
    }

    .why-grid::-webkit-scrollbar {
        display: none;
    }

    .why-card {
        flex: 0 0 280px;
        padding: 10px 18px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        scroll-snap-align: start;
        min-height: 65px;
        gap: 12px;
    }

    .why-card:last-child {
        border-right: none;
    }

    .why-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .why-content h3 {
        font-size: 13px;
        white-space: normal !important;
        overflow: visible !important;
    }

    .why-content p {
        font-size: 11px;
        white-space: normal !important;
        overflow: visible !important;
        line-height: 1.3;
    }
}

/* =========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
========================================= */
@media (max-width: 480px) {
    .why-us {
        padding: 15px 0;
        border-radius: 10px;
    }

    .why-us .container {
        width: 98%;
    }

    .why-us h2 {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .why-card {
        flex: 0 0 250px;
        padding: 8px 14px;
        gap: 10px;
        min-height: 58px;
    }

    .why-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .why-content h3 {
        font-size: 12px;
        margin-bottom: 2px;
        white-space: normal !important;
        overflow: visible !important;
    }

    .why-content p {
        font-size: 10px;
        line-height: 1.2;
        white-space: normal !important;
        overflow: visible !important;
    }
}

/* =========================================
   RESPONSIVE - EXTRA SMALL (max-width: 360px)
========================================= */
@media (max-width: 360px) {
    .why-us {
        padding: 12px 0;
        border-radius: 8px;
    }

    .why-us h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .why-card {
        flex: 0 0 220px;
        padding: 6px 12px;
        gap: 8px;
        min-height: 52px;
    }

    .why-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .why-content h3 {
        font-size: 11px;
        margin-bottom: 1px;
        white-space: normal !important;
        overflow: visible !important;
    }

    .why-content p {
        font-size: 9px;
        line-height: 1.1;
        white-space: normal !important;
        overflow: visible !important;
    }
}

/* =========================================
   LARGE DESKTOP (min-width: 1400px)
========================================= */
@media (min-width: 1400px) {
    .why-us {
        padding: 10px 0;
        border-radius: 20px;
    }

    .why-us .container {
        width: 88%;
        max-width: 1500px;
    }

    .why-us h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .why-card {
        padding: 12px 20px;
        gap: 16px;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        font-size: 30px;
    }

    .why-content h3 {
        font-size: 15px;
        margin-bottom: 4px;
        white-space: normal !important;
        overflow: visible !important;
    }

    .why-content p {
        font-size: 12px;
        line-height: 1.4;
        white-space: normal !important;
        overflow: visible !important;
    }
}

/* =========================================
   FIX: MEDIUM SCREEN (769px - 1200px)
========================================= */
@media (min-width: 769px) and (max-width: 1200px) {
    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 12px;
    }

    .why-card {
        padding: 8px 14px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .why-card:nth-child(3),
    .why-card:nth-child(6) {
        border-right: none;
    }

    .why-content h3 {
        white-space: normal !important;
        overflow: visible !important;
        font-size: 13px;
    }

    .why-content p {
        white-space: normal !important;
        overflow: visible !important;
        font-size: 11px;
    }
}

/* =========================================
   TOUCH FRIENDLY
========================================= */
.why-card {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: default;
}

/* =========================================
   GRID FIX FOR 6 ITEMS
========================================= */
@media (min-width: 1201px) {
    .why-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .why-card {
        padding: 10px 12px;
        gap: 12px;
    }

    .why-content h3 {
        font-size: 12px;  /* Small font to fit */
        white-space: normal !important;
        overflow: visible !important;
        line-height: 1.2;
    }

    .why-content p {
        font-size: 10px;  /* Small font to fit */
        white-space: normal !important;
        overflow: visible !important;
        line-height: 1.3;
    }

    .why-icon {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
}

/* =========================================
   ALTERNATIVE: IF TEXT STILL CUTTING
========================================= */
@media (min-width: 1201px) and (max-width: 1400px) {
    .why-card {
        padding: 8px 10px;
        gap: 10px;
    }

    .why-content h3 {
        font-size: 11px;
        white-space: normal !important;
    }

    .why-content p {
        font-size: 9px;
        white-space: normal !important;
    }

    .why-icon {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* FEATURE BOX */
.feature-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-box span {
    font-size: 25px;
    color: #f4a300;
}

.feature-box h4 {
    margin-bottom: 5px;
    color: #1f3c88;
}

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

    .about-container {
        flex-direction: column;
    }

    .about-content h1 {
        font-size: 28px;
    }

    .features {
        flex-direction: column;
    }

}





/* WRAPPER (center align) */
.wrapper {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.title {
    text-align: center;
    font-size: 42px;
    color: #1d2b53;
    margin-bottom: 50px;
    font-weight: 700;
}

/* CARDS CONTAINER */
.cards {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

/* SINGLE CARD */
.card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

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

/* ICON */
.icon {
    font-size: 26px;
    margin-bottom: 15px;
}

/* TITLE */
.card h3 {
    font-size: 20px;
    color: #1d2b53;
    margin-bottom: -50px;
}

/* TEXT */
.card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* BACKGROUND SHAPE */
.card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: url('images/dotted-map.png') no-repeat center/contain;
    opacity: 0.08;
    bottom: -20px;
    right: -20px;
}

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

/* Tablet */
@media (max-width: 992px) {
    .cards {
        flex-wrap: wrap;
    }

    .card {
        flex: 1 1 45%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cards {
        flex-direction: column;
    }

    .title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .card h3 {
        font-size: 20px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
}

/* SECTION */
.testimonial-section {
    background: linear-gradient(rgba(20, 60, 90, 0.85), rgba(20, 60, 90, 0.85)),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

/* HEADING */
.testimonial-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.testimonial-section p {
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* CARD CONTAINER */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.card {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s;
}

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

/* USER NAME */
.name {
    margin-top: 15px;
    font-weight: bold;
    color: #1d3557;
}

/* STARS */
.stars {
    color: #f4b400;
    margin-top: 5px;
}

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

@media(max-width:600px) {
    .testimonial-section h1 {
        font-size: 28px;
    }

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



/* =========================================
   CUSTOMER REVIEWS
========================================= */

/* ============================================
   REVIEWS SECTION - COMPLETE RESPONSIVE CSS
   ============================================ */

.reviews-section {
    width: 100%;
    padding: 55px 7% 25px;
    background: #ffffff;
}

/* =========================================
   HEADER
========================================= */
.reviews-header {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.reviews-header>div {
    text-align: center;
}

.reviews-header h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #162033;
    text-align: center;
}

.reviews-header p {
    margin: 5px 0 0;
    color: #999;
    font-size: 14px;
    text-align: center;
}

/* =========================================
   VIEW ALL REVIEWS
========================================= */
.view-reviews {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    color: #CF860C;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.view-reviews:hover {
    color: #C27E08;
}

/* =========================================
   REVIEWS CONTAINER
========================================= */
.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* =========================================
   REVIEW CARD
========================================= */
.review-card {
    min-height: 235px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* =========================================
   USER
========================================= */
.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-user img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.review-user span {
    font-size: 14px;
    color: #999;
}

/* =========================================
   RATING
========================================= */
.review-rating {
    display: flex;
    gap: 4px;
    margin-top: 15px;
}

.review-rating span {
    color: #f4b400;
    font-size: 20px;
}

/* =========================================
   REVIEW TEXT
========================================= */
.review-text {
    margin-top: 15px;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================
   DOTS
========================================= */
.review-dots {
    display: none;  /* Hidden by default, show on mobile */
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e5e5e5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 18px;
    border-radius: 10px;
    background: #222;
}

/* =========================================
   RESPONSIVE - LAPTOP (max-width: 1024px)
========================================= */
@media (max-width: 1024px) {
    .reviews-section {
        padding: 45px 5% 20px;
    }

    .reviews-header h2 {
        font-size: 26px;
    }

    .view-reviews {
        font-size: 16px;
    }

    .reviews-container {
        gap: 18px;
    }

    .review-card {
        padding: 22px;
        min-height: 220px;
    }

    .review-user img {
        width: 50px;
        height: 50px;
    }

    .review-user h3 {
        font-size: 15px;
    }

    .review-text {
        font-size: 14px;
    }
}

/* =========================================
   RESPONSIVE - TABLET (max-width: 768px)
========================================= */
@media (max-width: 768px) {
    .reviews-section {
        padding: 35px 4% 20px;
    }

    .reviews-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
    }

    .reviews-header>div {
        text-align: center;
        width: 100%;
    }

    .reviews-header h2 {
        font-size: 22px;
    }

    .reviews-header p {
        font-size: 13px;
    }

    .view-reviews {
        position: static;
        transform: none;
        font-size: 15px;
        display: inline-block;
    }

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

    .review-card {
        padding: 18px;
        min-height: 200px;
    }

    .review-user {
        gap: 12px;
    }

    .review-user img {
        width: 45px;
        height: 45px;
    }

    .review-user h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .review-user span {
        font-size: 13px;
    }

    .review-rating {
        margin-top: 12px;
    }

    .review-rating span {
        font-size: 18px;
    }

    .review-text {
        font-size: 13px;
        line-height: 1.5;
        margin-top: 12px;
    }

    /* Show dots on tablet */
    .review-dots {
        display: flex;
    }
}

/* =========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
========================================= */
@media (max-width: 480px) {
    .reviews-section {
        padding: 25px 3% 15px;
    }

    .reviews-header {
        gap: 10px;
        margin-bottom: 20px;
    }

    .reviews-header h2 {
        font-size: 18px;
    }

    .reviews-header p {
        font-size: 12px;
    }

    .view-reviews {
        font-size: 14px;
    }

    .reviews-container {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 400px;
        margin: 0 auto;
    }

    .review-card {
        padding: 16px;
        min-height: 180px;
    }

    .review-user {
        gap: 10px;
    }

    .review-user img {
        width: 40px;
        height: 40px;
    }

    .review-user h3 {
        font-size: 13px;
    }

    .review-user span {
        font-size: 12px;
    }

    .review-rating {
        margin-top: 10px;
    }

    .review-rating span {
        font-size: 16px;
    }

    .review-text {
        font-size: 12px;
        line-height: 1.5;
        margin-top: 10px;
    }

    .review-dots {
        display: flex;
        margin-top: 15px;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 16px;
    }
}

/* =========================================
   RESPONSIVE - EXTRA SMALL (max-width: 360px)
========================================= */
@media (max-width: 360px) {
    .reviews-section {
        padding: 20px 2% 12px;
    }

    .reviews-header h2 {
        font-size: 16px;
    }

    .reviews-header p {
        font-size: 11px;
    }

    .view-reviews {
        font-size: 13px;
    }

    .review-card {
        padding: 14px;
        min-height: 160px;
    }

    .review-user img {
        width: 36px;
        height: 36px;
    }

    .review-user h3 {
        font-size: 12px;
    }

    .review-user span {
        font-size: 11px;
    }

    .review-rating span {
        font-size: 14px;
    }

    .review-text {
        font-size: 11px;
        line-height: 1.4;
        margin-top: 8px;
    }

    .dot {
        width: 7px;
        height: 7px;
    }

    .dot.active {
        width: 14px;
    }
}

/* =========================================
   RESPONSIVE - LARGE DESKTOP (min-width: 1400px)
========================================= */
@media (min-width: 1400px) {
    .reviews-section {
        padding: 65px 8% 30px;
    }

    .reviews-header {
        max-width: 1400px;
    }

    .reviews-header h2 {
        font-size: 34px;
    }

    .reviews-header p {
        font-size: 16px;
    }

    .view-reviews {
        font-size: 16px;
    }

    .reviews-container {
        max-width: 1400px;
        gap: 28px;
    }

    .review-card {
        padding: 30px;
        min-height: 260px;
    }

    .review-user img {
        width: 65px;
        height: 65px;
    }

    .review-user h3 {
        font-size: 18px;
    }

    .review-user span {
        font-size: 15px;
    }

    .review-text {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* =========================================
   RESPONSIVE - MEDIUM SCREEN (769px - 1024px)
========================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .review-card {
        padding: 20px;
        min-height: 210px;
    }
}

/* =========================================
   ANIMATION (Optional)
========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

@media (max-width: 768px) {
    .review-card:nth-child(3) { animation-delay: 0.3s; }
}

/* =========================================
   TOUCH FRIENDLY
========================================= */
.review-card,
.view-reviews,
.dot {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* =========================================
   PRINT STYLES
========================================= */
@media print {
    .reviews-section {
        padding: 20px 0;
        background: #fff;
    }

    .review-card {
        border: 1px solid #ddd;
        box-shadow: none;
        break-inside: avoid;
    }

    .review-dots {
        display: none !important;
    }
}



/* =========================================
   FOOTER CTA
========================================= */

/* ============================================
   FOOTER CTA - COMPLETE RESPONSIVE CSS
   ============================================ */

.footer-cta {
    width: 100%;
    min-height: 195px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/images/footer-banner.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
    background-attachment: fixed; /* Optional: parallax effect */
}

/* =========================================
   DARK OVERLAY
========================================= */
.footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 31, 53, 0.72);
}

/* =========================================
   CTA OVERLAY
========================================= */
.cta-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    padding: 25px 20px;
    margin: 0 auto;
}

.cta-overlay h2 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
}

.cta-overlay p {
    margin: 8px 0 20px;
    color: #ffffff;
    font-size: 16px;
}

/* =========================================
   CTA BUTTONS
========================================= */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
    flex-wrap: wrap;
}

.cta-buttons a {
    width: 200px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 50px;
}

/* =========================================
   PLAN MY TRIP
========================================= */
.btn-plan {
    color: #162033;
    background: #CF860C;
    border: 2px solid #C27E08;
}

.btn-plan:hover {
    background: #B8860B;
    border-color: #e3a718;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 184, 46, 0.3);
}

/* =========================================
   TALK TO EXPERT
========================================= */
.btn-expert {
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
}

.btn-expert:hover {
    color: #162033;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* =========================================
   RESPONSIVE - LAPTOP (max-width: 1024px)
========================================= */
@media (max-width: 1024px) {
    .footer-cta {
        min-height: 180px;
    }

    .cta-overlay {
        padding: 20px 15px;
    }

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

    .cta-overlay p {
        font-size: 15px;
        margin: 6px 0 18px;
    }

    .cta-buttons {
        gap: 40px;
    }

    .cta-buttons a {
        width: 180px;
        padding: 10px 20px;
        font-size: 15px;
        min-height: 46px;
    }
}

/* =========================================
   RESPONSIVE - TABLET (max-width: 768px)
========================================= */
@media (max-width: 768px) {
    .footer-cta {
        min-height: 160px;
        background-attachment: scroll; /* Remove parallax on mobile */
    }

    .cta-overlay {
        padding: 18px 15px;
        max-width: 100%;
    }

    .cta-overlay h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .cta-overlay p {
        font-size: 14px;
        margin: 5px 0 16px;
        padding: 0 10px;
    }

    .cta-buttons {
        gap: 30px;
        flex-wrap: wrap;
    }

    .cta-buttons a {
        width: 170px;
        padding: 10px 18px;
        font-size: 14px;
        min-height: 44px;
    }
}

/* =========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
========================================= */
@media (max-width: 480px) {
    .footer-cta {
        min-height: 140px;
        padding: 20px 0;
    }

    .cta-overlay {
        padding: 15px 12px;
    }

    .cta-overlay h2 {
        font-size: 20px;
        line-height: 1.2;
    }

    .cta-overlay p {
        font-size: 13px;
        margin: 4px 0 14px;
        padding: 0 5px;
        line-height: 1.4;
    }

    .cta-buttons {
        gap: 20px;
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .cta-buttons a {
        width: 100%;
        padding: 10px 16px;
        font-size: 14px;
        min-height: 42px;
        max-width: 280px;
    }
}

/* =========================================
   RESPONSIVE - EXTRA SMALL (max-width: 360px)
========================================= */
@media (max-width: 360px) {
    .footer-cta {
        min-height: 120px;
        padding: 15px 0;
    }

    .cta-overlay {
        padding: 12px 10px;
    }

    .cta-overlay h2 {
        font-size: 17px;
        line-height: 1.2;
    }

    .cta-overlay p {
        font-size: 12px;
        margin: 3px 0 12px;
    }

    .cta-buttons {
        gap: 15px;
        max-width: 240px;
    }

    .cta-buttons a {
        padding: 8px 14px;
        font-size: 13px;
        min-height: 38px;
        max-width: 240px;
    }
}

/* =========================================
   RESPONSIVE - LARGE DESKTOP (min-width: 1400px)
========================================= */
@media (min-width: 1400px) {
    .footer-cta {
        min-height: 220px;
    }

    .cta-overlay {
        max-width: 1000px;
        padding: 30px 25px;
    }

    .cta-overlay h2 {
        font-size: 36px;
    }

    .cta-overlay p {
        font-size: 18px;
        margin: 10px 0 25px;
    }

    .cta-buttons {
        gap: 60px;
    }

    .cta-buttons a {
        width: 220px;
        padding: 10px 20px;
        font-size: 16px;
        min-height: 50px;
        border-radius: 6px;
    }
}

/* =========================================
   RESPONSIVE - MEDIUM SCREEN (769px - 1024px)
========================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .cta-buttons {
        gap: 35px;
    }

    .cta-buttons a {
        width: 175px;
        padding: 10px 20px;
        font-size: 15px;
        min-height: 45px;
    }
}

/* =========================================
   ANIMATION (Optional)
========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-overlay {
    animation: fadeInUp 0.8s ease forwards;
}

.cta-buttons a {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.btn-plan {
    animation-delay: 0.2s;
}

.btn-expert {
    animation-delay: 0.4s;
}

/* =========================================
   TOUCH FRIENDLY
========================================= */
.cta-buttons a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    user-select: none;
}

/* =========================================
   PRINT STYLES
========================================= */
@media print {
    .footer-cta {
        min-height: auto;
        padding: 20px 0;
        background: #051f35;
    }

    .footer-cta::before {
        display: none;
    }

    .cta-buttons a {
        border: 1px solid #ddd;
        color: #000 !important;
        background: #fff !important;
    }

    .btn-plan {
        background: #fff !important;
        border-color: #ddd !important;
    }

    .btn-expert {
        background: #fff !important;
        border-color: #ddd !important;
        color: #000 !important;
    }
}

/* =========================================
   REDUCED MOTION PREFERENCE
========================================= */
@media (prefers-reduced-motion: reduce) {
    .cta-overlay,
    .cta-buttons a {
        animation: none !important;
    }

    .btn-plan:hover,
    .btn-expert:hover {
        transform: none !important;
    }
}
/* =========================================
   MAIN FOOTER
========================================= */

/* ============================================
   FOOTER - COMPLETE RESPONSIVE CSS
   ============================================ */

.main-footer {
    width: 100%;
    background: #102a43;
    color: #ffffff;
}

/* =========================================
   FOOTER CONTAINER
========================================= */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 5% 25px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.35fr;
    gap: 45px;
}

/* =========================================
   FOOTER COLUMN
========================================= */
.footer-column {
    min-width: 0;
}

.footer-column h3 {
    margin: 0 0 18px;
    color: #f5b82e;
    font-size: 17px;
    font-weight: 600;
}

/* =========================================
   ABOUT
========================================= */
.footer-logo {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-logo img {
    width: 215px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-about p {
    max-width: 290px;
    margin: 0;
    color: #d7e0e8;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================
   FOOTER LINKS
========================================= */
.footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #d7e0e8;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #f5b82e;
    padding-left: 3px;
}

/* =========================================
   SOCIAL ICONS
========================================= */
.social-icons{
    display:flex;
    gap:16px;
    margin-top:25px;
}

.social-icons a{
    width:48px;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1.5px solid rgba(255,255,255,.4);
    border-radius:50%;
    text-decoration:none;
    transition:.3s;
}

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

/* Facebook Official */
.fa-facebook-f{
    color:#1877F2;
}

/* X Official */
.fa-x-twitter{
    color:#000000;
}

/* YouTube Official */
.fa-youtube{
    color:#FF0000;
}

/* Instagram Official Gradient */
.fa-instagram{
    background: radial-gradient(circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285AEB 90%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    color:transparent;
}

/* Hover */
.social-icons a:hover{
    background:#fff;
    transform:translateY(-4px);
}



/* =========================================
   CONTACT
========================================= */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
    color: #d7e0e8;
    font-size: 14px;
    line-height: 1.5;
}

.contact-item i {
    width: 18px;
    margin-top: 3px;
    color: #ffffff;
    font-size: 15px;
    flex-shrink: 0;
}

.contact-item a {
    color: #d7e0e8;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-item a:hover {
    color: #f5b82e;
}

.contact-item span {
    word-break: break-word;
}

/* =========================================
   COPYRIGHT
========================================= */
.footer-bottom {
    width: 100%;
    padding: 9px 20px;
    text-align: center;
    background: #0b2033;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: #b8c5d0;
    font-size: 13px;
}

/* =========================================
   RESPONSIVE - LAPTOP (max-width: 1200px)
========================================= */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 35px;
        padding: 28px 4% 25px;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-about p {
        max-width: 100%;
    }
}

/* =========================================
   RESPONSIVE - TABLET (max-width: 992px)
========================================= */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 25px 4% 22px;
    }

    .footer-about {
        grid-column: span 3;
    }

    .footer-about p {
        max-width: 80%;
    }

    .footer-logo img {
        width: 190px;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .footer-column ul li {
        margin-bottom: 6px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }
}

/* =========================================
   RESPONSIVE - SMALL TABLET (max-width: 768px)
========================================= */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px 5%;
        gap: 30px 25px;
    }

    .footer-about {
        grid-column: span 2;
    }

    .footer-about p {
        max-width: 100%;
    }

    .footer-logo img {
        width: 180px;
    }

    .footer-column h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-column ul li {
        margin-bottom: 5px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }

    .contact-item {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .contact-item i {
        font-size: 14px;
    }

    .social-icons {
        gap: 10px;
        margin-top: 15px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

/* =========================================
   RESPONSIVE - MOBILE (max-width: 480px)
========================================= */
@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 25px 20px 20px;
        gap: 25px;
    }

    .footer-about {
        grid-column: auto;
        text-align: center;
    }

    .footer-about p {
        max-width: 100%;
        text-align: center;
        font-size: 13px;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-logo img {
        width: 160px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h3 {
        font-size: 15px;
        margin-bottom: 12px;
        text-align: center;
    }

    .footer-column ul li {
        margin-bottom: 6px;
    }

    .footer-column ul li a {
        font-size: 13px;
        display: inline-block;
    }

    .footer-column ul li a:hover {
        padding-left: 0;
        padding-right: 3px;
    }

    .social-icons {
        justify-content: center;
        gap: 12px;
        margin-top: 15px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
    }

    .contact-item {
        font-size: 13px;
        justify-content: center;
        text-align: left;
        margin-bottom: 10px;
        padding: 0 10px;
    }

    .contact-item i {
        width: 20px;
        margin-top: 2px;
        font-size: 14px;
        text-align: center;
    }

    .footer-bottom {
        padding: 8px 15px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* =========================================
   RESPONSIVE - EXTRA SMALL (max-width: 360px)
========================================= */
@media (max-width: 360px) {
    .footer-container {
        padding: 20px 15px 15px;
        gap: 20px;
    }

    .footer-logo img {
        width: 140px;
    }

    .footer-column h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .contact-item {
        font-size: 12px;
        padding: 0 5px;
        gap: 10px;
    }

    .contact-item i {
        font-size: 13px;
        width: 18px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

/* =========================================
   RESPONSIVE - LARGE DESKTOP (min-width: 1400px)
========================================= */
@media (min-width: 1400px) {
    .footer-container {
        max-width: 1500px;
        padding: 35px 6% 30px;
        gap: 50px;
    }

    .footer-logo img {
        width: 240px;
    }

    .footer-about p {
        max-width: 320px;
        font-size: 15px;
    }

    .footer-column h3 {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .footer-column ul li a {
        font-size: 15px;
    }

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

    .contact-item {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}

/* =========================================
   RESPONSIVE - MEDIUM SCREEN (769px - 992px)
========================================= */
@media (min-width: 769px) and (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 25px;
    }

    .footer-about {
        grid-column: span 2;
    }

    .footer-about p {
        max-width: 100%;
    }

    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        grid-column: span 1;
    }
}

/* =========================================
   RESPONSIVE - (993px - 1200px)
========================================= */
@media (min-width: 993px) and (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-about p {
        max-width: 100%;
    }
}

/* =========================================
   TOUCH FRIENDLY
========================================= */
.social-icons a,
.footer-column ul li a,
.contact-item a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* =========================================
   PRINT STYLES
========================================= */
@media print {
    .main-footer {
        background: #102a43 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .footer-container {
        display: block;
        padding: 20px;
    }

    .footer-column {
        margin-bottom: 15px;
    }

    .social-icons a {
        border-color: #fff;
    }

    .footer-bottom {
        background: #0b2033 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
/* =========================================
GOOGLE FONT
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================
RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    color: #111;
}

/* =========================================
MAIN CONTAINER
========================================= */
.travel-container {
    width: 92%;
    max-width: 1600px;
    margin: 20px auto 60px;
}

/* =========================================
TOP BAR
========================================= */
.travel-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.travel-filter-title {
    font-size: 18px;
    font-weight: 600;
    color: #0c315e;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.01em;
}

.travel-filter-title i {
    font-size: 15px;
}

/* =========================================
FILTER BUTTONS
========================================= */
.travel-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.travel-filter-buttons button {
    border: none;
    outline: none;
    padding: 7px 14px;
    border-radius: 6px;
    background: #fff;
    color: #0c315e;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #c5d0e0;
}

.travel-filter-buttons button:hover,
.travel-filter-buttons .travel-active-btn {
    background: #0c315e;
    color: #fff;
}

/* =========================================
MAIN WRAPPER
========================================= */
.travel-main-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* =========================================
SIDEBAR
========================================= */
.travel-sidebar {
    width: 280px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* =========================================
FILTER BOX
========================================= */
.travel-filter-box,
.filter-card {
    background: #fff;
    padding: 16px 16px 18px;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(12, 49, 94, 0.06);
    border: 1px solid #e8edf4;
}

.travel-filter-box h3,
.travel-international-box h3 {
    font-size: 13px;
    margin-bottom: 10px;
    color: #1a2332;
    font-weight: 650;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* =========================================
SEARCH BOX
========================================= */
.travel-search-box input {
    width: 100%;
    height: 40px;
    border: 1px solid #d5dde8;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 13px;
    outline: none;
    transition: 0.3s;
}

#filterForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.travel-search-box input:focus {
    border-color: #10bea6;
    box-shadow: 0 0 0 4px rgba(16, 190, 166, 0.12);
}

/* =========================================
RANGE
========================================= */
.travel-range {
    width: 100%;
    accent-color: #0c315e;
    cursor: pointer;
}

.travel-range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.travel-range-values span {
    font-size: 12px;
    font-weight: 600;
    color: #5b6577;
}

/* =========================================
RATING
========================================= */
.travel-rating-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.travel-rating-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.travel-rating-item input {
    width: 18px;
    height: 18px;
    accent-color: #10bea6;
}

.travel-stars {
    color: #ffb400;
    letter-spacing: 2px;
}

/* =========================================
CATEGORY
========================================= */
.travel-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.travel-category-list label {
    font-size: 13px;
    color: #445;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.travel-category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
}

.travel-category-item input {
    width: 18px;
    height: 18px;
    accent-color: #10bea6;
}

/* =========================================
RIGHT PACKAGE AREA
========================================= */
.travel-packages {
    flex: 1;
}

/* =========================================
GRID
========================================= */
.travel-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================================
CARD
========================================= */
.travel-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    transition: 0.35s;
}

.travel-card:hover {
    transform: translateY(-8px);
}

/* =========================================
IMAGE
========================================= */
.travel-card-image {
    position: relative;
    height: 260px;
}

.travel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
HEART ICON
========================================= */
.travel-wishlist {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* =========================================
CONTENT
========================================= */
.travel-card-content {
    padding: 14px 16px 16px;
}

/* =========================================
LOCATION & DAYS
========================================= */
.travel-location-days {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #666;
    font-size: 12px;
    margin-bottom: 8px;
}

.travel-location-days span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =========================================
RATING
========================================= */
.travel-rating {
    color: #ffb400;
    font-size: 12px;
    margin-bottom: 4px;
    font-weight: 600;
}

/* =========================================
TITLE
========================================= */
.travel-card-title {
    font-size: 14px;
    font-weight: 650;
    margin-bottom: 8px;
    color: #1a2332;
    line-height: 1.35;
}

/* =========================================
PRICE + BOOK
========================================= */
.travel-price-book {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.travel-price {
    font-size: 14px;
    font-weight: 700;
    color: #0c315e;
}

.travel-price small {
    font-size: 11px;
    color: #777;
    font-weight: 500;
}

/* =========================================
BOOK BUTTON
========================================= */
.travel-book-btn {
    text-decoration: none;
    background: #0c315e;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.travel-book-btn:hover {
    background: #154a87;
}

/* =========================================
LAPTOP
========================================= */
@media(max-width:1200px) {

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

}

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

    .travel-main-wrapper {
        flex-direction: column;
    }

    .travel-sidebar {
        width: 100%;
        min-width: 100%;
    }

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

}

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

    .travel-container {
        width: 94%;
        margin-top: 90px;
    }

    .travel-top-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .travel-filter-title {
        font-size: 16px;
    }

    .travel-filter-buttons {
        width: 100%;
    }

    .travel-filter-buttons button {
        padding: 6px 12px;
        font-size: 11px;
    }

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

    .travel-card-image {
        height: 220px;
    }

    .travel-card-title {
        font-size: 14px;
    }

    .travel-price {
        font-size: 14px;
    }

    .travel-filter-box,
    .filter-card {
        padding: 14px;
    }

}

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

    .travel-filter-title {
        font-size: 15px;
    }

    .travel-location-days {
        flex-direction: column;
        align-items: flex-start;
    }

    .travel-price-book {
        flex-direction: column;
        align-items: flex-start;
    }

    .travel-book-btn {
        width: 100%;
        justify-content: center;
    }

    .travel-card-image {
        height: 220px;
    }

}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    color: #222;
}

/* MAIN SECTION */

.tour-details {
    width: 90%;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    
}

/* LEFT SIDE */

.tour-left {
    flex: 1;
}

.tour-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.small-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.small-images img {
    width: 100%;
    height: 242px;
    object-fit: cover;
    border-radius: 10px;
}

/* Small Screen Only */
@media (max-width: 768px) {
    .tour-image img {
        margin-top: -50px;
    }
}

.tour-content {
    background: #fff;
    margin-top: 25px;
    padding: 35px;
    border-radius: 30px;
}

.tour-content h1 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #081839;
}

/* INFO */

.tour-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tour-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 18px;
}

/* BUTTONS */

.tour-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.tour-buttons button {
    padding: 5px 18px;
    border-radius: 40px;
    border: 2px solid #0c315e;
    background: transparent;
    color: #0c315e;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.tour-buttons button i {
    margin-right: 8px;
}

.tour-buttons .active,
.tour-buttons button:hover {
    background: #0c315e;
    color: #fff;
}

/* OVERVIEW */

.overview-box {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 25px;
}

.overview-box h2 {
    font-size: 25px;
    margin-bottom: 30px;
    color: #081839;
}

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

.overview-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}



.overview-card .icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #e7faf7;
    color: #0c315e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.overview-card p {
    font-size: 17px;
    color: #666;
    margin-bottom: 6px;
}

.overview-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* RIGHT SIDE */

.tour-right {
    width: 380px;
    position: sticky;
    top: 20px;
}

.booking-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
}

.booking-top {
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.booking-top p {
    color: #444;
    font-size: 20px;
    margin-bottom: 10px;
}

.booking-top h3 {
    font-size: 15px;
}

.booking-price {
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.booking-price p {
    font-size: 22px;
    margin-bottom: 10px;
}

.booking-price h1 {
    font-size: 20px;
    color: #081839;
}

.person-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.person-counter button {
    width: 35px;
    height: 35px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
}

.person-counter input {
    width: 60px;
    text-align: center;
}

.book-btn {
    width: 100%;
    height: 50px;
    border: none;
    margin-top: 30px;
    border-radius: 50px;
    background: #0c315e;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.book-btn:hover {
    transform: translateY(-3px);
}

.book-btn i {
    margin-left: 10px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .tour-details {
        flex-direction: column;
    }

    .tour-right {
        width: 100%;
    }

}

@media(max-width:768px) {

    .tour-image img {
        height: 300px;
        margin-top: 50px;
    }

    .tour-content {
        padding: 25px;
    }

    .tour-content h1 {
        font-size: 40px;
    }

    .overview-box h2 {
        font-size: 28px;
    }

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

    .overview-card h3 {
        font-size: 20px;
    }

    .booking-price h1 {
        font-size: 25px;
    }

}

@media(max-width:500px) {

    .tour-details {
        width: 95%;
    }

    .tour-content h1 {
        font-size: 25px;
    }

    .tour-info {
        gap: 15px;
    }

    .tour-info span {
        font-size: 15px;
    }

    .tour-buttons button {
        width: 100%;
    }

    .overview-box {
        padding: 20px;
    }

    .overview-card {
        flex-direction: column;
    }

    .booking-card {
        padding: 25px;
    }

    .book-btn {
        font-size: 20px;
    }

}





/* MAIN LAYOUT */

.wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 220px 1fr 340px;
    gap: 25px;
    align-items: start;
}

.wrapper.itinerary-wrapper {
    grid-template-columns: 1fr 340px;
    background: #f7f8fa;
    border-radius: 18px;
}

/* =========================
   DAY WISE ITINERARY
========================= */

.daywise-itinerary {
    background: transparent;
    padding: 10px 8px 20px;
}

.daywise-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.daywise-header i {
    color: #0c315e;
    font-size: 22px;
}

.daywise-header h2 {
    margin: 0;
    color: #0c315e;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.daywise-line {
    flex: 1;
    height: 1px;
    background: #d7dde8;
}

.daywise-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 8px;
}

.daywise-timeline::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 18px;
    bottom: 18px;
    width: 3px;
    background: #0c315e;
    border-radius: 4px;
}

.daywise-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    align-items: start;
    position: relative;
}

.daywise-marker {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.daywise-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    padding: 8px 10px;
    background: #0c315e;
    color: #fff;
    border-radius: 0 12px 12px 0;
    line-height: 1.1;
    box-shadow: 0 4px 12px rgba(12, 49, 94, 0.25);
}

.daywise-badge small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.daywise-badge strong {
    font-size: 22px;
    font-weight: 800;
}

.daywise-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    align-items: start;
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    border: 1px solid #e8edf5;
}

.daywise-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.daywise-content h3 {
    margin: 4px 0 14px;
    color: #0c315e;
    font-size: 22px;
    font-weight: 700;
}

.daywise-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.daywise-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.45;
}

.daywise-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.daywise-check i {
    font-size: 11px;
}

.daywise-hotel {
    margin: 14px 0 0;
    color: #4b5563;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.daywise-hotel i {
    color: #0c315e;
}

/* =========================
   LEFT DAY MENU
========================= */

.days-sidebar {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.day-btn {
    width: 100%;
    padding: 20px;
    border: none;
    background: #fff;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: .3s;
}

.day-btn:hover {
    background: #f5f9ff;
}

.day-btn.active {
    background: #edf5ff;
    color: black;
    border-left: 4px solid #0c315e;
    font-weight: 600;
}

/* =========================
   CENTER CONTENT
========================= */

.timeline-section {
    position: relative;
}

.timeline-section::before {
    content: "";
    position: absolute;
    left: 37px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #dbe4f0;
}

/* CARD */

.day-card {
    position: relative;
    margin-bottom: 20px;
}

.day-card {
    display: none;
}


/* HEADER */

.day-header {
    background: #fff;
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 1px solid #e4e9f2;
    transition: .3s;
}

.day-header:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.day-left {
    display: flex;
    align-items: center;
    gap: 16px;
}



.day-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-left: 100px;
}

.arrow {
    font-size: 18px;
    transition: .3s;
}

.day-card.active {
    display: block;
}

.day-card.active .arrow {
    transform: rotate(180deg);
}

/* BODY */

.day-body {
    display: none;
    padding: 18px 0 0 88px;
}

.day-card.active .day-body {
    display: block;
}

/* INFO BOX */

.info-box {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 18px;
    border: 1px solid #e8edf5;
}

.info-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #E8F8F5;
    color: #0c315e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
}

.info-text {
    color: #1a1a1b;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 600;  
    margin-top: 12px;
}

/* HOTEL */

.hotel-wrapper {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.hotel-wrapper img {
    width: 210px;
    height: 130px;
    object-fit: cover;
    border-radius: 14px;
}

.hotel-details h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.hotel-details p {
    color: #666;
    font-size: 14px;
}

.note {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.note span {
    color: #1565ff;
    font-weight: 600;
}
.sightseeing-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0ebe8;
}

.sightseeing-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sightseeing-item:first-child {
    padding-top: 0;
}

.sightseeing-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0 0 4px 0;
}

.sightseeing-item h4::before {
    content: "📍";
    font-size: 16px;
    margin-right: 6px;
}

.sightseeing-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.sightseeing-item p strong {
    color: #ff6b35;
    font-weight: 600;
}

/* RIGHT SIDEBAR */
.package-info-sidebar {
    width: 100%;
}

/* COMMON BOX */
.package-box {
    background: #fff;
    border: 1px solid #d9dfe8;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

/* HEADING */
.package-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px 12px;
}

.package-heading h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

/* ICON */
.package-icon {
    font-size: 25px;
}

/* LIST */
.package-box ul {
    list-style: none;
    padding: 0 20px 20px;
    margin: 0;
}

.package-box li {
    position: relative;
    padding-left: 30px;
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.4;
    color: #333;
}

/* GREEN CHECK */
.includes-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;

    width: 20px;
    height: 20px;

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

    background: #087f5b;
    color: white;

    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
}

/* RED CROSS */
.excludes-box li::before {
    content: "×";
    position: absolute;
    left: 0;
    top: 0;

    width: 20px;
    height: 20px;

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

    background: #dc2626;
    color: white;

    border-radius: 50%;
    font-size: 17px;
    font-weight: bold;
}

/* INCLUDE HEADER */
.includes-box .package-heading {
    background: #fff;
    background: #f0fff8;
}

/* EXCLUDE HEADER */
.excludes-box .package-heading {
    background: #fff1f1;
}

.excludes-box .package-heading h3 {
    color: #4b267d;
}

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

    .package-heading {
        padding: 15px;
    }

    .package-heading h3 {
        font-size: 19px;
    }

    .package-box ul {
        padding: 0 15px 15px;
    }

    .package-box li {
        font-size: 14px;
    }
}


/* =========================
   RIGHT PANEL
========================= */

.right-panel {
    position: sticky;
    top: 20px;
}

.price-card {
    background: #fff;

    padding: 25px;
    border-bottom: 1px solid #e4e9f2;
    margin-bottom: 20px;
}

.old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #777;
}

.discount {
    background: #ff7a1a;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
}

.new-price {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
}

.sub-text {
    color: #666;
    font-size: 15px;
}

.calculate-btn {
    width: 70%;
    border: none;
    background: #22c3a6;
    color: #fff;
    padding: 16px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    margin-top: 20px;
    transition: 0.3s ease;
}

.calculate-btn:hover {
    background: #1DAA91;
}

/* FORM */

.callback-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e4e9f2;
    overflow: hidden;
     
}

.callback-header {
    padding: 20px;
    border-bottom: 1px solid #edf0f5;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    
}

.form-box {
    padding: 20px;
}

.input-box {
    margin-bottom: 15px;
}

.input-box input {
    width: 100%;
    height: 54px;
    border: 1px solid #d8dee8;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
}

.input-box input:focus {
    border-color: #1565ff;
}

.check {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.check p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.callback-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 50px;
    background: #d7dce5;
    color: #444;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}



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

@media(max-width:1100px) {

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

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

    .days-sidebar {
        display: flex;
        overflow: auto;
        white-space: nowrap;
        position: relative;
    }

    .day-btn {
        min-width: 120px;
        border-bottom: none;
        border-right: 1px solid #eee;
    }

    .right-panel {
        position: relative;
    }

    .daywise-card {
        grid-template-columns: 180px 1fr;
    }

}

@media(max-width:768px) {

    body {
        padding: 0;
    }

    .wrapper {
        padding: 15px;
        gap: 18px;
    }

    .daywise-header h2 {
        font-size: 20px;
    }

    .daywise-timeline::before {
        left: 26px;
    }

    .daywise-row {
        grid-template-columns: 54px 1fr;
        gap: 12px;
    }

    .daywise-badge {
        min-width: 48px;
        padding: 6px 8px;
        border-radius: 0 10px 10px 0;
    }

    .daywise-badge strong {
        font-size: 18px;
    }

    .daywise-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }

    .daywise-image img {
        height: 180px;
    }

    .daywise-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .timeline-section::before {
        display: none;
    }

    .day-header {
        padding: 14px;
    }

    .day-left {
        gap: 10px;
    }

    .badge {
        min-width: 70px;
        height: 38px;
        font-size: 14px;
    }

    .day-title {
        font-size: 16px;
    }

    .day-body {
        padding-left: 0;
    }

    .info-box {
        padding: 18px;
    }

    .info-title {
        font-size: 18px;
    }

    .hotel-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .hotel-wrapper img {
        width: 100%;
        height: 200px;
    }

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

}

.final-price {
    margin-top: 18px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    text-align: center;
}



/* DATE AREA */

.booking-date-wrapper {

    margin-top: 20px;

    display: flex;

    flex-direction: column;

    gap: 15px;

}

/* LABEL */

.booking-date-field label {

    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 600;

    color: #333;

}

/* INPUT */

.booking-date-field input {

    width: 100%;

    height: 50px;

    padding: 0 15px;

    border: 1px solid #ddd;

    border-radius: 10px;

    outline: none;

    font-size: 15px;

}

/* FOCUS */

.booking-date-field input:focus {

    border-color: #ff6b35;

}

/* HEART BUTTON */

.travel-wishlist {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(5px);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: 0.3s ease;

}

/* HEART ICON */

.travel-wishlist i {

    font-size: 24px;

    color: white;

    transition: 0.3s ease;

}



/* ACTIVE HEART */

.travel-wishlist.active i {

    color: red;

}

.brochure-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    margin-top: 15px;
    border: 2px solid #0c315e;
    color: #2dc1a8;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

.brochure-btn:hover {
    background: #0c315e;
    color: white;
}

.packages h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a2b49;
    text-align: center;
}

.tour-link {
    text-decoration: none;
    color: inherit;
}

.travel-international-box {
    background: #fff;
    width: 100%;
    padding: 16px 16px 18px;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(12, 49, 94, 0.06);
    border: 1px solid #e8edf4;
    box-sizing: border-box;
}

.travel-international-box h3 {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 650;
    color: #1a2332;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.travel-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.travel-category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #444;
}

.travel-category-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.travel-category-item:hover {
    color: #0d6efd;
}

/* ===========================
   MODAL
=========================== */

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

.booking-modal.active {
    display: flex;
}

/* ===========================
   CONTAINER
=========================== */

.booking-container {
    width: 1200px;
    max-width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    max-height: 95vh;
    overflow-y: auto;
    animation: popup .3s ease;
}

@keyframes popup {
    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========================
   HEADER
=========================== */

.booking-header {
    background: #0c315e;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
}

.booking-header h2 {
    margin: 0;
    font-size: 26px;
}

#closeModal {
    font-size: 35px;
    cursor: pointer;
}

/* ===========================
   BODY
=========================== */

.booking-content {
    display: flex;
    gap: 35px;
    padding: 30px;
}

.booking-left {
    flex: 3;
}

.booking-right {
    flex: 1;
}

/* ===========================
   GRID
=========================== */

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

.input-box {
    display: flex;
    flex-direction: column;
}

.input-box label {
    margin-bottom: 8px;
    font-weight: 600;
}

.input-box input,
.input-box select {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 15px;
}

/* ===========================
   ROOM
=========================== */

.room {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.room-header h4 {
    margin: 0;
    color: #081839;
    font-size: 18px;
}

/* ===========================
   TRAVELLERS
=========================== */

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

.traveller-box {
    background: #fafafa;
    border-radius: 10px;
    padding: 15px;
}

.traveller-box p {
    margin-bottom: 12px;
    font-weight: 600;
}

/* ===========================
   COUNTER
=========================== */

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

    border-radius: 8px;
    overflow: hidden;
    height: 45px;
}

.counter button {
    width: 45px;
    border: none;
    background: #0c315e;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.counter button:hover {
    background: #154a87;
}

.counter input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 18px;
    font-weight: bold;
    background: #fff;
}

/* ===========================
   BUTTONS
=========================== */

.add-room {
    margin-top: 20px;
    padding: 12px 25px;
    background: #0c315e;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}


.book-online {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 8px;
    background: #0c315e;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
}

.calculate-btn {
    margin-top: 20px;
}

.book-online {
    margin-top: 20px;
}

.calculate-btn:hover,
.book-online:hover,
.add-room:hover {
    background: #154a87;
}

/* ===========================
   PRICE CARD
=========================== */

.price-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
    position: sticky;
    top: 20px;
}

.old-price {
    color: #888;
    text-decoration: line-through;
}

.offer {
    margin-left: 10px;
    background: #ff6b00;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
}

.price-card h1 {
    margin: 15px 0;
    color: #081839;
    font-size: 30px;
}

.price-card p {
    color: #666;
}

/* ===========================
   CHECKBOX
=========================== */

.agree {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 25px;
}

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

@media(max-width:992px) {

    .booking-content {
        flex-direction: column;
    }

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

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

    .price-card {
        position: static;
    }

}

@media(max-width:600px) {

    .booking-header h2 {
        font-size: 20px;
    }

    .booking-content {
        padding: 18px;
    }

    .room {
        padding: 15px;
    }

}

.remove-room {

    background: red;

    color: white;

    border: none;

    padding: 8px 18px;

    border-radius: 6px;

    cursor: pointer;

}

.remove-room:hover {

    background: #d00000;

}

.filter-group select {

    font-size: 13px;

    padding: 8px;

}

/* ===========================
   DAYS / NIGHTS FILTER
=========================== */

.filter-group {
    width: 100%;
    margin-bottom: 0;
}

.filter-group h4 {
    font-size: 13px;
    font-weight: 650;
    color: #1a2332;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.filter-group select {
    width: 100%;
    height: 40px;

    padding: 0 12px;

    border: 1px solid #d5dde8;
    border-radius: 8px;

    background: #fff;
    color: #333;

    font-size: 13px;
    font-weight: 500;

    outline: none;
    cursor: pointer;

    transition: all .3s ease;
}

.filter-group select:hover {
    border-color: #0c315e;
}

.filter-group select:focus {
    border-color: #0c315e;
    box-shadow: 0 0 0 4px rgba(12, 49, 94, .12);
}

/* ===========================
   Tablet
=========================== */

@media (max-width:991px) {

    .filter-group h4 {
        font-size: 13px;
    }

    .filter-group select {
        height: 40px;
        font-size: 13px;
    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width:768px) {

    .filter-group {
        margin-bottom: 0;
    }

    .filter-group h4 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .filter-group select {
        height: 38px;
        font-size: 12px;
        padding: 0 12px;
    }

}

/* ===========================
   Small Mobile
=========================== */

@media (max-width:480px) {

    .filter-group h4 {
        font-size: 12px;
    }

    .filter-group select {
        height: 38px;
        font-size: 12px;
        border-radius: 8px;
    }

}

.card {
    width: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;

    height: auto;

}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}



.card-img {
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .5s ease;
}


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

.badge {
    position: absolute;
    top: 10px;
    left: 18px;
    background: #0c315e;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.card-body {
    padding: 0 5px;

    display: flex;
    flex-direction: column;

}

.card-content h3,
.card-title {
    margin-bottom: 15px;
    line-height: 1.3;
}



.card-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tag {
    background: #f2f5ff;
    color: #2454d3;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.rating {
    margin-left: auto;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.tour-title {
    font-size: 34px;
    font-weight: 700;
    color: #1a2c5b;
    line-height: 1.3;
    margin: 0 0 18px;
    min-height: 88px;
}

.tour-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.facilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    min-height: 95px;
}

.facilities div {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #555;
}

.card-footer {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


.price-section del {
    color: #888;
    font-size: 16px;
}

.discount {
    display: inline-block;
    background: #ff7a00;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 10px;
}

.price-section h2 {
    font-size: 20px;
    color: #1a2c5b;
    margin: 8px 0;
    font-weight: 800;
}

.price-section small {
    color: #666;
    font-size: 14px;
}

.details-btn {
    min-width: 110px;
    height: 32px;
    border: none;
    border-radius: 30px;
    background: #0c315e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.details-btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}



.mySwiper {
    padding: 20px 10px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;

    height: auto !important;
    display: block;
    padding-right: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0c315e;
}

.swiper-pagination-bullet-active {
    background: #0c315e;
}

.swiper-slide {
    margin-right: 5px !important;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px !important;
    font-weight: bold;
}

.search-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-80px);
}

.search-box {
    width: 550px;
    height: 60px;
    background: #fff;
    border-radius: 35px;
    display: flex;
    align-items: center;
    padding: 0 10px 0 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    background: transparent;
}

.search-box input::placeholder {
    color: #999;
}

.find-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1455a0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.find-btn:hover {
    transform: scale(1.05);
}

/* ===========================
   WhatsApp Floating Button
=========================== */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 65px;

    height: 65px;

    background: #25D366;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    font-size: 36px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .25);

    z-index: 9999;

    transition: .3s;

    animation: whatsappFloat 2s ease-in-out infinite;

}

/* Hover */

.whatsapp-float:hover {

    background: #1EBE5D;

    transform: scale(1.1);

}

/* Tooltip */

.tooltip {

    position: absolute;

    right: 80px;

    background: #333;

    color: #fff;

    padding: 8px 15px;

    border-radius: 6px;

    font-size: 14px;

    white-space: nowrap;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

}

.whatsapp-float:hover .tooltip {

    opacity: 1;

    visibility: visible;

}

/* Floating Animation */

@keyframes whatsappFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(0);

    }

}

/* Mobile */

@media(max-width:768px) {

    .whatsapp-float {

        width: 55px;

        height: 55px;

        font-size: 30px;

        right: 15px;

        bottom: 15px;

    }

    .tooltip {

        display: none;

    }

}

.contact-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.contact-section {
    max-width: 1200px;

    margin: 40px auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 35px;
}

.contact-left,
.contact-right {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.contact-left h2 {
    font-size: 35px;
    color: #0d3b66;
    margin-bottom: 10px;
}

.contact-left p {
    color: #666;
    margin-bottom: 30px;
}

.info-box {
    
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-box i {
    width: 60px;
    height: 60px;
     min-width: 60px;      /* Add */
    min-height: 60px;
    border-radius: 50%;
    background: #0c315e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
     flex-shrink: 0;       /* Add */
    margin-top: 5px;  
}

.info-box h4 {
    margin: 0;
    color: #0d3b66;
}

.info-box p {
    margin: 5px 0 0;
    color: #666;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
}

.contact-right input:focus,
.contact-right textarea:focus {
    border-color: #22c3a6;
}

.contact-right button {
    background: #0c315e;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 17px;
    transition: .3s;
}

.contact-right button:hover {
    background: #154a87;
}

.page-header {

    text-align: center;

    padding: 15px 20px;

    background: #f8f9fb;

}

.page-header h1 {

    font-size: 52px;

    color: #0c315e;

    margin-bottom: 10px;

}

.page-header p {

    color: #777;

    font-size: 18px;

}

@media(max-width:768px) {

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-left,
    .contact-right {
        padding: 25px;
    }

}

/* ========================================
   FIND YOUR PERFECT HOLIDAY
======================================== */

.holiday-category-section {
    width: 100%;
    padding: 30px 0 10px;
    background: #ffffff;
}


/* ========================================
   SECTION HEADER
======================================== */

.holiday-section-header {
    margin-bottom: 20px;
}

.holiday-section-header h2 {
    margin: 0;

    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;

    color: #001B2A;
}


/* ========================================
   CATEGORY CONTAINER
======================================== */

.holiday-categories {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(10, 1fr);

    gap: 12px;
}


/* ========================================
   CATEGORY CARD
======================================== */

.holiday-category-card {
    min-height: 125px;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    padding: 15px 8px;

    background: #ffffff;

    border: 1px solid #E6E9EE;

    border-radius: 8px;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* ========================================
   ICON
======================================== */

.holiday-icon {
    width: 52px;
    height: 52px;

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

    margin-bottom: 8px;

    color: #001B2A;

    font-size: 30px;
}


/* ========================================
   TITLE
======================================== */

.holiday-category-card h3 {
    margin: 0;

    font-family: 'Poppins', sans-serif;

    font-size: 12px;
    line-height: 1.5;

    font-weight: 600;

    color: #001B2A;
}


/* ========================================
   HOVER EFFECT
======================================== */

.holiday-category-card:hover {
    transform: translateY(-5px);

    border-color: #B86008;

    box-shadow: 0 8px 20px rgba(0, 27, 42, 0.10);
}

.holiday-category-card:hover .holiday-icon {
    color: #B86008;
}

.holiday-category-card:hover h3 {
    color: #B86008;
}

@media (max-width: 1200px) {

    .holiday-categories {
        grid-template-columns: repeat(5, 1fr);
    }

}

@media (max-width: 768px) {

    .holiday-category-section {
        padding: 25px 0 30px;
    }

    .holiday-section-header {
        margin-bottom: 15px;
    }

    .holiday-section-header h2 {
        font-size: 23px;
    }

    .holiday-categories {
        display: flex;

        gap: 12px;

        overflow-x: auto;

        padding: 5px 5px 15px;

        scroll-behavior: smooth;

        scrollbar-width: none;
    }

    .holiday-categories::-webkit-scrollbar {
        display: none;
    }

    .holiday-category-card {
        flex: 0 0 125px;

        min-height: 120px;

        padding: 12px 8px;
    }

    .holiday-icon {
        width: 45px;
        height: 45px;

        font-size: 27px;
    }

    .holiday-category-card h3 {
        font-size: 11px;
    }

}

@media (max-width: 480px) {

    .holiday-category-section {
        padding: 20px 0 25px;
    }

    .holiday-section-header h2 {
        font-size: 21px;
    }

    .holiday-category-card {
        flex: 0 0 115px;

        min-height: 110px;
    }

    .holiday-icon {
        font-size: 25px;
    }

    .holiday-category-card h3 {
        font-size: 10px;
    }

}

/* ===========================
   CMS PAGE DESIGN
=========================== */


.cms-banner {

    height:350px;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url('/images/tour-banner.jpg');

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    text-align:center;

}


.cms-banner-overlay {

    width:100%;

}



.cms-banner h1 {

    color:#fff;

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;

}



.cms-banner p {

    color:#fff;

    font-size:17px;

}




/* Content */


.cms-section {

    padding:60px 0;

    background:#f7f8fa;

}



.cms-card {


    background:#fff;

    padding:40px;

    border-radius:15px;


    box-shadow:

    0 8px 25px rgba(0,0,0,.08);


}



/* CKEDITOR CONTENT */


.cms-content {


    font-size:16px;

    line-height:1.8;

    color:#444;

}



.cms-content h2 {


    color:#222;

    margin-top:25px;

    margin-bottom:15px;

}



.cms-content h3 {


    color:#333;

    margin-top:20px;

}



.cms-content p {


    margin-bottom:15px;

}



.cms-content ul {


    padding-left:25px;

    margin-bottom:20px;

}



.cms-content li {


    margin-bottom:10px;

}




.cms-content img {


    max-width:100%;

    border-radius:10px;

}




/* MOBILE */


@media(max-width:768px){


.cms-banner {

    height:200px;

}



.cms-banner h1 {

    font-size:28px;

}



.cms-section {

    padding:35px 15px;

}



.cms-card {

    padding:20px;

}



.cms-content {

    font-size:15px;

}



}

