* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;


}

:root {
    --theme-primary: #257F98;
    --theme-primary-dark: #1D667A;
    --theme-primary-light: #EAF4F7;
    --theme-text: #333333;
    --theme-text-dark: #222222;
    --theme-text-light: #666666;
    --theme-bg: #FFFAFA;
    --theme-bg-2: #F0EAD6;
    --theme-bg-3: #FAF9F6;
    --theme-bg-light: #F7FBFC;
    --theme-white: #FFFFFF;
    --theme-black: #000000;
    --theme-border: #D9E5E9;
    --theme-padding: 50px 0;

    --ts-marigold: #E8A33D;
    --ts-whatsapp: #25D366;
    --ts-whatsapp-dark: #1EBE5D;
    --ts-radius: 8px;
}

body {
    font-family: "Quicksand", sans-serif;
}



/* top bar section  */
.top-bar-section {
    background: var(--theme-primary-dark);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar-contact {
    min-height: 30px;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.top-bar-link:hover {
    color: var(--theme-white);
    transform: translateY(-1px);
}

.top-bar-icon {
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--theme-white);
    font-size: 12px;
    transition: all 0.3s ease;
}

.top-bar-link:hover .top-bar-icon {
    background: var(--theme-primary);
}

.top-bar-social {
    min-height: 30px;
}

.follow-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-right: 5px;
}

.social-icon {
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--theme-white);
    background: rgba(255, 255, 255, 0.10);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    transform: translateY(-2px);
}

.ts-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--theme-white);
    border-bottom: 1px solid floralwhite;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: height 0.3s ease, box-shadow 0.3s ease;
}


.ts-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
    transition: height 0.3s ease;
}

.ts-header.is-scrolled .ts-header__row {
    height: 62px;
}

.ts-logo {
    display: block;
    flex-shrink: 0;
}

.ts-logo img {
    width: 58px;
    height: auto;
    display: block;
    transition: width 0.3s ease;
}

.ts-header.is-scrolled .ts-logo img {
    width: 48px;
}

.ts-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ts-nav__item {
    position: relative;
}

.ts-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--theme-primary-dark);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.25s ease;
}

.ts-nav__link:hover,
.ts-nav__link.is-active,
.ts-nav__item--dropdown:hover .ts-nav__link,
.ts-nav__item--dropdown.is-open .ts-nav__link,
.ts-nav__item--dropdown:focus-within .ts-nav__link {
    color: var(--ts-marigold);
}

.ts-caret {
    font-size: 10px;
    margin-left: 2px;

    transition: transform 0.25s ease;
}

.ts-nav__item--dropdown:hover .ts-caret,
.ts-nav__item--dropdown.is-open .ts-caret,
.ts-nav__item--dropdown:focus-within .ts-caret {
    transform: rotate(180deg);
}

.ts-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    margin: 0;
    padding-top: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
    z-index: 1000;
}

.ts-nav__item--dropdown:hover .ts-dropdown,
.ts-nav__item--dropdown.is-open .ts-dropdown,
.ts-nav__item--dropdown:focus-within .ts-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.ts-dropdown__inner {
    padding: 8px 0;
    background: var(--theme-white);
    border-radius: var(--ts-radius);
    box-shadow: 0 12px 30px rgba(18, 25, 46, 0.16);
}

.ts-dropdown__inner li {
    list-style: none;
}

.ts-dropdown__link {
    display: block;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-text-dark);
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}

.ts-dropdown__link:hover {
    background-color: rgba(232, 163, 61, 0.10);
    color: var(--ts-marigold);
    padding-left: 22px;
}

.ts-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.ts-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--ts-whatsapp);
    color: var(--theme-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
}

.ts-whatsapp-btn i {
    font-size: 17px;
}

.ts-whatsapp-btn:hover {
    background: var(--ts-whatsapp-dark);
    color: var(--theme-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.ts-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: var(--theme-primary-dark);
    cursor: pointer;
}

.ts-burger__bar {
    width: 22px;
    height: 2px;
    background: var(--theme-bg-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ts-burger[aria-expanded="true"] .ts-burger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ts-burger[aria-expanded="true"] .ts-burger__bar:nth-child(2) {
    opacity: 0;
}

.ts-burger[aria-expanded="true"] .ts-burger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.ts-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(18, 25, 46, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.ts-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.ts-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 88%;
    height: 100vh;
    background: var(--theme-bg-light);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.77, 0, .18, 1);
    box-shadow: -14px 0 40px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.ts-mobile-menu.is-active {
    transform: translateX(0);
}

.ts-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(247, 241, 228, 0.1);
}

.ts-mobile-logo img {
    width: 54px;
    height: auto;
}

.ts-mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background-color: var(--theme-primary);
    color: var(--theme-bg-light);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ts-mobile-close:hover {
    background: var(--ts-marigold);
}

.ts-mobile-menu__body {
    padding: 16px 22px 30px;
}

.ts-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ts-mobile-nav>li {
    border-bottom: 1px solid rgba(247, 241, 228, 0.08);
}

.ts-mobile-link {
    display: block;
    padding: 16px 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-primary-dark);
    text-decoration: none;
    transition: all 0.25s ease;
}

.ts-mobile-link:hover,
.ts-mobile-link.is-active {
    color: var(--theme-primary);
    padding-left: 8px;
}

.ts-mobile-dropdown__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px;
    border: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-primary-dark);
    text-align: left;
    cursor: pointer;
}

.ts-mobile-dropdown__btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.ts-mobile-dropdown.is-open .ts-mobile-dropdown__btn {
    color: var(--ts-marigold);
}

.ts-mobile-dropdown.is-open .ts-mobile-dropdown__btn i {
    transform: rotate(180deg);
}

.ts-mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 10px 10px;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ts-mobile-dropdown.is-open .ts-mobile-submenu {
    max-height: 400px;
}

.ts-mobile-submenu li a {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--theme-primary-dark);
    text-decoration: none;
    border-bottom: 2px solid var(--theme-primary-light);
    transition: all 0.2s ease;
}

.ts-mobile-submenu li a:hover {
    color: var(--ts-marigold);
    border-left-color: var(--ts-marigold);
    padding-left: 18px;
}

.ts-mobile-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    margin-top: 22px;
    padding: 14px 20px;
    border-radius: var(--ts-radius);
    background: var(--ts-whatsapp);
    color: var(--theme-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ts-mobile-whatsapp:hover {
    background: var(--ts-whatsapp-dark);
    color: var(--theme-white);
}

/* home page slider  */

.home-page-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.homeSwiper {
    width: 100%;
    height: 680px;
}

.homeSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homeSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 2.5s ease;
}

.homeSwiper .swiper-slide-active img {
    transform: scale(1);
}

.slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.55));
}

.slider-content {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    text-align: center;
    color: var(--theme-white);
}


.slider-content h2 {
    margin: 0;
    font-size: 68px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--theme-white);
    text-shadow:
        0 3px 10px rgba(0, 0, 0, 0.35),
        0 8px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.5s ease 0.1s;

}

.home-slider-tour-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 14px 30px;
    border-radius: 50px;
    background: var(--theme-white);
    color: var(--theme-text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease 0.15s;

}

.home-slider-tour-btn:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    transform: translateY(-3px);
}

.home-slider-tour-btn i {
    transition: transform 0.3s ease;
}

.home-slider-tour-btn:hover i {
    transform: translateX(5px);
}


.homeSwiper .swiper-slide-active .slider-content h2 {
    opacity: 1;
    transform: translateY(0);
}

.homeSwiper .swiper-slide-active .home-slider-tour-btn {
    opacity: 1;
    transform: translateY(0);
}


.homeSwiper .home-banner-next,
.homeSwiper .home-banner-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    color: var(--theme-white);
    transition: 0.3s ease;
}

.homeSwiper .home-banner-next:hover,
.homeSwiper .home-banner-prev:hover {
    background: var(--theme-white);
    color: #111;
}

.homeSwiper .home-banner-next::after,
.homeSwiper .home-banner-prev::after {
    font-size: 16px;
    font-weight: 700;
}

.homeSwiper .home-banner-next {
    right: 30px;
}

.homeSwiper .home-banner-prev {
    left: 30px;
}

.homeSwiper .home-banner-pagination {
    bottom: 30px;
}

.homeSwiper .home-banner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--theme-white);
    opacity: 0.5;
    transition: 0.3s ease;
}

.homeSwiper .home-banner-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 20px;
    opacity: 1;
}


/* Hero video  */

.hero-travel {
    position: relative;
    width: 100%;
    height: 700px;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.hero-travel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 2;
    pointer-events: none;
}

.hero-travel .hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-content-section {
    padding: var(--theme-padding);
    background: var(--theme-bg-2);
}

.page-content-section h1 {
    margin: 0 0 20px;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--theme-text-dark);
    text-align: center;
}

.page-content-section h2 {
    margin: 35px 0 15px;
    font-size: 28px;
    line-height: 1.3;
    color: var(--theme-text-dark);
}

.page-content-section h3 {
    margin: 25px 0 12px;
    font-size: 21px;
    color: var(--theme-text);
}

.page-content-section p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--theme-text-light);
}

.page-content-section ul {
    margin: 15px 0 25px;
    padding-left: 22px;
}

.page-content-section li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--theme-text-light);
}

.more-content {
    display: none;
}

.more-content.show {
    display: block;
}

.read-more-btn {
    display: block;
    padding: 7px 16px;
    border: 0;
    border-radius: 3px;
    background: var(--theme-primary);
    color: var(--theme-white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.read-more-btn:hover {
    background: var(--theme-text-light);
}

.exclusive-services-section {
    background-color: var(--theme-bg-2);
    padding: var(--theme-padding);

}


.theme-title {
    position: relative;
    margin: 0 0 14px;
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--theme-text-dark);
    letter-spacing: -0.5px;
}

.theme-subtitle {
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ts-marigold);
}

.theme-subtitle::before,
.theme-subtitle::after {
    content: "";
    display: inline-block;
    width: 45px;
    height: 1px;
    background: var(--ts-marigold);
    vertical-align: middle;
    margin: 0 14px;
}

/* EXCLUSIVE SERVICES CARD */

.exclusive-services-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--theme-white);
    border: 1px solid #e8e5df;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--theme-black);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.exclusive-services-card:hover {
    color: var(--theme-black);
    text-decoration: none;
    transform: translateY(-8px);
    border-color: #d8d0c3;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}

.exclusive-services-card-img {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    background: #eee;
}

.exclusive-services-card-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.exclusive-services-card:hover .exclusive-services-card-img img {
    transform: scale(1.08);
}

.exclusive-services-card-img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.35),
            transparent);
    pointer-events: none;
}

.exclusive-services-card-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 7px 13px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #444;
    backdrop-filter: blur(5px);
}

.exclusive-services-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 27px 26px 25px;
}

.exclusive-services-card-content h3 {
    margin: 0 0 13px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--theme-black);
    transition: color 0.3s ease;
}

.exclusive-services-card:hover .exclusive-services-card-content h3 {
    color: var(--ts-marigold);
}

.exclusive-services-card-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #777;
}

.exclusive-services-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: fit-content;
    margin-top: 5px;
    padding: 9px 9px 9px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--ts-marigold);
    background: var(--theme-white);
    border: 1px solid #d8cbb9;
    border-radius: 30px;
    transition: all 0.35s ease;
}

.exclusive-services-card-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--ts-marigold);
    color: var(--theme-white);
    border-radius: 50%;
    font-size: 13px;
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.exclusive-services-card:hover .exclusive-services-card-link {
    color: var(--theme-white);
    background: var(--ts-marigold);
    border-color: var(--ts-marigold);
}

.exclusive-services-card:hover .exclusive-services-card-link i {
    transform: translateX(4px);
    background: var(--theme-white);
    color: var(--ts-marigold);
}

.exclusive-services-carousel {
    position: relative;
}

.exclusive-services-carousel .owl-nav {
    margin: 0;
}

.exclusive-services-carousel .owl-nav button.owl-prev,
.exclusive-services-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0 !important;
    border: 1px solid #d8cbb9 !important;
    border-radius: 50%;
    background: var(--theme-primary);
    color: var(--theme-white);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.exclusive-services-carousel .owl-nav button.owl-prev {
    left: -21px;
}

.exclusive-services-carousel .owl-nav button.owl-next {
    right: -21px;
}

.exclusive-services-carousel .owl-nav button i {
    font-size: 18px;
    line-height: 1;
}

.exclusive-services-carousel .owl-nav button.owl-prev:hover,
.exclusive-services-carousel .owl-nav button.owl-next:hover {
    background: var(--ts-marigold) !important;
    color: var(--theme-white) !important;
    border-color: var(--ts-marigold) !important;
}

.exclusive-services-carousel .owl-nav button:focus {
    outline: none;
}

/* Our Destination Section Start */
.our-destination-section {
    background-color: var(--theme-bg-light);
    padding: var(--theme-padding);
}

.destination-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.destination-link:hover {
    color: inherit;
    text-decoration: none;
}

.destination-card {
    position: relative;
    height: 100%;
    background: var(--theme-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.destination-link:hover .destination-card {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.destination-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.destination-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-link:hover .destination-image img {
    transform: scale(1.08);
}

.destination-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-block;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--theme-black);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.destination-content {
    padding: 25px 24px 28px;
}

.destination-content h4 {
    margin: 0 0 10px;
    color: var(--theme-black);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.destination-content p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.destination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 9px 17px;
    border: 1px solid var(--theme-primary);
    border-radius: 50px;
    color: var(--theme-primary);
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.destination-btn i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.destination-link:hover .destination-btn {
    color: var(--theme-white);
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}

.destination-link:hover .destination-btn i {
    transform: translateX(5px);
}

/* WHY CHOOSE US */
.why-choose-us-section {
    padding: var(--theme-padding);
    background: var(--theme-white);
    position: relative;
    overflow: hidden;
}

.why-feature-card {
    height: 100%;
    min-height: 230px;
    padding: 55px 25px 30px;
    background: var(--theme-bg-light);
    border: 1px solid var(--theme-border);
    border-radius: var(--ts-radius);
    position: relative;
    text-align: center;
    transition: all 0.35s ease;
}

.why-feature-icon {
    position: absolute;
    top: 0;
    left: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    background: var(--theme-white);
    border: 1px solid var(--theme-primary);
    border-radius: 50%;
    color: var(--theme-primary);
    font-size: 26px;
    box-shadow:
        0 8px 20px rgba(37, 127, 152, 0.12);
    z-index: 2;
    transition: all 0.35s ease;
}

.why-feature-number {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ts-marigold);
    letter-spacing: 1px;
}

.why-feature-content {
    margin-top: 18px;
}

.why-feature-content h4 {
    margin: 0 0 12px;
    color: var(--theme-text-dark);
    font-size: 20px;
    font-weight: 600;
}

.why-feature-content p {
    margin: 0;
    color: var(--theme-text-light);
    font-size: 14px;
    line-height: 1.75;
}

.why-feature-card:hover {
    transform: translateY(-8px);
    background: var(--theme-white);
    border-color: var(--theme-primary);
    box-shadow:
        0 18px 40px rgba(37, 127, 152, 0.13);
}

.why-feature-card:hover .why-feature-icon {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
    color: var(--theme-white);
    transform:
        translate(-50%, -50%) scale(1.08);
}

.why-feature-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    transform: translateX(-50%);
    background: var(--ts-marigold);
    transition: width 0.35s ease;
}

.why-feature-card:hover::after {
    width: 65px;
}

/* =========================================
   TOUR PACKAGE SECTION
========================================= */

.tour-package-section {
    padding: var(--theme-padding);
    background: var(--theme-bg-3);
}

.tour-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--theme-white);
    border: 1px solid var(--theme-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(37, 127, 152, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(37, 127, 152, 0.16);
    border-color: rgba(37, 127, 152, 0.18);
}

.tour-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #eee;
}

.tour-image>a {
    display: block;
    width: 100%;
    height: 100%;
}

.tour-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.07);
}

.tour-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.tour-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 13px;
    border-radius: 30px;
    color: var(--theme-white);
    background: var(--ts-marigold);
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tour-rating-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    color: var(--theme-text-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tour-rating-pill i {
    color: #ffb400;
    font-size: 11px;
}

.tour-rating-pill span {
    color: var(--theme-text-light);
    font-size: 11px;
    font-weight: 500;
}

.tour-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 22px;
}

.tour-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    margin-bottom: 10px;
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: var(--theme-primary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.tour-duration i {
    flex-shrink: 0;
    font-size: 13px;
}

.tour-price-final {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 4px;
    flex-shrink: 0;
    white-space: nowrap;
}

.tour-price-final strong {
    color: var(--theme-primary);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
}

.tour-price-final span {
    color: var(--theme-text-light);
    font-size: 9.5px;
    font-weight: 500;
    white-space: nowrap;
}

.tour-content hr {
    margin: 12px 0 14px;
    border: 0;
    border-top: 1px solid var(--theme-border);
    opacity: 0.8;
}

.tour-content h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.tour-content h3 a {
    color: var(--theme-text-dark);
    text-decoration: none;
    transition: color 0.25s ease;
}

.tour-content h3 a:hover {
    color: var(--theme-primary);
}

.tour-destination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
    line-height: 1.7;
}

.tour-destination span {
    color: var(--theme-text-light);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.tour-destination span:not(:last-child)::after {
    content: "•";
    display: inline-block;
    margin: 0 7px;
    color: var(--ts-marigold);
    font-weight: 700;
}

.tour-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
}

.tour-icon-btn {
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 7px;
    font-size: 17px;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.tour-icon-btn:hover {
    transform: translateY(-2px);
}

.tour-icon-btn.call-btn {
    background: var(--theme-primary-light);
    color: var(--theme-primary);
    border: 1px solid var(--theme-border);
}

.tour-icon-btn.call-btn:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
}

.tour-icon-btn.whatsapp-btn {
    background: #e6f8ee;
    color: #25d366;
    border: 1px solid #cdeedd;
}

.tour-icon-btn.whatsapp-btn:hover {
    background: #25d366;
    color: var(--theme-white);
}

.tour-btn-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    padding: 0 16px;
    background: var(--ts-marigold);
    color: var(--theme-white);
    border: 1px solid var(--ts-marigold);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.tour-btn-primary:hover {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
    color: var(--theme-white);
    transform: translateY(-2px);
}

.tour-btn-primary i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.tour-btn-primary:hover i {
    transform: translateX(3px);
}

.view-more-package {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 270px;
    height: 48px;
    padding: 0 22px;
    background: var(--theme-primary);
    color: var(--theme-white);
    border: 1px solid var(--theme-primary-dark);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.view-more-package i {
    font-size: 15px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.view-more-package:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 127, 152, 0.18);
}

.view-more-package:hover i {
    transform: translateX(4px);
}

.view-more-package:focus-visible {
    outline: 2px solid var(--theme-primary);
    outline-offset: 3px;
}


/* travel style  */

.travel-style-section {
    padding: var(--theme-padding);
    background: var(--theme-bg-1);
}

.travel-style-card {
    position: relative;
    display: block;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    background: #111;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.travel-style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.6s ease;
}

.travel-style-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;

    padding: 70px 22px 18px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.30) 45%,
            rgba(0, 0, 0, 0) 100%);
}

.travel-style-name {
    color: var(--theme-white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 5px;
}

.travel-style-tag {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.travel-style-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.16);
}

.travel-style-card:hover img {
    transform: scale(1.08);
}

.travel-style-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0);
    transition: background 0.4s ease;
    pointer-events: none;
}


.travel-style-card:hover::after {
    background: rgba(255, 255, 255, 0.03);
}


/* faq section design  */

.faq-section {
    padding: var(--theme-padding);
    background: #F8F8F8;
}

.faq-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--theme-white);
    border: 1px solid var(--theme-border);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 24px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--theme-text);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme-border);
    border-radius: 50%;
    color: var(--theme-text);
    font-size: 17px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.faq-answer {
    display: none;
    padding: 0 24px 22px;
}

.faq-answer p {
    margin: 0;
    color: var(--theme-text-light);
    font-size: 15px;
    line-height: 1.8;
}

.faq-item.active {
    border-color: var(--theme-primary);
}

.faq-item.active .faq-icon {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}


.inner-page-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.inner-page-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
}

.inner-banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.inner-banner-content h1 {
    margin: 0;
    color: var(--theme-white);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.8),
        0 4px 15px rgba(0, 0, 0, 0.5);
}



.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 18px 0;
}

.breadcrumb-nav a {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #000;
}

.breadcrumb-nav span {
    color: #777;
}

.breadcrumb-nav span:last-child {
    color: #333;
    font-weight: 500;
}


/* Contact Info Section */

.contact-info-section {
    background-color: var(--theme-bg-2);
    padding: var(--theme-padding);
}

.contact-info-card {
    position: relative;
    height: 100%;
    padding: 30px 25px;
    background: var(--theme-white);
    border: 1px solid #eeeeee;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--theme-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.contact-info-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 0, 0, 0.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.contact-info-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--theme-primary);
    color: var(--theme-white);
    font-size: 21px;
    transition: all 0.35s ease;
}

.contact-info-card:hover .contact-info-icon {
    border-radius: 50%;
    transform: rotate(-5deg);
}

.contact-info-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: #f1f1f1;
    transition: 0.3s ease;
}

.contact-info-card:hover .contact-info-number {
    color: rgba(0, 0, 0, 0.06);
}

.contact-info-content h3 {
    margin: 0 0 10px;
    color: var(--theme-text-dark);
    font-size: 19px;
    font-weight: 700;
}

.contact-info-content p {
    min-height: 70px;
    margin: 0 0 18px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--theme-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-link i {
    transition: transform 0.3s ease;
}

.contact-info-link:hover {
    color: var(--theme-black);
}

.contact-info-link:hover i {
    transform: translateX(4px);
}


.contact-open-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #666;
    font-size: 12px;
    font-weight: 500;
}

.contact-open-status i {
    color: #28a745;
    font-size: 7px;
}

/* Contact Main Section */

.contact-main-section {
    padding: var(--theme-padding);
    background-color: var(--theme-bg-3);
}

.contact-form-wrap {
    padding: 35px;
    background: var(--theme-white);
    border-radius: 12px;
}

.section-subtitle {
    display: inline-block;
    color: var(--theme-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-form-wrap h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #222;
}

.contact-form-intro {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form label span {
    color: #e04141;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    background: var(--theme-white);
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    display: inline-block;
    padding: 14px 38px;
    border: none;
    border-radius: 8px;
    background: var(--theme-primary);
    color: var(--theme-white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


.contact-map-wrap {
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* Itinerary Info Section */

.iti-banner {
    width: 100%;
    padding: 25px 0;
    background: var(--theme-bg-3);
}

.iti-banner-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 10px;
    height: 500px;
    cursor: pointer;
}


.iti-banner-main {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: var(--ts-radius);
}

.iti-banner-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.iti-banner-main:hover img {
    transform: scale(1.04);
}

.iti-banner-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    min-width: 0;
}

.iti-banner-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--ts-radius);
}

.iti-banner-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.iti-banner-item:hover img {
    transform: scale(1.06);
}



@media (max-width: 991.98px) {

    .iti-banner-gallery {
        height: 430px;
        grid-template-columns: 1.3fr 1fr;
    }

}


@media (max-width: 767.98px) {

    .iti-banner {
        padding: 15px 0;
    }

    .iti-banner-gallery {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .iti-banner-main {
        height: 300px;
    }

    .iti-banner-side {
        height: 300px;
        gap: 8px;
    }



}


@media (max-width: 480px) {

    .iti-banner-main {
        height: 240px;
    }

    .iti-banner-side {
        height: 240px;
    }

}

.iti-page-info {
    padding: 45px 0;
    background: var(--theme-bg-light);
}

.iti-info-card {
    position: relative;
    height: 100%;
    min-height: 115px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: var(--theme-white);
    border: 1px solid var(--theme-primary);
    border-radius: var(--ts-radius);
    box-shadow: 0 8px 24px rgba(37, 127, 152, 0.10);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.iti-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--theme-primary);
    transition: width 0.3s ease;
}

.iti-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--theme-primary-dark);
    box-shadow:
        0 16px 35px rgba(37, 127, 152, 0.18);
}

.iti-info-card:hover::before {
    width: 6px;
}

.iti-info-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-primary);
    color: var(--theme-white);
    font-size: 21px;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.iti-info-card:hover .iti-info-icon {
    transform: scale(1.08) rotate(-5deg);
    background: var(--theme-primary-dark);
}

.iti-info-content {
    min-width: 0;
    flex: 1;
}

.iti-info-content span {
    display: block;
    margin-bottom: 6px;
    color: var(--theme-text-light);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

.iti-info-card:hover .iti-info-content span {
    color: var(--theme-primary);
}

.iti-info-content h3 {
    margin: 0;
    color: var(--theme-text-dark);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: break-word;
}

.iti-info-content h3 a {
    color: var(--theme-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.iti-info-content h3 a:hover {
    color: var(--theme-primary-dark);
}

.day-wise-iti-section {
    padding: var(--theme-padding);
    background: var(--theme-bg-3);
}

.day-wise-iti-heading {
    margin-bottom: 35px;
}

.day-wise-iti-heading h2 {
    margin: 0 0 10px;
    color: var(--theme-text-dark);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.day-wise-iti-item {
    position: relative;
    margin-bottom: 15px;
    background: var(--theme-white);
    border: 1px solid var(--theme-border);
    border-radius: var(--ts-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.day-wise-iti-item:hover {
    border-color: var(--theme-primary);
    box-shadow: 0 8px 25px rgba(37, 127, 152, 0.08);
}

.day-wise-iti-item.active {
    border-color: var(--theme-primary);
    box-shadow: 0 8px 25px rgba(37, 127, 152, 0.10);
}

.day-wise-iti-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.day-wise-iti-number {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--theme-primary);
    color: var(--theme-white);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(37, 127, 152, 0.18);
    transition: all 0.3s ease;
}

.day-wise-iti-number span {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-wise-iti-number strong {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

.day-wise-iti-item.active .day-wise-iti-number {
    background: var(--theme-primary-dark);
}


.day-wise-iti-title {
    flex: 1;
}

.day-wise-iti-title>span {
    display: block;
    margin-bottom: 3px;
    color: var(--theme-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.day-wise-iti-title h3 {
    margin: 0;
    color: var(--theme-text-dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}


.day-wise-iti-toggle {
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-primary-light);
    color: var(--theme-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.day-wise-iti-toggle i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.day-wise-iti-item.active .day-wise-iti-toggle {
    background: var(--theme-primary);
    color: var(--theme-white);
}

.day-wise-iti-item.active .day-wise-iti-toggle i {
    transform: rotate(180deg);
}

.day-wise-iti-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.day-wise-iti-body-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 20px 0 93px;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        padding 0.4s ease;
}

.day-wise-iti-item.active .day-wise-iti-body {
    grid-template-rows: 1fr;
}

.day-wise-iti-item.active .day-wise-iti-body-inner {
    padding-top: 0;
    padding-bottom: 25px;
    opacity: 1;
}

.day-wise-iti-body-inner p {
    margin: 0 0 15px;
    color: var(--theme-text-light);
    font-size: 14px;
    line-height: 1.75;
}

.day-wise-iti-body-inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.day-wise-iti-body-inner li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--theme-text);
    font-size: 14px;
    line-height: 1.5;
}

.day-wise-iti-body-inner li:last-child {
    margin-bottom: 0;
}

.day-wise-iti-body-inner li::before {
    content: "\F26A";
    position: absolute;
    left: 0;
    top: 1px;
    font-family: bootstrap-icons;
    color: var(--theme-primary);
    font-size: 14px;
}

.day-wise-iti-sidebar {
    position: sticky;
    top: 100px;
}

.day-wise-iti-card {
    padding: 25px;
    margin-bottom: 20px;
    background: var(--theme-white);
    border: 1px solid var(--theme-border);
    border-radius: var(--ts-radius);
    box-shadow: 0 5px 20px rgba(37, 127, 152, 0.06);
    transition: all 0.3s ease;
}

.day-wise-iti-card:hover {
    border-color: var(--theme-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 127, 152, 0.10);
}

.day-wise-iti-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--theme-border);
}

.day-wise-iti-card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-primary-light);
    color: var(--theme-primary);
    border-radius: 50%;
    font-size: 19px;
}

.day-wise-iti-card-header h3 {
    margin: 0;
    color: var(--theme-text-dark);
    font-size: 19px;
    font-weight: 700;
}

.day-wise-iti-inclusion-list,
.day-wise-iti-exclusion-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.day-wise-iti-inclusion-list li,
.day-wise-iti-exclusion-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--theme-text);
    font-size: 13px;
    line-height: 1.5;
}

.day-wise-iti-inclusion-list li:last-child,
.day-wise-iti-exclusion-list li:last-child {
    margin-bottom: 0;
}

.day-wise-iti-inclusion-list i {
    color: var(--ts-whatsapp);
    font-size: 15px;
}

.day-wise-iti-exclusion-list i {
    color: #C94A4A;
    font-size: 13px;
}

.day-wise-iti-exclusion-icon {
    background: #FFF3F3;
    color: #C94A4A;
}

.day-wise-iti-whatsapp-card {
    position: relative;
    padding: 28px 25px;
    overflow: hidden;
    background: linear-gradient(135deg,
            var(--ts-whatsapp),
            var(--ts-whatsapp-dark));
    color: var(--theme-white);
    border-radius: var(--ts-radius);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.18);
}

.day-wise-iti-whatsapp-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -75px;
    right: -55px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.day-wise-iti-whatsapp-card::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    right: 25px;
    bottom: -40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.day-wise-iti-whatsapp-card .day-wise-iti-custom-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: var(--theme-white);
    font-size: 23px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}


.day-wise-iti-whatsapp-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--theme-white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}


.day-wise-iti-whatsapp-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 13px;
    line-height: 1.7;
}

.day-wise-iti-whatsapp-number {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 20px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
}

.day-wise-iti-whatsapp-number span {
    color: rgba(255, 255, 255, 0.70);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.day-wise-iti-whatsapp-number a {
    color: var(--theme-white);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.day-wise-iti-whatsapp-number a:hover {
    color: var(--theme-white);
    opacity: 0.80;
}

.day-wise-iti-contact-actions {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 10px;
    width: 100%;
}

.day-wise-iti-contact-actions .day-wise-iti-custom-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    padding: 11px 12px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}


.day-wise-iti-call-btn {
    background: var(--theme-white);
    color: var(--theme-primary);
    border: 1px solid var(--theme-white);
}

.day-wise-iti-call-btn:hover {
    background: var(--theme-primary-light);
    color: var(--theme-primary-dark);
    border-color: var(--theme-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
}

.day-wise-iti-whatsapp-btn {
    background: rgba(255, 255, 255, 0.14);
    color: var(--theme-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.day-wise-iti-whatsapp-btn:hover {
    background: var(--theme-white);
    color: var(--ts-whatsapp-dark);
    border-color: var(--theme-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
}

.day-wise-iti-contact-actions .day-wise-iti-custom-btn i {
    font-size: 15px;
    flex-shrink: 0;
}


/* footer design  */

.ts-footer {
    background: var(--theme-text-dark);
    color: var(--theme-white);
}

.ts-footer-main {
    padding: 70px 0 55px;
    background:
        linear-gradient(135deg,
            var(--theme-text-dark),
            #18343d);
}


.ts-footer-about {
    max-width: 390px;
}

.ts-footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.ts-footer-logo img {
    width: 100px;
    height: auto;
    display: block;
}

.ts-footer-about p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.8;
}

.ts-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.ts-footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--theme-white);
    font-size: 15px;
    text-decoration: none;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.ts-footer-social a:hover {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
    transform: translateY(-3px);
}

.ts-footer-column h3 {
    position: relative;
    margin: 0 0 25px;
    color: var(--theme-white);
    font-size: 17px;
    font-weight: 700;
}

.ts-footer-column h3::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    margin-top: 10px;
    background: var(--ts-marigold);
}

.ts-footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.ts-footer-column ul li {
    margin-bottom: 12px;
}

.ts-footer-column ul li:last-child {
    margin-bottom: 0;
}

.ts-footer-column ul li a {
    position: relative;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.ts-footer-column ul li a:hover {
    color: var(--theme-white);
    padding-left: 5px;
}

.ts-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ts-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.ts-footer-contact-icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 127, 152, 0.15);
    border: 1px solid rgba(37, 127, 152, 0.35);
    border-radius: 50%;
    color: var(--theme-primary);
    font-size: 14px;
}

.ts-footer-contact li div {
    display: flex;
    flex-direction: column;
}

.ts-footer-contact small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ts-footer-contact a {
    color: var(--theme-white) !important;
    padding-left: 0 !important;
    font-size: 14px;
    text-decoration: none;
}

.ts-footer-contact a:hover {
    color: var(--ts-marigold) !important;
}

.ts-footer-enquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 20px;
    background: var(--theme-primary);
    border-radius: var(--ts-radius);
    color: var(--theme-white) !important;
    font-size: 14px !important;
    font-weight: 600;
    text-decoration: none !important;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.ts-footer-enquiry:hover {
    background: var(--theme-primary-dark);
    padding-left: 20px !important;
    transform: translateY(-2px);
}

.ts-footer-enquiry i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.ts-footer-enquiry:hover i {
    transform: translateX(4px);
}

.ts-footer-bottom {
    background: var(--theme-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    color: var(--theme-white);
}

.ts-footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ts-footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.ts-footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ts-footer-legal a {
    color: var(--theme-white);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ts-footer-legal a:hover {
    color: var(--theme-white);
}

.ts-footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

.mobile-bottom-cta {
    display: none;
}


/* Go To Top Button */

.ts-go-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--theme-border);
    border-radius: 50%;
    background: var(--ts-marigold);
    color: var(--theme-white);
    font-size: 25px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.ts-go-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ts-go-top:hover {
    background: var(--theme-primary-dark);
    border-color: var(--theme-primary-dark);
    color: var(--theme-white);
    transform: translateY(-4px);
}

/* Destination tab section  */

.destination-tabs-main {
    padding: var(--theme-padding);
}

.destination-tabs-wrapper {
    margin: 40px 0 20px;
}

.destination-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 0;
}

.destination-tabs .nav-link {
    border: 1px solid var(--theme-border);
    background: var(--theme-white);
    color: var(--theme-text-dark);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.destination-tabs .nav-link:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
}

.destination-tabs .nav-link.active {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
}

.destination-tabs .nav-link:focus {
    box-shadow: none;
}

.destination-tab-content {
    margin-top: 10px;
}

/* testimonial section  */

.testimonials-section {
    padding: var(--theme-padding);
    background: #e7e7e7;
}

.testimonials-swiper {
    position: relative;
    padding: 10px 45px 55px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    width: 100%;
    height: 100%;
    padding: 24px;
    background: var(--theme-white);
    border: 1px solid var(--theme-border);
    border-radius: var(--ts-radius);
    box-shadow: 0 5px 20px rgba(37, 127, 152, 0.07);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 127, 152, 0.25);
    box-shadow: 0 12px 28px rgba(37, 127, 152, 0.12);
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 11px;
}

.testimonial-client img {
    width: 48px;
    height: 48px;
    min-width: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--theme-primary-light);
    background: var(--theme-primary-light);
}

.testimonial-client h4 {
    margin: 0 0 3px;
    font-size: 15px;
    font-weight: 700;
    color: var(--theme-text-dark);
}

.testimonial-client span {
    display: block;
    font-size: 12px;
    color: var(--theme-text-light);
}

.testimonial-quote {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-primary-light);
}

.testimonial-quote i {
    font-size: 18px;
    color: var(--theme-primary);
}

.testimonial-rating {
    margin-top: 18px;
}

.testimonial-rating i {
    margin-right: 2px;
    font-size: 12px;
    color: var(--ts-marigold);
}

.testimonial-comment {
    margin: 12px 0 18px;
    height: 100px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--theme-text-light);
    font-style: italic;
    overflow: hidden;
    position: relative;
}

.testimonial-destination {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-top: 14px;
    border-top: 1px solid var(--theme-border);
}

.testimonial-destination i {
    font-size: 14px;
    color: var(--theme-primary);
}

.testimonial-destination span {
    font-size: 12px;
    font-weight: 600;
    color: var(--theme-text-light);
}


.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
    width: 38px;
    height: 38px;
    margin-top: -22px;
    border-radius: 50%;
    background: var(--theme-white);
    color: var(--theme-primary);
    border: 1px solid var(--theme-border);
    box-shadow: 0 5px 15px rgba(37, 127, 152, 0.10);
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
    transform: scale(1.06);
}

.testimonials-swiper .swiper-button-prev {
    left: 0;
}

.testimonials-swiper .swiper-button-next {
    right: 0;
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

.testimonials-pagination {
    bottom: 5px !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 4px !important;
    opacity: 1;
    background: var(--theme-white);
    transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 10px;
    background: var(--theme-primary);
}


/* about page design  */

.company-intro-section {
    padding: var(--theme-padding);
    background: var(--theme-bg-3);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.company-intro-section .container {
    width: 100%;
    max-width: 100%;
}

.company-intro-image {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
    width: 100%;
    max-width: 100%;
}

.company-intro-image img {
    width: 100%;
    max-width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.company-intro-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 75%;
    border: 3px solid var(--primary-color, #01a485);
    border-radius: 12px;
    z-index: 0;
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    left: -15px;
    bottom: 45px;
    z-index: 2;
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-primary);
    border: 6px solid var(--theme-white);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.experience-year {
    display: block;
    color: var(--theme-white);
    font-size: 27px;
    font-weight: 800;
    line-height: 1;
}

.experience-text {
    margin-top: 7px;
    color: var(--theme-white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-intro-content {
    padding-left: 10px;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
}

.company-intro-content .section-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--theme-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-intro-content h2 {
    margin-bottom: 20px;
    color: var(--theme-text-dark);
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
}

.company-intro-content h2 span {
    color: var(--primary-color, #01a485);
}

.company-intro-content p {
    margin-bottom: 15px;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

.company-intro-content p strong {
    color: #222222;
}

.company-experience-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    padding: 14px 22px;
    background: #f5faf8;
    border-left: 4px solid var(--primary-color, #01a485);
    border-radius: 6px;
    max-width: 100%;
}

.experience-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color, #01a485);
    color: #ffffff;
    border-radius: 50%;
    font-size: 22px;
}

.experience-info {
    display: flex;
    flex-direction: column;
}

.experience-info strong {
    color: #222222;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.experience-info span {
    margin-top: 3px;
    color: #777777;
    font-size: 13px;
}

.whatsapp-journey-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 15px;
    padding: 10px 18px 10px 10px;
    background: #25D366;
    color: var(--theme-white);
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.whatsapp-journey-btn:hover {
    color: var(--theme-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-journey-icon {
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-white);
    color: #25D366;
    border-radius: 50%;
    font-size: 23px;
}

.whatsapp-journey-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.whatsapp-journey-text small {
    margin-bottom: 3px;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
}

.whatsapp-journey-text strong {
    font-size: 14px;
    font-weight: 700;
    overflow-wrap: break-word;
}

.whatsapp-arrow {
    margin-left: 5px;
    font-size: 17px;
    transition: transform 0.3s ease;
}

.whatsapp-journey-btn:hover .whatsapp-arrow {
    transform: translate(2px, -2px);
}





/* PHOTO GALLERY SECTION */


.photo-gallery-section {
    padding: var(--theme-padding);
    background-color: var(--theme-bg-2);
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 12px;
    background: #eeeeee;
    text-decoration: none;
    cursor: pointer;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}


.gallery-overlay i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-white);
    color: var(--primary-color, #01a485);
    font-size: 22px;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}


.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* cta design */
.theme-cta-main {
    padding: var(--theme-padding);
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.theme-cta-main::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.theme-cta-main::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.theme-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.theme-cta-content {
    flex: 1 1 420px;
}

.theme-cta-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--theme-white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.theme-cta-content h2 {
    color: var(--theme-white);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
}

.theme-cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 26px;
}

.theme-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ts-marigold);
    color: var(--theme-white);
    padding: 14px 28px;
    border-radius: var(--ts-radius);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.theme-cta-btn i {
    transition: transform 0.3s ease;
}

.theme-cta-btn:hover {
    background: var(--theme-white);
    color: var(--theme-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.theme-cta-btn:hover i {
    transform: translateX(4px);
}

.theme-cta-contacts {
    flex: 1 1 380px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.theme-cta-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--ts-radius);
    padding: 14px 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.theme-cta-contact-card:hover {
    background: var(--theme-white);
    transform: translateX(6px);
}

.theme-cta-contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: var(--theme-white);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.theme-cta-whatsapp .theme-cta-contact-icon {
    background: var(--ts-whatsapp);
}

.theme-cta-contact-card:hover .theme-cta-contact-icon {
    background: var(--theme-primary-light);
    color: var(--theme-primary-dark);
}

.theme-cta-whatsapp:hover .theme-cta-contact-icon {
    background: var(--ts-whatsapp);
    color: var(--theme-white);
}

.theme-cta-contact-card small {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.theme-cta-contact-card:hover small {
    color: var(--theme-text-light);
}

.theme-cta-contact-card strong {
    color: var(--theme-white);
    font-size: 15px;
    font-weight: 600;
}

.theme-cta-contact-card:hover strong {
    color: var(--theme-text-dark);
}