/* =============================================
   HARGITA TURIZMUS - Premium Dark Theme
   Astra + Elementor Compatible
   ============================================= */

/* === Variables === */
:root {
    /* Colors */
    --bg-primary: #0a0f0d;
    --bg-secondary: #111a16;
    --bg-card: rgba(17, 26, 22, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-hover: rgba(255, 255, 255, 0.1);

    --emerald: #2ecc71;
    --emerald-dark: #1a9c54;
    --gold: #d4a843;
    --gold-light: #f0d078;
    --gold-dark: #b8922e;

    --text-primary: #f0f0f0;
    --text-secondary: rgba(240, 240, 240, 0.7);
    --text-muted: rgba(240, 240, 240, 0.45);

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(46, 204, 113, 0.3);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Effects */
    --glass-blur: blur(20px);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(46, 204, 113, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === Astra / Elementor Canvas Override === */
body.elementor-template-canvas {
    font-family: var(--font-primary) !important;
    background: var(--bg-primary) !important;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

body.elementor-template-canvas *,
body.elementor-template-canvas *::before,
body.elementor-template-canvas *::after {
    box-sizing: border-box;
}

/* Remove Elementor default section/column padding for full control */
body.elementor-template-canvas .elementor-section.elementor-section-stretched {
    max-width: 100% !important;
}

body.elementor-template-canvas .elementor-widget-html {
    width: 100%;
}

body.elementor-template-canvas img {
    max-width: 100%;
    display: block;
}

body.elementor-template-canvas a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.ht-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--emerald), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === NAVBAR === */
.ht-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 16px 0;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.ht-navbar.scrolled {
    background: rgba(10, 15, 13, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.ht-nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ht-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    text-decoration: none;
}

.ht-nav-logo i {
    color: var(--emerald);
    font-size: 1.6rem;
}

.ht-nav-logo strong {
    font-weight: 700;
    color: var(--gold);
}

.ht-nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.ht-nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    text-decoration: none;
}

.ht-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
    transition: var(--transition);
    border-radius: 2px;
}

.ht-nav-links a:hover {
    color: var(--text-primary);
}

.ht-nav-links a:hover::after {
    width: 100%;
}

.ht-nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ht-lang-switcher {
    display: flex;
    gap: 4px;
    background: var(--bg-glass);
    border-radius: var(--radius-full);
    padding: 3px;
    border: 1px solid var(--border);
}

.ht-lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.ht-lang-btn:hover {
    color: var(--text-primary);
    background: var(--bg-glass-hover);
}

.ht-lang-btn.active {
    background: var(--emerald-dark);
    color: white;
}

.ht-lang-flag {
    font-size: 0.9rem;
}

.ht-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.ht-nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* === HERO === */
.ht-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ht-hero-bg {
    position: absolute;
    inset: 0;
}

.ht-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: htHeroZoom 25s ease-in-out infinite alternate;
}

@keyframes htHeroZoom {
    0% {
        transform: scale(1.05) translateY(0);
    }

    100% {
        transform: scale(1.12) translateY(-10px);
    }
}

.ht-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 15, 13, 0.4) 0%,
            rgba(10, 15, 13, 0.6) 40%,
            rgba(10, 15, 13, 0.85) 80%,
            rgba(10, 15, 13, 1) 100%);
}

.ht-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ht-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--emerald);
    border-radius: 50%;
    opacity: 0;
    animation: htParticleFloat 8s infinite;
}

@keyframes htParticleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    20% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

.ht-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.ht-hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    animation: htFadeInUp 0.8s 0.3s forwards;
    font-family: var(--font-primary);
}

.ht-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    opacity: 0;
    animation: htFadeInUp 0.8s 0.5s forwards;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.ht-hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
    opacity: 0;
    animation: htFadeInUp 0.8s 0.7s forwards;
    font-family: var(--font-primary);
}

.ht-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    opacity: 0;
    animation: htFadeInUp 0.8s 0.9s forwards;
}

/* === BUTTONS === */
.ht-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.ht-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition);
}

.ht-btn-primary {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
}

.ht-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(46, 204, 113, 0.4);
    color: var(--bg-primary);
}

.ht-btn-primary::before {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.ht-btn-primary:hover::before {
    opacity: 1;
}

.ht-btn-secondary {
    background: var(--bg-glass);
    color: var(--gold);
    border: 1px solid var(--gold-dark);
    backdrop-filter: var(--glass-blur);
}

.ht-btn-secondary:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.3);
}

.ht-btn-full {
    width: 100%;
    justify-content: center;
}

/* === HERO STATS === */
.ht-hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    opacity: 0;
    animation: htFadeInUp 0.8s 1.1s forwards;
}

.ht-stat {
    text-align: center;
}

.ht-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald);
    font-family: var(--font-primary);
}

.ht-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
}

/* === SCROLL INDICATOR === */
.ht-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-muted);
    font-size: 1.4rem;
    animation: htBounce 2s infinite;
    text-decoration: none;
}

@keyframes htBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* === ANIMATIONS === */
@keyframes htFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes htFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* === SECTION COMMON === */
.ht-section {
    padding: var(--section-padding);
    font-family: var(--font-primary);
}

.ht-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ht-section-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--emerald);
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    font-family: var(--font-primary);
}

.ht-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--text-primary);
}

.ht-section-title.left-align {
    text-align: left;
}

.ht-section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === FEATURES === */
.ht-features {
    background: var(--bg-secondary);
}

.ht-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ht-feature-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ht-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.ht-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.ht-feature-card:hover::before {
    opacity: 1;
}

.ht-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(212, 168, 67, 0.1));
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--emerald);
}

.ht-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.ht-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.ht-feature-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.ht-feature-link:hover {
    color: var(--gold);
    gap: 10px;
}

/* === DISCOVER / HERITAGE === */
.ht-discover-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ht-discover-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    cursor: pointer;
}

.ht-discover-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.ht-discover-card-wide {
    grid-column: span 2;
}

.ht-discover-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ht-discover-card-wide .ht-discover-img {
    height: 260px;
}

.ht-discover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.ht-discover-card:hover .ht-discover-img img {
    transform: scale(1.08);
}

.ht-discover-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 15, 13, 0.8) 100%);
}

.ht-discover-card-content {
    padding: 24px;
}

.ht-discover-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
    color: white;
    font-size: 1rem;
    margin-bottom: 12px;
    margin-top: -46px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(46, 204, 113, 0.3);
}

.ht-discover-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.ht-discover-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.ht-discover-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.ht-discover-link:hover {
    color: var(--emerald);
    gap: 10px;
}

/* === WEATHER === */
.ht-weather-section {
    background: var(--bg-secondary);
}

.ht-weather-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ht-weather-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.ht-weather-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.ht-weather-city {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gold);
}

.ht-weather-icon {
    font-size: 2.4rem;
    margin-bottom: 8px;
    color: var(--emerald);
}

.ht-weather-temp {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.ht-weather-details {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ht-weather-details i {
    margin-right: 4px;
    color: var(--emerald);
}

/* === CONTACT / FEEDBACK === */
.ht-contact-section {
    background: var(--bg-primary);
}

.ht-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ht-contact-info {
    padding-top: 20px;
}

.ht-contact-info .ht-section-badge {
    margin-bottom: 16px;
}

.ht-contact-info .ht-section-title {
    margin-bottom: 16px;
}

.ht-contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.ht-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ht-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.ht-contact-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    color: var(--emerald);
    flex-shrink: 0;
}

/* === FORM === */
.ht-contact-form-wrapper {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: var(--glass-blur);
}

.ht-feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ht-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ht-form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.ht-form-group input,
.ht-form-group textarea,
.ht-form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.ht-form-group input:focus,
.ht-form-group textarea:focus,
.ht-form-group select:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.ht-form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.ht-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Star Rating */
.ht-star-rating {
    display: flex;
    gap: 6px;
}

.ht-star-rating i {
    font-size: 1.4rem;
    color: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.ht-star-rating i.active,
.ht-star-rating i:hover {
    color: var(--gold);
}

/* === FOOTER === */
.ht-footer {
    background: var(--bg-secondary);
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
    font-family: var(--font-primary);
}

.ht-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.ht-footer-brand .ht-nav-logo {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.ht-footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.ht-footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ht-footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.ht-footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
}

.ht-footer-links a:hover {
    color: var(--emerald);
}

.ht-footer-socials {
    display: flex;
    gap: 12px;
}

.ht-footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.ht-footer-socials a:hover {
    background: var(--emerald);
    color: white;
    border-color: var(--emerald);
    transform: translateY(-3px);
}

.ht-footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === CHATBOT === */
.ht-chatbot-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}

.ht-chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 6px 24px rgba(46, 204, 113, 0.4);
}

.ht-chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(46, 204, 113, 0.5);
}

.ht-chatbot-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--emerald);
    animation: htChatPulse 2s infinite;
}

@keyframes htChatPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.ht-chatbot-window {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    max-height: 520px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: htSlideUp 0.3s ease;
}

.ht-chatbot-window.active {
    display: flex;
}

@keyframes htSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ht-chatbot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--emerald-dark), #0a3d1f);
    color: white;
}

.ht-chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ht-chatbot-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.ht-chatbot-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.ht-chatbot-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.ht-chatbot-close:hover {
    opacity: 1;
}

.ht-chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 280px;
    min-height: 180px;
}

.ht-chat-message {
    display: flex;
    gap: 8px;
}

.ht-chat-message.bot {
    align-self: flex-start;
}

.ht-chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.ht-chat-bubble {
    max-width: 85%;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    line-height: 1.5;
}

.ht-chat-message.bot .ht-chat-bubble {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.ht-chat-message.user .ht-chat-bubble {
    background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
    color: white;
}

.ht-chatbot-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 16px 12px;
}

.ht-quick-action {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
}

.ht-quick-action:hover {
    border-color: var(--emerald);
    color: var(--emerald);
}

.ht-chatbot-input {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
}

.ht-chatbot-input input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.88rem;
    outline: none;
}

.ht-chatbot-input input:focus {
    border-color: var(--emerald);
}

.ht-chatbot-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--emerald);
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.ht-chatbot-input button:hover {
    background: var(--gold);
}

/* === AOS-LIKE SCROLL ANIMATIONS === */
[data-htaos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-htaos="zoom-in"] {
    transform: scale(0.9);
}

[data-htaos].ht-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .ht-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ht-discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ht-discover-card-wide {
        grid-column: span 2;
    }

    .ht-weather-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ht-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ht-nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 15, 13, 0.95);
        backdrop-filter: var(--glass-blur);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .ht-nav-links.active {
        display: flex;
    }

    .ht-nav-toggle {
        display: flex;
    }

    .ht-lang-switcher {
        gap: 2px;
    }

    .ht-lang-btn {
        padding: 4px 6px;
        font-size: 0.7rem;
    }

    .ht-hero-title {
        font-size: 2rem;
    }

    .ht-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .ht-stat-number {
        font-size: 1.5rem;
    }

    .ht-features-grid,
    .ht-discover-grid,
    .ht-weather-grid {
        grid-template-columns: 1fr;
    }

    .ht-discover-card-wide {
        grid-column: span 1;
    }

    .ht-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ht-footer-grid {
        grid-template-columns: 1fr;
    }

    .ht-chatbot-window {
        width: calc(100vw - 32px);
        right: -12px;
    }

    .ht-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* === Scrollbar === */
body.elementor-template-canvas ::-webkit-scrollbar {
    width: 8px;
}

body.elementor-template-canvas ::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

body.elementor-template-canvas ::-webkit-scrollbar-thumb {
    background: var(--emerald-dark);
    border-radius: 4px;
}

body.elementor-template-canvas ::-webkit-scrollbar-thumb:hover {
    background: var(--emerald);
}