:root {
    --primary-blue: #1850A3;
    --primary-orange: #F89252;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-img {
    height: 40px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.search-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.icon-link:hover {
    transform: scale(1.1);
}

.whatsapp-link {
    display: none;
}

.whatsapp-icon {
    color: #25D366;
}

.under_slider_info_text {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.under_slider_info_text_container {
    text-align: center;
    font-size: 12px;
    color: var(--gray-800);
    background: rgba(255, 255, 255, 0.85);
    padding: 6px 25px;
    border-radius: 7px;
    font-weight: 500;
}

.support-circle {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon {
    color: var(--primary-blue);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.support-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 400;
}

.phone-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

@media (max-width: 768px) {
    .header-content {
        justify-content: flex-start;
        gap: 15px;
        text-align: center;
        flex-direction: row-reverse;
        padding: 16px !important;
    }
    
    .header-right {
        order: -1;
    }
    
    .contact-info {
        display: flex;
        align-items: center;
        gap: 0;
        justify-content: flex-end;
        margin-left: auto;
    }
    
    .icon-link {
        padding: 0 8px;
    }
    
    .icon-link.phone-link {
        border-right: 1px solid var(--gray-300);
        padding-right: 10px;
    }
    
    .icon-link.whatsapp-link {
        padding-left: 10px;
    }
    
    .whatsapp-link {
        display: inline-flex;
    }
    
    .contact-text {
        display: none !important;
    }

    .page-tour-detail .contact-info {
        display: none !important;
    }

    .phone-number {
        font-size: 12px;
    }

    .support-label {
        font-size: 10px;
    }

    .logo {
        width: 50%;
    }

    .header-right {
        width: 50%;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 5px;
        justify-content: flex-end;
        align-items: center;
    }

    .header-logo-img {
        width: auto;
        height: 30px;
    }

    .support-circle {
        width: 36px;
        height: 36px;
    }

    .search-btn {
        display: none;
    }
}

@media (max-width: 480px) {    
    .search-btn {
        padding: 6px 16px;
        font-size: 14px;
    }
}

.tours_container {
    padding: 60px 0;
    background: var(--white);
}

.tours_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    margin-top: 25px;
}

.tour-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.tour-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1);
}

.tour-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 10px;
    color: var(--white);
}

.tour-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.tour-card:hover .tour-overlay::before {
    opacity: 1;
}

.tour-title {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1em;
}

.tour-subtitle {
    position: relative;
    z-index: 2;
    font-size: 14px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
}

@media (max-width: 768px) {
    .tours_container {
        padding: 60px 0;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 15px;
    }
    
    .tour-overlay {
        padding: 20px 15px 15px;
    }
    
    .tour-title {
        font-size: 16px;
    }
    
    .tour-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tours-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 140px;
        gap: 15px;
    }
}

.section_title {
    width: 100%;
    box-sizing: border-box;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.selected_tours_container {
    width: 100%;
    padding: 60px 0;
    background: var(--gray-50);
}

.selected_tours_wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.selected_tours_box {
    width: 100%;
    margin-top: 25px;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: none;
    gap: 20px;
}

.tour-item {
    min-width: 25%;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    transition: none;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.tour-images {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-slide.active {
    opacity: 1;
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
    transition: transform 0.4s ease;
}

.tour-item:hover .image-slide img {
    transform: scale(1);
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: all 0.3s ease;
}

.tour-item:hover .image-nav {
    opacity: 1;
}

.image-prev {
    left: 10px;
}

.image-next {
    right: 10px;
}

.image-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.image-nav svg {
    color: var(--gray-700);
}

.image-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.image-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 4;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 4;
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #ff4d4d 0%, #c62828 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.trending { background: #FF6B6B; }
.badge.popular { background: #4ECDC4; }
.badge.limited { background: #FFE66D; color: var(--gray-800); }
.badge.new { background: #FF8E53; }
.badge.featured { background: #6BCF7F; }
.badge.bestseller { background: #9B59B6; }
.badge.exotic { background: #E74C3C; }
.badge.adventure { background: #2ECC71; }
.badge.culture { background: #3498DB; }
.badge.domestic { background: #95A5A6; }
.badge.nature { background: #27AE60; }
.badge.relax { background: #8E44AD; }

.tour-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-category {
    color: var(--primary-orange);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.tour-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
    flex-grow: 1;
}

.tour-description {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-price-container {
    margin-top: auto;
    text-align: right;
}

.old-price-wrapper {
    min-height: 20px;
}

.current-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.tour-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.converted-price {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-500);
    display: inline-block;
    order: -1;
}

.old-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
    text-decoration: line-through;
    display: inline-block;
}

.price-loading {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
}

.price-unavailable {
    color: #e74c3c;
    font-size: 14px;
    font-weight: 500;
}

.price-error {
    color: #999;
    font-size: 13px;
    font-weight: 400;
}

.tour-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.duration {
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 500;
}

.details-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.details-link:hover {
    color: var(--primary-orange);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-600);
    z-index: 10;
    opacity: 0;
}

.carousel-container:hover .carousel-nav {
    opacity: 1;
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.carousel-nav:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
    background: var(--white);
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

@media (max-width: 1024px) {
    .tour-item {
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .selected_tours_container {
        padding: 40px 0;
    }
    
    .carousel-container {
        gap: 15px;
    }
    
    .tour-item {
        min-width: calc(50% - 10px);
    }
    
    .tour-images {
        height: 160px;
    }
    
    .tour-info {
        padding: 15px;
    }
    
    .tour-name {
        font-size: 16px;
    }
    
    .tour-price {
        font-size: 18px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .selected_tours_wrapper {
        padding: 0 16px;
    }

    .cruise_tours_wrapper {
        padding: 0 16px;
    }

    .selected_hotels_wrapper {
        padding: 0 16px !important;
    }
}

@media (max-width: 480px) {
    .tour-item {
        min-width: 100%;
    }
    
    .carousel-container {
        gap: 10px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
    }
}

.cruise_tours_container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.cruise_tours_wrapper {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.cruise_tours_box {
    width: 100%;
    box-sizing: border-box;
}

.cruise_tours_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}

.ct-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  height: 100%;
  isolation: isolate;
}

.ct--tall {
    grid-row: span 2;
}

.ct--wide {
    grid-column: 3 / span 2;
}

.ct-image, .ct-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.ct-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ct-image img {
  object-fit: cover;
  transform: scale(1.3);
  transition: transform 0.5s ease;
}
.ct-card:hover .ct-image img {
    transform: scale(1);
}

.ct-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  color: var(--white);
  z-index: 1;
}

.ct-overlay::before{
  content:"";
  position: absolute;
  inset: -60px 0 0 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 60%, transparent 100%);
  z-index: -1;
}

.ct-title    {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.ct-subtitle {
    font-size: 13px;
    opacity: .9;
}

@media (max-width: 1024px){
    .cruise_tours_box {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }

    .ct--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px){
    .cruise_tours_box {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 15px;
    }

    .ct--wide, .ct--tall {
        grid-column: auto;
        grid-row: span 1;
    }
}

@media (max-width: 480px){
    .cruise_tours_box {
        grid-template-columns: 1fr;
        grid-auto-rows: 160px;
    }
}

.parallax_container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-image: url("https://images.unsplash.com/photo-1475503572774-15a45e5d60b9?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    padding: 150px 0 150px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.parallax_container > * {
    position: relative;
    z-index: 2;
}

.parallax-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.parallax-main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--white);
}

.parallax-subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--white);
    margin: 0;
}

@media (max-width: 768px) {
    .parallax-main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .parallax-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .parallax-main-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .parallax-subtitle {
        font-size: 15px;
    }
    
    .parallax-content {
        padding: 0 15px;
    }
}

footer {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background: var(--gray-50);
}

.footer_container {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1.5fr 1.5fr;
    gap: 60px;
    padding: 60px 20px;
    color: var(--gray-700);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 24px;
}

.footer-company {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.footer-address {
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray-600);
}

.contact-icon {
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.address-line {
    line-height: 1.5;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--primary-blue);
}

.footer-link::before {
    content: '›';
    color: var(--gray-400);
    margin-right: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover::before {
    color: var(--primary-blue);
}

.newsletter-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-input-wrapper {
    position: relative;
}

.email-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--white);
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(24, 80, 163, 0.1);
}

.subscribe-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.subscribe-btn:hover {
    background: #e67e3d;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .email-input-wrapper {
        flex: 1;
    }
    
    .subscribe-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 30px 15px;
        gap: 30px;
    }

    .footer-logo {
        text-align: center;
    }
    .footer-description {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

.footer_social_wrapper {
    width: 100%;
    box-sizing: border-box;
    background: var(--white);
    padding: 25px;
    box-shadow: 0px 4px 24px 0px rgba(194, 194, 194, 0.25);
    border-radius: 10px;
}

.footer-social-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-social-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.qr-code {
    height: 60px;
    width: auto;
}

.tursab-logo {
    height: 60px;
    width: auto;
}

.footer-social-center {
    flex: 1;
    text-align: center;
}

.company-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 5px;
    line-height: 1.4;
}

.company-license {
    font-size: 11px;
    color: var(--gray-500);
    line-height: 1.4;
}

.footer-social-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-logo {
    height: 24px;
    width: auto;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 6px;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .footer-social-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social-left,
    .footer-social-right {
        justify-content: center;
    }
    
    .footer-social-center {
        order: -1;
    }
    
    .company-name {
        font-size: 11px;
    }
    
    .company-license {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .footer-social-left {
        gap: 15px;
    }
    
    .qr-code {
        height: 50px;
    }
    
    .tursab-logo {
        height: 40px;
    }
    
    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .payment-logo {
        height: 20px;
    }
}

.footer_text_container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 30px 0;
}

.footer_text_wrapper {
    width: 90%;
    box-sizing: border-box;
    text-align: center;
    font-size: 12px;
}

.selected_hotels_container {
    width: 100%;
    padding: 60px 0;
    background: var(--gray-100);
}

.selected_hotels_wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.selected_hotels_box {
    width: 100%;
    margin-top: 25px;
}

.selected_hotels_box .carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.selected_hotels_box .carousel-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.hotel-carousel-track {
    display: flex;
    transition: none;
    gap: 20px;
}

.hotel-item {
    min-width: 25%;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    flex: 0 0 auto;
    transition: none;
}

.hotel-images {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hotel-images .image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hotel-images .image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotel-images .image-slide.active {
    opacity: 1;
}

.hotel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
    transition: transform 0.4s ease;
}

.hotel-item:hover .hotel-images img {
    transform: scale(1);
}

.hotel-images .image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: all 0.3s ease;
}

.hotel-item:hover .image-nav {
    opacity: 1;
}

.hotel-images .image-prev {
    left: 10px;
}

.hotel-images .image-next {
    right: 10px;
}

.hotel-images .image-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.hotel-images .image-nav svg {
    color: var(--gray-700);
}

.hotel-images .image-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.hotel-images .image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotel-images .image-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.hotel-images .badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 4;
}

.hotel-images .badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.luxury {
    background: #9b59b6;
}

.badge.sea {
    background: #4ECDC4;
}

.hotel-info {
    padding: 20px;
}

.hotel-category {
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.hotel-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.hotel-description {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotel-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.hotel-price .old-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-left: 8px;
}

.hotel-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.hotel-details .duration {
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 500;
}

.hotel-details .details-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hotel-details .details-link:hover {
    color: var(--primary-orange);
}

.hotel-prev-btn, .hotel-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-600);
    z-index: 10;
    opacity: 0;
}

.selected_hotels_box .carousel-container:hover .hotel-prev-btn,
.selected_hotels_box .carousel-container:hover .hotel-next-btn {
    opacity: 1;
}

.hotel-prev-btn {
    left: 15px;
}

.hotel-next-btn {
    right: 15px;
}

.hotel-prev-btn:hover,
.hotel-next-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
    background: var(--white);
}

@media (max-width: 1024px) {
    .hotel-item {
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .selected_hotels_container {
        padding: 40px 0;
    }
    .hotel-item {
        min-width: calc(50% - 10px);
    }
    .hotel-images {
        height: 160px;
    }
    .hotel-info {
        padding: 15px;
    }
    .hotel-name {
        font-size: 16px;
    }
    .hotel-price {
        font-size: 18px;
    }
    .hotel-prev-btn, .hotel-next-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hotel-item {
        min-width: 100%;
    }
    .hotel-prev-btn, .hotel-next-btn {
        width: 35px;
        height: 35px;
    }
}

/* Info Text Responsive */
@media (max-width: 768px) {
    .under_slider_info_text {
        bottom: 10px;
    }
    
    .under_slider_info_text_container {
        font-size: 12px;
        padding: 7px 20px;
    }
}

@media (max-width: 480px) {
    .under_slider_info_text {
        bottom: 10px;
    }
    
    .under_slider_info_text_container {
        font-size: 11px;
        padding: 6px 15px;
    }
}