:root {
    --primary: #FF385C;
    --primary-dark: #E31C5F;
    --primary-light: #FFF0F3;
    --dark: #222222;
    --gray: #717171;
    --light-gray: #F7F7F7;
    --border: #DDDDDD;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --radius: 14px;
    --radius-lg: 24px;
    --radius-full: 40px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: #FAFAFA;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* ══════════ HEADER ══════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    position: relative;
}

.logo img {
    width: 180px;
    object-fit: contain;
}

.footer-logo img {
    width: 180px;
    object-fit: contain;
}

.logo {
    font-family: 'Inter', serif;
    font-weight: 800;
    font-size: 1.65rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    z-index: 10;
}

.logo i {
    font-size: 1.3rem;
}

.logo:hover {
    color: var(--primary-dark);
}

.site-logo {
    height: 32px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    z-index: 10;
}

/* .btn-list-activity {
    background: transparent;
    border: 1.5px solid var(--dark);
    color: var(--dark);
    border-radius: var(--radius-full);
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-list-activity:hover {
    background: var(--dark);
    color: #fff;
    transform: scale(1.03);
} */

.btn-list-activity {
    background-color: #F4256A;
    color: white;
    padding: 0px 25px;
    width: auto;
    height: 45px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-user-login {
    background-color: white;
    color: #F4256A;
    border: 2px solid #F4256A !important;
    padding: 0px 25px;
    width: auto;
    height: 45px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}






/* ══════════ MINI SEARCH BAR (in header) ══════════ */
.search-mini {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 48px;
    height: 48px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.search-mini:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 18px rgba(0, 0, 0, 0.1);
}

.search-mini.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.mini-tab {
    border: none;
    background: none;
    padding: 0 20px;
    height: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
    border-radius: 48px;
}

.mini-tab:hover {
    background: #F0F0F0;
}

.mini-tab-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
    margin-top: -1px;
}

.mini-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    flex-shrink: 0;
}

.mini-search-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: #fff;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 8px;
    flex-shrink: 0;
    transition: var(--transition);
}

.mini-search-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 3px 10px rgba(255, 56, 92, 0.35);
}

/* ══════════ SEARCH SECTION (original position) ══════════ */
.search-section {
    background: #fff;
    padding: 24px 0 32px;
    border-bottom: 1px solid #EBEBEB;
    position: relative;
    z-index: 1040;
}

/* ══════════ EXPANDED SEARCH PANEL (drops from header) ══════════ */
.search-expanded-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1045;
    padding-top: 76px;
    padding-bottom: 28px;
    border-bottom: 1px solid #EBEBEB;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-expanded-panel.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* ══════════ BACKDROP ══════════ */
.search-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1042;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.search-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* ══════════ SEARCH BAR CONTAINER ══════════ */
.search-bar-container {
    width: 80%;
    max-width: 860px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════ AIRBNB SEARCH BAR ══════════ */
.search-bar {
    background: #fff;
    border-radius: 80px;
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 66px;
    display: flex;
    align-items: stretch;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.search-bar:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.search-bar.bar-active {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #EBEBEB;
}

.search-bar.bar-active .search-field {
    background: transparent;
}

.search-bar.bar-active .search-field:hover {
    background: #DDDDDD;
}

.search-bar.bar-active .search-field.active {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

/* Search Fields */
.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    height: 100%;
    cursor: pointer;
    border-radius: 80px;
    position: relative;
    transition: background 0.2s ease;
    min-width: 0;
}

.search-field:hover {
    background: #EBEBEB;
}

.search-field.active {
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

/* Dividers */
.search-field::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: var(--border);
    transition: opacity 0.2s ease;
}

.search-field:last-of-type::after,
.search-field:hover::after,
.search-field:hover+.search-field::after,
.search-field.active::after,
.search-field.active+.search-field::after {
    opacity: 0;
}

.search-field[data-field="activity"]::after {
    display: none;
}

/* Floating Label Group */
.field-inner {
    width: 100%;
    position: relative;
    text-align: left;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.field-inner label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-80%);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
    white-space: nowrap;
}

.field-inner.float label {
    top: 0;
    transform: translateY(0);
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.field-inner input {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--dark);
    width: 100%;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    margin-top: 22px;
    font-weight: 400;
}

.field-inner.float input {
    opacity: 1;
}

.field-inner input::placeholder {
    color: #BDBDBD;
    font-weight: 400;
}

/* Custom display text */
.field-display {
    font-size: 0.83rem;
    color: #BDBDBD;
    margin-top: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    user-select: none;
}

.field-inner.float .field-display {
    display: none;
}

.field-inner:not(.float) input[type="text"] {
    display: none;
}

.field-inner.float .field-display {
    display: none;
}

.field-inner.float input[type="text"] {
    display: block;
}

.field-display.has-value {
    color: var(--dark);
    font-weight: 500;
}

/* Search Button */
.search-btn-wrap {
    padding: 0 9px 0 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.btn-search {
    height: 48px;
    min-width: 48px;
    border-radius: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(255, 56, 92, 0.3);
    padding: 0 18px;
    white-space: nowrap;
}

.btn-search .btn-search-text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}

.btn-search:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(255, 56, 92, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), #C4134E);
}

.btn-search:active {
    transform: scale(0.96);
}

/* ══════════ CUSTOM DROPDOWNS & PANELS ══════════ */
.search-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 28px 28px 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 400px;
}

.search-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Where Dropdown */
.where-dropdown {
    min-width: 420px;
}

.dropdown-section-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--dark);
    margin-bottom: 16px;
}

.destination-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.destination-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.15s;
}

.destination-list li:hover {
    background: var(--light-gray);
}

.destination-list li.active-dest {
    background: #FFF0F3;
}

.dest-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--light-gray);
    border: 1px solid #EBEBEB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dest-info h6 {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 0 2px;
    color: var(--dark);
}

.dest-info small {
    color: var(--gray);
    font-size: 0.78rem;
}

/* Calendar Dropdown */
.calendar-dropdown {
    min-width: 340px;
    padding: 24px;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cal-header h6 {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
}

.cal-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--dark);
    transition: background 0.15s;
}

.cal-nav:hover {
    background: var(--light-gray);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.cal-day-name {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    padding: 8px 0;
}

.cal-day {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    margin: 0 auto;
    color: var(--dark);
    border: none;
    background: transparent;
}

.cal-day:hover {
    background: var(--light-gray);
}

.cal-day.today {
    border: 2px solid var(--dark);
    font-weight: 700;
}

.cal-day.selected {
    background: var(--primary) !important;
    color: #fff !important;
    font-weight: 700;
}

.cal-day.range-between {
    background: #FFE0E6;
    border-radius: 0;
    color: var(--dark);
}

.cal-day.range-start {
    border-radius: 50% 0 0 50%;
}

.cal-day.range-end {
    border-radius: 0 50% 50% 0;
}

.cal-day.disabled {
    color: #ccc;
    cursor: default;
    pointer-events: none;
}

.cal-day.empty {
    cursor: default;
    pointer-events: none;
}

/* Activity Dropdown */
.activity-dropdown {
    min-width: 380px;
    padding: 20px 12px;
}

.activity-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 18px;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.15s;
}

.activity-option:hover {
    background: var(--light-gray);
}

.activity-option.selected {
    background: #FFF0F3;
}

.activity-option-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-light), #FFE0E6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.activity-option-info h6 {
    font-weight: 600;
    font-size: 0.88rem;
    margin: 0 0 2px;
    color: var(--dark);
}

.activity-option-info small {
    color: var(--gray);
    font-size: 0.75rem;
}

/* Click overlay for dropdowns */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    display: none;
}

.search-overlay.show {
    display: block;
}

/* ══════════ SECTION STYLING ══════════ */
.section-block {
    padding: 70px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-title {
    font-family: 'Inter', serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
}

.section-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition);
}

.section-link:hover {
    text-decoration: underline;
}











/* ══════════ PROMO SECTION ══════════ */
.promo-section {
    padding: 50px 0;
    background: #fff;
}

/* Remove Bootstrap gutter padding so the card fills edge-to-edge */
.promo-section .col-sm-12 {
    padding-left: 0;
    padding-right: 0;
}

.promo-section-main {
    display: flex;
    align-items: stretch;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 220px;
    width: 100%;
}

/* ── LEFT CARD ── */
.promo-card-left {
    flex: 1 1 60%;
    background: #fff;
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    position: relative;
}

/* subtle dotted pattern on left */
.promo-card-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #EBEBEB 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.55;
    pointer-events: none;
    border-radius: inherit;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    /* color: var(--primary); */
    color: #EA2A33;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 50px;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.promo-headline {
    font-family: 'Inter', serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--dark);
    line-height: 1.2;
    margin: 0;
    position: relative;
    z-index: 1;
}

.promo-highlight {
    /* color: var(--primary); */
    color: #EA2A33;
    text-decoration: underline;
}

.promo-desc {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.promo-perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.promo-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray);
}

.promo-perk i {
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ── RIGHT CARD ── */
.promo-card-right {
    flex: 0 0 340px;
    background: linear-gradient(145deg, #FF385C 0%, #E31C5F 60%, #C4134E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.promo-right-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 32px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Decorative background circles */
.promo-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.promo-circle-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -80px;
}

.promo-circle-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -50px;
}

/* Gift icon */
.promo-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    animation: promoPulse 2.4s ease-in-out infinite;
}

@keyframes promoPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.promo-code-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Code box (click-to-copy) */
.promo-code-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.18);
    border: 2px dashed rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    padding: 13px 22px;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    justify-content: center;
    user-select: none;
}

.promo-code-box:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.promo-code-box:active {
    transform: translateY(0);
}

.promo-code-text {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 3px;
    /* font-family: 'Inter', serif; */
}

.promo-copy-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.promo-code-box:hover .promo-copy-icon {
    color: #fff;
}

/* Copied toast */
.promo-copied-toast {
    background: rgba(255, 255, 255, 0.95);
    color: #16a34a;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.promo-copied-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Expiry */
.promo-expiry {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
}

.promo-expiry i {
    font-size: 0.8rem;
}

.promo-expiry strong {
    color: #fff;
    font-weight: 700;
}

/* Discount badge */
.promo-discount-badge {
    background: #fff;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: badgeBounce 3s ease-in-out infinite;
}

@keyframes badgeBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .promo-section-main {
        flex-direction: column;
    }

    .promo-card-left {
        padding: 32px 28px;
    }

    .promo-card-right {
        flex: none;
        padding: 0;
    }

    .promo-headline {
        font-size: 1.6rem;
    }
}

























/* ══════════ TRENDING CARDS ══════════ */
.trending-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 2px 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.trending-scroll::-webkit-scrollbar {
    display: none;
}

.trending-card {
    width: 100%;
    /* fill the swiper-slide */
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.trending-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.trending-card-img {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.trending-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trending-card:hover .trending-card-img img {
    transform: scale(1.08);
}

.card-ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    /* background: var(--primary); */
    background: rgba(255, 255, 255, 0.9);
    /* color: #fff; */
    color: #0F172A;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
}

.card-ribbon i {
    color: #EAB308;
}

.card-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    color: var(--dark);
    font-size: 0.85rem;
}

.card-wishlist:hover {
    background: var(--primary);
    color: #fff;
}

.card-wishlist.active {
    background: var(--primary);
    color: #fff;
}

.trending-card-body {
    padding: 16px 18px 18px;
}

.trending-card-body h5 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    /* color: var(--gray); */
    color: #EA2A33;
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-location i {
    font-size: 0.7rem;
    color: var(--primary);
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 600;
}

.card-rating i {
    color: #FFB800;
    font-size: 0.75rem;
}

.card-rating span {
    color: var(--gray);
    font-weight: 400;
}

.card-price {
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
}

.card-price small {
    font-weight: 400;
    font-size: 0.72rem;
    color: var(--gray);
    text-wrap: nowrap;
    text-decoration: line-through;
    display: block;
}

.card-price span {
    text-wrap: nowrap;
    display: block;
}

.btn-book {
    /* width: 100%; */
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 0.82rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-book:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

.scroll-nav {
    display: flex;
    gap: 8px;
}

.scroll-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark);
    font-size: 0.85rem;
}

.scroll-btn:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

/* ══════════ POPULAR ACTIVITIES GRID ══════════ */
.activity-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.activity-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.activity-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-card-img img {
    transform: scale(1.06);
}

.activity-card-body {
    padding: 18px 20px 20px;
}

.activity-card-body h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.activity-stars {
    color: #FFB800;
    font-size: 0.75rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.activity-stars span {
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 500;
}

.activity-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

/* ══════════ TESTIMONIAL ══════════ */
.testimonial-section {
    background: linear-gradient(135deg, #FFF5F7, #FFF);
    padding: 70px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.testimonial-card p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    font-weight: 700;
    font-size: 0.88rem;
    margin: 0;
}

.testimonial-author small {
    color: var(--gray);
    font-size: 0.78rem;
}

/* ══════════ CTA ══════════ */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(145deg, var(--primary), #D70466);
    border-radius: 32px;
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-box h2 {
    font-family: 'Inter', serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 14px;
    position: relative;
}

.cta-box p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 28px;
    position: relative;
    max-width: 500px;
}

.btn-cta {
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    padding: 14px 36px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

/* ══════════ FOOTER ══════════ */
.site-footer {
    background: #1A1A2E;
    color: #ccc;
    padding: 70px 0 0;
}

.footer-logo {
    font-family: 'Inter', serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo i {
    color: var(--primary);
}

.site-footer p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #999;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-heading {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 0.85rem;
}

.footer-contact-item span {
    font-size: 0.88rem;
    color: #999;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
    margin-top: 50px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: #777;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ══════════ ANIMATIONS ══════════ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 991px) {
    .search-bar-container {
        width: 95%;
    }

    .promo-card {
        padding: 30px 24px;
    }

    .promo-card-left h2 {
        font-size: 1.5rem;
    }

    .cta-box {
        padding: 40px 30px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .where-dropdown,
    .calendar-dropdown,
    .activity-dropdown {
        min-width: 320px;
    }

    .search-mini .mini-tab {
        padding: 0 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {

    .card-meta-trend {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .search-mini {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100%;
        order: 3;
        margin-top: 0;
        height: 44px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        border: none;
        box-shadow: none;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        justify-content: center;
    }

    .search-mini.visible {
        transform: none !important;
        max-height: 60px;
        margin-top: 10px;
        height: 44px;
        opacity: 1;
        border: 1px solid var(--border);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .search-mini .mini-tab {
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .search-mini .mini-tab-sub {
        display: none;
    }

    .search-section {
        padding: 20px 0 28px;
    }

    .search-bar-container {
        width: 95%;
    }

    .search-bar {
        flex-direction: column;
        height: auto;
        border-radius: 24px;
        padding: 8px;
        gap: 0;
    }

    .search-field {
        width: 100%;
        padding: 14px 20px;
        border-radius: 16px;
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    .search-field::after {
        display: none;
    }

    .field-inner {
        text-align: left;
    }

    .field-inner label {
        font-size: 0.8rem;
    }

    .search-btn-wrap {
        padding: 4px 8px 8px;
        width: 100%;
    }

    .btn-search {
        width: 100%;
        border-radius: 14px;
        height: 50px;
    }

    .search-dropdown {
        position: fixed;
        top: auto !important;
        bottom: 0;
        left: 0 !important;
        right: 0;
        transform: none !important;
        min-width: 100% !important;
        border-radius: 24px 24px 0 0;
        max-height: 60vh;
        overflow-y: auto;
    }

    .search-dropdown.show {
        transform: none !important;
    }

    .search-expanded-panel {
        padding-top: 60px;
    }

    .search-expanded-panel .search-bar {
        flex-direction: column;
        height: auto;
        border-radius: 24px;
        padding: 8px;
    }

    .search-expanded-panel .search-field {
        width: 100%;
        padding: 14px 20px;
        border-radius: 16px;
    }

    .search-expanded-panel .search-field::after {
        display: none;
    }

    .search-expanded-panel .search-btn-wrap {
        padding: 4px 8px 8px;
        width: 100%;
    }

    .search-expanded-panel .btn-search {
        width: 100%;
        border-radius: 14px;
        height: 50px;
    }

    .section-block {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .promo-card-left h2 {
        font-size: 1.4rem;
    }

    .promo-card-right .promo-number {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 36px 24px;
        border-radius: 24px;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .search-mini .mini-tab {
        padding: 0 8px;
        font-size: 0.72rem;
    }

    .search-mini .mini-divider {
        height: 18px;
    }

    .mini-search-btn {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
        margin-right: 6px;
    }
}

/* ══════════════════════════════════════════
   ACTIVITIES PAGE — PAGINATION
══════════════════════════════════════════ */
.activities-pagination-wrap {
    background: #fff;
    padding: 36px 0 52px;
}

.pagination-summary {
    text-align: center;
    color: var(--gray);
    font-size: 0.88rem;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.pagination-summary strong {
    color: var(--dark);
    font-weight: 600;
}

/* ── Base pagination item ── */
.adhr-pagination {
    gap: 6px;
}

.adhr-pagination .page-item .page-link {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1.5px solid #e8e8e8;
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    background: #fff;
    padding: 0 10px;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: none;
    outline: none;
}

/* ── Hover ── */
.adhr-pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    background: #fff0f3;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.12);
}

/* ── Active / current page ── */
.adhr-pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 56, 92, 0.35);
    transform: translateY(-1px);
}

/* ── Disabled (Prev at page 1, Next at last page, ellipsis) ── */
.adhr-pagination .page-item.disabled .page-link,
.adhr-pagination .page-item.disabled .page-ellipsis {
    background: #fafafa;
    border-color: #f0f0f0;
    color: #bbb;
    cursor: default;
    pointer-events: none;
    box-shadow: none;
}

/* ── Ellipsis style ── */
.adhr-pagination .page-ellipsis {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.1em;
    font-size: 1rem;
}

/* ── Prev / Next arrows ── */
.adhr-pagination .page-item:first-child .page-link,
.adhr-pagination .page-item:last-child .page-link {
    font-size: 0.75rem;
    padding: 0 14px;
}

/* ── Mobile — smaller pills ── */
@media (max-width: 480px) {
    .adhr-pagination .page-item .page-link {
        min-width: 34px;
        height: 34px;
        border-radius: 8px;
        font-size: 0.8rem;
    }

    .adhr-pagination {
        gap: 4px;
    }
}





















/* ══════════ ACTIVITY PAGE STYLES ══════════ */

/* ── Breadcrumb ── */
.act-breadcrumb {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--gray);
}

.act-breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}

.act-breadcrumb a:hover {
    color: var(--primary);
}

.act-breadcrumb .sep {
    margin: 0 6px;
}

.act-breadcrumb .cur {
    color: var(--dark);
    font-weight: 500;
}

/* ── Page wrapper ── */
.act-page {
    background: #FAFAFA;
    padding-bottom: 60px;
}

/* ── Category badge ── */
.act-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* ── Title ── */
.act-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .act-title {
        font-size: 1.3rem;
    }
}

/* ── Rating row ── */
.act-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 18px;
    font-size: 0.85rem;
    color: var(--gray);
}

.act-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    color: var(--dark);
}

.act-rating i {
    color: #F4B03A;
    font-size: 0.9rem;
}

.act-rating-count {
    font-weight: 400;
    color: var(--gray);
}

.act-location-tag {
    display: flex;
    align-items: center;
    gap: 5px;
}

.act-location-tag i {
    color: var(--primary);
}

/* ── Difficulty badge ── */
.diff-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.diff-high {
    background: #FFF0F0;
    color: #D32F2F;
}

.diff-medium {
    background: #FFF8E1;
    color: #F57F17;
}

.diff-low {
    background: #E8F5E9;
    color: #2E7D32;
}

/* ── Vendor business name badge ── */
.act-vendor-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #F0F4FF;
    color: #3B5BDB;
    border: 1px solid #BFCBFF;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: default;
    transition: background 0.2s, box-shadow 0.2s;
}

.act-vendor-badge i {
    font-size: 0.8rem;
    color: #3B5BDB;
}

.act-vendor-badge:hover {
    background: #E4ECFF;
    box-shadow: 0 2px 10px rgba(59, 91, 219, 0.15);
}

/* ══════════ LIGHTHOUSE GALLERY ══════════ */
.act-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    grid-template-rows: 240px 200px;
    gap: 6px;
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
}

@media (max-width: 576px) {
    .act-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 230px;
    }

    .act-gallery .act-gal-thumb {
        display: none;
    }
}

.act-gal-main {
    grid-row: 1 / 3;
    position: relative;
}

.act-gal-main img,
.act-gal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.act-gal-thumb {
    position: relative;
    overflow: hidden;
}

.act-gal-thumb:hover img,
.act-gal-main:hover img {
    transform: scale(1.04);
}

.act-gal-main {
    overflow: hidden;
}

/* "See all photos" overlay on last thumb */
.gal-see-all {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.gal-see-all:hover {
    background: #fff;
    transform: scale(1.03);
}

/* ══════════ CONTENT SECTIONS (LEFT) ══════════ */
.act-section {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 26px 28px;
    margin-bottom: 18px;
}

.act-section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.08rem;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.act-section-title i {
    color: var(--primary);
    font-size: 0.95rem;
}

/* Description */
.act-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.75;
}

/* ── CKEditor HTML content wrapper ── */
.act-ck-content {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.75;
}

.act-ck-content p {
    margin-bottom: 0.6em;
}

.act-ck-content ul,
.act-ck-content ol {
    padding-left: 1.4em;
    margin-bottom: 0.6em;
}

.act-ck-content ul li,
.act-ck-content ol li {
    margin-bottom: 4px;
}

.act-ck-content strong,
.act-ck-content b {
    color: var(--dark);
    font-weight: 700;
}

.act-ck-content a {
    color: var(--primary);
    text-decoration: underline;
}

.act-ck-content h1,
.act-ck-content h2,
.act-ck-content h3,
.act-ck-content h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

/* Quick info pills */
.act-info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4px;
}

.act-info-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.82rem;
}

.act-info-pill strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    margin-bottom: 2px;
}

.act-info-pill span {
    font-weight: 600;
    color: var(--dark);
}

.act-info-pill i {
    color: var(--primary);
    font-size: 1rem;
}

/* Highlights list */
.act-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.act-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #444;
    line-height: 1.5;
}

.act-highlights-list li i {
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Inclusion / Exclusion */
.act-incl-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.act-incl-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #444;
    line-height: 1.5;
}

.act-incl-list.incl li i {
    color: #16A34A;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.act-incl-list.excl li i {
    color: #DC2626;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Eligibility */
.act-elig-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.act-elig-list li {
    font-size: 0.875rem;
    color: #444;
    line-height: 1.55;
    padding-left: 18px;
    position: relative;
}

.act-elig-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

/* What to bring */
.act-bring-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.act-bring-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #444;
    line-height: 1.5;
}

.act-bring-list li i {
    color: #2563EB;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Cancellation */
.act-cancel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.act-cancel-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #444;
    line-height: 1.5;
}

.act-cancel-list li i {
    color: #9333EA;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Map link */
.act-map-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.act-map-link:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* ══════════ STICKY BOOKING PANEL (RIGHT) ══════════ */
.act-booking-col {
    position: relative;
}

.act-booking-sticky {
    /* position: sticky; */
    top: 80px;
    /* below fixed header */
}

.act-booking-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* Price header */
.act-booking-header {
    background: linear-gradient(135deg, #FF385C, #E31C5F);
    padding: 22px 24px 18px;
    color: #fff;
}

.act-price-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 4px;
}

.act-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.act-price-current {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.act-price-original {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.65;
    text-decoration: line-through;
}

.act-price-savings {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    margin-top: 6px;
    display: inline-block;
}

.act-price-per {
    font-size: 0.75rem;
    opacity: 0.75;
    margin-top: 2px;
}

/* Booking body */
.act-booking-body {
    padding: 22px 22px 8px;
}

/* Calendar widget inside booking */
.bk-cal-section {
    margin-bottom: 18px;
}

.bk-cal-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray);
    margin-bottom: 6px;
}

.bk-date-display {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: border-color 0.2s;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.bk-date-display:hover {
    border-color: var(--primary);
}

.bk-date-display i {
    color: var(--primary);
}

.bk-date-display .placeholder {
    color: #BDBDBD;
    font-weight: 400;
}

/* inline mini calendar */
.bk-calendar-wrap {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    margin-top: 10px;
    display: none;
}

.bk-calendar-wrap.open {
    display: block;
}

.bk-cal-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 8px;
    border-bottom: 1px solid var(--border);
}

.bk-cal-nav-row h6 {
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.bk-cal-nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--dark);
    transition: background 0.15s;
}

.bk-cal-nav-btn:hover {
    background: var(--light-gray);
}

.bk-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 10px 12px 14px;
    text-align: center;
}

.bk-cal-day-name {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    padding: 5px 0 8px;
}

.bk-cal-day-cell {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    margin: 1px auto;
    color: var(--dark);
    border: none;
    background: transparent;
}

.bk-cal-day-cell:hover:not(.disabled):not(.empty) {
    background: var(--primary-light);
    color: var(--primary);
}

.bk-cal-day-cell.today {
    border: 2px solid var(--primary);
    font-weight: 700;
}

.bk-cal-day-cell.selected,
.bk-cal-day-cell.range-start,
.bk-cal-day-cell.range-end {
    background: var(--primary) !important;
    color: #fff !important;
    font-weight: 700;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

/* Range fill between start and end */
.bk-cal-day-cell.in-range {
    background: var(--primary-light) !important;
    color: var(--primary) !important;
    border-radius: 0 !important;
    font-weight: 600;
}

/* Extend fill to connect circles */
.bk-cal-day-cell.range-start {
    border-radius: 50% 0 0 50% !important;
}

.bk-cal-day-cell.range-end {
    border-radius: 0 50% 50% 0 !important;
}

.bk-cal-day-cell.range-start.range-end {
    border-radius: 50% !important;
}

/* Row-break fix: if start is last in row or end is first */
.bk-cal-day-cell.in-range:hover {
    background: rgba(255, 56, 92, 0.2) !important;
}

/* Hover preview while choosing end date */
.bk-cal-day-cell.range-hover {
    background: var(--primary-light) !important;
    color: var(--primary) !important;
    border-radius: 0 !important;
}

.bk-cal-day-cell.disabled {
    color: #D1D5DB;
    cursor: default;
    pointer-events: none;
}

.bk-cal-day-cell.empty {
    cursor: default;
    pointer-events: none;
}

/* Range hint label inside calendar */
.bk-cal-hint {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    padding: 4px 12px 10px;
    opacity: 0.85;
}

/* ── date range display pills ── */
.bk-date-range-row {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.bk-date-pill {
    flex: 1;
    background: var(--light-gray);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 9px 12px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    transition: border-color 0.18s, background 0.18s;
    cursor: pointer;
    min-width: 0;
}

.bk-date-pill:hover,
.bk-date-pill.active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.bk-date-pill-label {
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--gray);
}

.bk-date-pill-val {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bk-date-pill-val.placeholder {
    color: #BDBDBD;
    font-weight: 400;
    font-size: 0.72rem;
}

.bk-date-pill-arrow {
    color: var(--gray);
    font-size: 0.75rem;
    flex-shrink: 0;
    padding: 0 2px;
}

.bk-date-range-clear {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
    font-size: 0.95rem;
    padding: 4px;
    display: none;
    flex-shrink: 0;
    transition: color 0.15s;
}

.bk-date-range-clear:hover {
    color: var(--primary);
}

.bk-date-range-clear.show {
    display: flex;
    align-items: center;
}

/* nights badge */
.bk-nights-badge {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 50px;
    padding: 2px 8px;
    margin-top: 6px;
    display: none;
}

.bk-nights-badge.show {
    display: inline-block;
}

.bk-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light-gray);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 18px;
}

.bk-qty-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
}

.bk-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bk-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: border-color 0.2s;
    line-height: 1;
}

.bk-qty-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.bk-qty-count {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    min-width: 20px;
    text-align: center;
}

/* Total */
.bk-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 8px;
    border-top: 1px solid var(--border);
    margin-top: 6px;
}

.bk-total-label {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 500;
}

.bk-total-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
}

/* Book now button */
.btn-book-now {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(255, 56, 92, 0.35);
    text-align: center;
    margin-bottom: 12px;
}

.btn-book-now:hover {
    background: linear-gradient(135deg, var(--primary-dark), #C4134E);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 56, 92, 0.45);
}

.btn-book-now:active {
    transform: translateY(0);
}

/* Trust badges */
.bk-trust {
    padding: 0 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bk-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.4;
}

.bk-trust-item i {
    color: #16A34A;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Wishlist button */
.btn-wishlist-full {
    display: block;
    width: 100%;
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius);
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    margin-bottom: 14px;
}

.btn-wishlist-full:hover {
    background: var(--primary-light);
}

/* ── Lightbox ── */
.act-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.act-lightbox.open {
    display: flex;
}

.act-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.act-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.act-lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    object-fit: contain;
}

.act-lightbox-nav {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}

.act-lb-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.act-lb-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.act-lb-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    margin-top: 10px;
}

/* ── Mobile sticky booking bar ── */
.act-mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    z-index: 1049;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

@media (max-width: 767px) {
    /* Full booking panel stacks below content — hide the fixed mini-bar */
    .act-mobile-booking-bar {
        display: none !important;
    }

    /* Show the booking column inline, below the left column */
    .act-booking-col {
        display: block !important;
        margin-top: 8px;
    }

    /* Booking card should not be sticky on mobile */
    .act-booking-sticky {
        position: static !important;
    }

    /* Give the booking card a bit of breathing room at the bottom */
    body {
        padding-bottom: 24px;
    }
}

.mob-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mob-price-now {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
}

.mob-price-orig {
    font-size: 0.78rem;
    color: var(--gray);
    text-decoration: line-through;
}

.btn-mob-book {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 13px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 56, 92, 0.35);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── page top gap ── */
.act-page-top {
    padding-top: 28px;
}

/* meeting location embed  */
.act-location-text {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.7;
}

/* ══════════ PRICING OPTION CARDS ══════════ */
.bk-pricing-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bk-pricing-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

/* Hidden real radio */
.bk-price-radio {
    display: none;
}

/* Visible card label */
.bk-price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 11px 14px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    background: #fff;
    position: relative;
}

.bk-price-card:hover {
    border-color: rgba(255, 56, 92, 0.45);
    background: var(--primary-light);
}

.bk-price-radio:checked+.bk-price-card {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(255, 56, 92, 0.12);
}

/* Custom circle indicator */
.bk-price-card::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
    margin-right: 2px;
}

.bk-price-radio:checked+.bk-price-card::before {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: inset 0 0 0 3px #fff;
}

.bk-price-info {
    flex: 1;
    min-width: 0;
}

.bk-price-info-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bk-price-info-desc {
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 1px;
}

.bk-price-amount {
    text-align: right;
    flex-shrink: 0;
}

.bk-price-amount-now {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
}

.bk-price-amount-orig {
    font-size: 0.7rem;
    color: var(--gray);
    text-decoration: line-through;
}

.bk-price-radio:checked+.bk-price-card .bk-price-amount-now {
    color: var(--primary);
}

/* ══════════ SCHEDULE SLOT CARDS ══════════ */
.bk-schedule-section {
    margin-top: 14px;
    display: none;
}

.bk-schedule-section.visible {
    display: block;
}

.bk-schedule-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bk-schedule-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Hidden real radio */
.bk-sch-radio {
    display: none;
}

/* Visible schedule card */
.bk-sch-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 11px 14px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    background: #fff;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bk-sch-card:hover {
    border-color: rgba(255, 56, 92, 0.45);
    background: var(--primary-light);
}

.bk-sch-radio:checked+.bk-sch-card {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(255, 56, 92, 0.12);
}

/* Custom circle indicator */
.bk-sch-card::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    flex-shrink: 0;
    margin-top: 2px;
    transition: border-color 0.2s, background 0.2s;
}

.bk-sch-radio:checked+.bk-sch-card::before {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: inset 0 0 0 3px #fff;
}

.bk-sch-body {
    flex: 1;
    min-width: 0;
}

.bk-sch-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.bk-sch-times {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bk-sch-time-block {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--gray);
}

.bk-sch-time-block i {
    font-size: 0.65rem;
}

.bk-sch-time-block.start i {
    color: #16A34A;
}

.bk-sch-time-block.end i {
    color: #DC2626;
}

.bk-sch-spots {
    display: flex;
    gap: 6px;
    margin-top: 5px;
}

.bk-sch-spot-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

.bk-sch-spot-total {
    background: #DCFCE7;
    color: #166534;
}

.bk-sch-spot-booked {
    background: #FEE2E2;
    color: #991B1B;
}

.bk-sch-spot-avail {
    background: #F0FDF4;
    color: #15803D;
    border: 1px solid #BBF7D0;
}

.bk-sch-soldout {
    background: #FEE2E2;
    color: #991B1B;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

/* Disable sold-out */
.bk-sch-radio:disabled+.bk-sch-card {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ══════════ CUSTOM ACCORDION ══════════ */
.act-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.act-acc-item {
    border-bottom: 1px solid var(--border);
}

.act-acc-item:first-child {
    border-top: 1px solid var(--border);
}

.act-acc-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 2px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    transition: color 0.2s;
}

.act-acc-btn:hover {
    color: var(--primary);
}

.act-acc-btn.open {
    color: var(--primary);
}

.act-acc-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    color: var(--gray);
    transition: background 0.2s, border-color 0.2s, transform 0.25s;
}

.act-acc-btn.open .act-acc-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: rotate(180deg);
}

.act-acc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s ease;
    padding: 0 2px;
}

.act-acc-body.open {
    max-height: 600px;
    padding-bottom: 14px;
}

.act-acc-body p {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Itinerary step */
.act-itin-body {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.act-itin-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .act-section {
        padding: 20px 16px;
    }

    .act-gallery {
        grid-template-rows: 220px 160px;
    }

    .bk-sch-times {
        flex-direction: column;
        gap: 4px;
    }
}