body { background-color: #F0F2F5; }

/* ── Hero Video ───────────────────────────────────── */
.hero {
    position: relative;
    height: 52vh;
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 20, 45, 0.45) 0%,
        rgba(5, 20, 45, 0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    color: #fff;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.9);
}

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

/* ── Search ───────────────────────────────────────── */
/* ── Weekend Deal Notification ───────────────────── */
.deal-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 439px;
    max-width: calc(100% - 24px);
    min-height: 102px;
    background: #F5F7F9;
    border-radius: 20px;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 42px;
    z-index: 1400;
    box-shadow: 0 10px 30px rgba(0, 34, 68, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.deal-notification.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.deal-main {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 297.86px;
    min-height: 70px;
}

.deal-icon-wrap {
    width: 43.86px;
    height: 43.86px;
    border-radius: 25.0617px;
    border: 1.56636px solid #40E0D0;
    background: rgba(64, 224, 208, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.deal-icon-wrap svg {
    width: 21.93px;
    height: 20.72px;
    fill: #40E0D0;
}

.deal-content {
    width: 238px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.deal-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: #002244;
}

.deal-text {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #334D66;
}

.deal-meta {
    width: 54px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.deal-time {
    font-size: 12px;
    line-height: 18px;
    color: #334D66;
}

.deal-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #40E0D0;
}

/* ── Sections ─────────────────────────────────────── */
.recommended-section,
.activities-section,
.destinations-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 8px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2A37;
}

.see-more {
    color: #1F2A37;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.see-more:hover { opacity: 0.7; }

/* ── Hotel Cards ──────────────────────────────────── */
.hotels-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}

.hotels-scroll::-webkit-scrollbar { display: none; }

.hotels-scroll.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.hotels-scroll.is-dragging .hotel-card {
    pointer-events: none;
}

.hotel-card {
    width: 320px;
    height: 260px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
}

.hotel-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}

/* Gradient overlay — lighter at top, dark blue at bottom */
.hotel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,51,102,0) 48.25%, #003366 100%);
    border-radius: 30px;
    z-index: 5;
    transition: background 0.35s ease;
}

.hotel-card:hover .hotel-overlay {
    background: linear-gradient(180deg, rgba(0,51,102,0) 0%, #003366 100%);
}

.hotel-info {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* push info just below card bottom so name is at edge */
    transform: translateY(calc(100% - 56px));
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-card:hover .hotel-info {
    transform: translateY(0);
}

.hotel-top-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.hotel-name-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hotel-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #E6EAEE;
    margin: 0;
    line-height: 26px;
}

.hotel-location {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #E8EDF1;
    margin: 0;
    line-height: 18px;
}

.hotel-hover-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.25s ease 0.15s;
}

.hotel-card:hover .hotel-hover-row {
    opacity: 1;
}

.hotel-price {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #40E0D0;
    line-height: 26px;
}

.hotel-price span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #E6EAEE;
    margin-left: 4px;
    letter-spacing: 0.01em;
}

.hotel-view-details {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #E6EAEE;
    letter-spacing: 0.01em;
}

.hotel-rating-badge svg { fill: #40E0D0; width: 14px; height: 14px; flex-shrink: 0; }

.favorite-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(22, 40, 59, 0.5);
    border: 1.36px solid #7A8CA3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #647C90;
    z-index: 10;
}

.favorite-btn svg { fill: #647C90; transition: fill 0.3s; pointer-events: none; }
.favorite-btn svg path { fill: inherit; }
.favorite-btn:hover { background: rgba(22,40,59,0.75); border-color: #40E0D0; }
.favorite-btn.active { background: rgba(22, 40, 59, 0.5); border-color: #40E0D0; border-width: 1.36px; }
.favorite-btn.active svg { fill: #40E0D0; }

/* ── Activity Cards ───────────────────────────────── */
.activities-section { background: transparent; }

.activities-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}

.activities-scroll::-webkit-scrollbar { display: none; }

.activity-card {
    width: 230px;
    height: 300px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    flex-shrink: 0;
    text-decoration: none;
}

.activity-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}

.activity-card .favorite-btn {
    position: absolute;
    top: 24px;
    right: 24px;
}

.activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,51,102,0) 48.25%, #003366 100%);
    border-radius: 30px;
    z-index: 5;
    transition: background 0.35s ease;
}

.activity-card:hover .activity-overlay {
    background: linear-gradient(180deg, rgba(0,51,102,0) 0%, #003366 100%);
}

.activity-info {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card:hover .activity-info {
    transform: translateY(-16px);
}

.activity-top-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.activity-name-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.activity-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #E6EAEE;
    margin: 0;
    line-height: 24px;
}

.activity-location {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #E8EDF1;
    margin: 0;
    line-height: 18px;
}

.activity-hover-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.25s ease 0.15s;
}

.activity-card:hover .activity-hover-row {
    opacity: 1;
}

.activity-price {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #40E0D0;
    line-height: 24px;
}

.activity-price span {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #E6EAEE;
    margin-left: 4px;
}

.activity-view-details {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #E6EAEE;
    letter-spacing: 0.01em;
}

/* ── Transfer Banner ──────────────────────────────── */
.transfer-hero {
    position: relative;
    max-width: 1352px;
    height: 420px;
    margin: 32px auto;
    border-radius: 24px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.transfer-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,51,102,0.85) 0%, rgba(0,51,102,0.6) 50%, rgba(0,51,102,0.4) 100%);
}

.transfer-hero-content { position: relative; z-index: 2; padding: 0 2rem; max-width: 700px; }

.transfer-hero-title { font-size: 3.8rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.transfer-hero-title .highlight { color: #40E0D0; }
.transfer-hero-subtitle { font-size: 1.15rem; font-weight: 300; color: rgba(255,255,255,0.9); }

.transfer-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.transfer-hero-arrow:hover { background: rgba(255,255,255,0.25); transform: translateY(-50%) scale(1.1); }
.transfer-hero-arrow-left  { left: 1.5rem; }
.transfer-hero-arrow-right { right: 1.5rem; }

.transfer-hero-pagination {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 3;
}

.transfer-pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.transfer-pagination-dot.active { background: #fff; width: 28px; border-radius: 5px; border-color: #fff; }

/* ── Destinations ─────────────────────────────────── */
.destinations-grid { display: flex; flex-direction: column; gap: 12px; }

.destinations-row-top,
.destinations-row-bottom {
    display: grid;
    gap: 12px;
}

.destinations-row-top    { grid-template-columns: 1fr 1fr; }
.destinations-row-bottom { grid-template-columns: 1fr 1fr 1fr; }

.destination-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.destination-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.destination-card:hover img { transform: scale(1.05); }

.destinations-row-top    .destination-card { height: 240px; }
.destinations-row-bottom .destination-card { height: 200px; }

.destination-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,51,102,0.85) 0%, transparent 100%);
    padding: 20px 16px 14px;
    color: #fff;
}

.destination-overlay h3 { font-size: 18px; font-weight: 700; margin: 0 0 4px; }
.destination-overlay p  { font-size: 12px; color: rgba(255,255,255,0.85); margin: 0; }

/* ── Footer ───────────────────────────────────────── */
.main-footer {
    background: #0A1628;
    color: rgba(255,255,255,0.8);
    padding: 48px 0 32px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }

.logo-initials {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #40E0D0, #35C4B8);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-logo .logo-text { font-size: 18px; font-weight: 700; color: #fff; letter-spacing: 0.08em; }
.footer-logo .logo-tagline { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.12em; }

.footer-title { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.1em; margin-bottom: 16px; text-transform: uppercase; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.65); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #40E0D0; }

.social-icons { display: flex; gap: 10px; margin-top: 20px; }

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover { border-color: #40E0D0; color: #40E0D0; background: rgba(64,224,208,0.1); }

/* Responsive */
@media (max-width: 1024px) {
    .hotel-card { width: 290px !important; height: 240px !important; }
}
@media (max-width: 768px) {
    .hero { height: 40vh; }
    .hero-title { font-size: 2rem; }
    .destinations-row-top    { grid-template-columns: 1fr; }
    .destinations-row-bottom { grid-template-columns: 1fr 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .transfer-hero { height: 300px; margin: 20px 16px; border-radius: 20px; }
    .transfer-hero-title { font-size: 2rem; }
    .hotel-card { width: 260px !important; height: 220px !important; }
    .activity-card { width: 200px !important; height: 260px !important; }
    .section-header { padding: 1.5rem 1rem 0.75rem; }
    .section-header h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .hero { height: 35vh; min-height: 220px; }
    .hero-title { font-size: 1.5rem; }
    .hero-subtitle { font-size: 0.85rem; }
    .transfer-hero { height: 250px; margin: 12px; border-radius: 16px; }
    .transfer-hero-title { font-size: 1.6rem; }
    .destinations-row-bottom { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .hotel-card { width: 240px !important; height: 200px !important; }
    .deal-notification { flex-direction: column; gap: 8px; padding: 10px 14px; }
}
.search-select {
    width: 100%;
    padding: 12px 35px 12px 45px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: #f8f9fa;
    font-size: 15px;
    font-weight: 500;
    color: #2d3436;
    outline: none;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
}

.search-select:hover {
    background: #f1f2f6;
    border-color: #dfe6e9;
}

.search-select:focus {
    background: #fff;
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23636e72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.input-wrapper:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #007bff;
    z-index: 1;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
    color: #0056b3;
    transform: translateY(-50%) scale(1.1);
}

