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

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    overflow-x: hidden;
}

b, strong {
    font-weight: 800;
}

.navigation-bar {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 80px 5px 80px;
    width: 100%;
    box-sizing: border-box;
    min-height: 70px;
}

.nav-logo {
    height: 60px;
    width: 240px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transform: translateY(-5%);
}

.nav-signin-btn {
    background-color: #0a7e8b;
    border: none;
    border-radius: 40px;
    padding: 16px 20px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    width: 150px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-signin-btn:hover {
    background-color: #096b76;
}

.nav-signin-btn.profile-icon {
    font-size: 24px;
    padding: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-signin-btn.profile-icon svg {
    color: white;
}

.header-section {
    position: relative;
    width: 100vw;
    height: 580px;
    overflow: visible;
    margin: 0;
    padding: 0 0 20px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.header-image {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 458px;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.3);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.header-content {
    position: absolute;
    top: 129px;
    left: 50%;
    transform: translateX(-50%);
    width: min(792px, calc(100vw - 80px));
    text-align: center;
    color: white;
    z-index: 2;
}

.header-section .header-content h1 {
    color: #FFF;
    text-align: center;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.45);
    font-family: Inter;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 19px 0;
}

.header-section .header-content p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    margin: 0 !important;
    color: white !important;
}

.search-container {
    position: absolute;
    top: 354px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1330px, calc(100vw - 80px));
    height: 211px;
    background: #f9f8f5;
    border-radius: 20px;
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.25);
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-input {
    background: white;
    border-radius: 15px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 1px 2px 8px 0px inset rgba(0, 0, 0, 0.14);
}

.input-group {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    flex: 1;
}

.pin-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-icon img {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    object-fit: contain;
    padding: 2px;
}

.input-group input {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: black;
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
}

.input-group input::placeholder {
    color: #666;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
}

.autocomplete-item:hover {
    background-color: #f8f9fa;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.arrow-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: black;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}

.category-buttons {
    display: flex;
    gap: 32px;
    width: 100%;
}

.category-btn {
    flex: 1;
    background: #cfe4e8;
    border: none;
    border-radius: 40px;
    padding: 16px 32px;
    color: #131517;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.category-btn:hover {
    background: #0a7e8b;
    color: white;
}

.category-btn.selected {
    background: rgb(10, 126, 139);
    color: white;
}

.category-btn.selected:hover {
    background: rgb(207, 228, 232);
    color: #131517;
}

@media (max-width: 1200px) {
    .header-content {
        width: 90%;
        max-width: 792px;
    }
    
    .header-content h1 {
        font-size: 56px;
    }
    
    .search-container {
        width: calc(100vw - 80px);
    }
    
    .category-buttons {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .category-btn {
        flex: 1;
        min-width: 120px;
    }
}

.alert-banner {
    background-color: #0a3954;
    border: 4px solid #0a7e8b;
    border-radius: 70px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1596px, calc(100vw - 40px));
    margin: 40px auto;
}

.alert-banner-text {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    width: 1596px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .alert-banner {
        border-radius: 40px;
        padding: 15px 20px;
        width: calc(100vw - 40px);
        margin: 20px auto;
    }
    
    .alert-banner-text {
        font-size: 16px;
    }
}

.recent-searches-section {
    width: min(1596px, calc(100vw - 40px));
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.recent-searches-title {
    font-family: Inter;
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-align: left;
}

.recent-searches-container {
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: flex-start;
}

.recent-search-card {
    background-color: #cfe4e8;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 388px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.recent-search-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #131517;
}

.recent-search-content h3 {
    font-family: Inter;
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    width: 300px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-search-details {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}

.recent-search-details p {
    margin: 0;
}

.recent-search-button {
    background-color: #0a7e8b;
    border: none;
    border-radius: 15px;
    padding: 16px 20px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    margin-left: -10px;
    background-image: url('../images/arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.recent-search-button:hover {
    background-color: #096b76;
}

@media (max-width: 1200px) {
    .recent-searches-container {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 768px) {
    .recent-searches-section {
        width: calc(100vw - 40px);
        margin: 20px auto;
        gap: 20px;
    }
    
    .recent-searches-title {
        font-size: 32px;
    }
    
    .recent-search-card {
        width: 300px;
    }
    
    .recent-search-content h3 {
        font-size: 28px;
        width: auto;
    }
}

.bundles-section {
    width: min(1596px, calc(100vw - 40px));
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.bundles-title {
    color: #000;
    font-family: Inter;
    font-size: 39px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    text-align: left;
}

.bundles-subtitle {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    text-align: left;
}

.bundles-container {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.bundle-container {
    background-color: #f9f8f5;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 523px;
    height: 265px;
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.25);
    color: black;
    box-sizing: border-box;
    flex-shrink: 0;
}

.bundle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
}

.bundle-image {
    width: 220px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.bundle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundle-pricing {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    font-style: italic;
    text-align: left;
}

.bundle-pricing p {
    margin: 0;
}

.bundle-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
}

.bundle-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.bundle-info h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    margin: 0;
    text-align: left;
}

.bundle-info p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    margin: 0;
    text-align: left;
}

.bundle-button {
    background-color: #0a7e8b;
    border-radius: 15px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    box-sizing: border-box;
}

.bundle-button {
    background-image: url('../images/arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
}

.bundle-button:hover {
    background-color: #096b76;
}

@media (max-width: 1200px) {
    .bundles-section {
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .bundles-section {
        width: calc(100vw - 40px);
        margin: 20px auto;
        gap: 12px;
    }
    
    .bundle-container {
        width: 300px;
        height: auto;
        min-height: 265px;
    }
    
    .bundle-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bundle-image {
        width: 100%;
        height: 180px;
    }
    
    .bundle-pricing {
        width: 100%;
    }
    
    .bundle-info h3 {
        font-size: 21px;
    }
}

.explore-section {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 20px;
    padding: 48px 40px;
    display: flex !important;
    align-items: end !important;
    gap: 80px;
    width: min(1596px, calc(100vw - 40px));
    height: 675px !important;
    overflow: hidden;
    margin: 40px auto;
    justify-content: center;
}

.explore-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

.explore-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 593px;
    max-width: 100%;
    flex-shrink: 0;
    margin-left: 64px;
    padding: 0 20px;
}

.explore-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: white;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.9);
    text-align: left;
}

.explore-text h1 {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 96px;
    margin: 0;
    line-height: 1;
    color: white !important;
}

.explore-text p {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}

.explore-button {
    background-color: #0a7e8b;
    border-radius: 40px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 224px;
}

.explore-button span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
}

.carousel-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-arrow:hover {
    background: white;
}

.explore-cards {
    position: relative;
    overflow: hidden;
    width: 760px;
    height: 672px;
}

.carousel-track {
    display: flex !important;
    gap: 40px;
    transition: transform 0.5s ease;
    width: calc(360px * 3 + 80px);
    height: 100%;
}

.explore-card {
    background-color: #f9f8f5 !important;
    border-radius: 20px;
    width: 360px !important;
    height: 672px !important;
    position: relative;
    overflow: hidden;
    flex-shrink: 0 !important;
}

.explore-card-image {
    position: absolute !important;
    top: 32px !important;
    left: 32px !important;
    width: calc(100% - 64px) !important;
    max-width: 296px !important;
    height: 447px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.explore-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

.explore-card-content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    width: calc(100% - 64px);
    max-width: 296px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: black;
    text-align: left;
}

.explore-card-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 32px;
    margin: 0;
}

.explore-card-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

.explore-card-gradient {
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 428px !important;
    height: 345px !important;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 100%) !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

.weekly-offers-section {
    width: min(1596px, calc(100vw - 40px));
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.weekly-offers-title {
    color: #000;
    font-family: Inter;
    font-size: 39px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    text-align: left;
}

.weekly-offers-subtitle {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    text-align: left;
}

.weekly-offers-container {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding-bottom: 15px;
}

.weekly-offer-card {
    background-color: #f9f8f5;
    border-radius: 20px;
    width: 523px;
    height: 609px;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.weekly-offer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 360px;
}

.weekly-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weekly-offer-content {
    position: absolute;
    top: 384px;
    left: 24px;
    right: 136px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: black;
    text-align: left;
}

.weekly-offer-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 32px;
    margin: 0;
}

.weekly-offer-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

.weekly-offer-button {
    position: absolute;
    top: 512px;
    left: 24px;
    background-color: #0a7e8b;
    border-radius: 15px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 64px;
    height: 64px;
    box-sizing: border-box;
}

.weekly-offer-button {
    background-image: url('../images/arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
}

.weekly-offer-button:hover {
    background-color: #096b76;
}

.weekly-offer-discount {
    position: absolute;
    top: 415px;
    right: 43px;
    width: 83px;
    height: 83px;
    background: white;
    border: 2px solid #0a7e8b;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px rgba(10, 126, 139, 0.3);
}

.weekly-offer-discount .percentage {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 34px;
    color: #0a3954;
    line-height: 0.8;
    text-align: center;
    margin: 0;
    transform: translateY(5px);
}

.weekly-offer-discount .off-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #0a3954;
    text-align: center;
    margin: 0;
    margin-top: 3px;
    transform: translateY(5px);
}

.weekly-offer-discount .percent-symbol {
    font-size: 16px;
}

@media (max-width: 768px) {
    .weekly-offers-section {
        width: calc(100vw - 40px);
        margin: 35px auto 20px auto;
        gap: 12px;
    }
    
    .weekly-offer-card {
        width: 300px;
        min-width: 300px;
    }
    
    .weekly-offer-content {
        right: 105px;
    }
    
    .weekly-offer-content h3 {
        font-size: 28px;
    }
    
    .weekly-offer-discount {
        width: 70px;
        height: 70px;
        right: 25px;
    }
    
    .weekly-offer-discount .percentage {
        font-size: 24px;
    }
    
    .weekly-offer-discount .off-text {
        font-size: 11px;
    }
}

.travel-tips-section {
    width: min(1596px, calc(100vw - 40px));
    margin: 40px auto;
}

.tips-card {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    margin: 0 auto;
}

.background-image {
    width: 66.67%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.content-panel {
    background-color: #f9f8f5;
    width: 33.33%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    border-radius: 0 20px 20px 0;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text-content h2 {
    color: #000;
    font-family: Inter;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    margin: 0;
}

.text-content p {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    margin: 0;
}

.action-button {
    background-color: #0a7e8b;
    color: white;
    border: none;
    border-radius: 40px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.action-button:hover {
    background-color: #096b76;
}

@media (max-width: 1024px) {
    .tips-card {
        max-width: 100%;
        height: 300px;
    }
    
    .text-content h2 {
        font-size: 24px;
    }
    
    .content-panel {
        padding: 16px;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .travel-tips-section {
        width: calc(100vw - 40px);
        margin: 20px auto;
    }
    
    .tips-card {
        height: auto;
        flex-direction: column;
        max-width: 100%;
    }
    
    .background-image {
        width: 100%;
        height: 200px;
        border-radius: 20px 20px 0 0;
    }
    
    .content-panel {
        width: 100%;
        padding: 20px;
        border-radius: 0 0 20px 20px;
    }
    
    .text-content h2 {
        font-size: 20px;
    }
    
    .action-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}

.footer {
    background-color: #0a3954;
    padding: 60px 0;
    margin-top: 40px;
}

.footer-content {
    width: min(1596px, calc(100vw - 40px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 256px;
}

.footer-logo {
    height: 46px;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: white;
}

.logo-eaze {
    color: rgb(192, 215, 234);
}

.footer-disclaimer {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 29px;
    color: #f9f8f5;
    margin: 0;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(249, 248, 245, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.social-icon:hover {
    background-color: rgba(249, 248, 245, 0.2);
}

.footer-links {
    display: flex;
    gap: 68px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 162px;
}

.footer-column h3 {
    color: #F9F8F5;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 35.2px;
    margin: 0 0 10px 0;
    text-align: left;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-column li {
    margin: 0;
    padding: 6px 0;
}

.footer-column a {
    color: #F9F8F5;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-decoration: none;
    transition: opacity 0.3s;
    display: block;
    text-align: left;
}

.footer-column a:hover {
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
        width: auto;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }
    
    .footer-content {
        width: calc(100vw - 40px);
        gap: 30px;
    }
    
    .footer-left {
        gap: 30px;
    }
    
    .footer-disclaimer {
        font-size: 18px;
        line-height: 24px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .footer-column {
        width: auto;
        min-width: 140px;
    }
}

/* Sign In Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 80px;
    right: 80px;
    width: 335px;
    background-color: #f9f8f5;
    border-radius: 20px;
    box-shadow: 2px 2px 24px rgba(0, 0, 0, 0.25);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-info h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: black;
    margin: 0;
    cursor: pointer;
    transition: color 0.2s;
}

.user-info h3:hover {
    color: #0a7e8b;
}

.user-info p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #3c6175;
    margin: 4px 0 8px 0;
}

.modal-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.sign-out-btn {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sign-out-btn:hover {
    background: #c82333;
}

.logout-btn {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    position: absolute;
    right: 0;
}

.modal-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px 8px 8px;
    border-top: 1px solid #cfe4e8;
    cursor: pointer;
}

.menu-item span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: black;
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 4px;
}

.alert-badge {
    background-color: #ff6b6b;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 6px;
    padding: 2px 4px;
    border-radius: 999px;
    min-width: 12px;
    text-align: center;
}

.arrow {
    color: #666;
    font-size: 16px;
}

.current-trip {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 24px rgba(76, 56, 46, 0.08);
    padding: 0 16px 0 0;
    height: 80px;
}

.trip-image {
    width: 80px;
    height: 80px;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-info {
    flex: 1;
}

.trip-info h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: black;
    margin: 0 0 8px 0;
}

.trip-info p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 8px;
    color: #3c6175;
    margin: 0;
}

.trip-arrow {
    width: 40px;
    height: 40px;
    background-color: #0a7e8b;
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Laptop/Small Desktop - 1024px to 1366px */
@media (max-width: 1366px) {
    .navigation-bar {
        padding: 15px 40px;
    }
    
    .header-content h1 {
        font-size: 64px;
    }
    
    .search-container {
        width: calc(100vw - 80px);
    }
    
    .explore-section {
        padding: 40px 0;
        gap: 80px;
    }
    
    .explore-content {
        margin-left: 40px;
    }
    
    .explore-text h1 {
        font-size: 80px;
    }
    
    .explore-cards {
        width: 680px;
    }
}



/* Mobile - up to 768px */
@media (max-width: 768px) {
    .navigation-bar {
        padding: 15px 20px 15px 20px;
        align-items: center;
    }
    
    .nav-signin-btn {
        width: 112px;
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .nav-logo {
        height: 65px;
        width: 170px;
    }
    
    .header-section {
        height: auto;
        margin-top: 0;
        padding-bottom: 0;
        padding-top: 280px;
    }
    
    .header-image {
        height: 280px;
        top: 0;
    }
    
    .header-content {
        top: 70px;
        width: calc(100vw - 40px);
    }
    
    .header-section .header-content h1 {
        font-size: 40px;
        margin-bottom: 8px;
    }
    
    .header-content p {
        font-size: 14px;
    }
    
    .search-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: calc(100vw - 40px);
        margin: -30px auto 0 auto;
        padding: 20px;
        height: auto;
    }
    
    .search-input {
        padding: 12px 16px;
    }
    
    .input-group input {
        font-size: 16px;
        margin-left: -10px;
    }
    
    .arrow-icon {
        display: none;
    }
    
    .category-buttons {
        flex-direction: row;
        gap: 4px;
        align-items: center;
    }
    
    .category-btn {
        flex: 1;
        padding: 12px 4px;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 14px;
    }
    
    .alert-banner {
        margin: 10px auto 0px auto;
        padding: 15px 10px;
        border-radius: 40px;
    }
    
    .alert-banner-text {
        font-size: 12px;
    }
    
    .alert-banner-text::before {
        content: "This is an alert bar for site wide alerts.";
    }
    
    .alert-banner-text {
        font-size: 0;
    }
    
    .alert-banner-text::before {
        font-size: 12px;
    }
    
    .recent-searches-section {
        width: calc(100vw - 40px);
        margin: 0px auto 20px auto;
        gap: 15px;
    }
    
    .bundles-section {
        width: calc(100vw - 40px);
        margin: 45px auto 0px auto;
        gap: 15px;
        padding: 0 20px 5px 20px;
        box-sizing: border-box;
    }
    
    .weekly-offers-section {
        width: calc(100vw - 40px);
        margin: 35px auto 20px auto;
        gap: 15px;
        padding: 0 20px 5px 20px;
        box-sizing: border-box;
    }
    
    .travel-tips-section {
        width: calc(100vw - 40px);
        margin: 20px auto;
        gap: 15px;
        padding: 0 20px 5px 20px;
        box-sizing: border-box;
    }
    
    .recent-searches-title,
    .bundles-title,
    .weekly-offers-title {
        font-size: 28px;
    }
    
    .bundles-subtitle,
    .weekly-offers-subtitle {
        font-size: 14px;
    }
    
    .recent-search-card {
        width: 280px;
        min-width: 280px;
        padding: 15px;
        overflow: hidden;
    }
    
    .recent-search-content {
        width: 200px;
    }
    
    .recent-search-content h3 {
        font-size: 20px;
        width: 180px;
    }
    
    .recent-search-button {
        margin-left: -30px;
        flex-shrink: 0;
        width: 51px;
        height: 51px;
    }
    
    .bundles-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .bundle-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 240px;
        padding: 12px;
        margin: 0;
        box-sizing: border-box;
    }
    
    .bundle-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .bundle-image {
        width: 100%;
        height: 140px;
    }
    
    .bundle-pricing {
        width: 100%;
        font-size: 12px;
    }
    
    .bundle-info h3 {
        font-size: 18px;
    }
    
    .bundle-info p {
        font-size: 11px;
    }
    
    .explore-section {
        flex-direction: column !important;
        padding: 24px 20px 20px 20px;
        gap: 24px;
        height: auto !important;
        min-height: auto;
        width: calc(100vw - 32px);
        border-radius: 16px;
    }
    
    .explore-content {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
    
    .explore-text {
        text-align: center;
    }
    
    .explore-text h1 {
        font-size: 42px;
    }
    
    .explore-text p {
        font-size: 14px;
    }
    
    .explore-button {
        width: 180px;
        padding: 12px 24px;
        margin: 0 auto;
    }
    
    .carousel-container {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .explore-cards {
        width: 100%;
        height: 380px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .carousel-track {
        width: calc(260px * 9 + 40px * 8);
        gap: 16px;
    }
    
    .explore-card {
        width: 260px !important;
        height: 370px !important;
    }
    
    .explore-card-image {
        top: 20px !important;
        left: 20px !important;
        width: calc(100% - 40px) !important;
        height: 220px !important;
    }
    
    .explore-card-content {
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
    }
    
    .explore-card-content h3 {
        font-size: 20px;
    }
    
    .explore-card-content p {
        font-size: 12px;
    }
    
    .explore-card-gradient {
        width: 100% !important;
        height: 200px !important;
    }
    
    .weekly-offers-section {
        margin-top: 45px;
    }
    
    .weekly-offers-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .weekly-offer-card {
        width: calc(100vw - 80px);
        max-width: 400px;
        min-width: 260px;
        height: auto;
        min-height: 460px;
    }
    
    .weekly-offer-image {
        position: relative;
        height: 240px;
    }
    
    .weekly-offer-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        padding: 20px;
    }
    
    .weekly-offer-content h3 {
        font-size: 22px;
    }
    
    .weekly-offer-content p {
        font-size: 14px;
    }
    
    .weekly-offer-button {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 20px 20px;
        width: 52px;
        height: 52px;
    }
    
    .weekly-offer-discount {
        width: 60px;
        height: 60px;
        right: 16px;
        top: 16px;
    }
    
    .weekly-offer-discount .percentage {
        font-size: 20px;
    }
    
    .weekly-offer-discount .off-text {
        font-size: 10px;
    }
    
    .tips-card {
        flex-direction: column;
        height: auto;
    }
    
    .background-image {
        width: 100%;
        height: 200px;
        border-radius: 20px 20px 0 0;
    }
    
    .content-panel {
        width: 100%;
        border-radius: 0 0 20px 20px;
        padding: 15px;
        text-align: center;
        box-sizing: border-box;
    }
    
    .text-content {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .text-content h2 {
        font-size: 20px;
        text-align: center;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .text-content p {
        font-size: 11px;
        text-align: center;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .action-button {
        padding: 8px 12px;
        font-size: 10px;
        max-width: 90%;
        margin: 0 auto;
        display: block;
        box-sizing: border-box;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    
    .footer-disclaimer {
        font-size: 16px;
        line-height: 22px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    
    .footer-column {
        width: auto;
        min-width: 120px;
        text-align: center;
    }
    
    .footer-column h3 {
        font-size: 18px;
        text-align: center;
    }
    
    .footer-column a {
        font-size: 16px;
        text-align: center;
    }
    
    .modal-content {
        top: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .profile-image {
        width: 50px;
        height: 50px;
    }
    
    .user-info h3 {
        font-size: 16px;
    }
    
    .user-info p {
        font-size: 10px;
    }
    
    .menu-item {
        padding: 10px 6px 6px 6px;
    }
    
    .menu-item span {
        font-size: 14px;
    }
    
    .current-trip {
        height: 70px;
        padding: 0 12px 0 0;
    }
    
    .trip-image {
        width: 70px;
        height: 70px;
    }
    
    .trip-info h4 {
        font-size: 14px;
    }
    
    .trip-info p {
        font-size: 7px;
    }
    
    .trip-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Current Trip Page Styles */
.current-trip-section {
    width: min(1596px, calc(100vw - 40px));
    margin: 40px auto;
    padding: 40px 0;
}

.current-trip-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 40px 0;
}

.trip-details-card {   background: #f9f8f5;  border-radius: 20px;    padding: 40px;   box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.25);  max-width: 900px;   margin: 0 auto;}

.trip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #cfe4e8;
}

.trip-destination h2 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
}

.trip-destination p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.status-badge {
    background: #0a7e8b;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.trip-content {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.trip-image-large {
    width: 400px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.trip-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 12px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    gap: 16px;
}

.detail-item .label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
}

.detail-item .label::after {
    content: ' ';
}

.detail-item .value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: right;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.trip-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.action-btn {
    padding: 12px 24px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.action-btn.primary {
    background: #0a7e8b;
    color: white;
}

.action-btn.secondary {
    background: #cfe4e8;
    color: #131517;
}

.action-btn:hover {
    opacity: 0.9;
}

/* Responsive Design for Current Trip Page */
@media (max-width: 1024px) {
    .current-trip-section {
        width: calc(100vw - 40px);
        margin: 20px auto;
        padding: 20px 0;
    }
    
    .current-trip-title {
        font-size: 36px;
    }
    
    .trip-details-card {    background: #f9f8f5;  border-radius: 20px;  padding: 40px;    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.25); max-width: 900px;    margin: 0 auto;}
    
    .trip-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .trip-image-large {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .current-trip-title {
        font-size: 28px;
    }
    
    .trip-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .trip-destination h2 {
        font-size: 28px;
    }
    
    .trip-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
}

/* Bundle Detail Page Styles */
.bundle-detail-section {
    width: min(1596px, calc(100vw - 40px));
    margin: 40px auto;
    padding: 40px 0;
}

.bundle-detail-card {
    background: #f9f8f5;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.25);
}

.bundle-detail-header {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #cfe4e8;
}

.bundle-detail-image {
    width: 400px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.bundle-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundle-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bundle-detail-info h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.bundle-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.bundle-pricing-detail {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.price-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

/* Flight Search Page Styles */
.flights-section {
    width: min(1596px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 20px 0;
}

.flight-search-bar {
    display: flex;
    align-items: end;
    gap: 16px;
    background: #f9f8f5;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 120px;
}

.search-field label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.search-field input,
.search-field select {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: white;
}

.search-field .autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 4px;
}

.search-field .autocomplete-item {
    padding: 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.search-field .autocomplete-item:hover {
    background-color: #f8f9fa;
}

.search-field .autocomplete-item:last-child {
    border-bottom: none;
}

.search-arrow {
    font-size: 20px;
    color: #666;
    margin: 0 8px;
    align-self: center;
}

.search-btn {
    background: #0a7e8b;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.flight-content {
    display: flex;
    gap: 24px;
}

.flight-filters {
    width: 20%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0;
    height: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flight-filters h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 20px 20px 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.filter-group {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group label {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 6px 0;
    transition: color 0.2s;
}

.filter-group label:hover {
    color: #0a7e8b;
}

.filter-group input[type="radio"] {
    margin-right: 10px;
    accent-color: #0a7e8b;
}

.flight-results {
    width: 78%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flight-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 29px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.flight-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #0a7e8b;
}

.flight-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.airline-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.airline {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0a3954;
    margin-bottom: 4px;
}

.flight-number {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0a7e8b;
    font-weight: 500;
}

.flight-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.price {
    font-family: 'Inter', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #0a7e8b;
    display: block;
    line-height: 1;
}

.per-person {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
}

.flight-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 29px;
    background: #fafafa;
    border-radius: 8px;
    margin: 10px 0;
}

.departure,
.arrival {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.time {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0a3954;
    margin-bottom: 4px;
}

.airport {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #0a7e8b;
    font-weight: 500;
}

.flight-duration {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.duration {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0a3954;
    font-weight: 500;
    margin-bottom: 8px;
}

.flight-line {
    width: 100%;
    height: 3px;
    background: #cfe4e8;
    position: relative;
    border-radius: 2px;
}

.flight-line::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid #cfe4e8;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.flight-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 19px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 10px;
}

.stops,
.class {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #0a3954;
    font-weight: 500;
    padding: 6px 12px;
    background: #cfe4e8;
    border-radius: 20px;
    margin-right: 8px;
}

.select-btn {
    background: #0a7e8b;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-btn:hover {
    background: #096b76;
}

.price-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0a7e8b;
}

.bundle-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.included-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    padding: 4px 0;
}

.bundle-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Responsive Design for Bundle Detail Pages */
@media (max-width: 1024px) {
    .bundle-detail-section {
        width: calc(100vw - 40px);
        margin: 20px auto;
        padding: 20px 0;
    }
    
    .bundle-detail-card {
        padding: 24px;
    }
    
    .bundle-detail-header {
        flex-direction: column;
        gap: 24px;
    }
    
    .bundle-detail-image {
        width: 100%;
        height: 250px;
    }
    
    .bundle-detail-info h1 {
        font-size: 36px;
    }
    
    .bundle-detail-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .bundle-detail-info h1 {
        font-size: 28px;
    }
    
    .bundle-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
}

/* Flights Page Styles */
.flights-section {
    width: min(1596px, calc(100vw - 40px));
    margin: 40px auto;
    padding: 40px 0;
}

.flights-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 8px 0;
}

.flights-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin: 0 0 40px 0;
}

.flights-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.flight-card {
    background: #f9f8f5;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.flight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 200px;
}

.airline-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 0 4px 0;
}

.airline-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.flight-price {
    text-align: right;
}

.flight-price .price {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0a7e8b;
    display: block;
}

.flight-price .per-person {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.flight-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flight-route {
    display: flex;
    align-items: center;
    gap: 20px;
}

.departure, .arrival {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.departure .time, .arrival .time {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.departure .airport, .arrival .airport {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.flight-duration {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.flight-duration .duration {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.flight-line {
    width: 100%;
    height: 2px;
    background: #cfe4e8;
    position: relative;
}

.flight-line::after {
    content: '✈';
    position: absolute;
    right: -8px;
    top: -8px;
    color: #0a7e8b;
    font-size: 16px;
}

.flight-info {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.flight-info span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.flight-select-btn {
    background: #0a7e8b;
    color: white;
    border: none;
    border-radius: 40px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.flight-select-btn:hover {
    background: #096b76;
}

.flight-filters {
    background: #f9f8f5;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.25);
}

.flight-filters h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 16px 0;
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.filter-group select {
    padding: 8px 12px;
    border: 1px solid #cfe4e8;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: white;
}

/* Responsive Design for Flights Page */
@media (max-width: 1024px) {
    .flights-section {
        width: calc(100vw - 40px);
        margin: 20px auto;
        padding: 20px 0;
    }
    
    .flights-title {
        font-size: 36px;
    }
    
    .flight-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .flight-header {
        width: 100%;
        min-width: auto;
    }
    
    .flight-details {
        width: 100%;
    }
    
    .flight-select-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .flights-title {
        font-size: 28px;
    }
    
    .flight-route {
        flex-direction: column;
        gap: 12px;
    }
    
    .flight-duration {
        order: -1;
    }
    
    .flight-line {
        width: 2px;
        height: 40px;
    }
    
    .flight-line::after {
        right: -8px;
        top: 20px;
        transform: rotate(90deg);
    }
    
    .filter-options {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile - up to 480px */
@media (max-width: 480px) {
    .header-section {
        padding-top: 240px;
    }

    .header-image {
        height: 240px;
    }

    .header-content {
        top: 50px;
    }

    .header-section .header-content h1 {
        font-size: 32px;
    }

    .search-container {
        width: calc(100vw - 32px);
        padding: 16px;
    }

    .category-btn {
        min-width: 80px;
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .explore-text h1 {
        font-size: 32px;
    }
    
    .text-content h2 {
        font-size: 24px;
    }
    
    .recent-search-card {
        width: 240px;
        min-width: 240px;
    }

    .bundle-container {
        width: 100%;
        min-width: auto;
    }

    .weekly-offer-card {
        width: calc(100vw - 64px);
        min-width: 240px;
    }
    
    .explore-card {
        width: 240px !important;
    }
    
    .carousel-track {
        width: calc(240px * 9 + 16px * 8);
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .modal-content {
        max-width: 280px;
    }
}

/* Notification Banner Styles */
.notification-banner {
    background-color: #0a7e8b;
    color: white;
    padding: 12px 20px;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1596px;
    margin: 0 auto;
}

.notification-content p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.notification-content a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.notification-content a:hover {
    color: #cfe4e8;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
}

.notification-close:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .notification-banner {
        padding: 10px 15px;
    }
    
    .notification-content p {
        font-size: 12px;
        padding-right: 30px;
    }
    
    .notification-close {
        right: 10px;
        font-size: 20px;
    }
}

.carousel-arrows-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* Checkout Input Styling */
.checkout-input {
    width: auto;
    min-width: 200px;
    padding: 8px 12px;
    border: 1px solid #cfe4e8;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    background: white;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-input:focus {
    outline: none;
    border-color: #0a7e8b;
    box-shadow: 0 0 0 3px rgba(10, 126, 139, 0.1);
}

.checkout-input::placeholder {
    color: #999;
    font-weight: 400;
}

.detail-item .value {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.detail-section {
    margin-bottom: 24px;
}

.detail-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #cfe4e8;
}



/* Welcome Text Styling */
.nav-welcome-text { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 400; color: #000; }

.nav-welcome-text strong {
    color: #0a7e8b;
    font-weight: 600;
}



/* Welcome Container Styling */
.nav-welcome-container {
    display: flex;
    align-items: center;
    gap: 12px;
}



/* Checkout Grid Layout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


.checkout-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Flights Page Styles (Redesigned) ===== */

/* Hero */
.fl-hero {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.fl-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a3954 0%, #0a7e8b 70%, #3db8c1 100%);
}

.fl-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1596px, calc(100vw - 80px));
    margin: 0 auto;
    padding-top: 48px;
}

.fl-hero-inner h1 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin: 0 0 6px 0;
    text-align: left;
}

.fl-hero-inner p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(207, 228, 232, 0.9);
    margin: 0;
    text-align: left;
}

/* Search Bar */
.fl-search-wrapper {
    width: min(1596px, calc(100vw - 80px));
    margin: 24px auto 0 auto;
    position: relative;
    z-index: 10;
}

.fl-search-bar {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    background: #f9f8f5;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.fl-search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    min-width: 0;
}

.fl-search-field-loc {
    flex: 1.5;
}

.fl-search-field label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #0a7e8b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.fl-search-field input,
.fl-search-field select {
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: white;
    color: #222;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.fl-search-field input:focus,
.fl-search-field select:focus {
    outline: none;
    border-color: #0a7e8b;
    box-shadow: 0 0 0 3px rgba(10, 126, 139, 0.12);
}

.fl-search-field input::placeholder {
    color: #999;
}

.fl-swap-btn {
    background: #cfe4e8;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 18px;
    color: #0a3954;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 2px;
    transition: background 0.2s;
}

.fl-swap-btn:hover {
    background: #0a7e8b;
    color: white;
}

.fl-search-btn {
    background: #0a7e8b;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
}

.fl-search-btn:hover {
    background: #096b76;
}

/* Content Grid */
.fl-content-area {
    width: min(1596px, calc(100vw - 80px));
    margin: 32px auto 40px auto;
}

.fl-content-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
}

/* Filters */
.fl-filters {
    background: #f9f8f5;
    border-radius: 16px;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: sticky;
    top: 24px;
}

.fl-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #0a3954;
}

.fl-filters-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.fl-filters-reset {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.fl-filters-reset:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.fl-filter-group {
    padding: 18px 20px;
    border-bottom: 1px solid #e8e8e8;
}

.fl-filter-group:last-child {
    border-bottom: none;
}

.fl-filter-group h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0a3954;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
    text-align: left;
}

.fl-filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #444;
    transition: color 0.2s;
}

.fl-filter-label:hover {
    color: #0a7e8b;
}

.fl-filter-label input[type="radio"] {
    accent-color: #0a7e8b;
    width: 16px;
    height: 16px;
    margin: 0;
    flex-shrink: 0;
}

/* Results Area */
.fl-results {
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: opacity 0.3s ease;
}

.fl-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.fl-results-count {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0a3954;
}

.fl-results-sort {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

/* Flight Cards */
.fl-card {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.fl-card:hover {
    border-color: #0a7e8b;
    box-shadow: 0 4px 18px rgba(10, 126, 139, 0.15);
    transform: translateY(-2px);
}

.fl-card-main {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fl-card-airline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fl-airline-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0a3954;
}

.fl-flight-num {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #0a7e8b;
    background: #cfe4e8;
    padding: 2px 10px;
    border-radius: 20px;
}

.fl-card-route {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fl-time-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 70px;
}

.fl-time-block-end {
    align-items: flex-end;
}

.fl-time {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a3954;
}

.fl-airport {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0a7e8b;
}

.fl-route-line {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.fl-duration {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.fl-line-track {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0;
}

.fl-line-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.fl-line-dot-start {
    background: #0a7e8b;
}

.fl-line-dot-end {
    background: #0a3954;
}

.fl-line-stop-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #e8a317;
    background: white;
    flex-shrink: 0;
    box-sizing: border-box;
}

.fl-line-bar {
    flex: 1;
    height: 2px;
    background: #cfe4e8;
}

.fl-stops-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

/* Class Columns */
.fl-card-class {
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    border-left: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.fl-card-class:hover {
    background: #eef7f8;
}

.fl-card-class-premium {
    background: #fafaf7;
}

.fl-card-class-premium:hover {
    background: #eef7f8;
}

.fl-class-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0a3954;
    margin-bottom: 2px;
}

.fl-class-price {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0a7e8b;
}

.fl-seats-left {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #d32f2f;
}

/* Flights Page Responsive */
@media (max-width: 1200px) {
    .fl-content-grid {
        grid-template-columns: 240px 1fr;
    }

    .fl-card {
        grid-template-columns: 1fr 160px 160px;
    }
}

@media (max-width: 1024px) {
    .fl-search-wrapper {
        width: calc(100vw - 40px);
    }

    .fl-content-area {
        width: calc(100vw - 40px);
    }

    .fl-content-grid {
        grid-template-columns: 1fr;
    }

    .fl-filters {
        position: static;
    }

    .fl-hero-inner {
        width: calc(100vw - 40px);
        padding-top: 36px;
    }

    .fl-hero-inner h1 {
        font-size: 32px;
    }

    .fl-search-bar {
        flex-wrap: wrap;
    }

    .fl-search-field {
        min-width: 140px;
    }

    .fl-search-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .fl-hero {
        height: 140px;
    }

    .fl-hero-inner {
        padding-top: 28px;
    }

    .fl-hero-inner h1 {
        font-size: 26px;
    }

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

    .fl-search-bar {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .fl-swap-btn {
        align-self: center;
    }

    .fl-search-field {
        width: 100%;
    }

    .fl-card {
        grid-template-columns: 1fr;
    }

    .fl-card-class {
        border-left: none;
        border-top: 1px solid #f0f0f0;
        flex-direction: row;
        justify-content: space-between;
        padding: 14px 20px;
    }

    .fl-class-price {
        font-size: 22px;
    }

    .fl-card-route {
        flex-direction: column;
        gap: 8px;
    }

    .fl-time-block,
    .fl-time-block-end {
        align-items: center;
    }

    .fl-route-line {
        width: 100%;
    }
}

/* ===== Profile Page Styles ===== */
.profile-page {
    width: 100%;
}

/* Profile Hero Banner */
.profile-hero {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: visible;
    margin-bottom: 40px;
}

.profile-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a3954 0%, #0a7e8b 60%, #3db8c1 100%);
}

.profile-hero-inner {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1596px, calc(100vw - 80px));
    display: flex;
    align-items: flex-end;
    gap: 28px;
    z-index: 2;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: #0a7e8b;
    border-radius: 50%;
    border: 5px solid #f9f8f5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.profile-initial-fallback {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    position: absolute;
    z-index: 0;
}

.profile-hero-info {
    padding-bottom: 8px;
}

.profile-hero-info h1 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.profile-hero-info p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 4px 0 0 0;
    text-align: left;
}

/* Profile Content */
.profile-content {
    width: min(1596px, calc(100vw - 80px));
    margin: 0 auto 40px auto;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.profile-left-col,
.profile-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Profile Cards */
.profile-card {
    background: #f9f8f5;
    border-radius: 16px;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 2px solid #cfe4e8;
}

.profile-card-icon {
    font-size: 20px;
    width: 38px;
    height: 38px;
    background: #cfe4e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-card-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0a3954;
    margin: 0;
    text-align: left;
}

.profile-card-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Profile Fields */
.profile-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-field-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #0a7e8b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.profile-field-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    padding: 10px 14px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    text-align: left;
}

.profile-field-row {
    display: flex;
    gap: 16px;
}

.profile-field-half {
    flex: 1;
}

/* Rewards Card */
.profile-rewards-tier {
    display: flex;
    justify-content: center;
}

.profile-tier-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c9963b 0%, #e8c667 50%, #c9963b 100%);
    color: #3d2a00;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-rewards-points {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.profile-points-value {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #0a3954;
}

.profile-points-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.profile-rewards-bar-track {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.profile-rewards-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #0a7e8b, #3db8c1);
    border-radius: 4px;
    transition: width 1s ease;
}

.profile-rewards-next {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #999;
    text-align: center;
    margin: 0;
}

.profile-rewards-perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid #e8e8e8;
}

.profile-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444;
    text-align: left;
}

.profile-perk-check {
    color: #0a7e8b;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Travel Stats */
.profile-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.profile-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
}

.profile-stat-item:nth-child(2n) {
    border-right: none;
}

.profile-stat-item:nth-child(n+3) {
    border-bottom: none;
}

.profile-stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0a7e8b;
}

.profile-stat-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin-top: 4px;
}

/* Profile Page Responsive */
@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-content {
        width: calc(100vw - 40px);
    }

    .profile-hero-inner {
        width: calc(100vw - 40px);
    }
}

@media (max-width: 768px) {
    .profile-hero {
        height: 180px;
        margin-bottom: 30px;
    }

    .profile-hero-inner {
        bottom: 20px;
        gap: 16px;
        width: calc(100vw - 40px);
    }

    .profile-avatar {
        width: 90px;
        height: 90px;
    }

    .profile-avatar span {
        font-size: 36px;
    }

    .profile-hero-info h1 {
        font-size: 24px;
    }

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

    .profile-card-header {
        padding: 16px 18px;
    }

    .profile-card-body {
        padding: 16px 18px;
    }

    .profile-field-row {
        flex-direction: column;
        gap: 16px;
    }

    .profile-stat-number {
        font-size: 26px;
    }

    .profile-points-value {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .profile-hero {
        height: 150px;
        margin-bottom: 24px;
    }

    .profile-avatar {
        width: 76px;
        height: 76px;
    }

    .profile-avatar span {
        font-size: 30px;
    }

    .profile-hero-info h1 {
        font-size: 20px;
    }
}

/* ===== Bundle Detail Page Styles (Redesigned) ===== */
.bundle-page {
    width: 100%;
}

/* Bundle Hero */
.bundle-hero {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.bundle-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bundle-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05);
}

.bundle-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 57, 84, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.05) 100%);
}

.bundle-hero-content {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1596px, calc(100vw - 80px));
    text-align: center;
    color: white;
    z-index: 2;
}

.bundle-hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
    line-height: 1.1;
}

.bundle-hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
    max-width: 620px;
}

.bundle-hero-tag {
    display: inline-block;
    background: #0a7e8b;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Bar */
.bundle-stats-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    width: min(1596px, calc(100vw - 80px));
    margin: 0 auto;
    background: #0a3954;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.bundle-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.bundle-stat:last-child {
    border-right: none;
}

.bundle-stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.bundle-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(207, 228, 232, 0.8);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Area */
.bundle-content-area {
    width: min(1596px, calc(100vw - 80px));
    margin: 40px auto 0 auto;
}

.bundle-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.bundle-main-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bundle-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin: 0 0 24px 0;
    text-align: left;
}

/* Itinerary Timeline */
.bundle-itinerary {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.itinerary-stop {
    display: flex;
    gap: 20px;
}

.itinerary-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
    flex-shrink: 0;
    padding-top: 4px;
}

.itinerary-dot {
    width: 14px;
    height: 14px;
    background: #0a7e8b;
    border-radius: 50%;
    border: 3px solid #cfe4e8;
    flex-shrink: 0;
    box-sizing: border-box;
}

.itinerary-line {
    width: 2px;
    flex: 1;
    background: #cfe4e8;
    min-height: 20px;
}

.itinerary-line.last {
    background: transparent;
}

.itinerary-content {
    flex: 1;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.itinerary-day {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0a7e8b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.itinerary-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #0a3954;
    margin: 0;
    text-align: left;
}

.itinerary-hotel {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0a7e8b;
    font-style: italic;
    margin: 0;
    text-align: left;
}

.itinerary-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #444;
    margin: 4px 0 0 0;
    line-height: 1.65;
    text-align: left;
}

.itinerary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.itinerary-tag {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #0a3954;
    background: #cfe4e8;
    padding: 5px 12px;
    border-radius: 20px;
}

/* What's Included Grid */
.bundle-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bundle-included-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #f9f8f5;
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #e8e8e8;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.bundle-included-card:hover {
    border-color: #cfe4e8;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.08);
}

.bundle-included-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cfe4e8;
    border-radius: 10px;
}

.bundle-included-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0a3954;
    margin: 0;
    text-align: left;
}

.bundle-included-text p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin: 4px 0 0 0;
    line-height: 1.4;
    text-align: left;
}

/* Sidebar */
.bundle-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 24px;
}

.bundle-pricing-card {
    background: #f9f8f5;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bundle-pricing-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 4px 0;
    text-align: left;
}

.bundle-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #444;
    padding: 8px 0;
    border-bottom: 1px solid #e8e8e8;
}

.bundle-price-free span:last-child {
    color: #0a7e8b;
    font-weight: 600;
}

.bundle-price-total {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    border-bottom: none;
    padding-top: 12px;
    border-top: 2px solid #0a3954;
}

.bundle-price-total span:last-child {
    color: #0a7e8b;
    font-size: 24px;
}

.bundle-price-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #999;
    text-align: center;
    margin: 0;
}

.bundle-cta-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
}

/* Quick Facts */
.bundle-quick-facts {
    background: #f9f8f5;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bundle-quick-facts h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-align: left;
}

.bundle-fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e8e8e8;
}

.bundle-fact-row:last-child {
    border-bottom: none;
}

.bundle-fact-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.bundle-fact-value {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0a3954;
}

/* Bundle Page Responsive */
@media (max-width: 1200px) {
    .bundle-content-grid {
        grid-template-columns: 1fr 340px;
        gap: 30px;
    }

    .bundle-hero-content h1 {
        font-size: 52px;
    }

    .bundle-stats-bar {
        width: calc(100vw - 80px);
    }
}

@media (max-width: 1024px) {
    .bundle-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bundle-sidebar {
        position: static;
    }

    .bundle-content-area {
        width: calc(100vw - 40px);
    }

    .bundle-hero-content {
        width: calc(100vw - 60px);
    }

    .bundle-hero-content h1 {
        font-size: 44px;
    }

    .bundle-stats-bar {
        width: calc(100vw - 40px);
    }

    .bundle-included-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .bundle-hero {
        height: 340px;
    }

    .bundle-hero-content {
        bottom: 32px;
        width: calc(100vw - 40px);
    }

    .bundle-hero-content h1 {
        font-size: 34px;
    }

    .bundle-hero-content p {
        font-size: 14px;
    }

    .bundle-hero-tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    .bundle-stats-bar {
        flex-wrap: wrap;
        border-radius: 0 0 12px 12px;
        width: calc(100vw - 40px);
    }

    .bundle-stat {
        flex: 1 1 45%;
        padding: 14px 12px;
    }

    .bundle-stat-value {
        font-size: 18px;
    }

    .bundle-content-area {
        width: calc(100vw - 40px);
        margin-top: 28px;
    }

    .bundle-section h2 {
        font-size: 24px;
    }

    .itinerary-content h3 {
        font-size: 20px;
    }

    .bundle-included-grid {
        grid-template-columns: 1fr;
    }

    .bundle-pricing-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .bundle-hero {
        height: 280px;
    }

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

    .bundle-stat {
        flex: 1 1 45%;
    }
}

/* ===== Hotel Offer Detail Page Styles ===== */
.hotel-offer-page {
    width: 100%;
}

.hotel-hero {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.hotel-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hotel-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1);
}

.hotel-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.05) 100%);
}

.hotel-hero-content {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1596px, calc(100vw - 80px));
    color: white;
    z-index: 2;
}

.hotel-hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.hotel-hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}

.hotel-hero-badge {
    display: inline-block;
    background: #0a7e8b;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-offer-details {
    width: min(1596px, calc(100vw - 80px));
    margin: 40px auto;
}

.hotel-offer-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.hotel-offer-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hotel-offer-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel-stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
}

.hotel-review-score {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a7e8b;
}

.hotel-review-count {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.hotel-offer-summary h2 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-align: left;
}

.hotel-address {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666;
    margin: 0;
    text-align: left;
}

.hotel-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin: 8px 0 0 0;
    line-height: 1.6;
    text-align: left;
}

.hotel-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hotel-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #cfe4e8;
    text-align: left;
}

/* Room Cards */
.hotel-rooms {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hotel-room-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f8f5;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s, border-color 0.2s;
    border: 1px solid transparent;
}

.hotel-room-card:hover {
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
    border-color: #cfe4e8;
}

.hotel-room-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0a3954;
    margin: 0 0 4px 0;
    text-align: left;
}

.hotel-room-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0;
    text-align: left;
}

.hotel-room-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.hotel-room-original {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
}

.hotel-room-price {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a7e8b;
}

/* Amenities */
.hotel-amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hotel-amenity {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    padding: 8px 0;
    text-align: left;
}

/* Reviews */
.hotel-reviews {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hotel-review-card {
    background: #f9f8f5;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hotel-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotel-review-header strong {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0a3954;
}

.hotel-review-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.hotel-review-stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 1px;
}

.hotel-review-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #444;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

/* Sidebar: Booking Card */
.hotel-offer-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 24px;
}

.hotel-booking-card {
    background: #f9f8f5;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hotel-booking-discount {
    background: #0a7e8b;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-booking-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-align: left;
}

.hotel-booking-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hotel-booking-field label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    text-align: left;
}

.hotel-booking-field .checkout-input {
    width: 100%;
    box-sizing: border-box;
}

.hotel-booking-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #cfe4e8;
}

.hotel-booking-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444;
}

.hotel-booking-savings {
    color: #0a7e8b;
    font-weight: 600;
}

.hotel-booking-total {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    padding-top: 8px;
    border-top: 2px solid #0a3954;
}

.hotel-book-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
}

.hotel-booking-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #999;
    text-align: center;
    margin: 0;
}

/* Sidebar: Highlights Card */
.hotel-highlights-card {
    background: #f9f8f5;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hotel-highlights-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-align: left;
}

.hotel-highlight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e8e8e8;
}

.hotel-highlight-item:last-child {
    border-bottom: none;
}

.hotel-highlight-label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #444;
}

.hotel-highlight-value {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0a7e8b;
}

/* Hotel Offer Page Responsive */
@media (max-width: 1200px) {
    .hotel-offer-grid {
        grid-template-columns: 1fr 340px;
        gap: 30px;
    }

    .hotel-hero-content h1 {
        font-size: 52px;
    }
}

@media (max-width: 1024px) {
    .hotel-offer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hotel-offer-sidebar {
        position: static;
    }

    .hotel-offer-details {
        width: calc(100vw - 40px);
    }

    .hotel-hero-content {
        width: calc(100vw - 60px);
    }

    .hotel-hero-content h1 {
        font-size: 44px;
    }

    .hotel-amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hotel-hero {
        height: 320px;
    }

    .hotel-hero-content {
        bottom: 32px;
        width: calc(100vw - 40px);
    }

    .hotel-hero-content h1 {
        font-size: 32px;
    }

    .hotel-hero-content p {
        font-size: 14px;
    }

    .hotel-hero-badge {
        font-size: 13px;
        padding: 6px 14px;
    }

    .hotel-offer-details {
        width: calc(100vw - 40px);
        margin: 24px auto;
    }

    .hotel-offer-summary h2 {
        font-size: 26px;
    }

    .hotel-section h3 {
        font-size: 20px;
    }

    .hotel-amenities-grid {
        grid-template-columns: 1fr;
    }

    .hotel-room-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hotel-room-pricing {
        align-items: flex-start;
    }

    .hotel-booking-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hotel-hero {
        height: 260px;
    }

    .hotel-hero-content h1 {
        font-size: 26px;
    }

    .hotel-offer-summary h2 {
        font-size: 22px;
    }
}


/* ===== Checkout Page Styles (Redesigned) ===== */

/* Progress bar */
.co-progress-bar {
    background: linear-gradient(135deg, #0a3954 0%, #0a7e8b 100%);
    padding: 24px 0;
}

.co-progress-inner {
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.5);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.co-step-active {
    color: #fff;
}

.co-step-done {
    color: rgba(255,255,255,.7);
}

.co-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s;
}

.co-step-active .co-step-dot {
    background: #fff;
    color: #0a7e8b;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,.25);
}

.co-step-done .co-step-dot {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.4);
    color: #fff;
}

.co-step-line {
    width: 80px;
    height: 2px;
    background: rgba(255,255,255,.2);
    margin: 0 12px;
    margin-bottom: 28px;
    border-radius: 2px;
}

.co-step-line-done {
    background: rgba(255,255,255,.5);
}

/* Page container */
.co-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.co-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Form cards */
.co-forms-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.co-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf0;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    transition: box-shadow .3s;
}

.co-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

.co-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 28px;
    background: #f9f8f5;
    border-bottom: 1px solid #e8ecf0;
}

.co-card-icon {
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.co-card-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a3954;
    margin: 0;
}

.co-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.co-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.co-field label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #5a6872;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.co-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #dce2e8;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #0a3954;
    background: #fff;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
}

.co-field input:focus {
    outline: none;
    border-color: #0a7e8b;
    box-shadow: 0 0 0 3px rgba(10,126,139,.1);
}

.co-field input::placeholder {
    color: #b0b8c1;
    font-weight: 400;
}

.co-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.co-field-row-three {
    grid-template-columns: 1fr 1fr 2fr;
}

/* Summary card (right column) */
.co-summary-col {
    position: sticky;
    top: 24px;
}

.co-summary-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf0;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.co-summary-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a3954;
    margin: 0 0 24px 0;
}

.co-summary-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #e8ecf0;
    border-bottom: 1px solid #e8ecf0;
    margin-bottom: 20px;
}

.co-summary-airport {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.co-summary-code {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0a3954;
}

.co-summary-time {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #5a6872;
}

.co-summary-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    padding: 0 16px;
    color: #0a7e8b;
}

.co-summary-duration {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #5a6872;
}

.co-summary-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #cfe4e8, #0a7e8b, #cfe4e8);
    border-radius: 2px;
}

.co-summary-arrow > span {
    font-size: 18px;
}

.co-summary-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.co-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.co-summary-row span:first-child {
    color: #5a6872;
}

.co-summary-row span:last-child {
    font-weight: 600;
    color: #0a3954;
}

.co-summary-price-section {
    border-top: 1px solid #e8ecf0;
    padding-top: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.co-summary-total {
    padding-top: 12px;
    border-top: 2px solid #0a3954;
}

.co-summary-total span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #0a3954;
}

.co-summary-total span:last-child {
    font-size: 22px;
    font-weight: 800;
    color: #0a7e8b;
}

.co-complete-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #0a7e8b, #0a3954);
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(10,126,139,.3);
}

.co-complete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(10,126,139,.4);
}

.co-back-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #5a6872;
    cursor: pointer;
    transition: color .2s;
    text-align: center;
}

.co-back-btn:hover {
    color: #0a7e8b;
}

.co-trust-badges {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #5a6872;
}

.co-trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
    .co-grid {
        grid-template-columns: 1fr;
    }

    .co-summary-col {
        position: static;
        order: -1;
    }
}

@media (max-width: 640px) {
    .co-page {
        padding: 24px 16px 40px;
    }

    .co-card-body {
        padding: 20px;
    }

    .co-field-row,
    .co-field-row-three {
        grid-template-columns: 1fr;
    }

    .co-summary-card {
        padding: 20px;
    }

    .co-progress-inner {
        padding: 0 16px;
    }

    .co-step span {
        font-size: 11px;
    }

    .co-step-line {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .co-step-dot {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .co-summary-code {
        font-size: 20px;
    }
}


/* ===== Booking Confirmation Page Styles ===== */

.bc-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* Success Banner */
.bc-success-banner {
    text-align: center;
    padding: 48px 24px 40px;
}

.bc-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a7e8b, #0a3954);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 32px rgba(10,126,139,.3);
    animation: bc-pop .5s ease;
}

@keyframes bc-pop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.bc-success-banner h1 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0a3954;
    margin: 0 0 8px 0;
}

.bc-success-banner p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #5a6872;
    margin: 0 0 28px 0;
}

.bc-conf-number {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0fafb, #e8f4f5);
    border: 2px solid #cfe4e8;
    border-radius: 14px;
    padding: 18px 40px;
}

.bc-conf-number span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #5a6872;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.bc-conf-number strong {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #0a7e8b;
    letter-spacing: 3px;
}

/* Grid */
.bc-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.bc-details-col,
.bc-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Cards */
.bc-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf0;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.bc-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 28px;
    background: #f9f8f5;
    border-bottom: 1px solid #e8ecf0;
}

.bc-card-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a3954;
    margin: 0;
}

.bc-card-body {
    padding: 28px;
}

/* Route Visual */
.bc-route-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid #e8ecf0;
}

.bc-route-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.bc-route-code {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0a3954;
}

.bc-route-time {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #5a6872;
}

.bc-route-path {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
}

.bc-route-duration {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #5a6872;
}

.bc-route-line-track {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0;
}

.bc-route-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0a7e8b;
    flex-shrink: 0;
}

.bc-route-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #cfe4e8, #0a7e8b);
}

.bc-route-plane {
    flex-shrink: 0;
    margin: 0 4px;
}

/* Detail Rows */
.bc-detail-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bc-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.bc-detail-row span:first-child {
    color: #5a6872;
}

.bc-detail-row span:last-child {
    font-weight: 600;
    color: #0a3954;
}

.bc-detail-row-total {
    padding-top: 14px;
    margin-top: 4px;
    border-top: 2px solid #0a3954;
}

.bc-detail-row-total span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #0a3954;
}

.bc-detail-row-total span:last-child {
    font-size: 20px;
    font-weight: 800;
    color: #0a7e8b;
}

/* Next Steps */
.bc-next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bc-next-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.bc-step-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: #f0fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfe4e8;
}

.bc-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bc-step-text strong {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0a3954;
}

.bc-step-text span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #5a6872;
    line-height: 1.4;
}

/* Actions */
.bc-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bc-secondary-btn {
    width: 100%;
    padding: 14px;
    background: #fff;
    border: 1.5px solid #dce2e8;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0a3954;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bc-secondary-btn:hover {
    border-color: #0a7e8b;
    color: #0a7e8b;
    background: #f0fafb;
}

/* Responsive */
@media (max-width: 1024px) {
    .bc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bc-page {
        padding: 0 16px 40px;
    }

    .bc-success-banner {
        padding: 32px 16px 28px;
    }

    .bc-success-banner h1 {
        font-size: 26px;
    }

    .bc-conf-number {
        padding: 14px 24px;
    }

    .bc-conf-number strong {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .bc-card-body {
        padding: 20px;
    }

    .bc-route-code {
        font-size: 22px;
    }
}


/* ===== Current Trip Page Styles (Redesigned) ===== */

/* Page Header (replaces hero banner) */
.ct-page-header {
    background: #f9f8f5;
    border-bottom: 1px solid #e8ecf0;
    padding: 36px 24px;
}

.ct-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.ct-header-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0a7e8b;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 4px;
}

.ct-header-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0a3954;
    margin: 0;
    line-height: 1.15;
}

.ct-header-dates {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #5a6872;
    margin: 0;
}

.ct-header-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ct-header-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0a3954;
    background: #fff;
    border: 1px solid #e8ecf0;
    padding: 8px 14px;
    border-radius: 10px;
}

/* Sidebar Destination Image Card */
.ct-dest-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

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

.ct-dest-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(0deg, rgba(10,57,84,.8) 0%, transparent 100%);
}

.ct-dest-image-overlay span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

/* Page */
.ct-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.ct-main-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 24px;
}

/* Cards */
.ct-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf0;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    transition: box-shadow .3s;
}

.ct-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

.ct-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    background: #f9f8f5;
    border-bottom: 1px solid #e8ecf0;
}

.ct-card-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0a3954;
    margin: 0;
    flex: 1;
}

.ct-card-tag {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #0a7e8b;
    background: #e8f4f5;
    padding: 4px 12px;
    border-radius: 20px;
}

.ct-card-body {
    padding: 24px;
}

/* Flight Visual */
.ct-flight-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ct-flight-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 60px;
}

.ct-flight-code {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0a3954;
}

.ct-flight-time {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0a3954;
}

.ct-flight-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #5a6872;
}

.ct-flight-path {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
}

.ct-flight-line-track {
    display: flex;
    align-items: center;
    width: 100%;
}

.ct-flight-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0a7e8b;
    flex-shrink: 0;
}

.ct-flight-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #cfe4e8, #0a7e8b);
}

.ct-flight-plane {
    flex-shrink: 0;
    margin: 0 4px;
}

.ct-flight-duration {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #5a6872;
}

/* Hotel Info */
.ct-hotel-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-hotel-name-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct-hotel-name-block h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a3954;
    margin: 0;
}

.ct-hotel-stars {
    display: flex;
    gap: 2px;
}

.ct-hotel-addr {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #5a6872;
}

.ct-hotel-dates {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f8f5;
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #e8ecf0;
}

.ct-hotel-date-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.ct-hotel-date-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #5a6872;
}

.ct-hotel-date-value {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0a3954;
}

.ct-hotel-date-time {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #5a6872;
}

.ct-hotel-date-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #0a7e8b;
}

.ct-hotel-date-divider span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #5a6872;
}

/* Summary Card */
.ct-summary-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf0;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.ct-summary-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a3954;
    margin: 0 0 18px 0;
}

.ct-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.ct-summary-row span:first-child {
    color: #5a6872;
}

.ct-summary-row span:last-child {
    font-weight: 600;
    color: #0a3954;
}

.ct-summary-total {
    padding-top: 14px;
    margin-top: 4px;
    border-top: 2px solid #0a3954;
}

.ct-summary-total span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #0a3954;
}

.ct-summary-total span:last-child {
    font-size: 22px;
    font-weight: 800;
    color: #0a7e8b;
}

/* Actions Card */
.ct-actions-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf0;
    padding: 24px;
}

.ct-actions-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a3954;
    margin: 0 0 16px 0;
}

.ct-action-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1.5px solid #e8ecf0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0a3954;
    cursor: pointer;
    transition: all .2s;
}

.ct-action-btn:hover {
    border-color: #0a7e8b;
    color: #0a7e8b;
    background: #f0fafb;
}

/* Countdown Card */
.ct-countdown-card {
    background: linear-gradient(135deg, #0a3954, #0a7e8b);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ct-countdown-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.7);
}

.ct-countdown-number {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.ct-countdown-sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }

    .ct-sidebar-col {
        position: static;
    }
}

@media (max-width: 768px) {
    .ct-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ct-header-text h1 {
        font-size: 30px;
    }

    .ct-header-meta {
        gap: 10px;
    }

    .ct-header-meta span {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 640px) {
    .ct-page {
        padding: 24px 16px 40px;
    }

    .ct-page-header {
        padding: 24px 16px;
    }

    .ct-header-text h1 {
        font-size: 26px;
    }

    .ct-header-dates {
        font-size: 14px;
    }

    .ct-flight-code {
        font-size: 20px;
    }

    .ct-hotel-dates {
        flex-direction: column;
        gap: 12px;
    }

    .ct-hotel-date-divider {
        flex-direction: row;
        gap: 8px;
    }

    .ct-card-body {
        padding: 18px;
    }

    .ct-dest-image-card {
        height: 160px;
    }
}

/* ── Cookie Consent Banner ── */

.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 720px;
    width: calc(100% - 32px);
    padding: 20px 28px;
    background: #0a3954;
    border-top: 3px solid #0a7e8b;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-family: 'Inter', sans-serif;
    text-align: left;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__btn--accept,
.cookie-consent__btn--decline {
    padding: 10px 22px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.cookie-consent__btn--accept {
    background: #0a7e8b;
    color: #fff;
    border: none;
}

.cookie-consent__btn--accept:hover {
    background: #096b76;
}

.cookie-consent__btn--decline {
    background: transparent;
    color: #cfe4e8;
    border: 1px solid #cfe4e8;
}

.cookie-consent__btn--decline:hover {
    background: rgba(207, 228, 232, 0.12);
}

@media (max-width: 600px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 18px 20px;
        bottom: 12px;
    }

    .cookie-consent__actions {
        width: 100%;
        justify-content: center;
    }
}



