.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 5%;
    position: fixed;
    width: 100%;
    height: 100px;
    z-index: 99;
    transition: all 0.4s ease;
}

.header.sticky {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.sticky .header_title,
.header.sticky .header_nav li a {
    color: black;
}

.header.sticky .favorites-count {
    background: black;
    color: white;
    border-color: #ddd;
}

.header.sticky .header_nav li:hover a {
    color: white;
}

.header_title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header_title span {
    color: var(--color-primary);
    text-shadow: none;
}

.header_nav {
    display: flex;
    gap: 0.5rem;
}

.header_nav li {
    list-style: none;
    padding-inline: 1.2rem;
    padding-block: 0.7rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header_nav li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.header_nav li:hover::before {
    left: 100%;
}

.header_nav li:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.header_nav li a {
    font-weight: 600;
    color: white;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.header_nav li:hover a {
    color: white;
}

.home {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url("images/twin-lagon.jpg");
    min-height: 100dvh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    max-width: 100%;
    color: white;
    padding-top: 100px;
    position: relative;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.1), transparent 50%);
    pointer-events: none;
}

.home_content {
    max-width: 500px;
    animation: fadeInUp 1s ease-out;
}

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

.home_small-title span {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.home_content-btn {
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.home_content-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.home_content-btn:hover::before {
    left: 100%;
}

.home_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.home_cards .home_card {
    min-width: 200px;
    height: 250px;
    border-radius: 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.home_cards .home_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home_cards .home_card:hover::before {
    opacity: 1;
}

.home_cards .home_card:hover {
    transform: translateY(-8px) scale(1.02);
}

.home_card-title {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    border-radius: 1.5rem;
    display: flex;
    width: 100%;
    height: 50%;
    align-items: end;
    padding: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.home_card-1 {
    background: url("images/penida-island.jpg");
    grid-row: span 2;
    align-self: center;
}

.home_card-2 {
    background: url("images/khao-sok.jpg");
}

.home_card-3 {
    background: url("images/koh-tonsay.jpg");
}

.ai_recommendations {
        max-width: fit-content;
    }
/* destinations */

.destinations{
    background: linear-gradient(145deg, #ffffff 0%, #fff7f5 50%, #ffeee8 100%);
    position: relative;
    overflow: hidden;
}

.destinations::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 107, 0.05), transparent 70%);
    pointer-events: none;
}

.destinations_swiper{
    margin-top: 3rem;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.destinations_small-title{
    color: var(--color-gray);
    position: relative;
}

.destinations_small-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

.destinations_content-btn{
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.destinations_content-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.destinations_content-btn:hover::before {
    left: 100%;
}

.swiper{
    width: 100%;
    overflow: hidden;
}

.swiper-slide{
    min-width: 300px;
    max-width: 350px;
}

.swiper-slide_container{
    width: 100%;
    height: 400px;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
}

.swiper-slide_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.swiper-slide_container:hover::before {
    opacity: 1;
}

.swiper-slide_container:hover{
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.swiper-slide_container:hover img{
    transform: scale(1.08);
}

.swiper-slide_container img{
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-button-next,
.swiper-button-prev{
    background: linear-gradient(135deg, var(--color-primary), #ff8a80);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background: linear-gradient(135deg, #ff8a80, var(--color-primary));
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size: 20px;
    color: white;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.swiper-slide_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide_content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: white;
    z-index: 2;
}

.swiper-slide_left{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.swiper-slide_content-title{
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.swiper-slide_container:hover .swiper-slide_content-title {
    transform: translateY(-2px);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.7);
}

.swiper-slide_content-price{
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    width: fit-content;
    text-shadow: none;
    transition: all 0.3s ease;
}

.swiper-slide_container:hover .swiper-slide_content-price {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.swiper-slide_content-rating{
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.swiper-slide_container:hover .swiper-slide_content-rating {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.swiper-slide_content-rating i{
    color: #ffd700;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
    animation: starGlow 2s ease-in-out infinite alternate;
}

@keyframes starGlow {
    from {
        filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
    }
}


















/* Translation Dropdown Styles */
.translation-dropdown {
    position: relative;
    margin-right: 1rem;
}

.translation-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.6rem 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.translation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.translation-btn:hover::before {
    left: 100%;
}

.translation-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.translation-btn i {
    font-size: 1rem;
}

.translation-btn .fa-chevron-down {
    transition: transform 0.3s ease;
}

.translation-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

.translation-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: linear-gradient(145deg, #ffffff, #fff8f0);
    border-radius: 20px;
    min-width: 250px;
    max-height: 400px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(255, 107, 53, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 153, 51, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    border: 2px solid rgba(255, 153, 51, 0.1);
}

.translation-dropdown.active .translation-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.translation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FF6B35, #F7931E, #FF9933);
    color: white;
    position: relative;
    overflow: hidden;
}

.translation-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.translation-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.translation-header i {
    font-size: 1.3rem;
}

.close-translation {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-translation:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.translation-options {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.9));
}

.translation-option {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(145deg, #ffffff, #fff8f0);
    border: 2px solid rgba(255, 153, 51, 0.1);
    border-radius: 12px;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.translation-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.4s;
}

.translation-option:hover::before {
    left: 100%;
}

.translation-option:hover {
    background: linear-gradient(135deg, #fff8f0, #ffffff);
    border-color: rgba(255, 153, 51, 0.3);
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.15);
    color: #FF6B35;
}

.translation-option:last-child {
    margin-bottom: 0;
}

.translation-option.translating {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border-color: #FF6B35;
    animation: pulse 1s ease-in-out infinite;
}

/* Language Dropdown */
.lang_dropdown {
    position: relative;
    margin-left: 1rem;
}

.lang_btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

@media screen and (max-width: 1200px) {
    .lang_btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
        gap: 0.4rem;
    }
}

@media screen and (max-width: 768px) {
    .lang_btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        gap: 0.3rem;
        border-radius: 20px;
        width: auto;
        min-width: 40px;
    }
    
    .lang_btn #currentLang {
        display: none !important;
    }
    
    .lang_btn .fa-chevron-down {
        display: none !important;
    }
}

@media screen and (max-width: 480px) {
    .lang_btn {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
        border-radius: 15px;
        min-width: 36px;
        width: 36px;
        height: 36px;
        justify-content: center;
    }
    
    .lang_btn .fa-globe {
        font-size: 1rem;
    }
    
    .lang_menu {
        min-width: 120px;
        right: -10px;
    }
    
    .lang_dropdown {
        right: 60px;
    }
}

.lang_btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.header.sticky .lang_btn {
    color: black;
    background: rgba(0, 0, 0, 0.1);
    border: none;
}

.lang_btn i:last-child {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.lang_dropdown.active .lang_btn i:last-child {
    transform: rotate(180deg);
}

.lang_menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 220px;
    max-height: 350px;
    overflow-y: auto;
    z-index: 1000;
    border: none;
    scrollbar-width: none;
}

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

.lang_dropdown.active .lang_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang_option {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.8rem 1.2rem;
    text-align: left;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-bottom: none;
}

.lang_option:hover {
    background: rgba(255, 107, 107, 0.1);
    color: var(--color-primary);
    transform: translateX(3px);
}

.lang_option.active {
    background: rgba(255, 107, 107, 0.1);
    color: var(--color-primary);
    font-weight: 600;
}

.translate_loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.translate_lottie {
    width: 350px;
    height: 350px;
}

@media screen and (max-width: 1024px) {
    .header {
        padding-inline: 3%;
    }
    
    .header_title {
        font-size: 1.5rem;
    }
    
    .lang_dropdown {
        right: 60px;
    }
    
    .translate_lottie {
        width: 250px;
        height: 250px;
    }
    
    .about {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .about_cards {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        justify-items: center;
    }
    
    .about_cards .about_card {
        width: 150px;
        height: 200px;
    }
    
    .about_travel-img {
        position: static;
        width: 180px;
        align-self: center;
    }
    
    .search_results_container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.search_lottie {
    width: 300px;
    height: 300px;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .search_lottie {
        width: 200px;
        height: 200px;
    }
}

.header_menu {
    display: none;
}


@media screen and (max-width: 1024px) {
    .header_menu {
        display: block;
        font-size: 2rem;
        color: white;
        cursor: pointer;
    }

    .header.sticky .header_menu {
        color: black;
    }

    .header_menu .fa-xmark {
        display: none;
    }

    .header_nav {
        position: absolute;
        flex-direction: column;
        top: 100px;
        left: 0;
        background: white;
        width: 100%;
        padding: 0;
        height: 0;
        overflow: hidden;
        transition: 0.3s ease-out;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .header_nav.active {
        height: auto;
        padding: 1rem 5%;
    }

    .header_nav.active ~ .header_menu .fa-bars {
        display: none;
    }

    .header_nav.active ~ .header_menu .fa-xmark {
        display: block;
    }

    /* Translation dropdown mobile styles */
    .translation-dropdown {
        position: absolute;
        top: 100px;
        right: 5%;
        margin: 0;
    }

    .translation-btn {
        background: white;
        color: var(--color-primary);
        border-color: var(--color-primary);
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .translation-btn:hover {
        background: var(--color-primary);
        color: white;
        border-color: var(--color-primary);
    }

    .translation-menu {
        right: -20px;
        left: -150px;
        min-width: 200px;
    }

    .translation-header {
        padding: 1rem;
    }

    .translation-header h4 {
        font-size: 1rem;
    }

    .translation-options {
        padding: 0.8rem;
    }

    .translation-option {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }

    .header_nav li {
        width: 100%;
        margin: 0;
        margin-bottom: 0.5rem;
        border-radius: 8px;
    }
    
    .header_nav li:last-child {
        margin-bottom: 0;
    }

    .header_nav li a {
        color: black;
    }
    
    .lang_dropdown {
        position: absolute;
        top: 50%;
        right: 70px;
        transform: translateY(-50%);
        margin: 0;
        z-index: 1001;
    }
    
    .header_menu {
        position: relative;
        z-index: 1002;
    }
    
    .lang_btn {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: none;
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        gap: 0.3rem;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        min-width: auto;
    }
    
    .header.sticky .lang_btn {
        background: rgba(0, 0, 0, 0.1);
        color: black;
    }
    
    .lang_menu {
        right: 0;
        min-width: 150px;
        max-height: 200px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .lang_option {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        border-bottom: none;
        background: transparent;
    }
    
    .lang_option:hover {
        background: rgba(255, 107, 107, 0.1);
        transform: none;
    }

    /* about mobile */
    .about {
        display: block;
        padding: 3rem 5%;
        text-align: center;
        position: relative;
        overflow: visible;
    }
    
    .about_cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .about_cards .about_card {
        width: 120px;
        height: 140px;
        flex-shrink: 0;
        border-radius: 1rem;
    }
    
    .about_card-1 {
        background-size: cover;
        background-position: center;
    }
    
    .about_card-3 {
        background-size: cover;
        background-position: center;
    }
    
    .about_card-2 {
        order: 2;
    }
    
    .about_card-1, .about_card-3 {
        order: 1;
    }
    
    .about_card-2-plane-img {
        width: 80px;
        right: -20px;
        bottom: -15px;
    }
    
    .about_travel-img {
        display: none;
    }
    
    .about_content {
        width: 100%;
        max-width: none;
    }
    
    .about_stats {
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .about_stat {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-width: 140px;
    }

    /* home */
    .home_cards {
        display: flex;
        overflow: auto;
        /* border: solid; */
        width: 112%;
        margin-inline: -6%;
        padding-inline: 5%;
        scrollbar-width: none;
    }

    /* destinations mobile */
    .swiper{
        width: 100%;
        padding-inline: 0;
    }

    .swiper-slide{
        width: 85vw;
        max-width: 280px;
        flex-shrink: 0;
    }

    .swiper-slide_container{
        height: 320px;
        width: 100%;
        margin: 0 auto;
    }

    .swiper-slide_container:hover{
        transform: none;
        box-shadow: none;
    }

    .swiper-slide_container:hover img{
        transform: none;
    }

    .swiper-slide_container:hover .swiper-slide_content-title {
        transform: none;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .swiper-slide_container:hover .swiper-slide_content-price {
        background: rgba(255, 255, 255, 0.9);
        transform: none;
    }

    .swiper-slide_container:hover .swiper-slide_content-rating {
        transform: none;
    }

    .swiper-slide_content{
        padding: 1rem;
    }

    .swiper-slide_content-title{
        font-size: 1rem;
    }

    .swiper-slide_content-price{
        font-size: 0.9rem;
        padding: 0.2rem 0.6rem;
    }

    .swiper-slide_content-rating{
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    .destinations_swiper{
        overflow: hidden;
        padding: 0 5%;
    }

    .swiper{
        overflow: visible;
        padding-bottom: 2rem;
    }

    /* services */
    .services_circle{
        top: -220px;
    }

    .services_card{
        flex-wrap: warp;
    }
    /* subscribe */
    .subscribe_container{
        flex-direction: column-reverse;
    }
  

}

/* about */

.about_small-title{
    color: var(--color-gray);
}
.about_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about_cards .about_card {
    width: 200px;
    height: 250px;
    border-radius: 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.about_cards .about_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about_cards .about_card:hover::before {
    opacity: 1;
}

.about_cards .about_card:hover {
    transform: translateY(-8px) scale(1.02);
}

.about_card-1 {
    background: url("images/khao-sok.jpg");
}

.about_card-2 {
    background: url("images/penida-island.jpg");
    grid-row: span 2;
    align-self: center;
    position: relative;
}

.about_card-2::before {
    content: "";
    width: 100%;
    height: 100px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.5), transparent);
    border-radius: 1rem;
}

.about_card-2-plane-img{
    position: absolute;
    width: 150px;
    right: -60px;
    bottom: -40px;
}
.about_card-3 {
    background: url("images/koh-tonsay.jpg");
}

.about_stats{
    display: flex;
    margin-top: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.about_stat-btn-2{
    background: white;
    color: var(--color-primary);
    border: solid 1.5px var(--color-primary);
}

.about_travel-img{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 220px;
    z-index: -1;
}


.services_man-img{
    width: 300px;
}

.services_circle{
    background: var(--color-primary);
    width: 600px;
    height: 600px;
    position: absolute;
    left: -220px;
    top: -220px;
    z-index: -1;
    border-radius: 100% ;
}

.services_cards{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.services_card{
    border: solid 1.5px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 16px;
    direction: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    cursor: pointer;
    transition: 0.3s;
}

.services_card:hover{
    background: var(--color-primary);
    color: white;
}

.services_card i{
    background: var(--color-primary);
    min-width: 50px;
    min-height: 50px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.services_card:hover i{
    background: rgba(255,255,255,0.2);
}

.subscribe_plane-img{
    min-width: 250px;
    max-width: 250px;
    margin-left: -80px;
}

.subscribe_container{
    border: solid;
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 24px;
    width: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7),
    transparent 50%), url(images/khao-sok.jpg);
    color: white;
    object-fit: cover;
    background-position: center;
    
}

/* Professional Modern UI Enhancements */

/* Glassmorphism Cards */
.swiper-slide_container,
.about_card,
.services_card {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Morphing Hover Effects */
.home_card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.home_card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.3);
}

/* Pulsing Elements */
.search_btn,
.destinations_content-btn,
.home_content-btn {
    position: relative;
    overflow: hidden;
}

.search_btn::before,
.destinations_content-btn::before,
.home_content-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.search_btn:hover::before,
.destinations_content-btn:hover::before,
.home_content-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Floating Animation */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.about_card-2-plane-img {
    animation: floatSlow 6s ease-in-out infinite;
}

.services_man-img {
    animation: floatSlow 4s ease-in-out infinite;
}

.subscribe_plane-img {
    animation: floatSlow 5s ease-in-out infinite reverse;
}

/* Gradient Text Animation */
.home_title {
    background: linear-gradient(-45deg, #fff, #ff6b6b, #fff, #ff8a80);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease-in-out infinite;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced Footer */
.footer_social a {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer_social a:hover {
    transform: translateY(-5px) scale(1.2);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* Enhanced Swiper */
.swiper-slide:hover {
    transform: scale(1.02) translateY(-5px);
    z-index: 10;
}

/* Close Search Button */
.close_search {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.close_search:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.close_search i {
    color: white;
    font-size: 1.2rem;
}

.subscribe_input-container{
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.subscribe_input{
    background: rgba(0, 0, 0, 0.3);
    padding-inline: 16px;
    padding-block: 8px;
    border: none;
    border-radius: 99px;
    color: white;
    outline: none;
}

.subscribe_input::placeholder{
    color: rgba(255,255,255,0.7);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Remove underline from destinations small-title */
.destinations_small-title::after {
    display: none !important;
}

/* Modern Search Bar */
.search_container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.search_bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.search_bar:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
    transform: translateY(-2px);
}

.search_icon {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin: 0 1rem;
}

.search_input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.8rem 0;
    background: transparent;
}

.search_input::placeholder {
    color: #999;
}

.search_btn {
    background: var(--color-primary);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search_btn:hover {
    background: linear-gradient(135deg, #ff8a80, var(--color-primary));
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Search Results */
.search_results {
    padding: 3rem 5%;
    background: #f8f9fa;
}

.search_results_title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.search_results_container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

@media screen and (min-width: 768px) {
    .search_results_container {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .search_results_container > div:last-child {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
}

@media screen and (min-width: 1200px) {
    .search_results_container {
        max-width: 1600px;
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }
    
    .ai_recommendations {
        grid-column: 1 / -1;
        width: 100%;
        max-width: none;
    }
}

/* Destination Cards */
.destination_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.destination_card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.destination_card_content {
    padding: 1.5rem;
}

.destination_card_title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.destination_card_desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Enhanced Weather Widget */
.weather_widget {
    background: linear-gradient(145deg, #ffffff, #fff8f0);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15), 0 0 0 1px rgba(255, 153, 51, 0.1);
    height: fit-content;
    border: 2px solid rgba(255, 153, 51, 0.1);
    position: relative;
    overflow: hidden;
}

.weather_widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #F7931E, #FF9933);
    border-radius: 25px 25px 0 0;
}

.weather_title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.weather_title i {
    color: #FF6B35;
    font-size: 1.8rem;
    animation: weatherPulse 2s ease-in-out infinite;
}

@keyframes weatherPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.weather_current {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #FF6B35, #F7931E, #FF9933);
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.weather_current::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    animation: weatherShimmer 3s ease-in-out infinite;
}

@keyframes weatherShimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.weather_location {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.weather_temp {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1rem 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.weather_desc {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

.weather_forecast {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.weather_day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, #ffffff, #fff8f0);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 153, 51, 0.1);
    position: relative;
    overflow: hidden;
}

.weather_day::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FF6B35, #F7931E);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.weather_day:hover::before {
    transform: scaleY(1);
}

.weather_day:hover {
    background: linear-gradient(135deg, #fff8f0, #ffffff);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 153, 51, 0.3);
}

.weather_day span:first-child {
    font-weight: 600;
    color: #2c3e50;
    min-width: 60px;
}

.weather_day span:nth-child(2) {
    font-weight: 700;
    color: #FF6B35;
    font-size: 1.1rem;
}

.weather_day span:last-child {
    color: #666;
    font-weight: 500;
    text-transform: capitalize;
}

.weather_details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.weather_detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.weather_detail:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.weather_detail i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.weather_detail span:first-of-type {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}

.weather_detail span:last-child {
    font-size: 1rem;
    font-weight: 700;
}

/* Enhanced AI Recommendations */
.ai_recommendations {
    background: linear-gradient(145deg, #ffffff, #fff8f0);
    border-radius: 25px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15), 0 0 0 1px rgba(255, 153, 51, 0.1);
    border: 2px solid rgba(255, 153, 51, 0.1);
    position: relative;
    overflow: hidden;
}

.ai_recommendations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #F7931E, #FF9933);
    border-radius: 25px 25px 0 0;
}



.ai_title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.ai_title i {
    color: #FF6B35;
    font-size: 1.8rem;
}

.ai_content {
    color: #4a5568;
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 248, 240, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(255, 153, 51, 0.1);
    backdrop-filter: blur(10px);
}



.ai_content p {
    margin-bottom: 1rem;
}

.ai_content strong {
    color: #FF6B35;
    font-weight: 600;
}

/* Loading Animation */
.loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
}

/* Enhanced View More Button */
.view_more_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0 2rem;
    position: relative;
}

.view_more_container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.3), transparent);
    z-index: 1;
}

.destinations_content-btn.enhanced {
    background: linear-gradient(135deg, var(--color-primary), #ff8a80);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    position: relative;
    z-index: 2;
    background-color: white;
    overflow: hidden;
}

.destinations_content-btn.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.destinations_content-btn.enhanced:hover::before {
    left: 100%;
}

.destinations_content-btn.enhanced:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff8a80, var(--color-primary));
}

.destinations_content-btn.enhanced i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.destinations_content-btn.enhanced:hover i {
    transform: rotate(360deg);
}

.destinations_content-btn.enhanced span {
    position: relative;
    z-index: 1;
}

/* Favorites Feature Styles */
.favorites-count {
    background: var(--color-saffron);
    color: white;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    min-width: 20px;
    text-align: center;
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.favorite-btn i {
    color: #ccc;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
    background: white;
}

.favorite-btn.favorited {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #FF6B35;
}

.favorite-btn.favorited i {
    color: #FF6B35;
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.favorites-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 107, 53, 0.1));
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.favorites-modal-content {
    background: linear-gradient(145deg, #ffffff, #fff8f0);
    border-radius: 25px;
    width: 85%;
    max-width: 700px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(255, 107, 53, 0.25),
        0 12px 30px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 153, 51, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 153, 51, 0.1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.favorites-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #FF6B35, #F7931E, #FF9933);
    color: white;
    position: relative;
    overflow: hidden;
}

.favorites-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.favorites-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.favorites-header i {
    font-size: 2rem;
    animation: heartBeat 2s ease-in-out infinite;
}

.close-favorites {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.close-favorites:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.favorites-list {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.9));
}

.favorite-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: 15px;
    margin-bottom: 1.2rem;
    background: linear-gradient(145deg, #ffffff, #fff8f0);
    border: 2px solid rgba(255, 153, 51, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.favorite-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #F7931E, #FF9933);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.favorite-item:hover::before {
    transform: scaleX(1);
}

.favorite-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.2),
        0 8px 25px rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 153, 51, 0.3);
}

.favorite-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.favorite-item:hover .favorite-image {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}

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

.favorite-item:hover .favorite-image img {
    transform: scale(1.1);
}

.favorite-content {
    flex: 1;
}

.favorite-content h3 {
    margin: 0 0 0.8rem 0;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
}

.favorite-content h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #F7931E);
    transition: width 0.3s ease;
}

.favorite-item:hover .favorite-content h3::after {
    width: 100%;
}

.favorite-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.favorite-price {
    color: #FF6B35;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    font-size: 0.9rem;
}

.favorite-rating {
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
}

.favorite-rating i {
    color: #ffd700;
    font-size: 1rem;
}

.favorite-content small {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

.remove-favorite {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    border: none;
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    font-size: 1.1rem;
}

.remove-favorite:hover {
    background: linear-gradient(135deg, #ff3742, #ff2f3a);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.no-favorites {
    text-align: center;
    padding: 4rem;
    color: #666;
}

.no-favorites i {
    font-size: 5rem;
    color: rgba(255, 107, 53, 0.3);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.no-favorites h3 {
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
}

.no-favorites p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.favorite-notification {
    position: fixed;
    top: 120px;
    right: -400px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    min-width: 280px;
}

.favorite-notification.show {
    right: 20px;
    transform: scale(1.05);
}

.favorite-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 15px;
    pointer-events: none;
}

.favorite-notification i {
    font-size: 1.2rem;
    animation: heartBeat 0.6s ease;
}

/* Forecast Chart Styles */
.forecast_chart_container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.9));
    border-radius: 20px;
    border: 2px solid rgba(255, 153, 51, 0.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.forecast_chart_title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    justify-content: center;
}

.forecast_chart_title i {
    color: #FF6B35;
    font-size: 1.4rem;
    animation: chartPulse 2s ease-in-out infinite;
}

@keyframes chartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.forecast_chart {
    width: 100%;
    height: 350px;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 153, 51, 0.1);
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Chart responsive breakpoints */
@media screen and (min-width: 1025px) {
    .forecast_chart {
        height: 350px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1024px) {
    .forecast_chart {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .forecast_chart {
        height: 250px;
        padding: 0.5rem;
    }
    
    .forecast_chart_container {
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .forecast_chart {
        height: 200px;
        padding: 0.3rem;
    }
    
    .forecast_chart_container {
        padding: 0.8rem;
    }
    
    .forecast_chart_title {
        font-size: 1rem;
    }
}

@media screen and (max-width: 390px) {
    .forecast_chart {
        height: 180px;
        padding: 0.2rem;
    }
    
    .forecast_chart_container {
        padding: 0.5rem;
    }
}

/* Responsive chart adjustments */
@media screen and (max-width: 768px) {
    .forecast_chart {
        height: 280px;
        padding: 0.5rem;
    }
    
    .forecast_chart_title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .forecast_chart_container {
        margin: 1.5rem 0;
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .forecast_chart {
        height: 250px;
        padding: 0.3rem;
    }
    
    .forecast_chart_title {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Travel Planning Styles */
.travel_planning {
    background: linear-gradient(145deg, #ffffff, #fff8f0);
    border-radius: 25px;
    padding: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15), 0 0 0 1px rgba(255, 153, 51, 0.1);
    border: 2px solid rgba(255, 153, 51, 0.1);
    position: relative;
    overflow: hidden;
}

.travel_planning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #F7931E, #FF9933);
    border-radius: 25px 25px 0 0;
}

.travel_title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    justify-content: center;
}

.travel_title i {
    color: #FF6B35;
    font-size: 1.8rem;
    animation: routePulse 2s ease-in-out infinite;
}

@keyframes routePulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.travel_quote {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.9));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 153, 51, 0.1);
    position: relative;
    overflow: hidden;
}

.quote_icon {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.quote_icon i {
    color: white;
    font-size: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.quote_content {
    flex: 1;
}

.quote_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.quote_text {
    font-size: 1.1rem;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.weather_summary {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.summary_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.summary_item i {
    color: #FF6B35;
}

.travel_advice {
    display: grid;
    gap: 0.8rem;
}

.advice_item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 153, 51, 0.1);
    transition: all 0.3s ease;
}

.advice_item:hover {
    background: rgba(255, 248, 240, 0.9);
    transform: translateX(5px);
    border-color: rgba(255, 153, 51, 0.3);
}

.advice_item i {
    color: #FF6B35;
    font-size: 0.9rem;
    width: 16px;
}

.advice_item span {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Tablet Responsive */
@media screen and (max-width: 1024px) {
    .search_results_container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .destination_cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .weather_widget {
        padding: 2rem;
    }
    
    .forecast_chart {
        height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .search_results {
        padding: 1rem;
        width: 100vw;
        max-width: 100vw;
        margin: 0;
    }
    
    .search_results_title {
        font-size: 1.5rem;
        text-align: center;
        margin: 0 0 1rem 0;
        padding: 0 1rem;
    }
    
    .search_results_container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination_cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .destination_card {
        max-width: 100%;
    }
    
    .weather_widget {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .weather_current {
        padding: 1.5rem 1rem;
    }
    
    .weather_temp {
        font-size: 2.5rem;
    }
    
    .forecast_chart {
        height: 250px;
        padding: 0.5rem;
    }
    
    .travel_quote {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .quote_icon {
        align-self: center;
        width: 50px;
        height: 50px;
    }
    
    .weather_summary {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
    }
    
    .travel_planning {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .ai_recommendations {
        padding: 0.5rem;
        margin: 0.8rem 0.3rem;
        width: calc(100vw - 1.6rem);
        max-width: calc(100vw - 1.6rem);
        box-sizing: border-box;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }
    
    .ai_content {
        padding: 0.4rem;
        font-size: 0.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
        text-align: left;
        max-width: 100%;
        white-space: pre-wrap;
    }
    
    .ai_title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        text-align: center;
        padding: 0 0.2rem;
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }
    
    .ai_content p {
        margin-bottom: 0.6rem;
        max-width: 100%;
        word-break: break-word;
    }
    
    .ai_content strong {
        display: inline;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }
    
    /* Ultra responsive text handling */
    .ai_content * {
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
    }
    
    /* Force container constraints */
    .ai_recommendations,
    .ai_recommendations * {
        max-width: calc(100vw - 1rem) !important;
        box-sizing: border-box !important;
    }
    
    .ai_title i {
        font-size: 0.9rem !important;
    }
}

/* iPhone 14 specific optimization */
@media screen and (max-width: 390px) {
    .search_results {
        padding: 0.5rem !important;
    }
    
    .search_results_container > div,
    .weather_widget,
    .travel_planning,
    .ai_recommendations,
    .destination_card {
        width: calc(100vw - 2.5rem) !important;
        max-width: calc(100vw - 2.5rem) !important;
        margin: 0.5rem auto !important;
        padding: 0.4rem !important;
    }
    
    .ai_content {
        padding: 0.2rem !important;
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
    
    .forecast_chart {
        height: 180px !important;
    }
    
    .weather_details {
        grid-template-columns: 1fr !important;
        gap: 0.3rem !important;
    }
    
    .summary_item {
        font-size: 0.7rem !important;
        padding: 0.2rem 0.5rem !important;
    }
    
    .weather_widget,
    .travel_planning,
    .ai_recommendations {
        width: calc(100vw - 0.5rem) !important;
        max-width: calc(100vw - 0.5rem) !important;
        margin: 0.1rem auto !important;
        padding: 0.1rem !important;
    }
    
    .ai_title {
        font-size: 0.9rem !important;
        margin-bottom: 0.1rem !important;
    }
    
    .weather_title,
    .travel_title {
        font-size: 1rem !important;
        margin-bottom: 0.1rem !important;
    }
    
    .quote_text {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .advice_item {
        padding: 0.3rem !important;
        font-size: 0.75rem !important;
    }
    
    /* Favorite button mobile fix */
    .favorite-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .favorite-btn i {
        font-size: 1rem;
    }
    
    /* Chart container mobile fix */
    .forecast_chart_container {
        padding: 0.8rem;
        margin: 1rem 0;
        width: calc(100% - 1rem);
        max-width: calc(100vw - 2rem);
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .forecast_chart {
        width: 100%;
        height: 200px;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .forecast_chart svg {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }
    
    .forecast_chart_title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    /* Travel planning mobile improvements */
    .travel_planning {
        padding: 1.2rem;
        margin: 1.5rem 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .travel_title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .quote_title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .quote_text {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .summary_item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .advice_item {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* Force all containers to stay within viewport */
    .search_results_container > div {
        width: calc(100vw - 3rem) !important;
        max-width: calc(100vw - 3rem) !important;
        margin: 0 auto !important;
        padding: 0 0.2rem !important;
        box-sizing: border-box !important;
    }
    
    .weather_widget {
        width: calc(100vw - 3rem) !important;
        max-width: calc(100vw - 3rem) !important;
        margin: 0.5rem auto !important;
        padding: 0.5rem !important;
        box-sizing: border-box !important;
    }
    
    .travel_planning {
        width: calc(100vw - 3rem) !important;
        max-width: calc(100vw - 3rem) !important;
        margin: 0.5rem auto !important;
        padding: 0.5rem !important;
        box-sizing: border-box !important;
    }
    
    .ai_recommendations {
        width: calc(100vw - 3rem) !important;
        max-width: calc(100vw - 3rem) !important;
        margin: 0.5rem auto !important;
        padding: 0.3rem !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .destination_card {
        width: calc(100vw - 3rem) !important;
        max-width: calc(100vw - 3rem) !important;
        margin: 0.5rem auto !important;
        padding: 0.5rem !important;
        box-sizing: border-box !important;
    }
}

/* Global mobile fixes */
* {
    box-sizing: border-box;
}

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

.search_results {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 2rem 1rem;
}

.search_results_container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

.weather_widget,
.travel_planning,
.ai_recommendations,
.forecast_chart_container,
.destination_card {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}

.destination_cards {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
    .search_results_container {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .destination_cards {
        grid-template-columns: 1fr;
    }
    
    .search_bar {
        margin: 0 1rem;
    }
    
    .destinations_content-btn.enhanced {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .destinations_content-btn.enhanced span {
        display: none;
    }
    
    .destinations_content-btn.enhanced::after {
        content: 'Explore More';
    }
    
    .favorites-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .favorites-header {
        padding: 1.5rem;
    }
    
    .favorites-list {
        padding: 1rem;
    }
    
    .favorite-item {
        flex-direction: column;
        text-align: center;
    }
    
    .favorite-details {
        justify-content: center;
    }
    
    .favorite-notification {
        top: 100px;
        right: -100%;
        left: 10px;
        width: calc(100% - 20px);
        min-width: auto;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .favorite-notification.show {
        right: 10px;
        left: 10px;
        transform: scale(1);
    }
    
    /* Search results mobile */
    .search_results {
        padding: 2rem 2%;
        overflow-x: hidden;
    }
    
    .search_results_container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        overflow-x: hidden;
    }
    
    .destination_cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }
    
    .destination_card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .weather_widget {
        padding: 1.2rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .forecast_chart {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }
    
    .travel_planning {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .ai_recommendations {
        padding: 1rem;
        margin: 1rem 0;
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .weather_summary {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .summary_item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .travel_quote {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .advice_item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Modern Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Header animations */
.header_title {
    /* Static - no floating animation */
}

.header_nav li {
    transition: all 0.3s ease;
}

.header_nav li:hover {
    transform: translateY(-2px);
}

.header_nav li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header_nav li a:hover::after {
    width: 100%;
}

/* Home section animations */
.home_content-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.home_content-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.home_content-btn:hover::before {
    left: 100%;
}

.home_content-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.home_card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home_card:hover {
    transform: translateY(-15px) rotate(2deg);
}

/* About section animations */
.about_card-2-plane-img {
    animation: float 4s ease-in-out infinite;
}

.about_travel-img {
    animation: float 5s ease-in-out infinite reverse;
}

.about_stat {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about_stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.about_stat:hover::before {
    left: 100%;
}

.about_stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Services section animations */
.services_circle {
    animation: rotate 20s linear infinite;
}

.services_man-img {
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

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

.services_card {
    position: relative;
    overflow: hidden;
}

.services_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,107,0.1), transparent);
    transition: left 0.5s;
}

.services_card:hover::before {
    left: 100%;
}

.services_card i {
    transition: all 0.3s ease;
}

.services_card:hover i {
    animation: bounce 0.6s ease;
}

/* Subscribe section animations */
.subscribe_plane-img {
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.subscribe_plane-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.subscribe_btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subscribe_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.subscribe_btn:hover::before {
    left: 100%;
}

.subscribe_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,107,0.3);
}

.subscribe_input {
    transition: all 0.3s ease;
}

.subscribe_input:focus {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255,107,107,0.2);
}

/* Footer animations */
.footer_social a {
    transition: all 0.3s ease;
}

.footer_social a:hover {
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.footer_links a {
    transition: all 0.3s ease;
    position: relative;
}

.footer_links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.footer_links a:hover::after {
    width: 100%;
}

.footer_links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

/* Sliding image arrangement */
.destination_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    animation: slideInCards 0.8s ease-out;
}

@keyframes slideInCards {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.destination_card {
    animation: slideInCard 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.destination_card:nth-child(1) { animation-delay: 0.1s; }
.destination_card:nth-child(2) { animation-delay: 0.2s; }
.destination_card:nth-child(3) { animation-delay: 0.3s; }
.destination_card:nth-child(4) { animation-delay: 0.4s; }
.destination_card:nth-child(5) { animation-delay: 0.5s; }
.destination_card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Destinations button animation */
.destinations_content-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.destinations_content-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.destinations_content-btn:hover::before {
    left: 100%;
}

.destinations_content-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,107,0.3);
}

/* Loading animation for images */
.swiper-slide img, .about_card, .home_card {
    transition: all 0.3s ease;
}

.swiper-slide img:hover {
    transform: scale(1.05);
}

/* Text animations and orange color fixes */
.title {
    position: relative;
}

.title span {
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.title span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.title:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Fix missing orange colors */
.header_title span,
.home_small-title span,
.about_title span,
.destinhtions_title span,
.services_content .title span,
.subscribe_content .title span,
.footer_title span {
    color: var(--color-primary);
}

/* Add underline animation to all title spans */
.header_title span::after,
.home_small-title span::after,
.about_title span::after,
.destinhtions_title span::after,
.services_content .title span::after,
.subscribe_content .title span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.header_title:hover span::after,
.home_small-title:hover span::after,
.about_title:hover span::after,
.destinhtions_title:hover span::after,
.services_content .title:hover span::after,
.subscribe_content .title:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}
/* Ensure all spans have relative positioning for underline animation */
.header_title span,
.title span,
.home_small-title span,
.about_title span,
.destinhtions_title span,
.services_content .title span,
.subscribe_content .title span {
    position: relative;
    display: inline-block;
}

/* Footer */
.footer{
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 5% 1rem;
}

.footer_content{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer_title{
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer_title span{
    color: var(--color-primary);
}

.footer_desc{
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer_social{
    display: flex;
    gap: 1rem;
}

.footer_social a{
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer_social a:hover{
    background: #ff8a80;
    transform: translateY(-3px);
}

.footer_heading{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer_links{
    list-style: none;
}

.footer_links li{
    margin-bottom: 0.5rem;
}

.footer_links a{
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer_links a:hover{
    color: var(--color-primary);
    padding-left: 5px;
}

.footer_contact p{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer_contact i{
    color: var(--color-primary);
    width: 16px;
}

.footer_bottom{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer_copyright {
    color: rgba(255, 255, 255, 0.6);
}

.footer_credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer_credit i {
    color: #ff4757;
    animation: heartBeat 1.5s ease-in-out infinite;
    font-size: 1rem;
}

.developer_name {
    color: var(--color-primary);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), #ff8a80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.developer_name:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.5));
}

.developer_name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), #ff8a80);
    transition: width 0.3s ease;
}

.developer_name:hover::after {
    width: 100%;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
    75% { transform: scale(1.1); }
}

@media screen and (max-width: 768px) {
    .footer_bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .footer_credit {
        justify-content: center;
    }
}

@media screen and (max-width: 1024px) {
    .footer_content{
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer_content{
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer_social{
        justify-content: center;
    }
}