/* === HOLIDAYTOUR MAIN STYLES === */
/* Built by MiliienkoStudio */

:root {
    --color-primary: #1B4332;
    --color-primary-dark: #0a1f17;
    --color-accent: #52B788;
    --color-accent-hover: #40916C;
    --color-gold: #c9a84c;
    --color-gold-light: #e2cc7a;
    --color-yellow: #F4D35E;
    --color-orange: #E76F51;
    --color-text: #1A1A1A;
    --color-text-light: #FFFFFF;
    --color-muted: #6B7280;
    --color-bg: #f5f5f0;
    --color-white: #FFFFFF;
    --color-card-bg: #FFFFFF;
    --color-border: #e8e5df;
    --color-cream: #faf8f4;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
    --shadow-gold: 0 8px 30px rgba(201,168,76,.2);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all .4s cubic-bezier(.4,0,.2,1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --header-height: 76px;
    --promo-height: 40px;
    --glass: rgba(255,255,255,.06);
    --glass-border: rgba(255,255,255,.12);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body) !important;
    color: var(--color-text) !important;
    background: var(--color-bg) !important;
    line-height: 1.6 !important;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}
/* Hero animations */
.ht-hero__subtitle { animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .3s both; }
.ht-hero__title { animation: heroTitleIn 1.4s cubic-bezier(.16,1,.3,1) .1s both; }
.ht-hero__desc { animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .6s both; }
.ht-hero__search { animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .9s both; }
.ht-hero__scroll { animation: bounceDown 2s infinite 2s; }

@keyframes heroTitleIn {
    0% { opacity: 0; transform: translateY(50px) scale(.95); filter: blur(8px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes heroFadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Logo pulse */
.ht-header__logo img { animation: logoPulse 1.5s ease .3s both; }
@keyframes logoPulse {
    0% { opacity: 0; transform: scale(.7) rotate(-10deg); }
    60% { transform: scale(1.1) rotate(2deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* Chat float */
.ht-chat-btn { animation: floatBtn 3s ease-in-out infinite; }
@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scroll animations - content ALWAYS visible, animation is bonus */
.ht-reveal { transition: transform .8s cubic-bezier(.16,1,.3,1), opacity .8s ease; }
.ht-reveal.ht-in { animation: revealUp .8s cubic-bezier(.16,1,.3,1) both; }
@keyframes revealUp { from { opacity: .3; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes revealScale { from { opacity: .5; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
@keyframes revealLeft { from { opacity: .3; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes revealRight { from { opacity: .3; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.ht-reveal-scale.ht-in { animation: revealScale .7s cubic-bezier(.16,1,.3,1) both; }
.ht-reveal-left.ht-in { animation: revealLeft .8s cubic-bezier(.16,1,.3,1) both; }
.ht-reveal-right.ht-in { animation: revealRight .8s cubic-bezier(.16,1,.3,1) both; }

/* Astra overrides */
#page, .ast-container, .site-content, #content, #primary, .entry-content { max-width: none !important; padding: 0 !important; margin: 0 !important; }
.ast-separate-container .ast-article-single, .ast-separate-container .ast-article-post { padding: 0 !important; background: none !important; }
header.site-header, footer.site-footer, #ast-scroll-top { display: none !important; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: var(--color-primary); color: var(--color-text-light); }
.section-gray { background: var(--color-bg); }

/* === TYPOGRAPHY === */
.heading-xl {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
}
.heading-lg {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}
.heading-md {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
}
.heading-sm {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: .95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    transition: left .6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(82,183,136,.35);
}
.btn-outline {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}
.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}
.btn-yellow {
    background: var(--color-yellow);
    color: var(--color-primary-dark);
}
.btn-yellow:hover {
    background: #e6c44e;
    transform: translateY(-2px);
}
.btn-sm {
    padding: 10px 24px;
    font-size: .85rem;
}

/* === HEADER === */
.ht-header {
    position: fixed;
    top: var(--promo-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 32px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    background: transparent;
}
.ht-header.scrolled {
    top: var(--promo-height);
    background: rgba(15, 42, 29, .92);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.ht-header__logo img { height: 55px; }
.ht-header__logo { display: flex; align-items: center; gap: 10px; }
.ht-header__logo-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.ht-header__logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
}
.ht-header__logo-slogan {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-yellow);
    letter-spacing: .5px;
}

.ht-header__nav { display: flex; align-items: center; gap: 32px; }
@media (max-width: 1024px) {
    .ht-header__nav { display: none; }
}
.ht-header__nav a {
    color: var(--color-white);
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.ht-header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}
.ht-header__nav a:hover::after { width: 100%; }

.ht-header__actions { display: flex; align-items: center; gap: 12px; }
.ht-header__icon-btn {
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.15);
}
.ht-header__icon-btn:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.3);
}
.ht-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    white-space: nowrap;
}
.ht-header__cta:hover {
    background: var(--color-yellow);
    color: var(--color-primary-dark);
    transform: translateY(-1px);
}

/* Hamburger */
.ht-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    z-index: 1001;
}
@media (min-width: 1025px) {
    .ht-hamburger { display: none; }
}

/* === INNER PAGES HEADER === */
.ht-header--inner {
    background: var(--color-white);
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    border-bottom: 1px solid var(--color-border);
}
.ht-header--inner .ht-header__logo-text { color: var(--color-primary); }
.ht-header--inner .ht-header__logo-slogan { color: var(--color-accent); }
.ht-header--inner .ht-header__nav a { color: var(--color-text); }
.ht-header--inner .ht-header__nav a:hover { color: var(--color-accent); }
.ht-header--inner .ht-header__nav a::after { background: var(--color-accent); }
.ht-header--inner .ht-header__icon-btn { color: var(--color-text); border-color: var(--color-border); }
.ht-header--inner .ht-header__icon-btn:hover { background: var(--color-bg); }
.ht-header--inner .ht-hamburger span { background: var(--color-primary); }
.ht-header--inner.scrolled {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
}
.ht-hamburger span {
    display: block;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}
.ht-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.ht-hamburger.active span:nth-child(2) { opacity: 0; }
.ht-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === PROMO BANNER === */
.ht-promo {
    color: var(--color-white);
    text-align: center;
    padding: 0;
    font-size: .85rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    height: var(--promo-height);
    overflow: hidden;
    animation: promoColorShift 12s ease infinite;
}
@keyframes promoColorShift {
    0%, 100% { background: #4d6c69; }
    25% { background: #1B4332; }
    50% { background: #2d5a47; }
    75% { background: #5a4d3a; }
}
.ht-promo__slider { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; }
.ht-promo__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all .6s ease;
    padding: 0 20px;
}
.ht-promo__slide.active {
    opacity: 1;
    transform: translateY(0);
}
.ht-promo__slide strong { color: var(--color-gold-light); }
.ht-promo a {
    color: var(--color-gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 4px;
    font-weight: 600;
}

/* === HERO SECTION === */
.ht-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ht-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ht-hero__bg video,
.ht-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ht-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(10,31,23,.55) 60%, rgba(10,31,23,.75) 100%);
    z-index: 1;
}
.ht-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}
.ht-hero__subtitle {
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--color-gold);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.ht-hero__subtitle::before,
.ht-hero__subtitle::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    opacity: .5;
}
.ht-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 600;
    font-style: italic;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 28px;
    text-shadow: 0 4px 40px rgba(0,0,0,.3);
}
.ht-hero__title span {
    color: var(--color-gold-light);
}
.ht-hero__desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,.7);
    margin-bottom: 44px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    letter-spacing: .3px;
}

/* Hero Search Form */
.ht-hero__search {
    background: rgba(15, 42, 29, .3);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(82, 183, 136, .25);
    border-radius: 60px;
    padding: 8px 8px 8px 12px;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.ht-hero__search-field {
    flex: 1;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
}
.ht-hero__search-field .field-icon {
    color: var(--color-accent);
    flex-shrink: 0;
    opacity: .9;
    transition: transform .3s ease;
}
.ht-hero__search-field:hover .field-icon { transform: scale(1.15); }
.ht-hero__search-field .field-icon svg { stroke: var(--color-gold); }

/* Custom select trigger */
.ht-custom-select { cursor: pointer; user-select: none; }
.ht-custom-select__label {
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    font-weight: 500;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ht-custom-select__label.chosen { color: #fff; font-weight: 600; }
/* Hero search selects — premium minimal */
.ht-hero__search-field { position: relative; }
.ht-hero__search-field select {
    background: transparent;
    border: none;
    color: rgba(255,255,255,.9);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(201,168,76,0.7)' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}
/* Custom dropdown overlay */
.ht-hero__search-field .ht-select-list {
    display: none;
    position: absolute;
    bottom: calc(100% + 16px);
    left: -12px;
    min-width: 240px;
    background: rgba(10, 25, 18, .92);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 16px;
    padding: 10px;
    z-index: 200;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    max-height: 320px;
    overflow-y: auto;
}
.ht-hero__search-field .ht-select-list.open { display: block; animation: dropIn .25s ease both; }
@keyframes dropIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.ht-select-list__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255,255,255,.8);
    font-size: .9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s ease;
}
.ht-select-list__item:hover {
    background: rgba(82,183,136,.12);
    color: #fff;
    padding-left: 20px;
}
.ht-select-list__item.selected {
    background: rgba(201,168,76,.12);
    color: var(--color-gold-light);
    font-weight: 600;
}
.ht-select-list__flag { font-size: 1.3rem; line-height: 1; }
.ht-select-list::-webkit-scrollbar { width: 4px; }
.ht-select-list::-webkit-scrollbar-track { background: transparent; }
.ht-select-list::-webkit-scrollbar-thumb { background: rgba(201,168,76,.25); border-radius: 4px; }
.ht-hero__search-btn {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: .9rem;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.ht-hero__search-btn:hover {
    background: var(--color-yellow);
    color: var(--color-primary-dark);
    transform: scale(1.03);
}
.ht-hero__search-divider {
    width: 1px;
    height: 28px;
    background: rgba(82, 183, 136, .3);
    flex-shrink: 0;
}

/* Hero text animation */
.ht-hero__title {
    animation: heroTitleIn 1.2s cubic-bezier(.16,1,.3,1) both;
}
.ht-hero__subtitle {
    animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .2s both;
}
.ht-hero__desc {
    animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .5s both;
}
.ht-hero__search {
    animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .7s both;
}

@keyframes heroTitleIn {
    0% { opacity: 0; transform: translateY(40px) scale(.96); letter-spacing: 8px; }
    100% { opacity: 1; transform: translateY(0) scale(1); letter-spacing: 0; }
}
@keyframes heroFadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.ht-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounceDown 2s infinite;
    color: var(--color-white);
    opacity: .7;
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}

/* === DESTINATIONS SECTION === */
.ht-destinations { padding: 80px 0; }
.ht-destinations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.ht-destination-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: var(--transition);
}
.ht-destination-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.2); }
.ht-destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.ht-destination-card:hover img { transform: scale(1.1); }
.ht-destination-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.ht-destination-card__info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: var(--color-white);
}
.ht-destination-card__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
}
.ht-destination-card__count { font-size: .8rem; opacity: .7; letter-spacing: 1px; text-transform: uppercase; }

/* === TOUR TYPES SECTION === */
.ht-types { padding: 100px 0; background: var(--color-cream); }
.ht-types__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.ht-type-card {
    text-align: center;
    padding: 48px 24px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}
.ht-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    transform: scaleX(0);
    transition: transform .4s ease;
}
.ht-type-card:hover::before { transform: scaleX(1); }
.ht-type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.ht-type-card__icon { margin-bottom: 20px; transition: var(--transition); color: var(--color-primary); }
.ht-type-card__icon svg { transition: transform .5s cubic-bezier(.16,1,.3,1), stroke .3s; }
.ht-type-card:hover .ht-type-card__icon svg { transform: scale(1.2) rotate(-5deg); stroke: var(--color-accent); }
.ht-type-card__title { font-family: var(--font-heading); font-weight: 600; font-size: 1.3rem; margin-bottom: 10px; font-style: italic; }
.ht-type-card__desc { font-size: .9rem; color: var(--color-muted); transition: var(--transition); line-height: 1.6; }

/* === FEATURED TOURS === */
.ht-featured { padding: 80px 0; }
.ht-featured__tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.ht-featured__tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--color-bg);
    color: var(--color-muted);
    cursor: pointer;
    transition: var(--transition);
}
.ht-featured__tab.active,
.ht-featured__tab:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* === TOUR CARD === */
.ht-tours__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.ht-tour-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}
.ht-tour-card__body { flex: 1; display: flex; flex-direction: column; }
.ht-tour-card__footer { margin-top: auto; }
.ht-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}
.ht-tour-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.ht-tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.ht-tour-card:hover .ht-tour-card__image img { transform: scale(1.08); }
.ht-tour-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}
.ht-tour-card__badge--hot { background: var(--color-orange); color: var(--color-white); }
.ht-tour-card__badge--sale { background: var(--color-yellow); color: var(--color-primary-dark); }
.ht-tour-card__badge--new { background: var(--color-accent); color: var(--color-white); }

.ht-tour-card__wishlist { display: none; }

.ht-tour-card__body { padding: 20px; }
.ht-tour-card__country {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 6px;
}
.ht-tour-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ht-tour-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: .85rem;
    color: var(--color-muted);
}
.ht-tour-card__meta-item { display: flex; align-items: center; gap: 4px; }
.ht-tour-card__stars { color: var(--color-yellow); }

.ht-tour-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}
.ht-tour-card__price-old {
    font-size: .85rem;
    color: var(--color-muted);
    text-decoration: line-through;
}
.ht-tour-card__price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
}
.ht-tour-card__price-label { font-size: .75rem; color: var(--color-muted); font-weight: 400; }
.ht-tour-card__cta {
    padding: 10px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.ht-tour-card__cta:hover { background: var(--color-accent); }

/* === WHY US === */
.ht-why { padding: 100px 0; background: var(--color-white); }
.ht-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.ht-why__item {
    text-align: center;
    padding: 32px 16px;
}
.ht-why__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(82,183,136,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-accent);
    transition: var(--transition);
    color: var(--color-accent);
}
.ht-why__item:hover .ht-why__icon { background: var(--color-accent); color: var(--color-white); transform: scale(1.1); }
.ht-why__item:hover .ht-why__icon svg { stroke: #fff; }
.ht-why__title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.ht-why__desc { font-size: .9rem; color: var(--color-muted); line-height: 1.6; }

/* Counter animation */
.ht-counter { font-size: 2.5rem; font-weight: 900; color: var(--color-primary); font-family: var(--font-heading); }
.ht-counter-suffix { font-size: 1.5rem; }

/* === TRUST SECTION === */
.ht-trust { padding: 80px 0; }
.ht-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.ht-trust__card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}
.ht-trust__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    border-radius: 2px;
    transition: width .4s ease;
}
.ht-trust__card:hover::after { width: 80px; }
.ht-trust__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.ht-trust__card-icon { font-size: 2.5rem; margin-bottom: 20px; }
.ht-trust__card-title { font-family: var(--font-heading); font-weight: 600; font-size: 1.3rem; margin-bottom: 12px; font-style: italic; }
.ht-trust__card-desc { color: var(--color-muted); font-size: .9rem; line-height: 1.7; }

/* === TESTIMONIALS === */
.ht-testimonials { padding: 100px 0; background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%); color: var(--color-white); }
.ht-testimonial__card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: var(--radius-lg);
    padding: 44px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.ht-testimonial__card:hover {
    border-color: rgba(201,168,76,.35);
    background: rgba(255,255,255,.07);
}
.ht-testimonial__quote {
    font-size: 3rem;
    color: var(--color-gold);
    opacity: .4;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}
.ht-testimonial__stars { color: var(--color-gold); font-size: 1rem; margin-bottom: 20px; letter-spacing: 3px; }
.ht-testimonial__text { font-family: var(--font-heading); font-size: 1.2rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; opacity: .9; }
.ht-testimonial__author { font-weight: 700; font-size: .95rem; letter-spacing: 1px; }
.ht-testimonial__location { font-size: .8rem; opacity: .5; margin-top: 4px; }

/* === NEWSLETTER === */
.ht-newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1a3a2a 50%, var(--color-primary) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.ht-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
    pointer-events: none;
}
.ht-newsletter__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.ht-newsletter__text { flex: 1; }
.ht-newsletter__form {
    flex: 1;
    display: flex;
    gap: 12px;
}
.ht-newsletter__input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    color: var(--color-white);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}
.ht-newsletter__input:focus { border-color: var(--color-accent); }
.ht-newsletter__input::placeholder { color: rgba(255,255,255,.5); }
.ht-newsletter__btn {
    padding: 16px 36px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.ht-newsletter__btn:hover { background: var(--color-yellow); color: var(--color-primary-dark); }

/* SVG traveler animation */
.ht-newsletter__art {
    position: absolute;
    right: -50px;
    bottom: -20px;
    opacity: .08;
    font-size: 300px;
}

/* === BLOG PREVIEW === */
.ht-blog { padding: 80px 0; }
.ht-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.ht-blog__card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.ht-blog__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ht-blog__card-image { height: 200px; overflow: hidden; }
.ht-blog__card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ht-blog__card:hover .ht-blog__card-image img { transform: scale(1.06); }
.ht-blog__card-body { padding: 24px; }
.ht-blog__card-tag {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 10px;
}
.ht-blog__card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}
.ht-blog__card-excerpt { font-size: .9rem; color: var(--color-muted); line-height: 1.6; }

/* === FOOTER === */
.ht-footer {
    background: linear-gradient(180deg, var(--color-primary-dark) 0%, #060f0a 100%);
    color: rgba(255,255,255,.8);
    padding: 80px 0 0;
    border-top: 1px solid rgba(201,168,76,.15);
}
.ht-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    align-items: start;
}
.ht-footer__logo-link { display: flex; align-items: center; gap: 14px; margin-bottom: 4px; }
.ht-footer__logo-img { height: 60px; width: auto; }
.ht-footer__logo-name { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; font-style: italic; color: var(--color-white); }
.ht-footer__brand-desc { font-size: .9rem; line-height: 1.7; margin: 16px 0; opacity: .7; }
.ht-footer__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-gold-light);
    margin-bottom: 20px;
    letter-spacing: .5px;
}
.ht-footer__links { padding: 0; margin: 0; }
.ht-footer__links li { margin-bottom: 12px; list-style: none; }
.ht-footer__links a { font-size: .9rem; opacity: .7; transition: var(--transition); display: block; text-align: left; }
.ht-footer__links a:hover { opacity: 1; color: var(--color-accent); padding-left: 4px; }

.ht-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: .9rem;
}
.ht-footer__contact-item i { color: var(--color-accent); margin-top: 3px; }

.ht-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.ht-footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,.7);
}
.ht-footer__social a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}
.ht-footer__social a svg { transition: var(--transition); }

.ht-footer__bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .85rem;
    opacity: .5;
}
.ht-footer__dev a { color: var(--color-accent); opacity: 1; }

/* === MOBILE MENU === */
.ht-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-primary-dark);
    z-index: 9999;
    padding: 80px 32px 32px;
    overflow-y: auto;
    transition: left .4s cubic-bezier(.4,0,.2,1);
}
.ht-mobile-menu.open { left: 0; }
.ht-mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}
.ht-mobile-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.ht-mobile-menu__overlay.open { opacity: 1; pointer-events: all; }

.ht-mobile-menu__nav { margin-bottom: 32px; }
.ht-mobile-menu__item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.ht-mobile-menu__item a {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ht-mobile-menu__item a:hover { color: var(--color-accent); }
.ht-mobile-menu__submenu { display: none; padding: 8px 0 0 16px; }
.ht-mobile-menu__submenu.open { display: block; }
.ht-mobile-menu__submenu a {
    display: block;
    padding: 8px 0;
    font-size: .9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: .7;
}
.ht-mobile-menu__help {
    background: rgba(255,255,255,.05);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
}
.ht-mobile-menu__help-title { font-weight: 700; color: var(--color-white); margin-bottom: 16px; }
.ht-mobile-menu__help-btns { display: flex; flex-direction: column; gap: 10px; }

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}
.section-header .label { margin-bottom: 14px; display: inline-flex; align-items: center; gap: 12px; color: var(--color-gold); }
.section-header .label::before,
.section-header .label::after { content: ''; width: 30px; height: 1px; background: var(--color-gold); opacity: .4; }
.section-header .heading-lg { margin-bottom: 16px; }
.section-header p { color: var(--color-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }

/* === ACCORDION === */
.ht-accordion__item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.ht-accordion__header {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    background: var(--color-white);
    transition: var(--transition);
}
.ht-accordion__header:hover { background: var(--color-bg); }
.ht-accordion__icon { transition: transform .3s; }
.ht-accordion__item.open .ht-accordion__icon { transform: rotate(180deg); }
.ht-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.ht-accordion__body-inner { padding: 0 24px 20px; color: var(--color-muted); line-height: 1.7; }

/* === PAGE TOUR DETAIL === */
.ht-tour-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.ht-tour-hero__bg {
    position: absolute;
    inset: 0;
}
.ht-tour-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ht-tour-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
}
.ht-tour-hero__content {
    position: relative;
    z-index: 2;
    padding: 60px 24px;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}
.ht-tour-hero__tags {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.ht-tour-hero__tag {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--color-white);
}

/* === FILTERS SIDEBAR === */
.ht-filters {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--header-height) + 20px);
}
.ht-filter-group { margin-bottom: 24px; }
.ht-filter-group__title {
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.ht-filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
    font-size: .9rem;
}
.ht-filter-check input[type="checkbox"] {
    accent-color: var(--color-accent);
    width: 18px;
    height: 18px;
}

/* Range slider */
.ht-range-slider { margin-top: 10px; }
.ht-range-slider input[type="range"] {
    width: 100%;
    accent-color: var(--color-accent);
}
.ht-range-values { display: flex; justify-content: space-between; font-size: .85rem; color: var(--color-muted); margin-top: 6px; }

/* === CATALOG LAYOUT === */
.ht-catalog {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    padding: 120px 0 80px;
}
.ht-catalog__results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.ht-catalog__count { font-weight: 600; color: var(--color-muted); }
.ht-catalog__sort select {
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: .9rem;
    outline: none;
}

/* === BOOKING SIDEBAR === */
.ht-booking {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: calc(var(--header-height) + 20px);
    border: 2px solid var(--color-accent);
}
.ht-booking__price-label { font-size: .85rem; color: var(--color-muted); }
.ht-booking__price { font-size: 2rem; font-weight: 900; color: var(--color-primary); }
.ht-booking__price-old { text-decoration: line-through; color: var(--color-muted); font-size: 1rem; }
.ht-booking__field { margin: 16px 0; }
.ht-booking__field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; }
.ht-booking__field select,
.ht-booking__field input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: .95rem;
    outline: none;
}
.ht-booking__btn {
    width: 100%;
    padding: 16px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 16px;
}
.ht-booking__btn:hover { background: var(--color-accent-hover); }

/* === CHAT BUTTON === */
.ht-chat-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(0,0,0,.25);
    z-index: 999;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    overflow: visible;
}
.ht-chat-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(0,0,0,.3);
}
.ht-chat-btn img { border-radius: 50%; object-fit: cover; }
.ht-chat-btn::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #4ade80;
    border-radius: 50%;
    border: 2.5px solid var(--color-white);
    z-index: 2;
}

/* AI Chat Widget */
.ht-ai-chat {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 380px;
    max-height: 520px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 50px rgba(0,0,0,.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(.95);
    opacity: 0;
    pointer-events: none;
    transition: all .3s cubic-bezier(.4,0,.2,1);
}
.ht-ai-chat.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}
.ht-ai-chat__header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-hover) 100%);
    color: var(--color-white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ht-ai-chat__header-info { display: flex; align-items: center; gap: 12px; }
.ht-ai-chat__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ht-ai-chat__name { font-weight: 700; font-size: .95rem; }
.ht-ai-chat__status { font-size: .75rem; opacity: .7; display: flex; align-items: center; gap: 4px; }
.ht-ai-chat__status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
}
.ht-ai-chat__close {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    opacity: .7;
    transition: var(--transition);
}
.ht-ai-chat__close:hover { opacity: 1; }
.ht-ai-chat__messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    min-height: 300px;
    background: var(--color-bg);
}
.ht-ai-chat__msg { margin-bottom: 16px; max-width: 85%; }
.ht-ai-chat__msg--bot { margin-right: auto; }
.ht-ai-chat__msg--user { margin-left: auto; }
.ht-ai-chat__msg p {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: .9rem;
    line-height: 1.5;
}
.ht-ai-chat__msg--bot p {
    background: var(--color-white);
    color: var(--color-text);
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.ht-ai-chat__msg--user p {
    background: var(--color-accent);
    color: var(--color-white);
    border-bottom-right-radius: 4px;
}
.ht-ai-chat__input-wrap {
    display: flex;
    padding: 12px 16px;
    gap: 8px;
    border-top: 1px solid var(--color-border);
    background: var(--color-white);
}
.ht-ai-chat__input {
    flex: 1;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: .9rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}
.ht-ai-chat__input:focus { border-color: var(--color-accent); }
.ht-ai-chat__send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.ht-ai-chat__send:hover { background: var(--color-accent-hover); }

@media (max-width: 480px) {
    .ht-ai-chat { width: calc(100% - 32px); right: 16px; left: 16px; bottom: 90px; }
}

/* === INNER PAGE STYLES === */
.ht-inner-page { padding-top: calc(var(--promo-height) + var(--header-height)); min-height: 60vh; }

/* Page Hero with photo */
.ht-page-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ht-page-hero__bg { position: absolute; inset: 0; }
.ht-page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.ht-page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,31,23,.3) 0%, rgba(10,31,23,.75) 100%); }
.ht-page-hero__content { position: relative; z-index: 2; text-align: center; width: 100%; }
.ht-page-hero__title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; font-style: italic; color: var(--color-white); margin-bottom: 10px; }
.ht-page-hero__desc { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 500px; margin: 0 auto; }

.ht-inner-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-hover) 100%);
    padding: 24px 0;
}
.ht-inner-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.ht-inner-hero__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--color-white);
    margin: 0;
}
.ht-inner-content {
    padding: 60px 0 80px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
}
.ht-inner-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    margin: 32px 0 16px;
    color: var(--color-primary);
}
.ht-inner-content p { margin-bottom: 16px; }

/* Tours Page Strip */
.ht-tours-strip {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-hover) 40%, var(--color-accent) 100%);
    padding: 28px 0;
    display: flex;
    align-items: center;
}
.ht-tours-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.ht-tours-strip__left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ht-tours-strip__icon {
    font-size: 1.8rem;
}
.ht-tours-strip__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    font-style: italic;
    color: var(--color-white);
}
.ht-tours-strip__subtitle {
    font-size: .85rem;
    color: rgba(255,255,255,.7);
}
.ht-tours-strip__count {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--color-white);
    font-size: .85rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.2);
}

/* Catalog layout */
.ht-catalog { padding: 50px 0 80px; }
.ht-filters {
    border: 1px solid var(--color-border);
}
.ht-filters__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}
.ht-catalog__sort select {
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: .9rem;
    font-family: var(--font-body);
    outline: none;
    background: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
}
.ht-catalog__sort select:focus { border-color: var(--color-accent); }
.ht-catalog__count strong { color: var(--color-primary); }

/* === LOADING === */
.ht-loading {
    display: flex;
    justify-content: center;
    padding: 60px;
}
.ht-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === UTILITIES === */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-white { color: var(--color-white); }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* === SINGLE TOUR PAGE === */
.ht-tour-hero {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.ht-tour-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.3) 100%);
}
.ht-tour-hero .container { position: relative; z-index: 2; padding-bottom: 48px; padding-top: 48px; width: 100%; }
.ht-tour-hero__content { color: var(--color-white); }
.ht-breadcrumb--light a, .ht-breadcrumb--light span { color: rgba(255,255,255,.7); font-size: .85rem; }
.ht-breadcrumb--light a:hover { color: var(--color-white); }
.ht-tour-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 16px 0 20px;
    line-height: 1.2;
}
.ht-tour-hero__meta { display: flex; flex-wrap: wrap; gap: 12px; }
.ht-tour-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.2);
}

/* Tour Layout */
.ht-tour-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding: 40px 0 80px;
    align-items: start;
}

/* Tour Section */
.ht-tour-section {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}
.ht-tour-section__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
}

/* Hotel Bar */
.ht-tour-hotel-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.ht-tour-hotel-bar__name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px;
}
.ht-tour-hotel-bar__stars { color: var(--color-yellow); font-size: 1.1rem; letter-spacing: 2px; }

/* Description */
.ht-tour-description { font-size: 1.05rem; line-height: 1.8; color: var(--color-text); }
.ht-tour-description p { margin-bottom: 16px; }

/* Highlights */
.ht-tour-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}
.ht-tour-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(82,183,136,.06);
    border-radius: 12px;
    font-weight: 500;
    font-size: .95rem;
}
.ht-tour-highlight__icon { font-size: 1.1rem; flex-shrink: 0; }

/* Included Grid */
.ht-tour-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.ht-tour-included__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ht-tour-included__title--yes { color: var(--color-accent); }
.ht-tour-included__title--no { color: var(--color-orange); }
.ht-tour-included__list { list-style: none; padding: 0; margin: 0; }
.ht-tour-included__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: .95rem;
}
.ht-tour-included__item:last-child { border-bottom: none; }
.ht-tour-included__item--yes i { color: var(--color-accent); }
.ht-tour-included__item--no i { color: var(--color-orange); }

/* Video */
.ht-tour-video {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
}
.ht-tour-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sidebar Price Box */
.ht-tour-sidebar { position: sticky; top: calc(var(--promo-height) + var(--header-height) + 20px); }
.ht-tour-price-box {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    text-align: center;
}
.ht-tour-price-box__discount {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.ht-tour-price-box__old {
    font-size: 1rem;
    color: var(--color-muted);
    text-decoration: line-through;
}
.ht-tour-price-box__price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 4px 0;
}
.ht-tour-price-box__price span { font-size: 1.2rem; font-weight: 600; }
.ht-tour-price-box__per {
    font-size: .85rem;
    color: var(--color-muted);
    margin-bottom: 24px;
}
.ht-tour-price-box__details {
    text-align: left;
    margin-bottom: 24px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}
.ht-tour-price-box__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.04);
    font-size: .9rem;
}
.ht-tour-price-box__row span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
}
.ht-tour-price-box__row strong { color: var(--color-text); }
.ht-tour-price-box__btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}
.ht-tour-price-box__btn--outline {
    border-color: var(--color-border);
    color: var(--color-text);
}
.ht-tour-price-box__btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.ht-tour-price-box__note {
    font-size: .8rem;
    color: var(--color-muted);
    margin-top: 16px;
}

/* Tour card equal heights */
.ht-tours__grid .ht-tour-card {
    display: flex;
    flex-direction: column;
}
.ht-tour-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ht-tour-card__footer { margin-top: auto; }

/* Single tour responsive */
@media (max-width: 1024px) {
    .ht-tour-layout { grid-template-columns: 1fr; }
    .ht-tour-sidebar { position: static; }
}
@media (max-width: 768px) {
    .ht-tour-hero { min-height: 320px; }
    .ht-tour-section { padding: 24px 18px; }
    .ht-tour-included-grid { grid-template-columns: 1fr; gap: 24px; }
    .ht-tour-highlights { grid-template-columns: 1fr; }
    .ht-tour-price-box { padding: 24px 18px; }
    .ht-tour-price-box__price { font-size: 2rem; }
}
