.special-packages-sec {
    height: fit-content;
    width: auto;
}

.testimonial-swiper {
    bottom: 50px !important;
}

/* Optimized Image Supporting CSS */
.special-package-img-box {
    position: relative;
    overflow: hidden;
}
.special-package-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.special-package-content {
    position: relative;
    z-index: 1;
}
.banner-image-optimized img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Trending Destinations Section Styles */
.trending-destinations-sec {
    z-index: 10;
    margin-top: -15px;
    min-height: 120px;
    height: auto;
}

.trending-destinations-wrapper {
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.9); 
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
}

.trending-destinations-swiper {
    height: auto !important;
    min-height: 100px;
}

.trending-destinations-swiper .swiper-slide {
    width: 33.333%;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .trending-destinations-swiper .swiper-slide {
        width: 25%;
    }
}

@media (min-width: 768px) {
    .trending-destinations-swiper .swiper-slide {
        width: 16.666%;
    }
}

@media (min-width: 1024px) {
    .trending-destinations-swiper .swiper-slide {
        width: 12.5%;
    }
}

@media (min-width: 1400px) {
    .trending-destinations-swiper .swiper-slide {
        width: 10%;
    }
}

.trending-dest-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.trending-dest-item:hover {
    transform: translateY(-5px);
}

.dest-icon-box {
    width: 70px;
    height: 70px;
    position: relative;
    transition: all 0.3s ease;
}

.trending-dest-item:hover .dest-icon-box {
    transform: scale(1.1);
    background: #fff !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.dest-icon-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.trending-dest-item:hover .dest-icon-box img {
    filter: brightness(1.05);
    opacity: 1;
}

.dest-icon-box i {
    font-size: 32px;
    color: #666;
    transition: all 0.3s ease;
}

.trending-dest-item:hover .dest-icon-box i {
    color: var(--travelspoc-base, #f7ae1d);
}

.dest-name {
    text-transform: capitalize;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 13px;
}

.trending-dest-item:hover .dest-name {
    color: var(--travelspoc-base, #f7ae1d);
}

.trending-badge {
    position: absolute;
    top: 8px;
    right: 0;
    background: #f7ae1d;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(247, 174, 29, 0.3);
}

/* Swiper Navigation Customization */
.trending-destinations-swiper {
    padding: 0 40px !important;
}

.trending-destinations-swiper .swiper-button-next,
.trending-destinations-swiper .swiper-button-prev {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #333;
    top: 50%;
    transform: translateY(-50%);
}

.trending-destinations-swiper .swiper-button-next {
    right: 0 !important;
    top: 65% !important;
}

.trending-destinations-swiper .swiper-button-prev {
    left: 0 !important;
    top: 65% !important;
}

.trending-destinations-swiper .swiper-button-next:after,
.trending-destinations-swiper .swiper-button-prev:after {
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 991px) {
    .trending-destinations-sec {
        height: auto;
        margin-top: 0;
    }
    .trending-destinations-wrapper {
        padding: 15px;
        border-radius: 8px;
    }
    .trending-destinations-swiper {
        height: auto !important;
        min-height: 80px;
    }
    .dest-icon-box {
        width: 60px;
        height: 60px;
    }
    .dest-icon-box i {
        font-size: 26px;
    }
    .dest-name {
        font-size: 12px;
    }
    .trending-destinations-swiper {
        padding: 0 30px !important;
    }
    .trending-destinations-swiper .swiper-button-next,
    .trending-destinations-swiper .swiper-button-prev {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 767px) {
    .trending-destinations-sec {
        height: auto;
        margin-top: 10px;
    }
    .trending-destinations-wrapper {
        padding: 12px;
        border-radius: 8px;
    }
    .trending-destinations-swiper {
        height: auto !important;
        min-height: 80px;
    }
    .trending-dest-item {
        text-align: center;
    }
    .dest-icon-box {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    .dest-icon-box i {
        font-size: 22px;
    }
    .dest-name {
        font-size: 11px;
        white-space: normal;
    }
    .trending-badge {
        font-size: 8px;
        padding: 1px 4px;
        top: 5px;
    }
    .trending-destinations-swiper {
        padding: 0 20px !important;
    }
    .trending-destinations-swiper .swiper-button-next,
    .trending-destinations-swiper .swiper-button-prev {
        display: none;
    }
}

/* Dark Mode Styles */
body.dark-style {
    background-color: #1a1a1a;
    color: #e0e0e0;
}
body.dark-style .trending-destinations-wrapper {
    background: rgba(42, 42, 42, 0.9);
    color: #e0e0e0;
}
body.dark-style .dest-icon-box {
    background: #333 !important;
}
body.dark-style .upcoming-card {
    background: #2a2a2a;
    color: #e0e0e0;
}
body.dark-style .upcoming-card-content h3,
body.dark-style .upcoming-card-content p {
    color: #e0e0e0;
}
body.dark-style .price-text {
    color: #ff9900;
}
body.dark-style .main-header {
    background: #2a2a2a;
}
body.dark-style .main-header__logo img {
    filter: brightness(0) invert(1);
}
body.dark-style .btn-gradient {
    background: linear-gradient(135deg, #ff9900, #ff6600);
    color: white;
}

/* Upcoming Packages Section */
.upcoming-packages-sec {
    background-color: #fff;
    padding: 40px 0;
}
.upcoming-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.upcoming-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}
.view-all-link {
    color: #ff7e1a;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.view-all-link:hover {
    gap: 12px;
    color: #e66d10;
}
.upcoming-packages-sec .row > [class*="col-"] {
    display: flex;
}
.upcoming-card {
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0 !important;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.upcoming-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}
.upcoming-card-img-box {
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.upcoming-card-img-box img {
    transition: transform 0.6s ease;
    object-fit: cover;
    width: 100% !important;
    height: 220px !important;
    display: block;
}
.upcoming-card:hover .upcoming-card-img-box img {
    transform: scale(1.05);
}
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 15px;
    background: #ff9900;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.upcoming-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.upcoming-card-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.3em * 2);
    word-break: break-word;
}
.duration-text {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-bottom: 12px;
}
.inclusions-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.inclusion-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #888;
    font-weight: 500;
}
.inclusion-item i {
    color: #ff7e1a;
    font-size: 12px;
}
.upcoming-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
    margin-top: auto;
}
.price-text {
    font-size: 20px;
    font-weight: 800;
    color: #ff7e1a;
}
.view-details-link {
    color: #ff7e1a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}
.view-details-link:hover {
    gap: 8px;
}

/* Special Offer Banner Section */
.special-offer-banner-sec {
    background-color: #fff;
}
.special-offer-swiper {
    height: 280px;
    border-radius: 20px;
}
.offer-banner-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.offer-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0.4) 70%, rgba(255,255,255,0) 100%);
    display: flex;
    align-items: center;
    z-index: 1;
}
.offer-banner-content {
    max-width: 450px;
    color: #1a2b48;
}
.offer-banner-title {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    color: #1a2b48;
    font-weight: 500;
    margin-bottom: 5px !important;
}
.offer-banner-subtitle {
    font-size: 15px;
    color: #666;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 10px !important;
}
.offer-banner-divider {
    width: 280px;
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin-bottom: 10px !important;
}
.offer-banner-starting {
    font-size: 18px;
    color: #1a2b48;
    font-weight: 400;
}
.offer-banner-starting span {
    font-size: 22px;
}
.offer-banner-btn {
    background: #0d1b31 !important;
    border: none !important;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 8px 25px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border-radius: 50px !important;
}
.offer-banner-btn:hover {
    background: #1a2b48 !important;
    transform: translateY(-2px);
}
.offer-banner-footer {
    z-index: 2;
}
.x-small {
    font-size: 11px;
}
.special-offer-swiper .swiper-button-next,
.special-offer-swiper .swiper-button-prev {
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    color: #fff !important;
    transition: all 0.3s ease;
}
.special-offer-swiper .swiper-button-next:hover,
.special-offer-swiper .swiper-button-prev:hover {
    background: rgba(0,0,0,0.8);
}
.special-offer-swiper .swiper-button-next:after,
.special-offer-swiper .swiper-button-prev:after {
    font-size: 14px;
    font-weight: 900;
}

/* Premium Combined Section */
.premium-combined-sec {
    background: #fff;
    padding: 30px 0;
    overflow: hidden;
}
.milestones-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}
.milestone-side-img {
    width: 180px;
    filter: contrast(1.2) brightness(1.1);
}
.milestone-stats-box {
    text-align: center;
    display: flex;
    gap: 60px;
    transform: translateY(-10px);
}
.milestone-stat {
    position: relative;
}
.milestone-number {
    font-size: 38px;
    font-weight: 800;
    color: #f7ae1d;
    margin-bottom: 5px;
}
.milestone-label {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}
.why-choose-main-row {
    margin-bottom: 40px;
}
.iphone-mockup-v2 {
    width: 100%;
    max-width: 320px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.15));
}
.why-choose-header {
    margin-bottom: 40px;
}
.why-choose-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
}
.why-choose-header h2 span {
    color: #f7ae1d;
}
.stepper-list {
    position: relative;
    padding-left: 20px;
}
.stepper-list:before {
    content: "";
    position: absolute;
    left: 40px;
    top: 25px;
    bottom: 25px;
    width: 2px;
    border-left: 2px dashed #ddd;
}
.stepper-item {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}
.stepper-icon {
    width: 40px;
    height: 40px;
    background: #f7ae1d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(247, 174, 29, 0.3);
}
.stepper-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}
.stepper-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.reviews-bottom-row {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 30px;
}
.google-summary-card {
    text-align: center;
}
.excellent-text {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.google-stars {
    color: #f7ae1d;
    font-size: 22px;
    margin-bottom: 15px;
}
.based-on {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}
.review-cards-container {
    display: flex;
    gap: 20px;
}
.review-card-v2 {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    flex: 1;
}
.reviewer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.reviewer-name {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0;
}
.review-meta {
    font-size: 12px;
    color: #999;
}
.review-rating-mini {
    margin-left: auto;
    color: #28a745;
    font-size: 14px;
    font-weight: 700;
}
.review-text-v2 {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}
.review-photos-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.review-photo-v2 {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 6px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .upcoming-header h2 {
font-size: 18px !important;
    }
    .milestones-top-row {
        flex-direction: column;
        gap: 30px;
    }
    .milestone-side-img {
        display: none;
    }
    .review-cards-container {
        flex-direction: column;
    }
    .stepper-list:before {
        left: 39px;
    }
}

.special-offer-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.6;
    transition: all 0.3s ease;
}
.special-offer-swiper .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 5px;
    background: #fff;
    opacity: 1;
}

@media (max-width: 991px) {
    .offer-banner-overlay {
        width: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    }
    .offer-banner-title {
        font-size: 24px;
    }
    .special-offer-swiper {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .upcoming-packages-sec {
        padding: 40px 0;
    }
    .upcoming-card-title {
        font-size: 16px;
    }
    .price-box {
        font-size: 18px;
        padding: 8px 20px;
    }
}

/* Upcoming Packages - Responsive image heights & layout */
@media (max-width: 1399.98px) {
    .upcoming-card-img-box img { height: 200px !important; }
}
@media (max-width: 1199.98px) {
    .upcoming-card-img-box img { height: 190px !important; }
    .upcoming-card-content { padding: 18px; }
}
/* Fix for 1200-991px viewport: prevent text wrapping and ensure 3 items */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Force 3-column layout when not using swiper */
    .upcoming-packages-sec .row > .col-lg-3 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
    .upcoming-card-footer {
        flex-wrap: nowrap !important;
        gap: 8px !important;
    }
    .view-details-link {
        white-space: nowrap !important;
        font-size: 12px !important;
    }
    .price-text {
        font-size: 18px !important;
    }
}
@media (max-width: 991.98px) {
    .upcoming-card-img-box img { height: 220px !important; }
    .upcoming-card-title { font-size: 17px; }
    .inclusions-list { gap: 8px; }
    .inclusion-item { font-size: 11px; }
}
@media (max-width: 767.98px) {
    .upcoming-header {
        gap: 8px;
        margin-bottom: 24px;
    }
    .upcoming-card-img-box img { height: 200px !important; }
    .upcoming-card-content { padding: 16px; }
    .price-text { font-size: 18px; }
    .view-details-link { font-size: 12px; }
}
@media (max-width: 575.98px) {
    .upcoming-card-img-box img { height: 210px !important; }
    .upcoming-card-title {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        min-height: calc(1.3em * 2);
    }
    .upcoming-card-footer {
        flex-wrap: wrap;
        gap: 8px;
    }
    .view-all-link {
        font-size: 13px;
    }
}

/* Premium Combined Section v3 */
.premium-combined-v3-sec {
    background-color: #fff;
    padding: 30px 0;
}
.mockup-img {
    max-width: 280px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
.why-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}
.brand-title {
    font-size: 42px;
    font-weight: 900;
    color: #000;
    margin-bottom: 30px;
}
.brand-title span {
    color: #f7ae1d;
}
.feature-list-v3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-item-v3 {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.feature-icon {
    width: 45px;
    height: 45px;
    background: #f7ae1d;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(247, 174, 29, 0.3);
}
.feature-text h4 {
    font-size: 16px;
    font-weight: 800;
    color: #333;
    margin-bottom: 4px;
}
.feature-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}
.stats-row-v3 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.stat-item-v3 {
    text-align: center;
    flex: 1;
    position: relative;
}
.stat-item-v3:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #eee;
}
.stat-item-v3 h3 {
    font-size: 28px;
    font-weight: 800;
    color: #f7ae1d;
    margin-bottom: 5px;
}
.stat-item-v3 p {
    font-size: 13px;
    color: #888;
    font-weight: 600;
    margin: 0;
}
.google-review-card-v3 {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}
.excellent-text {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    margin-bottom: 8px;
}
.stars {
    color: #f7ae1d;
    font-size: 14px;
    margin-bottom: 10px;
}
.rating-info {
    font-size: 11px;
    color: #888;
    margin-bottom: 10px;
}
.review-mini-card {
    padding-left: 15px;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.reviewer-info img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.reviewer-info h6 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}
.reviewer-info span {
    font-size: 11px;
    color: #ffffff;
}
.review-mini-card p {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}
.review-images {
    display: flex;
    gap: 8px;
}
.review-images img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

/* Seasons Section */
.seasons-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
}
.season-circle-item {
    transition: all 0.3s ease;
}
.season-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 6px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}
.season-circle-item:hover .season-img {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.season-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.season-circle-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: #444;
}

@media (max-width: 991px) {
    .stat-item-v3 h3 {
        font-size: 22px;
    }
    .mockup-img {
        margin-bottom: 40px;
    }
}

/* Cruise Banner Section */
.cruise-banner-v3 {
    background-color: #f7ae1d;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    min-height: 380px;
    margin: 0;
    display: flex;
    align-items: center;
    /* box-shadow: 0 15px 45px rgba(0,0,0,0.1); */
}
.cruise-banner-swiper {
    padding-bottom: 0px !important;
    border-radius: 25px;
    margin: 40px 0;
    height: auto;
}
.cruise-banner-swiper .swiper-wrapper {
    height: auto !important;
}
.cruise-banner-swiper .swiper-slide {
    height: auto !important;
}
.cruise-banner-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}
.cruise-banner-swiper .swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
}
.cruise-banner-swiper .swiper-button-next,
.cruise-banner-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.cruise-banner-swiper .swiper-button-next:after,
.cruise-banner-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}
.cruise-banner-swiper .swiper-button-next:hover,
.cruise-banner-swiper .swiper-button-prev:hover {
    background: rgba(0,0,0,0.6);
}
.cruise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, #F7941D 0%, #F7941D 30%, rgba(247, 148, 29, 0.6) 55%, transparent 90%); */
    display: flex;
    align-items: center;
    padding: 0 80px;
    z-index: 1;
}
.cruise-content {
    max-width: 550px;
    color: #fff;
    position: relative;
    z-index: 10;
}
.cruise-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.1;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.cruise-content p {
    font-size: 13px;
    opacity: 0.95;
    margin-bottom: 15px;
    font-weight: 500;
    color: #fff !important;
    line-height: 1.4;
}
.cruise-price {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cruise-price span {
    font-size: 20px;
    color: #0b0b0bff !important;
}
.cruise-btn {
    background: #000;
    color: #fff;
    padding: 8px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: none;
}
.cruise-btn .btn-text-green {
    color: #d19335;
}
.cruise-btn:hover {
    background: #111;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    color: #fff;
}
.cruise-btn:hover .btn-text-green {
    color: #d19335;
}
.cruise-sketch-1 {
    position: absolute;
    left: auto !important;
    right: 10% !important;
    top: 30px;
    width: 100px;
    z-index: 5;
    pointer-events: none;
    transform: rotate(15deg);
    opacity: 0.4;
}
.cruise-sketch-2 {
    position: absolute;
    left: auto !important;
    right: 20% !important;
    bottom: 40px;
    width: 80px;
    z-index: 5;
    pointer-events: none;
    transform: rotate(-10deg) scaleX(-1);
    opacity: 0.3;
}

@media (max-width: 991px) {
    .cruise-banner-v3 {
        min-height: 340px;
    }
    .cruise-overlay {
        padding: 0 40px;
    }
    .cruise-content h2 { font-size: 28px; }
    .cruise-sketch-1, .cruise-sketch-2 { display: none; }
}
@media (max-width: 767px) {
    .cruise-banner-v3 {
        min-height: 300px;
        text-align: center;
        border-radius: 15px;
    }
    .cruise-overlay { 
        padding: 20px;
        justify-content: center; 
    }
    .cruise-content { max-width: 100%; text-align: center; }
    .cruise-content h2 { font-size: 22px; }
    .cruise-content p { font-size: 12px; }
    .cruise-price { justify-content: center; font-size: 14px; }
    .cruise-price span { font-size: 18px; }
    .cruise-btn { margin: 0 auto; padding: 6px 18px; font-size: 11px; }
    .cruise-banner-swiper { margin: 20px 0; border-radius: 15px; }
    .cruise-banner-swiper .swiper-button-next,
    .cruise-banner-swiper .swiper-button-prev {
        width: 32px;
        height: 32px;
    }
    .cruise-banner-swiper .swiper-button-next:after,
    .cruise-banner-swiper .swiper-button-prev:after {
        font-size: 12px;
    }
}

/* Trending Destinations v3 */
.trending-v3-sec {
    padding: 30px 0;
    background: #fff;
}
.trending-v3-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.trending-v3-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}
.view-all-link {
    color: #f7ae1d !important;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.trending-v3-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.trending-card-v3 {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 190px;
    cursor: pointer;
}
.trending-card-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.trending-card-v3:hover img {
    transform: scale(1.1);
}
.trending-card-v3-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
}
.trending-card-v3 h3 {
    color: #fff;
    font-family: 'Dancing Script', cursive;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.trending-card-v3 p {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.95;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Newsletter Banner Section */
.newsletter-banner-sec {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 30px 0;
    background: #fff;
    overflow: hidden;
}
.newsletter-banner-inner {
    width: 100%;
    background: #F7941D;
    min-height: 320px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.newsletter-decor-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}
.newsletter-line-path {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1.5;
    stroke-dasharray: 5 10;
    fill: none;
}
.newsletter-plane-box {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 100px;
    z-index: 10;
    mix-blend-mode: multiply;
}
.newsletter-plane-box img {
    width: 100%;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}
.newsletter-content {
    flex: 1;
    padding: 60px 0 60px 100px;
    color: #fff;
    z-index: 10;
    position: relative;
}
.newsletter-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: -0.5px;
}
.newsletter-content p {
    font-size: 14px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 500;
    color: #fff;
}
.newsletter-form-pill {
    display: flex;
    background: #fff;
    padding: 6px;
    border-radius: 12px;
    max-width: 480px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 10px;
}
.newsletter-form-pill input {
    flex: 1;
    border: none;
    padding: 15px 15px;
    font-size: 16px;
    outline: none;
    border-radius: 10px;
    color: #333;
}
.newsletter-form-pill button {
    background: #000;
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.newsletter-form-pill button:hover {
    background: #111;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.newsletter-visual-area {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 5;
}
.visual-white-curve {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 650px;
    height: 650px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
}
.couple-pill-frame {
    position: absolute;
    right: 140px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}
.couple-pill-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.sticker-suitcase-v3 {
    position: absolute;
    right: 120px;
    bottom: 40px;
    width: 130px;
    z-index: 15;
    transform: rotate(5deg);
    mix-blend-mode: multiply;
}
.sticker-hat-v3 {
    position: absolute;
    right: 440px;
    bottom: 30px;
    width: 90px;
    z-index: 15;
    transform: rotate(-10deg);
    mix-blend-mode: multiply;
}
.sticker-balloons-v3 {
    position: absolute;
    right: 100px;
    top: 20px;
    width: 80px;
    z-index: 15;
    animation: float-balloons 4s ease-in-out infinite;
    mix-blend-mode: multiply;
}
@keyframes float-balloons {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

@media (max-width: 1199px) {
    .newsletter-content { padding-left: 60px; }
    .couple-pill-frame { width: 320px; height: 320px; right: 80px; }
    .sticker-hat-v3 { right: 350px; }
}
@media (max-width: 991px) {
    .newsletter-banner-inner { flex-direction: column; min-height: auto; padding: 30px 0; }
    .newsletter-content { padding: 0 20px; text-align: center; margin-bottom: 40px; }
    .newsletter-form-pill { margin: 0 auto; }
    .newsletter-visual-area { width: 100%; justify-content: center; height: 400px; }
    .visual-white-curve { display: none; }
    .couple-pill-frame { position: relative; right: auto; transform: none; top: auto; }
    .sticker-suitcase-v3 { right: 20%; bottom: 0; }
    .sticker-hat-v3 { left: 20%; bottom: 0; right: auto; }
    .sticker-balloons-v3 { right: 15%; top: 0; }
}

/* Milestones Refinement */
.milestones-v3-sec {
    padding: 30px 0;
    background: #fff;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.milestones-v3-sec::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 320px;
    height: 280px;
    background: url('/assets/images/resources/landmark-left.webp') no-repeat left bottom;
    background-size: contain;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}
.milestones-v3-sec::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 380px;
    height: 280px;
    background: url('/assets/images/resources/landmark-right.webp') no-repeat right bottom;
    background-size: contain;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}
.milestones-v3-header {
    position: relative;
    z-index: 5;
    margin-bottom: 40px;
}
.milestones-v3-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}
.milestone-grid-v3 {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}
.milestone-item-v3 {
    background: #fff;
    padding: 10px 8px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f8f8f8;
    display: flex;
    align-items: center;
    gap: 12px;
    
    min-width: 170px;
    transition: transform 0.3s ease;
}
.milestone-item-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.milestone-icon-v3 {
    width: 42px;
    height: 42px;
    background: rgba(247, 174, 29, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #f7ae1d;
    flex-shrink: 0;
    border: 1px solid rgba(247, 174, 29, 0.2);
}
.milestone-text-v3 {
    text-align: left;
}
.milestone-text-v3 h4 {
    font-size: 18px;
    font-weight: 900;
    margin: 0;
    color: #1a1a2e;
    line-height: 1.2;
}
.milestone-text-v3 p {
    font-size: 13px;
    color: #777;
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
}

@media (max-width: 1200px) {
    .milestones-v3-sec::before, .milestones-v3-sec::after {
        width: 200px;
    }
}
@media (max-width: 768px) {
    .milestones-v3-sec::before, .milestones-v3-sec::after {
        display: none;
    }
    .milestones-v3-header h2 {
        font-size: 20px;
    }
    /* .milestone-grid-v3{
        flex-direction: column !important;
    } */
    .milestone-item-v3 {
        min-width: 160px;
               gap: 4px !important;
        padding: 12px 10px !important;
    }
}

/* Trust Bar */
.trust-bar-v3 {
    background: #0d0d0d;
    padding: 30px 0;
}
.trust-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.trust-item-v3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}
.trust-icon-v3 {
    font-size: 24px;
    color: #f7ae1d;
}
.trust-text-v3 h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 3px;
    color: #fff;
}
.trust-text-v3 p {
    font-size: 13px;
    opacity: 0.9;
    color: #eee;
    margin: 0;
}

/* Footer v3 */
.footer-v3 {
    background: #000;
    color: #fff;
    padding: 80px 0 30px;
    font-family: 'Inter', sans-serif;
}
.footer-v3 h4 {
    color: #f7ae1d;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-v3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-v3 ul li {
    margin-bottom: 12px;
}
.footer-v3 ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-v3 ul li a:hover {
    color: #f7ae1d;
}
.footer-brand-info h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}
.enquiry-btn-v3 {
    background: #f7ae1d;
    color: #000;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    display: inline-block;
    margin-top: 20px;
}
.footer-contact-v3 p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-bottom-v3 {
    border-top: 1px solid #222;
    padding-top: 30px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.payment-icons-v3 img {
    height: 25px;
    margin-left: 15px;
    filter: grayscale(1) brightness(2);
    opacity: 0.6;
}

@media (min-width: 1200px) {
    .trending-v3-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .trending-v3-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .trending-v3-grid, .trust-grid-v3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}
@media (max-width: 767px) {
    .trending-v3-grid, .trust-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .footer-v3 .col-md-3 {
        margin-bottom: 40px;
    }
}

/* Trending Destination Cards Section */
.trending-cards-sec {
    padding: 40px 0;
    background: #f4f4f4;
}
.trending-cards-header {
    text-align: center;
    margin-bottom: 50px;
}
.trending-cards-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
}
.trending-cards-swiper {
    padding: 20px 0 50px;
    overflow: visible !important;
}
.trending-card-v2 {
    position: relative;
    height: 420px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
}
.trending-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
.trending-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.trending-card-v2:hover img {
    transform: scale(1.1);
}
.trending-card-title-v2 {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-family: 'Dancing Script', cursive;
    font-size: 38px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    z-index: 2;
    pointer-events: none;
}
.trending-card-v2:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
    z-index: 1;
}
.trending-cards-swiper .swiper-button-next,
.trending-cards-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #333;
}

@media (max-width: 768px) {
    .trending-card-v2 {
        height: 350px;
    }
    .trending-card-title-v2 {
        font-size: 32px;
    }
}

.paper-plane-sketch {
    position: absolute;
    left: 30px;
    top: 20px;
    width: 120px;
    opacity: 0.4;
    pointer-events: none;
}

/* Milestones & Awards V2 */
.milestones-v2-sec {
    padding: 40px 0;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.milestone-landmark-left {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 80%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}
.milestone-landmark-right {
    position: absolute;
    right: 0;
    bottom: 20px;
    height: 60%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}
.milestones-v2-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}
.milestones-v2-header p {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.milestones-v2-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    max-width: 800px;
    margin: 0 auto;
}
.milestone-cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.milestone-card-v2 {
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    border: 1px solid #f0f0f0;
}
.milestone-v2-icon {
    width: 40px;
    height: 40px;
    background: #fff8eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f7ae1d;
    font-size: 18px;
}
.milestone-v2-text {
    text-align: left;
}
.milestone-v2-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #333;
}
.milestone-v2-text p {
    margin: 0;
    font-size: 11px;
    color: #888;
    font-weight: 600;
}

/* Awards Pills */
.awards-pills-v2 {
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.awards-pills-v2 .nav-link {
    background: #fff;
    border: 1px solid #eee;
    color: #666;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.awards-pills-v2 .nav-link:hover {
    border-color: #f7ae1d;
    color: #f7ae1d;
}
.awards-pills-v2 .nav-link.active {
    background: #f7ae1d !important;
    color: #fff !important;
    border-color: #f7ae1d !important;
    box-shadow: 0 5px 15px rgba(247, 174, 29, 0.3);
}
.awards-content-v2 {
    position: relative;
    z-index: 2;
}
.associate-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.associate-logo-box img {
    max-height: 50px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.associate-logo-box img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Why Choose Premium v4 */
.why-choose-premium-v4 {
    padding: 30px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    isolation: isolate;
}
.iphone-mockup-wrapper {
    position: relative;
    z-index: 2;
}
.why-choose-title-main {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}
.spoc-orange {
    color: #f7ae1d;
}
.feature-list-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-item-premium {
    display: flex;
    align-items: center;
    gap: 15px;
}
.feature-icon-circle {
    width: 45px;
    height: 45px;
    background: #f7ae1d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(247, 174, 29, 0.2);
}
.feature-text-premium h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #1a1a2e;
}
.feature-text-premium p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}
.store-buttons-premium {
    display: flex;
    gap: 12px;
}
.store-btn-black {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.store-btn-black i {
    font-size: 20px;
}
.btn-text-box {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.btn-text-box small {
    font-size: 8px;
    text-transform: uppercase;
    opacity: 0.8;
}
.btn-text-box span {
    font-size: 13px;
    font-weight: 700;
}
.right-panel-premium {
    position: relative;
}
.landmarks-sketch-absolute-v4 {
    /* position: absolute; */
    top: -169px;
    left: -75px;
    width: 283px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.landmarks-sketch-absolute-v4 img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    filter: grayscale(1) contrast(1.1) brightness(1.1);
    opacity: 1;
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}
.stats-row-premium-v4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 330px;
    position: relative;
    z-index: 2;
    min-height: 60px;
    margin-bottom: 30px;
        margin-top: -140px;
    flex-direction: row;

}

@media(max-width:767.98px){
    .stats-row-premium-v4 {
        margin-top: -120px !important;
        flex-direction: column;
        margin-left: -150px !important;
    }
    .landmarks-sketch-absolute-v4 {

    left: 20px !important;
    }
}


.stat-item-premium {
    text-align: center;
      margin-top: 0px ;
}
.stat-item-premium h3 {
    font-size: 22px;
    font-weight: 800;
    color: #f7ae1d;
    margin-bottom: 2px;
}
@media(max-width:767.98px){
    
    .stat-item-premium {
        margin-top: -115px !important;
    }
}

.stat-label {
    font-size: 12px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
}
.stat-divider-v {
    width: 1px;
    height: 30px;
    background: #e0e0e0;
    margin: 0 5px;
}
.reviews-container-premium {
    display: flex;
    gap: 12px;
}
.google-summary-box {
    width: 170px;
    flex-shrink: 0;
    /* background: #fff; */
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    /* box-shadow: 0 8px 30px rgba(0,0,0,0.05); */
    /* border: 1px solid #f0f0f0; */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.google-summary-box h6 {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.google-stars-main {
    color: #f7ae1d;
    font-size: 12px;
    margin-bottom: 8px;
    display: flex;
    gap: 3px;
}
.google-rating-subtext {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}
.google-rating-subtext span {
    font-weight: 800;
    color: #1a1a2e;
}
.google-logo-img {
    width: 75px;
}
.individual-reviews-premium {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 26px;
}
/* Swiper structure: let Swiper control wrapper/slide sizing via inline styles.
   Only ensure slides stretch to equal height and the inner card fills. */
.individual-reviews-premium.swiper > .swiper-wrapper > .swiper-slide {
    height: auto;
    display: flex;
}
.individual-reviews-premium.swiper > .swiper-wrapper > .swiper-slide > .review-card-premium {
    width: 100%;
    flex: 1;
}
.reviews-swiper-pagination {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}
.reviews-swiper-pagination .swiper-pagination-bullet {
    background: #d1d5db;
    opacity: 1;
    margin: 0 4px;
}
.reviews-swiper-pagination .swiper-pagination-bullet-active {
    background: #ff6a00;
}
/* Reviews slider navigation arrows */
.individual-reviews-premium .reviews-nav-prev,
.individual-reviews-premium .reviews-nav-next {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    border: 1px solid #eef0f3;
    color: #1a1a2e;
    top: 50%;
    margin-top: -17px;
    z-index: 3;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.individual-reviews-premium .reviews-nav-prev { left: 4px; }
.individual-reviews-premium .reviews-nav-next { right: 4px; }
.individual-reviews-premium .reviews-nav-prev::after,
.individual-reviews-premium .reviews-nav-next::after {
    font-size: 13px;
    font-weight: 800;
}
.individual-reviews-premium .reviews-nav-prev:hover,
.individual-reviews-premium .reviews-nav-next:hover {
    background: #ff6a00;
    color: #ffffff;
    transform: scale(1.05);
}
.individual-reviews-premium .swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
@media (max-width: 575.98px) {
    .individual-reviews-premium .reviews-nav-prev,
    .individual-reviews-premium .reviews-nav-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
    }
    .individual-reviews-premium .reviews-nav-prev::after,
    .individual-reviews-premium .reviews-nav-next::after {
        font-size: 11px;
    }
}
/* Stars inside review card */
.review-stars-premium {
    display: flex;
    gap: 3px;
    color: #f7ae1d;
    font-size: 14px;
    margin-bottom: 10px;
}
.review-card-premium {
    flex: 1;
    background: linear-gradient(145deg, #fff 0%, #fafbff 100%);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(247,174,29,0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f7ae1d 0%, #f5a623 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.06);
    border-color: rgba(247,174,29,0.2);
}

.review-card-premium:hover::before {
    opacity: 1;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}
.reviewer-details h5 {
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    color: #1a1a2e;
}
.reviewer-details small {
    font-size: 10px;
    color: #999;
}
.green-star-rating {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #28a745;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}
.green-star-rating i {
    font-size: 10px;
}
.review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.read-more-link {
    color: #f7ae1d;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.read-more-link:hover {
    color: #e69a1b;
    text-decoration: underline;
}
.review-images {
    display: flex;
    gap: 6px;
}
.review-images img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
}
.review-text-content {
    font-size: 11px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
    flex-grow: 1;
}
.review-text-content p {
    margin: 0;
    word-wrap: break-word;
}
.review-image {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
    transition: transform 0.2s ease;
}
.review-image:hover {
    transform: scale(1.1);
}
.review-photos-premium {
    display: flex;
    gap: 10px;
}
.review-photos-premium img {
    width: calc(33.33% - 7px);
    aspect-ratio: 1/1;
    border-radius: 12px;
    object-fit: cover;
}

/* Review Swiper Navigation - Enhanced */
.reviews-nav-prev,
.reviews-nav-next {
    width: 40px !important;
    height: 40px !important;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%) !important;
    border-radius: 50% !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08) !important;
    color: #333 !important;
    border: 2px solid #f7ae1d !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    z-index: 10 !important;
    cursor: pointer !important;
}

.reviews-nav-prev:hover,
.reviews-nav-next:hover {
    background: linear-gradient(135deg, #f7ae1d 0%, #f5a623 100%) !important;
    color: #fff !important;
    box-shadow: 0 8px 30px rgba(247,174,29,0.4), 0 4px 12px rgba(247,174,29,0.2) !important;
    transform: translateY(-50%) scale(1.15) !important;
    border-color: #f5a623 !important;
}

.reviews-nav-prev:after,
.reviews-nav-next:after {
    font-size: 16px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.reviews-nav-prev {
    left: -20px !important;
}

.reviews-nav-next {
    right: -20px !important;
}

/* Enhanced arrow animations */
.reviews-nav-prev:after {
    margin-right: 2px !important;
}

.reviews-nav-next:after {
    margin-left: 2px !important;
}

/* Mobile Responsive Navigation & Cards */
@media (max-width: 767px) {
    .reviews-nav-prev,
    .reviews-nav-next {
        width: 32px !important;
        height: 32px !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .reviews-nav-prev:after,
    .reviews-nav-next:after {
        font-size: 12px !important;
    }
    
    .reviews-nav-prev {
        left: -16px !important;
    }
    
    .reviews-nav-next {
        right: -16px !important;
    }
    
    /* Responsive Card Design for Mobile */
    .review-card-premium {
        padding: 16px;
        border-radius: 14px;
        margin-bottom: 12px;
    }
    
    .reviewer-avatar {
        width: 36px;
        height: 36px;
    }
    
    .reviewer-details h5 {
        font-size: 13px;
    }
    
    .reviewer-details small {
        font-size: 9px;
    }
    
    .green-star-rating {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .review-text-content {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .read-more-link {
        font-size: 10px;
    }
    
    .review-images img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .reviews-nav-prev,
    .reviews-nav-next {
        width: 28px !important;
        height: 28px !important;
    }
    
    .reviews-nav-prev:after,
    .reviews-nav-next:after {
        font-size: 11px !important;
    }
    
    .reviews-nav-prev {
        left: -14px !important;
    }
    
    .reviews-nav-next {
        right: -14px !important;
    }
    
    /* Extra Small Mobile Cards */
    .review-card-premium {
        padding: 14px;
        border-radius: 12px;
    }
    
    .reviewer-avatar {
        width: 32px;
        height: 32px;
    }
    
    .reviewer-details h5 {
        font-size: 12px;
    }
    
    .reviewer-details small {
        font-size: 8px;
    }
    
    .green-star-rating {
        font-size: 10px;
        padding: 2px 5px;
    }
    
    .review-text-content {
        font-size: 11px;
    }
    
    .review-images img {
        width: 24px;
        height: 24px;
    }
}

/* Tablet Responsive Design */
@media (min-width: 768px) and (max-width: 991px) {
    .reviews-nav-prev,
    .reviews-nav-next {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .reviews-nav-prev {
        left: -22px !important;
    }
    
    .reviews-nav-next {
        right: -22px !important;
    }
    
    /* Tablet Card Design */
    .review-card-premium {
        padding: 17px;
        border-radius: 15px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .reviewer-details h5 {
        font-size: 14px;
    }
    
    .reviewer-details small {
        font-size: 11px;
    }
    
    .green-star-rating {
        font-size: 12px;
        padding: 4px 7px;
    }
    
    .review-text-content {
        font-size: 12px;
    }
    
    .review-images img {
        width: 30px;
        height: 30px;
    }
    
    /* Fix swiper responsiveness for tablet */
    .individual-reviews-premium {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .individual-reviews-premium .swiper-slide {
        display: flex !important;
        max-width: none !important;
    }
}

/* Specific breakpoint for 897px width range (small desktop/tablet) */
@media (max-width: 950px) and (min-width: 768px) {
    /* Main container fixes */
    .why-choose-premium-v4 {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .why-choose-premium-v4 .container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .why-choose-premium-v4 .row {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
    
    .why-choose-premium-v4 .col-lg-12,
    .why-choose-premium-v4 .col-lg-6 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Reviews container fixes */
    .reviews-container-premium {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .google-summary-box {
        width: 100% !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 16px 20px !important;
        box-sizing: border-box !important;
    }
    
    .individual-reviews-premium {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .individual-reviews-premium .swiper-wrapper {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        justify-content: flex-start !important;
    }
    
    .individual-reviews-premium .swiper-slide {
        display: flex !important;
        max-width: none !important;
        box-sizing: border-box !important;
    }
    
    .review-card-premium {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Tablet Responsive Navigation */
@media (min-width: 768px) and (max-width: 991px) {
    .reviews-nav-prev,
    .reviews-nav-next {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .reviews-nav-prev {
        left: -20px !important;
    }
    
    .reviews-nav-next {
        right: -20px !important;
    }
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .reviews-nav-prev,
    .reviews-nav-next {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media (max-width: 991px) {
    .why-choose-premium-v4 {
        padding: 30px 0;
    }
    .why-choose-title-main {
        font-size: 32px;
        text-align: center;
    }
    .feature-item-premium {
        text-align: left;
    }
    .store-buttons-premium {
        justify-content: center;
    }
    .reviews-container-premium {
        flex-direction: column;
    }
    .right-panel-premium {
        padding-left: 0;
        margin-top: 0px !important;
    }
}

/* Tablet Styles */
@media (max-width: 991px) and (min-width: 768px) {
    .why-section .row {
        flex-direction: column;
        align-items: center;
    }
    .why-section .col-lg-3,
    .why-section .col-lg-6 {
        width: 100%;
        max-width: 600px;
        margin-bottom: 30px;
    }
    .phone-img {
        max-width: 150px;
        margin-bottom: 15px;
    }
    .stats {
        justify-content: space-around;
    }
    .review-box {
        flex-direction: column;
        gap: 20px;
    }
    .rating-box {
        flex: none;
        text-align: center;
    }
    .reviews {
        flex-direction: row;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .why-section {
        padding: 40px 0;
    }
    .why-section .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .why-section .col-lg-3,
    .why-section .col-lg-6 {
        width: 100%;
        margin-bottom: 30px;
    }
    .phone-img {
        max-width: 140px;
        margin-bottom: 15px;
    }
    .features li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .features li i {
        font-size: 20px;
    }
    .why-choose-left h6 {
        font-size: 14px;
    }
    .why-choose-left p {
        font-size: 12px;
    }
    .store-btns {
        justify-content: center;
        flex-wrap: wrap;
    }
    .store-btns img {
        height: 40px;
    }
    .stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .counter-travel {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    .counter-travel h5 {
        font-size: 20px;
    }
    .counter-travel p {
        font-size: 12px;
    }
    .review-box {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .rating-box {
        flex: none;
        padding: 15px;
    }
    .rating-box h6 {
        font-size: 16px;
    }
    .stars {
        font-size: 14px;
    }
    .reviews {
        flex-direction: column;
        gap: 10px;
    }
    .review-card {
        padding: 12px;
    }
    .review-card h6 {
        font-size: 13px;
    }
    .review-card p {
        font-size: 11px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .why-section {
        padding: 30px 0;
    }
    .phone-img {
        max-width: 120px;
    }
    .why-choose-left h6 {
        font-size: 14px;
    }
    .why-choose-left p {
        font-size: 12px;
    }
    .store-btns img {
        height: 35px;
    }
    .counter-travel h5 {
        font-size: 18px;
    }
    .counter-travel p {
        font-size: 11px;
    }
    .rating-box h6 {
        font-size: 15px;
    }
    .stars {
        font-size: 12px;
    }
}

/* Seasons Section Styles */
.seasons-sec {
    background-color: #ffffff;
    padding: 40px 0;
}
.categories-tight-row {
    max-width: 720px;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    justify-content: center !important;
}
.seasons-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    position: relative;
}
.season-circle-link {
    text-decoration: none !important;
    display: block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.season-circle-link:hover {
    transform: scale(1.05);
}
.season-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.season-img-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}
.season-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.season-circle-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .season-img-container {
        width: 110px;
        height: 110px;
    }
}


.price-text-small {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    white-space: nowrap;
}
.price-text-small::before {
    content: none !important;
}
@media (max-width: 576px) {
    .price-text-small {
        font-size: 12px !important;
    }
}

/* Prevent image optimization from affecting these images */
.popular-destination-img.bg-image-lazy {
    background-image: var(--bg-image) !important;
}

.cat-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.group-img {
    width: 68px;
    height: 70px;
    object-fit: contain;
}

.stats-counter-section {
    padding: 30px 0;
    background: #fff;
    position: relative;
}

.stats-counter-box {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    height: 100%;
}

.stats-counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #f7ae1d;
}

.stats-counter-box__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f7ae1d 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stats-counter-box__icon span {
    font-size: 40px;
    color: #fff;
}

.stats-counter-box:hover .stats-counter-box__icon {
    transform: scale(1.1) rotate(5deg);
}

.stats-counter-box__number {
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1;
}

.stats-counter-box__number .count-text {
    color: #f7ae1d;
}

.stats-counter-box__title {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .stats-counter-section {
        padding: 50px 0;
    }
    .chat-btn-1 {
        bottom: 160px;
        left: 10%;
        width: 80% !important;
        z-index: 1001;
        box-shadow: 0 10px 30px rgba(247, 174, 29, 0.4);
    }
    .stats-counter-box {
        padding: 30px 15px;
    }
    .stats-counter-box__icon {
        width: 70px;
        height: 70px;
    }
    .stats-counter-box__icon span {
        font-size: 35px;
    }
    .stats-counter-box__number {
        font-size: 40px;
    }
    .stats-counter-box__title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .stats-counter-section {
        padding: 40px 0;
    }
    .action-item {
        font-size: 14px !important;
        flex-direction: column;
    }
    .stats-counter-box {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    .stats-counter-box__icon {
        width: 60px;
        height: 60px;
    }
    .stats-counter-box__icon span {
        font-size: 30px;
    }
    .stats-counter-box__number {
        font-size: 36px;
    }
    .stats-counter-box__title {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .stats-counter-box__number {
        font-size: 32px;
    }
    .stats-counter-box__icon {
        width: 55px;
        height: 55px;
    }
    .stats-counter-box__icon span {
        font-size: 28px;
    }
}

@media (min-width: 991px) {
    .chat-btn-1 {
        display: none !important;
    }
}

.top-action-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--travelspoc-base, #FF5956);
    border-radius: 6px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    bottom: 40px;
}

.action-item {
    flex: 1;
    text-align: center;
    padding: 18px 25px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.action-item i {
    font-size: 18px;
}

.action-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.action-item:hover {
    background: linear-gradient(135deg, #ff9a5a, #ff6a6a);
    color: #000;
}

.awards-carousel .client-carousel__one__item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: 120px !important;
}

.awards-carousel .client-carousel__one__item__normal {
    max-height: 80px !important;
    width: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

.featured-carousel .client-carousel__one__item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: 120px !important;
}

.featured-carousel .client-carousel__one__item__normal {
    max-height: 80px !important;
    width: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

/* ============================================
   Reviews Container Premium - Responsive Styles
   (why_choose.blade.php L114-L181)
   ============================================ */

/* Large desktops (>=1200px) - keep default side-by-side layout */
@media (min-width: 1200px) {
    .reviews-container-premium {
        display: flex !important;
        visibility: visible !important;
        overflow: visible !important;
        gap: 12px !important;
    }
    .individual-reviews-premium {
        flex: 1 !important;
        min-width: 0 !important;
        position: relative !important;
        display: block !important;
        visibility: visible !important;
    }
    .review-card-premium {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Extra large desktops (>=1400px) */
@media (min-width: 1400px) {
    .reviews-container-premium {
        gap: 14px !important;
        max-width: 1400px !important;
        margin: 0 auto !important;
    }
    .google-summary-box {
        width: 180px !important;
        padding: 20px 16px !important;
    }
    .google-summary-box h6 {
        font-size: 18px !important;
    }
    .google-rating-subtext {
        font-size: 12px !important;
    }
}

/* Medium desktop / small laptop (992px - 1199px) */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .reviews-container-premium {
        gap: 10px !important;
        display: flex !important;
        visibility: visible !important;
        overflow: visible !important;
    }
    .individual-reviews-premium {
        flex: 1 !important;
        min-width: 0 !important;
        position: relative !important;
        display: block !important;
        visibility: visible !important;
    }
    .review-card-premium {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .google-summary-box {
        width: 150px;
        padding: 18px 10px;
    }
    .google-summary-box h6 {
        font-size: 14px;
    }
    .google-rating-subtext {
        font-size: 11px;
        margin-bottom: 12px;
    }
    .google-logo-img {
        width: 65px;
    }
    .individual-reviews-premium {
        gap: 10px;
    }
    .review-card-premium {
        padding: 14px;
    }
    .review-text-content {
        font-size: 11px;
    }
}

/* Tablet (768px - 991px) - stack google summary above, reviews side-by-side */
@media (max-width: 991.98px) and (min-width: 768px) {
    .reviews-container-premium {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        display: flex !important;
        visibility: visible !important;
    }
    .individual-reviews-premium {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        display: block !important;
        visibility: visible !important;
    }
    .individual-reviews-premium .swiper-wrapper {
        display: flex !important;
        gap: 0 !important;
    }
    .individual-reviews-premium .swiper-slide {
        display: block !important;
        visibility: visible !important;
    }
    .review-card-premium {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: auto !important;
    }
    .google-summary-box {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 18px;
        padding: 16px 20px;
        flex-wrap: wrap;
    }
    .google-summary-box h6 {
        margin-bottom: 0;
        font-size: 16px;
    }
    .google-stars-main {
        margin-bottom: 0;
        font-size: 14px;
    }
    .google-rating-subtext {
        margin-bottom: 0;
        font-size: 13px;
    }
    .google-logo-img {
        width: 70px;
    }
    .individual-reviews-premium {
        flex-direction: row;
        gap: 14px;
    }
    .review-card-premium {
        padding: 16px;
    }
    .review-text-content {
        font-size: 12px;
    }
}

/* Mobile (max 767px) - banner layout matching design */
@media (max-width: 767.98px) {
    .reviews-container-premium {
        flex-direction: column !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        display: flex !important;
        visibility: visible !important;
    }
    .individual-reviews-premium {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        display: block !important;
        visibility: visible !important;
    }
    .individual-reviews-premium .swiper-wrapper {
        display: flex !important;
        gap: 0 !important;
    }
    .individual-reviews-premium .swiper-slide {
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
    }
    .review-card-premium {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: auto !important;
    }
    /* Google summary banner: "4.8/5" + "Based on X reviews" left, Google logo right */
    .google-summary-box {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 18px 18px;
        background: #ffffff;
        box-shadow: none;
        border-radius: 14px;
        text-align: left;
    }
    .google-summary-box h6,
    .google-summary-box .google-stars-main {
        display: block;
    }
    .google-rating-subtext {
        /* order: 1;
        flex: 1; */
        margin-bottom: 0;
        font-size: 13px;
        color: #6b7280;
        font-weight: 500;
        text-align: left;
        line-height: 1.3;
    }
    .google-rating-subtext span {
        display: block;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 4px;
    }
    .google-logo-img {
        order: 2;
        width: 90px;
    }

    /* Reviews swiper container on mobile */
    .individual-reviews-premium {
        flex-direction: column;
        gap: 0;
        width: 100%;
        gap:5px;
        overflow: hidden;
        padding-bottom: 24px;
    }
    .individual-reviews-premium.swiper > .swiper-wrapper {
        display: flex;
        gap: 0;
    }
    .individual-reviews-premium.swiper > .swiper-wrapper > .swiper-slide {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
    }
    .reviews-swiper-pagination {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
    }
    .reviews-swiper-pagination .swiper-pagination-bullet {
        background: #d1d5db;
        opacity: 1;
    }
    .reviews-swiper-pagination .swiper-pagination-bullet-active {
        background: #ff6a00;
    }

    .review-card-premium {
        padding: 16px;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
        border: 1px solid #eef0f3;
    }
    .reviewer-info {
        gap: 10px;
        margin-bottom: 8px;
    }
    .reviewer-avatar {
        width: 44px;
        height: 44px;
    }
    .reviewer-details h5 {
        font-size: 14px;
    }
    .reviewer-details small {
        font-size: 11px;
    }
    .green-badge-icon {
        font-size: 16px;
    }
    .review-stars-premium {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .review-text-content {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 12px;
        color: #374151;
    }
    .review-photos-premium {
        display: flex;
        gap: 8px;
    }
    .review-photos-premium img {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        aspect-ratio: 1 / 1;
        border-radius: 10px;
        object-fit: cover;
    }
}

/* Small mobile (max 480px) */
@media (max-width: 480px) {
    .google-summary-box {
        padding: 16px 14px;
    }
    .google-rating-subtext {
        font-size: 12px;
    }
    .google-rating-subtext span {
        font-size: 20px;
    }
    .google-logo-img {
        width: 78px;
    }
    .review-card-premium {
        padding: 14px;
    }
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    .reviewer-details h5 {
        font-size: 13px;
    }
    .reviewer-details small {
        font-size: 10px;
    }
    .review-stars-premium {
        font-size: 13px;
    }
    .review-text-content {
        font-size: 12.5px;
    }
    .review-photos-premium {
        gap: 6px;
    }
    .review-photos-premium img {
        border-radius: 8px;
    }
}

/* Extra small mobile (max 360px) */
@media (max-width: 360px) {
    .google-summary-box {
        padding: 14px 10px;
    }
    .google-summary-box h6 {
        font-size: 15px;
    }
    .review-card-premium {
        padding: 10px;
    }
    .reviewer-info {
        gap: 8px;
    }
    .reviewer-avatar {
        width: 34px;
        height: 34px;
    }
    .review-text-content {
        font-size: 10.5px;
        line-height: 1.45;
    }
}

.enquiry-form-slider {
    background: #ffffff !important;
    padding: 20px !important;
    border-radius: 20px !important;
}